@ututrust/web-components 1.2.2 → 1.2.4
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/CHANGELOG.md +23 -0
- package/README.md +13 -0
- package/dist/index.js +1480 -995
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.js
CHANGED
|
@@ -9595,11 +9595,11 @@
|
|
|
9595
9595
|
var ATTR_ENDORSEMENT_NETWORK = "endorsement-network";
|
|
9596
9596
|
var ATTR_TRANSACTION_ID = "transaction-id"; // API BASE URLs
|
|
9597
9597
|
|
|
9598
|
-
var UTU_API_BASE_URL_PRODUCTION = "https://api.ututrust.com
|
|
9599
|
-
var UTU_API_BASE_URL_TEST = "https://stage-api.ututrust.com
|
|
9600
|
-
var CORE_API_BASE = "core-api";
|
|
9601
|
-
var UPLOADER_API_BASE = "uploader-api";
|
|
9602
|
-
var VIDEO_PUBLISHED_BASE = "published-videos"; // API resource paths
|
|
9598
|
+
var UTU_API_BASE_URL_PRODUCTION = "https://api.ututrust.com";
|
|
9599
|
+
var UTU_API_BASE_URL_TEST = "https://stage-api.ututrust.com";
|
|
9600
|
+
var CORE_API_BASE = "/core-api";
|
|
9601
|
+
var UPLOADER_API_BASE = "/uploader-api";
|
|
9602
|
+
var VIDEO_PUBLISHED_BASE = "/published-videos"; // API resource paths
|
|
9603
9603
|
|
|
9604
9604
|
var API_RANKING = "/ranking";
|
|
9605
9605
|
var API_FEEDBACK = "/feedback";
|
|
@@ -9610,10 +9610,14 @@
|
|
|
9610
9610
|
var EVENT_UTU_CONFIG = "utuConfig";
|
|
9611
9611
|
var EVENT_UTU_IDENTITY_DATA_READY = "utuIdentityDataReady"; // Local Storage Keys
|
|
9612
9612
|
|
|
9613
|
-
var LOCAL_STORAGE_KEY_UTU_IDENTITY_DATA = "utu-identity-data"; // UTT
|
|
9613
|
+
var LOCAL_STORAGE_KEY_UTU_IDENTITY_DATA = "utu-identity-data"; // Supported UTT networks
|
|
9614
9614
|
|
|
9615
|
-
var
|
|
9616
|
-
|
|
9615
|
+
var NETWORK_NAME;
|
|
9616
|
+
|
|
9617
|
+
(function (NETWORK_NAME) {
|
|
9618
|
+
NETWORK_NAME["polygon_mainnet"] = "polygon_mainnet";
|
|
9619
|
+
NETWORK_NAME["polygon_mumbai"] = "polygon_mumbai";
|
|
9620
|
+
})(NETWORK_NAME || (NETWORK_NAME = {}));
|
|
9617
9621
|
|
|
9618
9622
|
function e$1(e) {
|
|
9619
9623
|
this.message = e;
|
|
@@ -25001,7 +25005,7 @@
|
|
|
25001
25005
|
_defaultProvider: etcDefaultProvider("https://www.ethercluster.com/mordor", "classicMordor")
|
|
25002
25006
|
}; // See: https://chainlist.org
|
|
25003
25007
|
|
|
25004
|
-
const networks
|
|
25008
|
+
const networks = {
|
|
25005
25009
|
unspecified: {
|
|
25006
25010
|
chainId: 0,
|
|
25007
25011
|
name: "unspecified"
|
|
@@ -25113,8 +25117,8 @@
|
|
|
25113
25117
|
}
|
|
25114
25118
|
|
|
25115
25119
|
if (typeof network === "number") {
|
|
25116
|
-
for (const name in networks
|
|
25117
|
-
const standard = networks
|
|
25120
|
+
for (const name in networks) {
|
|
25121
|
+
const standard = networks[name];
|
|
25118
25122
|
|
|
25119
25123
|
if (standard.chainId === network) {
|
|
25120
25124
|
return {
|
|
@@ -25133,7 +25137,7 @@
|
|
|
25133
25137
|
}
|
|
25134
25138
|
|
|
25135
25139
|
if (typeof network === "string") {
|
|
25136
|
-
const standard = networks
|
|
25140
|
+
const standard = networks[network];
|
|
25137
25141
|
|
|
25138
25142
|
if (standard == null) {
|
|
25139
25143
|
return null;
|
|
@@ -25147,7 +25151,7 @@
|
|
|
25147
25151
|
};
|
|
25148
25152
|
}
|
|
25149
25153
|
|
|
25150
|
-
const standard = networks
|
|
25154
|
+
const standard = networks[network.name]; // Not a standard network; check that it is a valid network in general
|
|
25151
25155
|
|
|
25152
25156
|
if (!standard) {
|
|
25153
25157
|
if (typeof network.chainId !== "number") {
|
|
@@ -29970,379 +29974,6 @@
|
|
|
29970
29974
|
|
|
29971
29975
|
}
|
|
29972
29976
|
|
|
29973
|
-
function useAuth() {
|
|
29974
|
-
var _useState = p(getAccessTokenFromLocalStorage()),
|
|
29975
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
29976
|
-
accessToken = _useState2[0],
|
|
29977
|
-
setAccessToken = _useState2[1];
|
|
29978
|
-
|
|
29979
|
-
h$1(function () {
|
|
29980
|
-
function onUtuTokensReady(event) {
|
|
29981
|
-
var access_token = event.detail.access_token;
|
|
29982
|
-
setAccessToken(access_token);
|
|
29983
|
-
}
|
|
29984
|
-
|
|
29985
|
-
window.addEventListener(EVENT_UTU_IDENTITY_DATA_READY, onUtuTokensReady);
|
|
29986
|
-
return function () {
|
|
29987
|
-
window.removeEventListener(EVENT_UTU_IDENTITY_DATA_READY, onUtuTokensReady);
|
|
29988
|
-
};
|
|
29989
|
-
}, []);
|
|
29990
|
-
return {
|
|
29991
|
-
accessToken: accessToken
|
|
29992
|
-
};
|
|
29993
|
-
}
|
|
29994
|
-
function addressSignatureVerification(_x) {
|
|
29995
|
-
return _addressSignatureVerification.apply(this, arguments);
|
|
29996
|
-
}
|
|
29997
|
-
|
|
29998
|
-
function _addressSignatureVerification() {
|
|
29999
|
-
_addressSignatureVerification = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(apiUrl) {
|
|
30000
|
-
var _window;
|
|
30001
|
-
|
|
30002
|
-
var walletProvider,
|
|
30003
|
-
cookies,
|
|
30004
|
-
provider,
|
|
30005
|
-
signer,
|
|
30006
|
-
address,
|
|
30007
|
-
signature,
|
|
30008
|
-
_yield$axios$post,
|
|
30009
|
-
data,
|
|
30010
|
-
_args = arguments;
|
|
30011
|
-
|
|
30012
|
-
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
30013
|
-
while (1) {
|
|
30014
|
-
switch (_context.prev = _context.next) {
|
|
30015
|
-
case 0:
|
|
30016
|
-
walletProvider = _args.length > 1 && _args[1] !== undefined ? _args[1] : null;
|
|
30017
|
-
cookies = _args.length > 2 && _args[2] !== undefined ? _args[2] : false;
|
|
30018
|
-
|
|
30019
|
-
if (!(!((_window = window) !== null && _window !== void 0 && _window.ethereum) && !walletProvider)) {
|
|
30020
|
-
_context.next = 4;
|
|
30021
|
-
break;
|
|
30022
|
-
}
|
|
30023
|
-
|
|
30024
|
-
return _context.abrupt("return", null);
|
|
30025
|
-
|
|
30026
|
-
case 4:
|
|
30027
|
-
// @ts-ignore
|
|
30028
|
-
provider = new Web3Provider(walletProvider || window.ethereum);
|
|
30029
|
-
signer = provider.getSigner();
|
|
30030
|
-
_context.next = 8;
|
|
30031
|
-
return signer.getAddress();
|
|
30032
|
-
|
|
30033
|
-
case 8:
|
|
30034
|
-
address = _context.sent;
|
|
30035
|
-
_context.next = 11;
|
|
30036
|
-
return signer.signMessage("Sign in at UTU");
|
|
30037
|
-
|
|
30038
|
-
case 11:
|
|
30039
|
-
signature = _context.sent;
|
|
30040
|
-
_context.next = 14;
|
|
30041
|
-
return axios.post("".concat(apiUrl).concat(API_VERIFY_ADDRESS), {
|
|
30042
|
-
address: address,
|
|
30043
|
-
signature: signature
|
|
30044
|
-
}, {
|
|
30045
|
-
withCredentials: !!cookies
|
|
30046
|
-
});
|
|
30047
|
-
|
|
30048
|
-
case 14:
|
|
30049
|
-
_yield$axios$post = _context.sent;
|
|
30050
|
-
data = _yield$axios$post.data;
|
|
30051
|
-
_context.next = 18;
|
|
30052
|
-
return localStorage.setItem(LOCAL_STORAGE_KEY_UTU_IDENTITY_DATA, JSON.stringify(data));
|
|
30053
|
-
|
|
30054
|
-
case 18:
|
|
30055
|
-
return _context.abrupt("return", data);
|
|
30056
|
-
|
|
30057
|
-
case 20:
|
|
30058
|
-
case "end":
|
|
30059
|
-
return _context.stop();
|
|
30060
|
-
}
|
|
30061
|
-
}
|
|
30062
|
-
}, _callee);
|
|
30063
|
-
}));
|
|
30064
|
-
return _addressSignatureVerification.apply(this, arguments);
|
|
30065
|
-
}
|
|
30066
|
-
|
|
30067
|
-
function getAccessTokenFromLocalStorage() {
|
|
30068
|
-
var item = localStorage.getItem(LOCAL_STORAGE_KEY_UTU_IDENTITY_DATA);
|
|
30069
|
-
|
|
30070
|
-
if (item) {
|
|
30071
|
-
var _JSON$parse = JSON.parse(item),
|
|
30072
|
-
access_token = _JSON$parse.access_token;
|
|
30073
|
-
|
|
30074
|
-
var _ref = o$1(access_token),
|
|
30075
|
-
exp = _ref.exp;
|
|
30076
|
-
|
|
30077
|
-
if (isValid(exp)) {
|
|
30078
|
-
return access_token;
|
|
30079
|
-
}
|
|
30080
|
-
}
|
|
30081
|
-
|
|
30082
|
-
return null;
|
|
30083
|
-
}
|
|
30084
|
-
|
|
30085
|
-
function isValid(exp) {
|
|
30086
|
-
return Date.now() < exp * 1000;
|
|
30087
|
-
}
|
|
30088
|
-
|
|
30089
|
-
function useRankingApi(apiUrl, sourceUuid, targetType) {
|
|
30090
|
-
var _useAuth = useAuth(),
|
|
30091
|
-
accessToken = _useAuth.accessToken;
|
|
30092
|
-
|
|
30093
|
-
var _useState = p(undefined),
|
|
30094
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
30095
|
-
rankingItems = _useState2[0],
|
|
30096
|
-
setRankingItems = _useState2[1];
|
|
30097
|
-
|
|
30098
|
-
var queryParams = lib.stringify({
|
|
30099
|
-
sourceCriteria: JSON.stringify(createEntityCriteria(sourceUuid)),
|
|
30100
|
-
targetType: targetType
|
|
30101
|
-
});
|
|
30102
|
-
h$1(function () {
|
|
30103
|
-
function f() {
|
|
30104
|
-
return _f.apply(this, arguments);
|
|
30105
|
-
}
|
|
30106
|
-
|
|
30107
|
-
function _f() {
|
|
30108
|
-
_f = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
30109
|
-
var response;
|
|
30110
|
-
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
30111
|
-
while (1) {
|
|
30112
|
-
switch (_context.prev = _context.next) {
|
|
30113
|
-
case 0:
|
|
30114
|
-
_context.next = 2;
|
|
30115
|
-
return axios.get("".concat(apiUrl).concat(CORE_API_BASE).concat(API_RANKING, "?").concat(queryParams), withAuthorizationHeader(accessToken));
|
|
30116
|
-
|
|
30117
|
-
case 2:
|
|
30118
|
-
response = _context.sent;
|
|
30119
|
-
setRankingItems(response.data.result);
|
|
30120
|
-
|
|
30121
|
-
case 4:
|
|
30122
|
-
case "end":
|
|
30123
|
-
return _context.stop();
|
|
30124
|
-
}
|
|
30125
|
-
}
|
|
30126
|
-
}, _callee);
|
|
30127
|
-
}));
|
|
30128
|
-
return _f.apply(this, arguments);
|
|
30129
|
-
}
|
|
30130
|
-
|
|
30131
|
-
f();
|
|
30132
|
-
}, [setRankingItems, apiUrl, queryParams, accessToken]);
|
|
30133
|
-
return {
|
|
30134
|
-
rankingItems: rankingItems
|
|
30135
|
-
};
|
|
30136
|
-
}
|
|
30137
|
-
function useFeedbackApi(apiUrl, sourceUuid, targetUuid, transactionId) {
|
|
30138
|
-
var _useAuth2 = useAuth(),
|
|
30139
|
-
accessToken = _useAuth2.accessToken;
|
|
30140
|
-
|
|
30141
|
-
var sourceCriteria = createEntityCriteria(sourceUuid);
|
|
30142
|
-
var targetCriteria = createEntityCriteria(targetUuid);
|
|
30143
|
-
|
|
30144
|
-
var sendFeedback = function sendFeedback(feedbackData) {
|
|
30145
|
-
return axios.post("".concat(apiUrl).concat(CORE_API_BASE).concat(API_FEEDBACK), {
|
|
30146
|
-
sourceCriteria: sourceCriteria,
|
|
30147
|
-
targetCriteria: targetCriteria,
|
|
30148
|
-
transactionId: transactionId,
|
|
30149
|
-
data: feedbackData
|
|
30150
|
-
}, withAuthorizationHeader(accessToken)).then(function () {
|
|
30151
|
-
console.log("successfully uploaded to utu-api");
|
|
30152
|
-
}).catch(function (err) {
|
|
30153
|
-
console.log(err);
|
|
30154
|
-
});
|
|
30155
|
-
};
|
|
30156
|
-
|
|
30157
|
-
console.log("".concat(apiUrl).concat(CORE_API_BASE).concat(API_FEEDBACK));
|
|
30158
|
-
return {
|
|
30159
|
-
sendFeedback: sendFeedback
|
|
30160
|
-
};
|
|
30161
|
-
}
|
|
30162
|
-
function useBadgesApi(apiUrl) {
|
|
30163
|
-
var _useAuth3 = useAuth(),
|
|
30164
|
-
accessToken = _useAuth3.accessToken;
|
|
30165
|
-
|
|
30166
|
-
var _useState3 = p([]),
|
|
30167
|
-
_useState4 = _slicedToArray(_useState3, 2),
|
|
30168
|
-
badgeSets = _useState4[0],
|
|
30169
|
-
setBadgeSets = _useState4[1];
|
|
30170
|
-
|
|
30171
|
-
h$1(function () {
|
|
30172
|
-
function f() {
|
|
30173
|
-
return _f2.apply(this, arguments);
|
|
30174
|
-
}
|
|
30175
|
-
|
|
30176
|
-
function _f2() {
|
|
30177
|
-
_f2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
|
|
30178
|
-
var response;
|
|
30179
|
-
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
30180
|
-
while (1) {
|
|
30181
|
-
switch (_context2.prev = _context2.next) {
|
|
30182
|
-
case 0:
|
|
30183
|
-
_context2.next = 2;
|
|
30184
|
-
return axios.get("".concat(apiUrl).concat(CORE_API_BASE).concat(API_BADGES), withAuthorizationHeader(accessToken));
|
|
30185
|
-
|
|
30186
|
-
case 2:
|
|
30187
|
-
response = _context2.sent;
|
|
30188
|
-
setBadgeSets(response.data.result);
|
|
30189
|
-
|
|
30190
|
-
case 4:
|
|
30191
|
-
case "end":
|
|
30192
|
-
return _context2.stop();
|
|
30193
|
-
}
|
|
30194
|
-
}
|
|
30195
|
-
}, _callee2);
|
|
30196
|
-
}));
|
|
30197
|
-
return _f2.apply(this, arguments);
|
|
30198
|
-
}
|
|
30199
|
-
|
|
30200
|
-
f();
|
|
30201
|
-
}, [setBadgeSets, apiUrl, accessToken]);
|
|
30202
|
-
return {
|
|
30203
|
-
badgeSets: badgeSets
|
|
30204
|
-
};
|
|
30205
|
-
}
|
|
30206
|
-
function useFeedbackSummaryApi(apiUrl, targetUuid) {
|
|
30207
|
-
var _useAuth4 = useAuth(),
|
|
30208
|
-
accessToken = _useAuth4.accessToken;
|
|
30209
|
-
|
|
30210
|
-
var _useState5 = p(undefined),
|
|
30211
|
-
_useState6 = _slicedToArray(_useState5, 2),
|
|
30212
|
-
feedbackSummary = _useState6[0],
|
|
30213
|
-
setFeedbackSummary = _useState6[1];
|
|
30214
|
-
|
|
30215
|
-
var queryParams = lib.stringify({
|
|
30216
|
-
targetCriteria: JSON.stringify(createEntityCriteria(targetUuid))
|
|
30217
|
-
});
|
|
30218
|
-
h$1(function () {
|
|
30219
|
-
function f() {
|
|
30220
|
-
return _f3.apply(this, arguments);
|
|
30221
|
-
}
|
|
30222
|
-
|
|
30223
|
-
function _f3() {
|
|
30224
|
-
_f3 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3() {
|
|
30225
|
-
var response;
|
|
30226
|
-
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
|
30227
|
-
while (1) {
|
|
30228
|
-
switch (_context3.prev = _context3.next) {
|
|
30229
|
-
case 0:
|
|
30230
|
-
_context3.next = 2;
|
|
30231
|
-
return axios.get("".concat(apiUrl).concat(CORE_API_BASE).concat(API_FEEDBACK_SUMMARY, "?").concat(queryParams), withAuthorizationHeader(accessToken));
|
|
30232
|
-
|
|
30233
|
-
case 2:
|
|
30234
|
-
response = _context3.sent;
|
|
30235
|
-
setFeedbackSummary(response.data.result.data);
|
|
30236
|
-
|
|
30237
|
-
case 4:
|
|
30238
|
-
case "end":
|
|
30239
|
-
return _context3.stop();
|
|
30240
|
-
}
|
|
30241
|
-
}
|
|
30242
|
-
}, _callee3);
|
|
30243
|
-
}));
|
|
30244
|
-
return _f3.apply(this, arguments);
|
|
30245
|
-
}
|
|
30246
|
-
|
|
30247
|
-
f();
|
|
30248
|
-
}, [setFeedbackSummary, apiUrl, queryParams, accessToken]);
|
|
30249
|
-
return {
|
|
30250
|
-
feedbackSummary: feedbackSummary
|
|
30251
|
-
};
|
|
30252
|
-
}
|
|
30253
|
-
function useUploadVideoApi(apiUrl, source) {
|
|
30254
|
-
var _useAuth5 = useAuth(),
|
|
30255
|
-
accessToken = _useAuth5.accessToken;
|
|
30256
|
-
|
|
30257
|
-
var _useState7 = p({
|
|
30258
|
-
uploading: false
|
|
30259
|
-
}),
|
|
30260
|
-
_useState8 = _slicedToArray(_useState7, 2),
|
|
30261
|
-
status = _useState8[0],
|
|
30262
|
-
setStatus = _useState8[1];
|
|
30263
|
-
|
|
30264
|
-
h$1(function () {
|
|
30265
|
-
if (!source) return;
|
|
30266
|
-
var wrappedReader = {
|
|
30267
|
-
read: function read() {
|
|
30268
|
-
var result = source.read();
|
|
30269
|
-
return result;
|
|
30270
|
-
}
|
|
30271
|
-
};
|
|
30272
|
-
var options = {
|
|
30273
|
-
resume: false,
|
|
30274
|
-
endpoint: "".concat(apiUrl).concat(UPLOADER_API_BASE, "/upload"),
|
|
30275
|
-
headers: getAuthorizationHeader(accessToken),
|
|
30276
|
-
chunkSize: 28 * 1024,
|
|
30277
|
-
uploadLengthDeferred: true,
|
|
30278
|
-
retryDelays: [0, 3000, 5000, 10000, 20000],
|
|
30279
|
-
metadata: {
|
|
30280
|
-
filename: "webcam.webm",
|
|
30281
|
-
filetype: "video/webm"
|
|
30282
|
-
},
|
|
30283
|
-
onError: function onError() {
|
|
30284
|
-
setStatus({
|
|
30285
|
-
uploading: false,
|
|
30286
|
-
errorMessage: "video was not successfully uploaded "
|
|
30287
|
-
});
|
|
30288
|
-
},
|
|
30289
|
-
onSuccess: function onSuccess() {
|
|
30290
|
-
var publishedVideoUrl = getPublishedVideoUrl(apiUrl, upload.url);
|
|
30291
|
-
var checkVideoInterval = setInterval(function () {
|
|
30292
|
-
axios.head(publishedVideoUrl).then(function () {
|
|
30293
|
-
setStatus({
|
|
30294
|
-
uploading: false,
|
|
30295
|
-
publishedVideoUrl: publishedVideoUrl
|
|
30296
|
-
});
|
|
30297
|
-
clearInterval(checkVideoInterval);
|
|
30298
|
-
}).catch(function () {
|
|
30299
|
-
return setStatus({
|
|
30300
|
-
errorMessage: "Video not yet available."
|
|
30301
|
-
});
|
|
30302
|
-
});
|
|
30303
|
-
}, 500);
|
|
30304
|
-
setStatus({
|
|
30305
|
-
successMessage: "video was successfully uploaded"
|
|
30306
|
-
});
|
|
30307
|
-
}
|
|
30308
|
-
};
|
|
30309
|
-
var upload = new Upload(wrappedReader, options); // Start the upload
|
|
30310
|
-
|
|
30311
|
-
upload.start();
|
|
30312
|
-
setStatus({
|
|
30313
|
-
uploading: true
|
|
30314
|
-
});
|
|
30315
|
-
}, [accessToken, source]);
|
|
30316
|
-
return status;
|
|
30317
|
-
}
|
|
30318
|
-
|
|
30319
|
-
function getPublishedVideoUrl(apiUrl, uploadUrl) {
|
|
30320
|
-
var videoId = uploadUrl.split("/").pop();
|
|
30321
|
-
var publishedUrl = "".concat(apiUrl).concat(VIDEO_PUBLISHED_BASE, "/").concat(videoId);
|
|
30322
|
-
return publishedUrl;
|
|
30323
|
-
}
|
|
30324
|
-
|
|
30325
|
-
function createEntityCriteria(uuid) {
|
|
30326
|
-
return {
|
|
30327
|
-
ids: {
|
|
30328
|
-
uuid: uuid
|
|
30329
|
-
}
|
|
30330
|
-
};
|
|
30331
|
-
}
|
|
30332
|
-
|
|
30333
|
-
function withAuthorizationHeader(accessToken) {
|
|
30334
|
-
var config = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
30335
|
-
return _objectSpread2(_objectSpread2({}, config), {}, {
|
|
30336
|
-
headers: _objectSpread2(_objectSpread2({}, config.headers || {}), getAuthorizationHeader(accessToken))
|
|
30337
|
-
});
|
|
30338
|
-
}
|
|
30339
|
-
|
|
30340
|
-
function getAuthorizationHeader(accessToken) {
|
|
30341
|
-
return {
|
|
30342
|
-
"Authorization": "Bearer ".concat(accessToken)
|
|
30343
|
-
};
|
|
30344
|
-
}
|
|
30345
|
-
|
|
30346
29977
|
// eslint-disable-next-line es-x/no-object-assign -- safe
|
|
30347
29978
|
|
|
30348
29979
|
|
|
@@ -30417,10 +30048,12 @@
|
|
|
30417
30048
|
});
|
|
30418
30049
|
|
|
30419
30050
|
var config = {
|
|
30420
|
-
production: false
|
|
30051
|
+
production: false,
|
|
30052
|
+
feedbackDetailsMaxEndorsements: 5
|
|
30421
30053
|
};
|
|
30422
30054
|
window.addEventListener(EVENT_UTU_CONFIG, function (event) {
|
|
30423
|
-
|
|
30055
|
+
console.log("UTU SDK received config:", JSON.stringify(event.detail));
|
|
30056
|
+
Object.assign(config, event.detail);
|
|
30424
30057
|
});
|
|
30425
30058
|
function getBaseProps(props, componentName) {
|
|
30426
30059
|
var apiUrlDefault = config.production ? UTU_API_BASE_URL_PRODUCTION : UTU_API_BASE_URL_TEST;
|
|
@@ -30447,6 +30080,426 @@
|
|
|
30447
30080
|
}, h$2("style", null, !excludeFonts && h$2(p$1, null, "@import \"https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap\";"), !excludeBootstrap && h$2(p$1, null, "@import \"https://getbootstrap.com/docs/5.0/dist/css/bootstrap-reboot.min.css\"; @import \"https://getbootstrap.com/docs/5.0/dist/css/bootstrap-grid.min.css\"; @import \"https://getbootstrap.com/docs/5.0/dist/css/bootstrap-utilities.min.css\";"), style), children);
|
|
30448
30081
|
}
|
|
30449
30082
|
|
|
30083
|
+
function useAuth() {
|
|
30084
|
+
var _useState = p(getAccessTokenFromLocalStorage()),
|
|
30085
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
30086
|
+
accessToken = _useState2[0],
|
|
30087
|
+
setAccessToken = _useState2[1];
|
|
30088
|
+
|
|
30089
|
+
h$1(function () {
|
|
30090
|
+
function onUtuTokensReady(event) {
|
|
30091
|
+
var access_token = event.detail.access_token;
|
|
30092
|
+
setAccessToken(access_token);
|
|
30093
|
+
}
|
|
30094
|
+
|
|
30095
|
+
window.addEventListener(EVENT_UTU_IDENTITY_DATA_READY, onUtuTokensReady);
|
|
30096
|
+
return function () {
|
|
30097
|
+
window.removeEventListener(EVENT_UTU_IDENTITY_DATA_READY, onUtuTokensReady);
|
|
30098
|
+
};
|
|
30099
|
+
}, []);
|
|
30100
|
+
return {
|
|
30101
|
+
accessToken: accessToken
|
|
30102
|
+
};
|
|
30103
|
+
}
|
|
30104
|
+
function addressSignatureVerification() {
|
|
30105
|
+
return _addressSignatureVerification.apply(this, arguments);
|
|
30106
|
+
}
|
|
30107
|
+
|
|
30108
|
+
function _addressSignatureVerification() {
|
|
30109
|
+
_addressSignatureVerification = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
30110
|
+
var _window;
|
|
30111
|
+
|
|
30112
|
+
var overrideApiUrl,
|
|
30113
|
+
walletProvider,
|
|
30114
|
+
cookies,
|
|
30115
|
+
utuApiBase,
|
|
30116
|
+
provider,
|
|
30117
|
+
signer,
|
|
30118
|
+
address,
|
|
30119
|
+
signature,
|
|
30120
|
+
_yield$axios$post,
|
|
30121
|
+
data,
|
|
30122
|
+
_args = arguments;
|
|
30123
|
+
|
|
30124
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
30125
|
+
while (1) {
|
|
30126
|
+
switch (_context.prev = _context.next) {
|
|
30127
|
+
case 0:
|
|
30128
|
+
overrideApiUrl = _args.length > 0 && _args[0] !== undefined ? _args[0] : null;
|
|
30129
|
+
walletProvider = _args.length > 1 && _args[1] !== undefined ? _args[1] : null;
|
|
30130
|
+
cookies = _args.length > 2 && _args[2] !== undefined ? _args[2] : false;
|
|
30131
|
+
utuApiBase = (overrideApiUrl !== null && overrideApiUrl !== void 0 ? overrideApiUrl : config.production) ? UTU_API_BASE_URL_PRODUCTION : UTU_API_BASE_URL_TEST; // @ts-ignore
|
|
30132
|
+
|
|
30133
|
+
if (!(!((_window = window) !== null && _window !== void 0 && _window.ethereum) && !walletProvider)) {
|
|
30134
|
+
_context.next = 6;
|
|
30135
|
+
break;
|
|
30136
|
+
}
|
|
30137
|
+
|
|
30138
|
+
return _context.abrupt("return", null);
|
|
30139
|
+
|
|
30140
|
+
case 6:
|
|
30141
|
+
// @ts-ignore
|
|
30142
|
+
provider = new Web3Provider(walletProvider || window.ethereum);
|
|
30143
|
+
signer = provider.getSigner();
|
|
30144
|
+
_context.next = 10;
|
|
30145
|
+
return signer.getAddress();
|
|
30146
|
+
|
|
30147
|
+
case 10:
|
|
30148
|
+
address = _context.sent;
|
|
30149
|
+
_context.next = 13;
|
|
30150
|
+
return signer.signMessage("Sign in at UTU");
|
|
30151
|
+
|
|
30152
|
+
case 13:
|
|
30153
|
+
signature = _context.sent;
|
|
30154
|
+
_context.next = 16;
|
|
30155
|
+
return axios.post("".concat(utuApiBase).concat(API_VERIFY_ADDRESS), {
|
|
30156
|
+
address: address,
|
|
30157
|
+
signature: signature
|
|
30158
|
+
}, {
|
|
30159
|
+
withCredentials: !!cookies
|
|
30160
|
+
});
|
|
30161
|
+
|
|
30162
|
+
case 16:
|
|
30163
|
+
_yield$axios$post = _context.sent;
|
|
30164
|
+
data = _yield$axios$post.data;
|
|
30165
|
+
_context.next = 20;
|
|
30166
|
+
return localStorage.setItem(LOCAL_STORAGE_KEY_UTU_IDENTITY_DATA, JSON.stringify(data));
|
|
30167
|
+
|
|
30168
|
+
case 20:
|
|
30169
|
+
return _context.abrupt("return", data);
|
|
30170
|
+
|
|
30171
|
+
case 22:
|
|
30172
|
+
case "end":
|
|
30173
|
+
return _context.stop();
|
|
30174
|
+
}
|
|
30175
|
+
}
|
|
30176
|
+
}, _callee);
|
|
30177
|
+
}));
|
|
30178
|
+
return _addressSignatureVerification.apply(this, arguments);
|
|
30179
|
+
}
|
|
30180
|
+
|
|
30181
|
+
function getAccessTokenFromLocalStorage() {
|
|
30182
|
+
var item = localStorage.getItem(LOCAL_STORAGE_KEY_UTU_IDENTITY_DATA);
|
|
30183
|
+
|
|
30184
|
+
if (item) {
|
|
30185
|
+
var _JSON$parse = JSON.parse(item),
|
|
30186
|
+
access_token = _JSON$parse.access_token;
|
|
30187
|
+
|
|
30188
|
+
var _ref = o$1(access_token),
|
|
30189
|
+
exp = _ref.exp;
|
|
30190
|
+
|
|
30191
|
+
if (isValid(exp)) {
|
|
30192
|
+
return access_token;
|
|
30193
|
+
}
|
|
30194
|
+
}
|
|
30195
|
+
|
|
30196
|
+
return null;
|
|
30197
|
+
}
|
|
30198
|
+
|
|
30199
|
+
function isValid(exp) {
|
|
30200
|
+
return Date.now() < exp * 1000;
|
|
30201
|
+
}
|
|
30202
|
+
|
|
30203
|
+
function useRankingApi(apiUrl, sourceUuid, targetType) {
|
|
30204
|
+
var _useAuth = useAuth(),
|
|
30205
|
+
accessToken = _useAuth.accessToken;
|
|
30206
|
+
|
|
30207
|
+
var _useState = p(undefined),
|
|
30208
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
30209
|
+
rankingItems = _useState2[0],
|
|
30210
|
+
setRankingItems = _useState2[1];
|
|
30211
|
+
|
|
30212
|
+
var queryParams = lib.stringify({
|
|
30213
|
+
sourceCriteria: JSON.stringify(createEntityCriteria(sourceUuid)),
|
|
30214
|
+
targetType: targetType
|
|
30215
|
+
});
|
|
30216
|
+
h$1(function () {
|
|
30217
|
+
function f() {
|
|
30218
|
+
return _f.apply(this, arguments);
|
|
30219
|
+
}
|
|
30220
|
+
|
|
30221
|
+
function _f() {
|
|
30222
|
+
_f = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
30223
|
+
var response;
|
|
30224
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
30225
|
+
while (1) {
|
|
30226
|
+
switch (_context.prev = _context.next) {
|
|
30227
|
+
case 0:
|
|
30228
|
+
_context.next = 2;
|
|
30229
|
+
return axios.get("".concat(apiUrl).concat(CORE_API_BASE).concat(API_RANKING, "?").concat(queryParams), withAuthorizationHeader(accessToken));
|
|
30230
|
+
|
|
30231
|
+
case 2:
|
|
30232
|
+
response = _context.sent;
|
|
30233
|
+
setRankingItems(response.data.result);
|
|
30234
|
+
|
|
30235
|
+
case 4:
|
|
30236
|
+
case "end":
|
|
30237
|
+
return _context.stop();
|
|
30238
|
+
}
|
|
30239
|
+
}
|
|
30240
|
+
}, _callee);
|
|
30241
|
+
}));
|
|
30242
|
+
return _f.apply(this, arguments);
|
|
30243
|
+
}
|
|
30244
|
+
|
|
30245
|
+
f();
|
|
30246
|
+
}, [setRankingItems, apiUrl, queryParams, accessToken]);
|
|
30247
|
+
return {
|
|
30248
|
+
rankingItems: rankingItems
|
|
30249
|
+
};
|
|
30250
|
+
}
|
|
30251
|
+
var SubmitStatus;
|
|
30252
|
+
|
|
30253
|
+
(function (SubmitStatus) {
|
|
30254
|
+
SubmitStatus[SubmitStatus["idle"] = 0] = "idle";
|
|
30255
|
+
SubmitStatus[SubmitStatus["submitting"] = 1] = "submitting";
|
|
30256
|
+
SubmitStatus[SubmitStatus["success"] = 2] = "success";
|
|
30257
|
+
SubmitStatus[SubmitStatus["error"] = 3] = "error";
|
|
30258
|
+
})(SubmitStatus || (SubmitStatus = {}));
|
|
30259
|
+
|
|
30260
|
+
var SUBMIT_STATUS_RESET_DELAY_MS = 3000;
|
|
30261
|
+
/**
|
|
30262
|
+
* Calls the given submitStatusSetter with SubmitStatus.idle after a delay of SUBMIT_STATUS_RESET_DELAY_MS
|
|
30263
|
+
* @param submitStatusSetter
|
|
30264
|
+
*/
|
|
30265
|
+
|
|
30266
|
+
function resetSubmitStatusDelayed(submitStatusSetter) {
|
|
30267
|
+
setTimeout(function () {
|
|
30268
|
+
return submitStatusSetter(SubmitStatus.idle);
|
|
30269
|
+
}, SUBMIT_STATUS_RESET_DELAY_MS);
|
|
30270
|
+
}
|
|
30271
|
+
/**
|
|
30272
|
+
* Use the UTU API to post feedback.
|
|
30273
|
+
* @param apiUrl
|
|
30274
|
+
* @param sourceUuid
|
|
30275
|
+
* @param targetUuid
|
|
30276
|
+
* @param transactionId
|
|
30277
|
+
* @return a function which takes an IFeedbackData parameter and returns a promise which will resolve with an
|
|
30278
|
+
* unspecified value when the feedback was posted successfully, and will reject otherwise.
|
|
30279
|
+
*/
|
|
30280
|
+
|
|
30281
|
+
|
|
30282
|
+
function useFeedbackApi(apiUrl, sourceUuid, targetUuid, transactionId) {
|
|
30283
|
+
var _useAuth2 = useAuth(),
|
|
30284
|
+
accessToken = _useAuth2.accessToken;
|
|
30285
|
+
|
|
30286
|
+
var _useState3 = p(SubmitStatus.idle),
|
|
30287
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
|
30288
|
+
submitStatus = _useState4[0],
|
|
30289
|
+
setSubmitStatus = _useState4[1];
|
|
30290
|
+
|
|
30291
|
+
var sourceCriteria = createEntityCriteria(sourceUuid);
|
|
30292
|
+
var targetCriteria = createEntityCriteria(targetUuid);
|
|
30293
|
+
|
|
30294
|
+
function sendFeedback(feedbackData) {
|
|
30295
|
+
setSubmitStatus(SubmitStatus.submitting);
|
|
30296
|
+
return axios.post("".concat(apiUrl).concat(CORE_API_BASE).concat(API_FEEDBACK), {
|
|
30297
|
+
sourceCriteria: sourceCriteria,
|
|
30298
|
+
targetCriteria: targetCriteria,
|
|
30299
|
+
transactionId: transactionId,
|
|
30300
|
+
data: feedbackData
|
|
30301
|
+
}, withAuthorizationHeader(accessToken)).then(function (result) {
|
|
30302
|
+
setSubmitStatus(SubmitStatus.success);
|
|
30303
|
+
resetSubmitStatusDelayed(setSubmitStatus);
|
|
30304
|
+
return result;
|
|
30305
|
+
}).catch(function (error) {
|
|
30306
|
+
setSubmitStatus(SubmitStatus.error);
|
|
30307
|
+
resetSubmitStatusDelayed(setSubmitStatus);
|
|
30308
|
+
return error;
|
|
30309
|
+
});
|
|
30310
|
+
}
|
|
30311
|
+
|
|
30312
|
+
return {
|
|
30313
|
+
sendFeedback: sendFeedback,
|
|
30314
|
+
submitStatus: submitStatus
|
|
30315
|
+
};
|
|
30316
|
+
}
|
|
30317
|
+
function useBadgesApi(apiUrl) {
|
|
30318
|
+
var _useAuth3 = useAuth(),
|
|
30319
|
+
accessToken = _useAuth3.accessToken;
|
|
30320
|
+
|
|
30321
|
+
var _useState5 = p([]),
|
|
30322
|
+
_useState6 = _slicedToArray(_useState5, 2),
|
|
30323
|
+
badgeSets = _useState6[0],
|
|
30324
|
+
setBadgeSets = _useState6[1];
|
|
30325
|
+
|
|
30326
|
+
h$1(function () {
|
|
30327
|
+
function f() {
|
|
30328
|
+
return _f2.apply(this, arguments);
|
|
30329
|
+
}
|
|
30330
|
+
|
|
30331
|
+
function _f2() {
|
|
30332
|
+
_f2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
|
|
30333
|
+
var response;
|
|
30334
|
+
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
30335
|
+
while (1) {
|
|
30336
|
+
switch (_context2.prev = _context2.next) {
|
|
30337
|
+
case 0:
|
|
30338
|
+
_context2.next = 2;
|
|
30339
|
+
return axios.get("".concat(apiUrl).concat(CORE_API_BASE).concat(API_BADGES), withAuthorizationHeader(accessToken));
|
|
30340
|
+
|
|
30341
|
+
case 2:
|
|
30342
|
+
response = _context2.sent;
|
|
30343
|
+
setBadgeSets(response.data.result);
|
|
30344
|
+
|
|
30345
|
+
case 4:
|
|
30346
|
+
case "end":
|
|
30347
|
+
return _context2.stop();
|
|
30348
|
+
}
|
|
30349
|
+
}
|
|
30350
|
+
}, _callee2);
|
|
30351
|
+
}));
|
|
30352
|
+
return _f2.apply(this, arguments);
|
|
30353
|
+
}
|
|
30354
|
+
|
|
30355
|
+
f();
|
|
30356
|
+
}, [setBadgeSets, apiUrl, accessToken]);
|
|
30357
|
+
return {
|
|
30358
|
+
badgeSets: badgeSets
|
|
30359
|
+
};
|
|
30360
|
+
}
|
|
30361
|
+
function useFeedbackSummaryApi(apiUrl, sourceUuid, targetUuid) {
|
|
30362
|
+
var _useAuth4 = useAuth(),
|
|
30363
|
+
accessToken = _useAuth4.accessToken;
|
|
30364
|
+
|
|
30365
|
+
var _useState7 = p(undefined),
|
|
30366
|
+
_useState8 = _slicedToArray(_useState7, 2),
|
|
30367
|
+
feedbackSummary = _useState8[0],
|
|
30368
|
+
setFeedbackSummary = _useState8[1];
|
|
30369
|
+
var targetCriteria = createEntityCriteria(targetUuid);
|
|
30370
|
+
var queryParams = lib.stringify({
|
|
30371
|
+
// sourceCriteria, don't send for now, there's a bug in the API which then only returns feedback from that
|
|
30372
|
+
// source, but not from their connections
|
|
30373
|
+
targetCriteria: targetCriteria
|
|
30374
|
+
});
|
|
30375
|
+
h$1(function () {
|
|
30376
|
+
function f() {
|
|
30377
|
+
return _f3.apply(this, arguments);
|
|
30378
|
+
}
|
|
30379
|
+
|
|
30380
|
+
function _f3() {
|
|
30381
|
+
_f3 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3() {
|
|
30382
|
+
var response;
|
|
30383
|
+
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
|
30384
|
+
while (1) {
|
|
30385
|
+
switch (_context3.prev = _context3.next) {
|
|
30386
|
+
case 0:
|
|
30387
|
+
_context3.next = 2;
|
|
30388
|
+
return axios.get("".concat(apiUrl).concat(CORE_API_BASE).concat(API_FEEDBACK_SUMMARY, "?").concat(queryParams), withAuthorizationHeader(accessToken));
|
|
30389
|
+
|
|
30390
|
+
case 2:
|
|
30391
|
+
response = _context3.sent;
|
|
30392
|
+
setFeedbackSummary(response.data.result.data);
|
|
30393
|
+
|
|
30394
|
+
case 4:
|
|
30395
|
+
case "end":
|
|
30396
|
+
return _context3.stop();
|
|
30397
|
+
}
|
|
30398
|
+
}
|
|
30399
|
+
}, _callee3);
|
|
30400
|
+
}));
|
|
30401
|
+
return _f3.apply(this, arguments);
|
|
30402
|
+
}
|
|
30403
|
+
|
|
30404
|
+
f();
|
|
30405
|
+
}, [setFeedbackSummary, apiUrl, queryParams, accessToken]);
|
|
30406
|
+
return {
|
|
30407
|
+
feedbackSummary: feedbackSummary
|
|
30408
|
+
};
|
|
30409
|
+
}
|
|
30410
|
+
function useUploadVideoApi(apiUrl, source) {
|
|
30411
|
+
var _useAuth5 = useAuth(),
|
|
30412
|
+
accessToken = _useAuth5.accessToken;
|
|
30413
|
+
|
|
30414
|
+
var _useState9 = p({
|
|
30415
|
+
uploading: false
|
|
30416
|
+
}),
|
|
30417
|
+
_useState10 = _slicedToArray(_useState9, 2),
|
|
30418
|
+
status = _useState10[0],
|
|
30419
|
+
setStatus = _useState10[1];
|
|
30420
|
+
|
|
30421
|
+
h$1(function () {
|
|
30422
|
+
if (!source) return;
|
|
30423
|
+
var wrappedReader = {
|
|
30424
|
+
read: function read() {
|
|
30425
|
+
var result = source.read();
|
|
30426
|
+
return result;
|
|
30427
|
+
}
|
|
30428
|
+
};
|
|
30429
|
+
var options = {
|
|
30430
|
+
resume: false,
|
|
30431
|
+
endpoint: "".concat(apiUrl).concat(UPLOADER_API_BASE, "/upload"),
|
|
30432
|
+
headers: getAuthorizationHeader(accessToken),
|
|
30433
|
+
chunkSize: 28 * 1024,
|
|
30434
|
+
uploadLengthDeferred: true,
|
|
30435
|
+
retryDelays: [0, 3000, 5000, 10000, 20000],
|
|
30436
|
+
metadata: {
|
|
30437
|
+
filename: "webcam.webm",
|
|
30438
|
+
filetype: "video/webm"
|
|
30439
|
+
},
|
|
30440
|
+
onError: function onError() {
|
|
30441
|
+
setStatus({
|
|
30442
|
+
uploading: false,
|
|
30443
|
+
errorMessage: "video was not successfully uploaded "
|
|
30444
|
+
});
|
|
30445
|
+
},
|
|
30446
|
+
onSuccess: function onSuccess() {
|
|
30447
|
+
var publishedVideoUrl = getPublishedVideoUrl(apiUrl, upload.url);
|
|
30448
|
+
var checkVideoInterval = setInterval(function () {
|
|
30449
|
+
axios.head(publishedVideoUrl).then(function () {
|
|
30450
|
+
setStatus({
|
|
30451
|
+
uploading: false,
|
|
30452
|
+
publishedVideoUrl: publishedVideoUrl
|
|
30453
|
+
});
|
|
30454
|
+
clearInterval(checkVideoInterval);
|
|
30455
|
+
}).catch(function () {
|
|
30456
|
+
return setStatus({
|
|
30457
|
+
errorMessage: "Video not yet available."
|
|
30458
|
+
});
|
|
30459
|
+
});
|
|
30460
|
+
}, 500);
|
|
30461
|
+
setStatus({
|
|
30462
|
+
successMessage: "video was successfully uploaded"
|
|
30463
|
+
});
|
|
30464
|
+
}
|
|
30465
|
+
};
|
|
30466
|
+
var upload = new Upload(wrappedReader, options); // Start the upload
|
|
30467
|
+
|
|
30468
|
+
upload.start();
|
|
30469
|
+
setStatus({
|
|
30470
|
+
uploading: true
|
|
30471
|
+
});
|
|
30472
|
+
}, [accessToken, source]);
|
|
30473
|
+
return status;
|
|
30474
|
+
}
|
|
30475
|
+
|
|
30476
|
+
function getPublishedVideoUrl(apiUrl, uploadUrl) {
|
|
30477
|
+
var videoId = uploadUrl.split("/").pop();
|
|
30478
|
+
var publishedUrl = "".concat(apiUrl).concat(VIDEO_PUBLISHED_BASE, "/").concat(videoId);
|
|
30479
|
+
return publishedUrl;
|
|
30480
|
+
}
|
|
30481
|
+
|
|
30482
|
+
function createEntityCriteria(uuid) {
|
|
30483
|
+
return {
|
|
30484
|
+
ids: {
|
|
30485
|
+
uuid: uuid
|
|
30486
|
+
}
|
|
30487
|
+
};
|
|
30488
|
+
}
|
|
30489
|
+
|
|
30490
|
+
function withAuthorizationHeader(accessToken) {
|
|
30491
|
+
var config = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
30492
|
+
return _objectSpread2(_objectSpread2({}, config), {}, {
|
|
30493
|
+
headers: _objectSpread2(_objectSpread2({}, config.headers || {}), getAuthorizationHeader(accessToken))
|
|
30494
|
+
});
|
|
30495
|
+
}
|
|
30496
|
+
|
|
30497
|
+
function getAuthorizationHeader(accessToken) {
|
|
30498
|
+
return {
|
|
30499
|
+
"Authorization": "Bearer ".concat(accessToken)
|
|
30500
|
+
};
|
|
30501
|
+
}
|
|
30502
|
+
|
|
30450
30503
|
function styleInject(css, ref) {
|
|
30451
30504
|
if (ref === void 0) ref = {};
|
|
30452
30505
|
var insertAt = ref.insertAt;
|
|
@@ -31409,7 +31462,7 @@
|
|
|
31409
31462
|
}
|
|
31410
31463
|
});
|
|
31411
31464
|
|
|
31412
|
-
var css_248z$j = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.utu-recommendation {\n border-top-left-radius: 2%;\n border-top-right-radius: 2%;\n padding-right: 1rem;\n}\n.utu-recommendation-content {\n display: flex;\n margin-left: 5px;\n}\n.utu-recommendation-text {\n align-self: center;\n margin-left: 20px;\n}\n.utu-recommendation-text-light {\n color: #000000;\n}\n.utu-recommendation-text-dark {\n color: #ffffff;\n}\n\n.summary-image-list {\n display: flex;\n justify-content: center;\n margin: 1.5rem 0 1rem 2rem;\n padding-left: 0;\n list-style: none;\n}\n.summary-image-item {\n margin-left: -15px;\n height: 2.5rem;\n}\n.summary-image-item-light {\n border: 2px solid rgb(251, 201, 61);\n}\n.summary-image-item-dark {\n border: 2px solid rgb(251, 201, 61);\n}";
|
|
31465
|
+
var css_248z$j = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.utu-recommendation {\n border-top-left-radius: 2%;\n border-top-right-radius: 2%;\n padding-right: 1rem;\n}\n.utu-recommendation-content {\n display: flex;\n margin-left: 5px;\n}\n.utu-recommendation-text {\n align-self: center;\n margin-left: 20px;\n}\n.utu-recommendation-text-light {\n color: #000000;\n}\n.utu-recommendation-text-dark {\n color: #ffffff;\n}\n\n.summary-image-list {\n display: flex;\n justify-content: center;\n margin: 1.5rem 0 1rem 2rem;\n padding-left: 0;\n list-style: none;\n}\n.summary-image-item {\n margin-left: -15px;\n height: 2.5rem;\n}\n.summary-image-item-light {\n border: 2px solid rgb(251, 201, 61);\n}\n.summary-image-item-dark {\n border: 2px solid rgb(251, 201, 61);\n}";
|
|
31413
31466
|
styleInject(css_248z$j);
|
|
31414
31467
|
|
|
31415
31468
|
function getRoot(ref) {
|
|
@@ -31506,12 +31559,517 @@
|
|
|
31506
31559
|
}, rankingItem.summaryText))));
|
|
31507
31560
|
}
|
|
31508
31561
|
|
|
31509
|
-
var css_248z$i = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.utu-feedback-form {\n display: flex;\n flex-direction: column;\n width: 100vw;\n border-bottom: 15px rgb(251, 201, 61) solid;\n z-index: 1;\n}\n.utu-feedback-form-popup {\n padding: 0.5rem;\n}\n\n.desktop-view {\n display: none;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-feedback-form {\n border-bottom: 0px;\n z-index: 1;\n align-items: center;\n width: 100%;\n height: 100%;\n }\n .mobile-view {\n display: none;\n }\n .desktop-view {\n display: flex;\n width: 100%;\n flex-direction: column;\n }\n .desktop-view-block-1 {\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-around;\n padding: 0 4.5rem 0 4.5rem;\n }\n .desktop-view-block-1-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-1-light {\n background-color: #fcf8e5;\n }\n .desktop-view-block-2 {\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n }\n .desktop-view-block-2-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-2-light {\n background-color: #fcf8e5;\n }\n .desktop-view-block-3 {\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n }\n .desktop-view-block-3-dark {\n background-color: rgb(36, 35, 35);\n }\n .desktop-view-block-3-light {\n background-color: rgb(253, 253, 253);\n }\n}";
|
|
31562
|
+
var css_248z$i = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.utu-feedback-form {\n display: flex;\n flex-direction: column;\n width: 100vw;\n border-bottom: 15px rgb(251, 201, 61) solid;\n z-index: 1;\n}\n.utu-feedback-form-popup {\n padding: 0.5rem;\n}\n\n.desktop-view {\n display: none;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-feedback-form {\n border-bottom: 0px;\n z-index: 1;\n align-items: center;\n width: 100%;\n height: 100%;\n }\n .mobile-view {\n display: none;\n }\n .desktop-view {\n display: flex;\n width: 100%;\n flex-direction: column;\n }\n .desktop-view-block-1 {\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-around;\n padding: 0 4.5rem 0 4.5rem;\n }\n .desktop-view-block-1-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-1-light {\n background-color: #fcf8e5;\n }\n .desktop-view-block-2 {\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n }\n .desktop-view-block-2-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-2-light {\n background-color: #fcf8e5;\n }\n .desktop-view-block-3 {\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n }\n .desktop-view-block-3-dark {\n background-color: rgb(36, 35, 35);\n }\n .desktop-view-block-3-light {\n background-color: rgb(253, 253, 253);\n }\n}";
|
|
31510
31563
|
styleInject(css_248z$i);
|
|
31511
31564
|
|
|
31512
|
-
var css_248z$h = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.button {\n cursor: pointer;\n}\n.button:hover {\n background-color: rgb(253, 253, 253);\n}\n.button:active {\n transform: translateY(1px);\n}\n\n.badge-section {\n display: flex;\n flex-wrap: wrap !important;\n justify-content: center;\n padding-top: 2rem;\n padding-left: 3rem;\n padding-right: 3rem;\n}\n.badge-section > div {\n padding: 1rem;\n}\n.badge-disable {\n height: 50px;\n width: 50px;\n opacity: 0.6;\n}\n.badge-item-text {\n justify-content: center;\n align-items: center;\n color: \"white\";\n}\n.badge-text {\n font-size: 0.7rem;\n}\n.badge-text-h3 {\n text-align: center;\n}\n.badge-text-h3-light {\n color: #000000;\n}\n.badge-text-h3-dark {\n color: #ffffff;\n}\n.badge-img {\n width: 4rem;\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n}\n.badge-img-container {\n display: flex;\n justify-content: space-around;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .badge-section {\n padding-left: 2rem;\n padding-right: 0;\n }\n}\n@media only screen and (min-width: 1210px) {\n .badge-section {\n padding-top: 0;\n }\n}";
|
|
31565
|
+
var css_248z$h = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.button {\n cursor: pointer;\n}\n.button:hover {\n background-color: rgb(253, 253, 253);\n}\n.button:active {\n transform: translateY(1px);\n}\n\n.badge-set-container {\n width: 6em;\n height: 72px;\n}\n.badge-section {\n display: flex;\n flex-wrap: wrap !important;\n justify-content: center;\n padding-top: 2rem;\n padding-left: 3rem;\n padding-right: 3rem;\n}\n.badge-section > div {\n padding: 1rem;\n}\n.badge-disable {\n height: 50px;\n width: 50px;\n opacity: 0.6;\n}\n.badge-item-text {\n justify-content: center;\n align-items: center;\n color: \"white\";\n}\n.badge-text {\n font-size: 0.7rem;\n}\n.badge-text-h3 {\n text-align: center;\n}\n.badge-text-h3-light {\n color: #000000;\n}\n.badge-text-h3-dark {\n color: #ffffff;\n}\n.badge-img {\n width: 4rem;\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n}\n.badge-img-container {\n display: flex;\n justify-content: space-around;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .badge-section {\n padding-left: 2rem;\n padding-right: 0;\n }\n}\n@media only screen and (min-width: 1210px) {\n .badge-section {\n padding-top: 0;\n }\n}";
|
|
31513
31566
|
styleInject(css_248z$h);
|
|
31514
31567
|
|
|
31568
|
+
var css_248z$g = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}";
|
|
31569
|
+
styleInject(css_248z$g);
|
|
31570
|
+
|
|
31571
|
+
/* eslint max-len: 0 */
|
|
31572
|
+
function Logo() {
|
|
31573
|
+
return h$2("svg", {
|
|
31574
|
+
style: css_248z$g,
|
|
31575
|
+
version: "1.1",
|
|
31576
|
+
id: "Capa_1",
|
|
31577
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
31578
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
31579
|
+
x: "0px",
|
|
31580
|
+
y: "0px",
|
|
31581
|
+
className: "logo-size",
|
|
31582
|
+
viewBox: "0 0 841.89 401.471",
|
|
31583
|
+
xmlSpace: "preserve"
|
|
31584
|
+
}, h$2("g", {
|
|
31585
|
+
id: "Layer_2"
|
|
31586
|
+
}, h$2("g", {
|
|
31587
|
+
id: "Layer_1-2"
|
|
31588
|
+
}, h$2("path", {
|
|
31589
|
+
fill: "#FFFFFF",
|
|
31590
|
+
d: "M565.858,0c263.37,4.676,263.323,395.802,0,400.243C302.487,395.709,302.532,4.397,565.858,0z"
|
|
31591
|
+
}), h$2("path", {
|
|
31592
|
+
fill: "#BBBBBB",
|
|
31593
|
+
d: "M0.005,224.144v-45.228c-0.005-2.54,2.051-4.603,4.591-4.607c0.019,0,0.038,0,0.057,0 c7.535,0.416,21.79-1.872,27.35,4.176c6.247,4.983,6.239,19.43,0,24.454c-4.912,5.359-15.871,4.127-22.758,4.215v16.991 C9.443,230.176-0.14,230.119,0.005,224.144z M9.26,198.834c6.479-0.119,18.55,1.96,17.854-8.119 c0.695-10.07-11.415-7.999-17.854-8.087V198.834z"
|
|
31594
|
+
}), h$2("path", {
|
|
31595
|
+
fill: "#BBBBBB",
|
|
31596
|
+
d: "M40.041,209.985c-1.848-25.798,36.885-25.901,34.957,0C76.878,235.775,38.241,235.671,40.041,209.985z M48.84,209.985c-1.208,15.847,18.742,15.839,17.534,0c1.232-15.99-18.782-15.99-17.574,0H48.84z"
|
|
31597
|
+
}), h$2("path", {
|
|
31598
|
+
fill: "#BBBBBB",
|
|
31599
|
+
d: "M77.149,195.475c-0.192-4.712,6.936-5.911,8.399-1.479l6.64,19.646l5.352-19.334 c0.498-1.867,2.202-3.156,4.135-3.128c1.851-0.022,3.506,1.146,4.104,2.896l5.352,19.574l6.56-19.646 c0.912-2.96,5.12-3.712,7.199-1.64c4.496,2.079-9.991,30.637-10.11,33.709c-1.112,3.823-7.144,3.384-8.168-0.32l-4.959-17.534 l-4.936,17.43c-0.72,2.308-3.173,3.595-5.479,2.875c-0.419-0.13-0.815-0.322-1.176-0.57 C87.868,226.512,77.678,197.931,77.149,195.475z"
|
|
31600
|
+
}), h$2("path", {
|
|
31601
|
+
fill: "#BBBBBB",
|
|
31602
|
+
d: "M128.201,209.649c-2.473-23.021,33.517-26.27,33.356-3.199c0.288,3.399-0.896,6.831-4.911,6.559h-19.814 c0.392,11.487,13.039,8.592,19.91,4.96C174.181,225.784,126.593,242.11,128.201,209.649z M137.063,205.649h15.854 C153.502,195.499,137.048,195.698,137.063,205.649z"
|
|
31603
|
+
}), h$2("path", {
|
|
31604
|
+
fill: "#BBBBBB",
|
|
31605
|
+
d: "M167.453,224.456c0.472-1.896-1.264-31.637,1.264-31.997c2.704-2.863,7.855-0.416,7.367,3.504 c2.288-6.655,16.919-7.04,11.535,1.823c-5.88,2.776-11.199,0.801-11.535,10.096v16.614 C176.212,230.039,167.325,230.048,167.453,224.456z"
|
|
31606
|
+
}), h$2("path", {
|
|
31607
|
+
fill: "#BBBBBB",
|
|
31608
|
+
d: "M190.963,209.649c-2.464-23.021,33.524-26.27,33.356-3.199c0.296,3.399-0.896,6.831-4.903,6.559h-19.822 c0.4,11.487,13.047,8.592,19.918,4.96C236.95,225.784,189.355,242.11,190.963,209.649z M199.834,205.649h15.854 C216.272,195.499,199.818,195.698,199.834,205.649z"
|
|
31609
|
+
}), h$2("path", {
|
|
31610
|
+
fill: "#BBBBBB",
|
|
31611
|
+
d: "M228.543,209.985c-1.544-14.935,13.255-24.861,25.03-16.11v-18.398c-0.152-3.728,4.848-5.76,7.375-3.048 c2.584-0.136,0.744,39.236,1.264,40.74c0,5.157-1.506,9.116-4.52,11.879C245.75,234.767,226.888,227.248,228.543,209.985z M237.175,209.985c-1.984,13.143,15.998,16.902,16.406,3.199v-11.062C246.79,193.891,236.07,198.986,237.175,209.985 L237.175,209.985z"
|
|
31612
|
+
}), h$2("path", {
|
|
31613
|
+
fill: "#BBBBBB",
|
|
31614
|
+
d: "M287.834,213.169v-37.692c-0.16-3.735,4.84-5.751,7.367-3.048c2.479,1.32,0.8,19.158,1.264,21.446 c5.464-5.088,16.526-3.696,20.838,1.688c5.703,5.728,5.768,23.198-0.191,28.798C307.92,233.959,286.426,228.976,287.834,213.169z M296.465,213.169c-0.855,8.104,9.807,11.679,14.287,5.655c6.839-10.398-2-29.524-14.287-16.727V213.169z"
|
|
31615
|
+
}), h$2("path", {
|
|
31616
|
+
fill: "#BBBBBB",
|
|
31617
|
+
d: "M323.175,243.046c-2.584-2.399-0.681-7.199,2.951-6.983c6.151-0.296,7.447-4.799,10.151-10.631 l-12.303-28.293c-0.211-0.535-0.317-1.105-0.312-1.68c-0.2-4.656,6.848-5.855,8.319-1.601l8.791,22.19l8.8-22.182 c0.928-2.744,5.031-3.656,7.071-1.44c5.095,2.2-13.775,35.325-13.943,38.356C338.413,240.198,331.006,246.95,323.175,243.046z"
|
|
31618
|
+
}), h$2("path", {
|
|
31619
|
+
fill: "#2B2B2B",
|
|
31620
|
+
d: "M710.811,214.345v-18.67c-0.152-3.728,4.871-5.76,7.383-3.048c4.903,6.264-5.039,29.693,8.479,28.941 c4.735,0,7.105-2.399,7.111-7.199v-18.687c-0.136-5.6,8.799-5.6,8.631,0c-0.695,7.199,2.096,23.198-3.031,29.077 C730.688,234.063,708.843,229.567,710.811,214.345z"
|
|
31621
|
+
}), h$2("path", {
|
|
31622
|
+
fill: "#2B2B2B",
|
|
31623
|
+
d: "M766.469,198.259c-2.928-3.288,0.552-7.111,4.376-6.256c0.144-3.455-1.264-10.943,4.264-10.814 c5.495-0.137,4.071,7.391,4.216,10.814c2.76-0.176,7.287-0.248,7.199,3.656c0.104,3.903-4.408,3.879-7.199,3.688 c0.376,1.399-0.96,21.118,0.936,21.462c2.191,1.304,6.008,0.8,5.855,4.472c-0.488,6.151-9.679,3.392-12.143,0.655 c-5.399-3.999-2.4-20.894-3.128-26.589C769.373,199.362,767.533,199.53,766.469,198.259z"
|
|
31624
|
+
}), h$2("path", {
|
|
31625
|
+
fill: "#2B2B2B",
|
|
31626
|
+
d: "M810.137,214.345v-18.67c-0.151-3.728,4.872-5.76,7.384-3.048c4.903,6.264-5.04,29.693,8.479,28.941 c4.736,0,7.106-2.399,7.111-7.199v-18.687c-0.136-5.6,8.8-5.6,8.632,0c-0.696,7.199,2.096,23.198-3.032,29.077 C830.015,234.063,808.169,229.567,810.137,214.345z"
|
|
31627
|
+
}), h$2("path", {
|
|
31628
|
+
fill: "#2B2B2B",
|
|
31629
|
+
d: "M531.155,40.865c45.052,0.8,45.044,67.729,0,68.489C486.104,108.579,486.111,41.665,531.155,40.865z"
|
|
31630
|
+
}), h$2("path", {
|
|
31631
|
+
fill: "#2B2B2B",
|
|
31632
|
+
d: "M444.163,148.855c45.052,0.8,45.044,67.705,0,68.465C399.111,216.545,399.119,149.607,444.163,148.855z"
|
|
31633
|
+
}), h$2("path", {
|
|
31634
|
+
fill: "#2B2B2B",
|
|
31635
|
+
d: "M529.835,248.934c39.845,0.672,39.845,59.898,0,60.57C489.982,308.84,489.991,249.646,529.835,248.934z"
|
|
31636
|
+
}), h$2("path", {
|
|
31637
|
+
fill: "#2B2B2B",
|
|
31638
|
+
d: "M465.257,230.447c31.197,0.528,31.197,46.916,0,47.443C434.084,277.371,434.092,230.991,465.257,230.447z"
|
|
31639
|
+
}), h$2("path", {
|
|
31640
|
+
fill: "#2B2B2B",
|
|
31641
|
+
d: "M511.389,130.457c29.47,0.504,29.461,44.268,0,44.796C481.911,174.677,481.92,130.921,511.389,130.457z"
|
|
31642
|
+
}), h$2("path", {
|
|
31643
|
+
fill: "#2B2B2B",
|
|
31644
|
+
d: "M582.566,101.42c29.469,0.504,29.461,44.308,0,44.795C553.097,145.72,553.104,101.915,582.566,101.42z"
|
|
31645
|
+
}), h$2("path", {
|
|
31646
|
+
fill: "#2B2B2B",
|
|
31647
|
+
d: "M637.921,93.524c29.445,0.504,29.445,44.292,0,44.796C608.628,138.176,608.628,93.66,637.921,93.524z"
|
|
31648
|
+
}), h$2("path", {
|
|
31649
|
+
fill: "#2B2B2B",
|
|
31650
|
+
d: "M656.367,146.224c26.006,0.447,26.006,39.052,0,39.492C630.346,185.268,630.346,146.671,656.367,146.224z"
|
|
31651
|
+
}), h$2("path", {
|
|
31652
|
+
fill: "#2B2B2B",
|
|
31653
|
+
d: "M593.109,264.732c22.525,0.384,22.518,33.86,0,34.236C570.583,298.585,570.583,265.116,593.109,264.732z"
|
|
31654
|
+
}), h$2("path", {
|
|
31655
|
+
fill: "#2B2B2B",
|
|
31656
|
+
d: "M651.096,198.866c22.534,0.384,22.534,33.854,0,34.229C628.554,232.711,628.562,199.25,651.096,198.866z"
|
|
31657
|
+
}), h$2("path", {
|
|
31658
|
+
fill: "#2B2B2B",
|
|
31659
|
+
d: "M437.563,101.42c22.51,0.384,22.51,33.893,0,34.276C415.166,135.593,415.166,101.516,437.563,101.42z"
|
|
31660
|
+
}), h$2("path", {
|
|
31661
|
+
fill: "#2B2B2B",
|
|
31662
|
+
d: "M603.66,56.655c22.526,0.385,22.518,33.854,0,34.237C581.254,90.788,581.254,56.752,603.66,56.655z"
|
|
31663
|
+
}), h$2("path", {
|
|
31664
|
+
fill: "#2B2B2B",
|
|
31665
|
+
d: "M500.838,196.251c22.534,0.384,22.534,33.828,0,34.213C478.296,230.071,478.304,196.627,500.838,196.251z"
|
|
31666
|
+
}), h$2("path", {
|
|
31667
|
+
fill: "#2B2B2B",
|
|
31668
|
+
d: "M632.642,240.99c19.046,0.328,19.046,28.678,0,29.006C613.604,269.644,613.604,241.318,632.642,240.99z"
|
|
31669
|
+
}), h$2("path", {
|
|
31670
|
+
fill: "#2B2B2B",
|
|
31671
|
+
d: "M474.464,64.567c19.062,0.327,19.062,28.637,0,28.957C455.506,93.437,455.506,64.655,474.464,64.567z"
|
|
31672
|
+
}), h$2("path", {
|
|
31673
|
+
fill: "#2B2B2B",
|
|
31674
|
+
d: "M479.744,104.06c19.054,0.319,19.054,28.677,0,28.997C460.762,132.969,460.762,104.14,479.744,104.06z"
|
|
31675
|
+
}), h$2("rect", {
|
|
31676
|
+
x: "474.385",
|
|
31677
|
+
y: "78.803",
|
|
31678
|
+
transform: "matrix(-0.9944 0.1058 -0.1058 -0.9944 961.3718 138.2227)",
|
|
31679
|
+
fill: "#2B2B2B",
|
|
31680
|
+
width: "5.272",
|
|
31681
|
+
height: "31.605"
|
|
31682
|
+
}), h$2("rect", {
|
|
31683
|
+
x: "437.48",
|
|
31684
|
+
y: "126.203",
|
|
31685
|
+
transform: "matrix(-0.9944 0.1058 -0.1058 -0.9944 892.7841 236.662)",
|
|
31686
|
+
fill: "#2B2B2B",
|
|
31687
|
+
width: "5.272",
|
|
31688
|
+
height: "31.606"
|
|
31689
|
+
}), h$2("rect", {
|
|
31690
|
+
x: "490.251",
|
|
31691
|
+
y: "181.519",
|
|
31692
|
+
transform: "matrix(-0.0772 0.997 -0.997 -0.0772 728.7499 -306.1609)",
|
|
31693
|
+
fill: "#2B2B2B",
|
|
31694
|
+
width: "31.605",
|
|
31695
|
+
height: "5.272"
|
|
31696
|
+
}), h$2("rect", {
|
|
31697
|
+
x: "501.348",
|
|
31698
|
+
y: "116.825",
|
|
31699
|
+
transform: "matrix(-0.349 0.9371 -0.9371 -0.349 809.6375 -323.5298)",
|
|
31700
|
+
fill: "#2B2B2B",
|
|
31701
|
+
width: "31.702",
|
|
31702
|
+
height: "5.288"
|
|
31703
|
+
}), h$2("polygon", {
|
|
31704
|
+
fill: "#2B2B2B",
|
|
31705
|
+
points: "500.006,156.966 469.969,166.869 468.312,161.87 498.35,151.959 500.006,156.966 \t\t"
|
|
31706
|
+
}), h$2("polygon", {
|
|
31707
|
+
fill: "#2B2B2B",
|
|
31708
|
+
points: "474.744,120.346 443.115,121.018 443.003,115.754 474.632,115.082 474.744,120.346 \t\t"
|
|
31709
|
+
}), h$2("polygon", {
|
|
31710
|
+
fill: "#2B2B2B",
|
|
31711
|
+
points: "591.813,71.87 560.265,72.462 560.152,67.782 591.701,67.183 591.813,71.87 \t\t"
|
|
31712
|
+
}), h$2("polygon", {
|
|
31713
|
+
fill: "#2B2B2B",
|
|
31714
|
+
points: "499.438,223.992 476.472,245.614 473.248,242.223 496.206,220.601 499.438,223.992 \t\t"
|
|
31715
|
+
}), h$2("polygon", {
|
|
31716
|
+
fill: "#2B2B2B",
|
|
31717
|
+
points: "625.714,262.309 601.301,282.282 598.316,278.667 622.73,258.701 625.714,262.309 \t\t"
|
|
31718
|
+
}), h$2("polygon", {
|
|
31719
|
+
fill: "#2B2B2B",
|
|
31720
|
+
points: "587.094,241.286 595.189,271.748 590.669,272.972 582.566,242.511 \t\t"
|
|
31721
|
+
}), h$2("polygon", {
|
|
31722
|
+
fill: "#2B2B2B",
|
|
31723
|
+
points: "643.904,215.889 612.739,210.985 613.451,206.354 644.616,211.257 643.904,215.889 \t\t"
|
|
31724
|
+
}), h$2("polygon", {
|
|
31725
|
+
fill: "#2B2B2B",
|
|
31726
|
+
points: "642.568,172.725 612.188,181.22 610.907,176.717 641.289,168.222 642.568,172.725 \t\t"
|
|
31727
|
+
}), h$2("polygon", {
|
|
31728
|
+
fill: "#2B2B2B",
|
|
31729
|
+
points: "583.342,137.208 579.742,168.518 575.079,168.005 578.679,136.696 \t\t"
|
|
31730
|
+
}), h$2("polygon", {
|
|
31731
|
+
fill: "#2B2B2B",
|
|
31732
|
+
points: "545.922,177.221 519.204,160.454 521.676,156.479 548.394,173.245 545.922,177.221 \t\t"
|
|
31733
|
+
}), h$2("polygon", {
|
|
31734
|
+
fill: "#2B2B2B",
|
|
31735
|
+
points: "567.008,111.379 540.29,94.612 542.762,90.637 569.479,107.403 567.008,111.379 \t\t"
|
|
31736
|
+
}), h$2("polygon", {
|
|
31737
|
+
fill: "#2B2B2B",
|
|
31738
|
+
points: "584.438,112.122 594.733,82.325 599.173,83.829 588.878,113.626 584.438,112.122 \t\t"
|
|
31739
|
+
}), h$2("polygon", {
|
|
31740
|
+
fill: "#2B2B2B",
|
|
31741
|
+
points: "528.579,261.717 543.498,233.943 547.642,236.143 532.715,263.908 528.579,261.717 \t\t"
|
|
31742
|
+
}), h$2("polygon", {
|
|
31743
|
+
fill: "#2B2B2B",
|
|
31744
|
+
points: "633.905,106.683 609.972,86.141 613.012,82.573 636.945,103.115 633.905,106.683 \t\t"
|
|
31745
|
+
}), h$2("path", {
|
|
31746
|
+
fill: "#FFE535",
|
|
31747
|
+
d: "M575.951,156.759c62.394,1.063,62.394,93.759,0,94.807C513.604,250.502,513.62,157.814,575.951,156.759z"
|
|
31748
|
+
}))));
|
|
31749
|
+
}
|
|
31750
|
+
|
|
31751
|
+
/* eslint max-len: 0 */
|
|
31752
|
+
function SadPenguin() {
|
|
31753
|
+
return h$2("svg", {
|
|
31754
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
31755
|
+
id: "svg2",
|
|
31756
|
+
viewBox: "0 0 3000 3000",
|
|
31757
|
+
version: "1.1"
|
|
31758
|
+
}, h$2("defs", {
|
|
31759
|
+
id: "defs34"
|
|
31760
|
+
}), h$2("g", {
|
|
31761
|
+
id: "g3040",
|
|
31762
|
+
transform: "translate(0,-4.4063)"
|
|
31763
|
+
}, h$2("path", {
|
|
31764
|
+
id: "path7",
|
|
31765
|
+
fill: "#fff",
|
|
31766
|
+
d: "m1520.9 2457.6c-502.69 0-910.31 244.27-915.91 546.77h1832.2c-5.5781-302.51-413.58-546.77-916.24-546.77z"
|
|
31767
|
+
}), h$2("path", {
|
|
31768
|
+
id: "path9",
|
|
31769
|
+
fill: "#fff",
|
|
31770
|
+
d: "m2417.1 1351.8c0 305.39-410.34 552.96-916.5 552.96s-916.48-247.57-916.48-552.96 410.32-552.96 916.48-552.96 916.5 247.57 916.5 552.96z"
|
|
31771
|
+
}), h$2("path", {
|
|
31772
|
+
id: "path11",
|
|
31773
|
+
d: "m1813.5 897.94c14.133 1.2188 28.195 3.9609 42.844 7.7109 148.59 37.992 275.55 201.91 310.92 401.37 10.383 58.641 11.273 147.89 1.8281 200.67-23.976 133.95-93.328 232.1-190.05 269.53-39.609 15.328-98.062 19.476-140.27 9.8906-100.69-22.875-200.65-111.8-261.47-232.92-29.578-58.875-58.805-155.11-58.594-192.61-4.4063-27.047-4.8984-30.07-7.3359-69.211-3.7266-13.898 1.8984-87.75 13.547-138.07 25.453-109.66 85.148-193.43 165.16-232.17 40.547-19.641 81.047-27.773 123.42-24.188z"
|
|
31774
|
+
}), h$2("path", {
|
|
31775
|
+
id: "path13",
|
|
31776
|
+
d: "m1435.5 433.59c-191.91 3.1172-378.8 60.586-526.97 163.34-211.9 146.93-352.12 372.73-411.26 663.21-2.7188 13.359-6.1875 31.734-8.0625 40.641-1.875 8.9062-5.7188 31.594-8.0625 50.531-2.3438 18.961-6.3516 50.273-9.1406 69.211-6.5625 44.484-6.6094 206.84 0 247.2 20.203 123.49 42.117 213.66 88.617 364.76 14.133 45.914 17.414 56.93 24.891 84.961 2.0859 7.8047 9.6562 35.156 16.5 60.797 44.016 164.95 47.859 278.65 13.898 386.34-24.867 78.844-64.172 139.27-141.73 216.42-55.57 55.453-118.34 139.12-159.28 223.41h374.25c9.7734-22.594 17.602-46.219 26.367-63.727 56.18-112.08 113.13-190.88 193.73-268.08 106.08-101.62 225.54-162.59 368.04-188.23 39.141-7.0547 161.62-8.2969 200.32-1.8281 210.96 35.226 391.27 147.75 535.41 333.98 42.516 54.938 80.789 119.58 115.34 187.88h787.73c-26.555-57.562-71.719-129.66-126.23-207.28-29.93-42.633-69.656-106.95-91.289-132.56-68.719-81.445-126.59-120.8-168.21-175.9-86.508-79.945-76.219-96.539-74.227-208.99 36-179.16 46.289-513.47 36-782.72 3.7969-78.609-0.4922-119.48-4.5-161.02-14.227-146.77-42.07-234.87-99.609-349.73-45.586-90.961-102.96-169.41-178.36-244.62-84.328-84.141-166.08-142.57-275.74-196.66-133.62-65.906-260.79-99.375-416.02-109.5-27.539-1.7812-54.984-2.2734-82.406-1.8281z"
|
|
31777
|
+
}), h$2("path", {
|
|
31778
|
+
id: "path15",
|
|
31779
|
+
fill: "#333",
|
|
31780
|
+
d: "m1521.2 567.63s-51.422 1268.6-19.031 1801.8c178.76 29.836 260.58 70.336 438.7 215.7 93.234 76.055 266.2 272.65 332.91 419.32h502.43c-46.8-72.3-139.5-212-161.8-238.4-28.476-33.727-67.008-78.984-85.336-100.71-58.219-69-145.27-167.18-180.54-213.87-37.336-36.891-33.586-62.859-32.226-112.43 3.3515-132.66 16.312-651.63 26.742-868.29 3.211-66.609 3.3985-93.703 0-128.91-12.047-124.36-35.836-210.28-84.609-307.62-38.602-77.086-86.977-143.53-150.87-207.28-71.461-71.297-140.72-120.8-233.65-166.62-113.2-55.828-352.66-92.648-352.66-92.648z"
|
|
31781
|
+
}), h$2("path", {
|
|
31782
|
+
id: "path17",
|
|
31783
|
+
fill: "#ec0",
|
|
31784
|
+
d: "m1427.1 1764.9-13.922 14.812c-27.703 29.344-87.352 49.359-179.11 59.906-100.76 11.602-228.89 5.3204-290.3-14.18-30.352-9.6329-38.578-7.9922-45.844 9.4921-22.898 55.219 24.984 159.73 137.55 300.3 71.391 89.156 177.52 196.34 243.94 246.35 25.852 19.477 57.375 34.852 86.766 42.305 23.906 6.0703 165.52 4.875 198.96-1.6406 11.156-2.1797 31.922-6.1172 46.102-8.8829 77.086-14.883 142.05-52.219 255.87-146.79 102.8-85.43 228.87-226.08 262.55-292.95 24.633-48.891 34.805-122.58 20.016-145.15-8.4844-12.938-12.047-13.148-44.578-2.789-31.547 10.031-139.05 20.25-211.9 20.25-30.164 0-78.844-2.8125-108.3-6.3282-85.758-10.195-135.09-27.773-164.02-58.5l-15.188-16.219zm36.867 32.414c22.336 0 34.852 29.086 26.203 61.172-14.812 55.031-50.695 81.656-72.562 53.836-23.977-30.469 10.078-115.01 46.359-115.01zm84.844 0c24.914 0 54.844 47.391 54.844 86.766 0 33.938-25.781 49.57-50.156 30.398-20.086-15.797-37.758-62.555-33.047-87.656 3.1875-17.062 15.188-29.508 28.359-29.508z",
|
|
31785
|
+
style: "fill:#fbc93d;fill-opacity:1"
|
|
31786
|
+
}), h$2("path", {
|
|
31787
|
+
id: "path19",
|
|
31788
|
+
fill: "#fff",
|
|
31789
|
+
d: "m1214 1077.4c35.18-3 68.812 3.7734 102.49 20.062 66.375 32.133 115.8 101.77 136.88 192.54 14.274 71.226 9.3281 172.12 3.6328 189.16-7.6172 58.078-40.664 141.38-77.555 195.59-50.297 73.945-120.91 126.91-188.27 141.12-60.047 12.656-116.41 0.2812-164.84-36.188-72.891-54.914-113.13-153.02-113.16-275.25-0.0234-198.47 115.85-382.52 264.91-420.66 12.188-3.1172 24.164-5.3906 35.906-6.375z"
|
|
31790
|
+
}), h$2("path", {
|
|
31791
|
+
id: "path21",
|
|
31792
|
+
fill: "#fff",
|
|
31793
|
+
d: "m1794.7 1077.4c-35.203-3-68.836 3.7734-102.52 20.062-66.375 32.133-115.8 101.77-136.85 192.54-14.273 71.226-9.3281 172.12-3.6562 189.16 7.6406 58.078 40.688 141.38 77.555 195.59 50.297 73.945 120.94 126.91 188.27 141.12 60.07 12.656 116.44 0.2812 164.86-36.188 72.867-54.914 113.11-153.02 113.13-275.25 0.047-198.47-115.85-382.52-264.91-420.66-12.164-3.1172-24.164-5.3906-35.883-6.375z"
|
|
31794
|
+
}), h$2("path", {
|
|
31795
|
+
id: "path23",
|
|
31796
|
+
d: "m1418.5 1543.2c0 100.97-75.188 182.81-167.91 182.81-92.742 0-167.91-81.844-167.91-182.81 0-100.99 75.164-182.84 167.91-182.84 92.719 0 167.91 81.844 167.91 182.84z"
|
|
31797
|
+
}), h$2("path", {
|
|
31798
|
+
id: "path25",
|
|
31799
|
+
fill: "#fff",
|
|
31800
|
+
d: "m1379.2 1471.6c0 44.25-32.953 80.109-73.57 80.109-40.641 0-73.57-35.859-73.57-80.109s32.93-80.109 73.57-80.109c40.617 0 73.57 35.859 73.57 80.109z"
|
|
31801
|
+
}), h$2("path", {
|
|
31802
|
+
id: "path27",
|
|
31803
|
+
d: "m1922.2 1534.7c0 100.97-75.164 182.84-167.91 182.84-92.742 0-167.91-81.867-167.91-182.84s75.164-182.84 167.91-182.84c92.742 0 167.91 81.867 167.91 182.84z"
|
|
31804
|
+
}), h$2("path", {
|
|
31805
|
+
id: "path29",
|
|
31806
|
+
fill: "#fff",
|
|
31807
|
+
d: "m1885.7 1461.9c0 44.227-32.93 80.109-73.57 80.109-40.641 0-73.57-35.883-73.57-80.109 0-44.25 32.93-80.133 73.57-80.133 40.641 0 73.57 35.883 73.57 80.133z"
|
|
31808
|
+
}), h$2("path", {
|
|
31809
|
+
id: "path31",
|
|
31810
|
+
fill: "#333",
|
|
31811
|
+
d: "m988.2 966.73c37.4-23.23 78.6-34.74 125.2-35.68 91.898-1.8516 186.16 47.531 260.86 136.43 56.133 71.016 107.7 185.86 111.02 208.03-313.95 47.18-354.94 46.289-589.66 335.53-112.24-220.38-87.633-490.31 56.367-616.95 11.742-10.336 23.766-19.641 36.234-27.375z"
|
|
31812
|
+
}), h$2("path", {
|
|
31813
|
+
id: "path33",
|
|
31814
|
+
d: "m2007.8 971.6c-37.383-23.227-78.562-34.734-125.18-35.672-91.875-1.8516-186.16 47.531-260.86 136.43-56.109 71.016-107.67 185.86-111.02 208.03 313.95 47.18 354.94 46.289 589.66 335.53 112.27-220.41 87.633-490.31-56.344-616.95-11.766-10.336-23.789-19.641-36.258-27.375z"
|
|
31815
|
+
}), h$2("path", {
|
|
31816
|
+
id: "path35",
|
|
31817
|
+
d: "m1959.2 2230.3c0 109.1-44.297 197.67-98.836 197.67-54.562 0-98.836-88.57-98.836-197.67 0-109.12 81.562-234.98 102.56-466.22 4.1953 233.11 95.109 357.09 95.109 466.22z",
|
|
31818
|
+
stroke: "#0ff",
|
|
31819
|
+
fill: "#0ff"
|
|
31820
|
+
}), h$2("path", {
|
|
31821
|
+
id: "path37",
|
|
31822
|
+
fill: "#fff",
|
|
31823
|
+
d: "m1929.1 2168.9c0 50.508-21.07 98.273-46.336 98.273s-45.75-40.992-45.75-91.5c0-50.531 34.945-99.75 44.648-206.79 24.562 133.34 48 137.62 47.438 200.02z"
|
|
31824
|
+
}), h$2("path", {
|
|
31825
|
+
id: "path39",
|
|
31826
|
+
fill: "#0ff",
|
|
31827
|
+
d: "m1629.2 1674.7c50.297 73.945 120.94 126.91 188.27 141.12 60.07 12.656 116.44 0.2812 164.86-36.188 36.422-27.445 64.711-65.719 83.883-112.38-111.77 63.492-260.32 60.797-437.02 7.4532z"
|
|
31828
|
+
})));
|
|
31829
|
+
} // Original from https://openclipart.org/detail/178504/sad-penguin
|
|
31830
|
+
|
|
31831
|
+
/*
|
|
31832
|
+
<metadata
|
|
31833
|
+
id="metadata29">
|
|
31834
|
+
<rdf:RDF>
|
|
31835
|
+
<cc:Work>
|
|
31836
|
+
<dc:format>image/svg+xml</dc:format>
|
|
31837
|
+
<dc:type
|
|
31838
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
31839
|
+
<cc:license
|
|
31840
|
+
rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
|
|
31841
|
+
<dc:publisher>
|
|
31842
|
+
<cc:Agent
|
|
31843
|
+
rdf:about="http://openclipart.org/">
|
|
31844
|
+
<dc:title>Openclipart</dc:title>
|
|
31845
|
+
</cc:Agent>
|
|
31846
|
+
</dc:publisher>
|
|
31847
|
+
<dc:title>sad penguin</dc:title>
|
|
31848
|
+
<dc:date>2013-05-23T02:08:03</dc:date>
|
|
31849
|
+
<dc:description>A penguin in an outfit reminds us of tux from Linux fame.</dc:description>
|
|
31850
|
+
<dc:source>https://openclipart.org/detail/178504/sad-by-bartm-178504</dc:source>
|
|
31851
|
+
<dc:creator>
|
|
31852
|
+
<cc:Agent>
|
|
31853
|
+
<dc:title>BartM</dc:title>
|
|
31854
|
+
</cc:Agent>
|
|
31855
|
+
</dc:creator>
|
|
31856
|
+
<dc:subject>
|
|
31857
|
+
<rdf:Bag>
|
|
31858
|
+
<rdf:li>animal</rdf:li>
|
|
31859
|
+
<rdf:li>color</rdf:li>
|
|
31860
|
+
<rdf:li>linux</rdf:li>
|
|
31861
|
+
<rdf:li>penguin</rdf:li>
|
|
31862
|
+
<rdf:li>pet</rdf:li>
|
|
31863
|
+
<rdf:li>sad</rdf:li>
|
|
31864
|
+
<rdf:li>tux</rdf:li>
|
|
31865
|
+
</rdf:Bag>
|
|
31866
|
+
</dc:subject>
|
|
31867
|
+
</cc:Work>
|
|
31868
|
+
<cc:License
|
|
31869
|
+
rdf:about="http://creativecommons.org/licenses/publicdomain/">
|
|
31870
|
+
<cc:permits
|
|
31871
|
+
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
|
31872
|
+
<cc:permits
|
|
31873
|
+
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
|
31874
|
+
<cc:permits
|
|
31875
|
+
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
|
31876
|
+
</cc:License>
|
|
31877
|
+
</rdf:RDF>
|
|
31878
|
+
</metadata>
|
|
31879
|
+
*/
|
|
31880
|
+
|
|
31881
|
+
/* eslint max-len: 0 */
|
|
31882
|
+
function FlowerPenguin() {
|
|
31883
|
+
return h$2("svg", {
|
|
31884
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
31885
|
+
viewBox: "0 0 3000 3000"
|
|
31886
|
+
}, h$2("path", {
|
|
31887
|
+
fill: "#fff",
|
|
31888
|
+
d: "M1520.9 2453.194c-502.69 0-910.31 244.27-915.91 546.77h1832.2c-5.578-302.51-413.58-546.77-916.24-546.77zM2417.1 1347.394c0 305.39-410.34 552.96-916.5 552.96s-916.48-247.57-916.48-552.96 410.32-552.96 916.48-552.96 916.5 247.57 916.5 552.96z"
|
|
31889
|
+
}), h$2("path", {
|
|
31890
|
+
d: "M1813.5 893.534c14.133 1.219 28.195 3.96 42.844 7.71 148.59 37.993 275.55 201.91 310.92 401.37 10.383 58.642 11.273 147.89 1.828 200.67-23.976 133.95-93.328 232.1-190.05 269.53-39.609 15.329-98.062 19.477-140.27 9.891-100.69-22.875-200.65-111.8-261.47-232.92-29.578-58.875-58.805-155.11-58.594-192.61-4.406-27.047-4.898-30.07-7.336-69.21-3.726-13.899 1.899-87.75 13.547-138.07 25.453-109.66 85.148-193.43 165.16-232.17 40.547-19.642 81.047-27.774 123.42-24.189z"
|
|
31891
|
+
}), h$2("path", {
|
|
31892
|
+
d: "M1435.5 429.184c-191.91 3.117-378.8 60.586-526.97 163.34-211.9 146.93-352.12 372.73-411.26 663.21-2.719 13.359-6.188 31.734-8.063 40.64-1.875 8.907-5.718 31.595-8.062 50.532-2.344 18.96-6.352 50.273-9.14 69.21-6.563 44.485-6.61 206.84 0 247.2 20.202 123.49 42.116 213.66 88.616 364.76 14.133 45.915 17.414 56.93 24.891 84.962 2.086 7.804 9.657 35.156 16.5 60.797 44.016 164.95 47.86 278.65 13.898 386.34-24.867 78.844-64.172 139.27-141.73 216.42-55.57 55.453-118.34 139.12-159.28 223.41h374.25c9.774-22.594 17.602-46.22 26.367-63.727 56.18-112.1 113.13-190.88 193.73-268.08 106.08-101.62 225.54-162.59 368.04-188.23 39.141-7.055 161.62-8.297 200.32-1.828 210.96 35.226 391.27 147.75 535.41 333.98 42.516 54.938 80.79 119.58 115.34 187.88h787.73c-26.555-57.562-71.719-129.66-126.23-207.28-29.93-42.633-69.656-106.95-91.289-132.56-68.719-81.445-126.59-120.8-168.21-175.9-86.508-79.945-76.219-96.54-74.227-208.99 36-179.16 46.29-513.47 36-782.72 3.797-78.61-.492-119.48-4.5-161.02-14.227-146.77-42.07-234.87-99.609-349.73-45.586-90.961-102.96-169.41-178.36-244.62-84.328-84.141-166.08-142.57-275.74-196.66-133.62-65.906-260.79-99.375-416.02-109.5-27.539-1.782-54.984-2.274-82.406-1.829zm-256.3 464.35c42.375-3.586 82.875 4.547 123.42 24.188 79.922 38.672 139.45 122.51 164.79 231.8 17.203 85.758 11.25 207.26 4.406 227.79-9.187 69.914-48.984 170.2-93.398 235.48-60.562 89.039-145.59 152.84-226.66 169.92-72.328 15.258-140.2.328-198.49-43.57-87.75-66.117-136.2-184.27-136.24-331.43-.023-238.97 139.5-460.57 318.98-506.46 14.648-3.75 29.086-6.492 43.195-7.711z"
|
|
31893
|
+
}), h$2("path", {
|
|
31894
|
+
fill: "#333",
|
|
31895
|
+
d: "M1521.2 563.224s-51.422 1268.6-19.031 1801.8c178.76 29.836 260.58 70.336 438.7 215.7 93.234 76.055 266.2 272.65 332.91 419.32h502.43c-46.8-72.3-139.5-212-161.8-238.4-28.476-33.727-67.008-78.984-85.336-100.71-58.219-69-145.27-167.18-180.54-213.87-37.336-36.891-33.586-62.86-32.226-112.43 3.352-132.66 16.312-651.63 26.742-868.29 3.211-66.61 3.398-93.703 0-128.91-12.047-124.36-35.836-210.28-84.609-307.62-38.602-77.086-86.977-143.53-150.87-207.28-71.461-71.297-140.72-120.8-233.65-166.62-113.2-55.828-352.66-92.648-352.66-92.648z"
|
|
31896
|
+
}), h$2("path", {
|
|
31897
|
+
fill: "#fff",
|
|
31898
|
+
d: "M1878.5 1782.294c-81.539-17.203-167.11-81.305-228.02-170.86-44.672-65.648-84.609-166.41-93.844-236.72-6.89-20.648-12.984-142.92 4.289-229.17 25.5-109.92 85.617-194.41 165.98-233.32 54.375-26.297 108.38-31.664 167.34-16.57 416.88 90.492 431.16 973.97-15.75 886.64z"
|
|
31899
|
+
}), h$2("path", {
|
|
31900
|
+
fill: "#ec0",
|
|
31901
|
+
d: "m1427.1 1764.9-13.922 14.812c-27.703 29.344-87.352 49.359-179.11 59.906-100.76 11.602-228.89 5.32-290.3-14.18-30.352-9.633-38.578-7.992-45.844 9.492-22.898 55.22 24.984 159.73 137.55 300.3 71.391 89.156 177.52 196.34 243.94 246.35 25.852 19.477 57.375 34.852 86.766 42.305 23.906 6.07 165.52 4.875 198.96-1.64 11.156-2.18 31.922-6.118 46.102-8.883 77.086-14.883 142.05-52.22 255.87-146.79 102.8-85.43 228.87-226.08 262.55-292.95 24.633-48.891 34.805-122.58 20.016-145.15-8.484-12.938-12.047-13.148-44.578-2.79-31.547 10.032-139.05 20.25-211.9 20.25-30.164 0-78.844-2.812-108.3-6.328-85.758-10.195-135.09-27.773-164.02-58.5l-15.188-16.219zm36.867 32.414c22.336 0 34.852 29.086 26.203 61.172-14.812 55.031-50.695 81.656-72.562 53.836-23.977-30.469 10.078-115.01 46.359-115.01zm84.844 0c24.914 0 54.844 47.391 54.844 86.766 0 33.938-25.781 49.57-50.156 30.398-20.086-15.797-37.758-62.555-33.047-87.656 3.188-17.062 15.188-29.508 28.359-29.508z",
|
|
31902
|
+
style: {
|
|
31903
|
+
fill: "#fbc93d",
|
|
31904
|
+
fillOpacity: 1
|
|
31905
|
+
},
|
|
31906
|
+
transform: "translate(0 -4.406)"
|
|
31907
|
+
}), h$2("path", {
|
|
31908
|
+
d: "M1400.6 1423.694c0 159.16-118.5 288.19-264.66 288.19-146.18 0-264.66-129.02-264.66-288.19 0-159.16 118.48-288.19 264.66-288.19 146.16 0 264.66 129.02 264.66 288.19z"
|
|
31909
|
+
}), h$2("path", {
|
|
31910
|
+
fill: "#fff",
|
|
31911
|
+
d: "M1338.7 1310.794c0 69.75-51.938 126.28-115.97 126.28-64.055 0-115.97-56.531-115.97-126.28 0-69.75 51.914-126.28 115.97-126.28 64.031 0 115.97 56.53 115.97 126.28z"
|
|
31912
|
+
}), h$2("path", {
|
|
31913
|
+
d: "M2158 1423.694c0 159.16-118.48 288.19-264.66 288.19-146.16 0-264.66-129.02-264.66-288.19 0-159.16 118.5-288.19 264.66-288.19 146.18 0 264.66 129.02 264.66 288.19z"
|
|
31914
|
+
}), h$2("path", {
|
|
31915
|
+
fill: "#fff",
|
|
31916
|
+
d: "M2096.1 1310.794c0 69.75-51.914 126.28-115.97 126.28-64.055 0-115.97-56.531-115.97-126.28 0-69.75 51.914-126.28 115.97-126.28 64.055 0 115.97 56.53 115.97 126.28z"
|
|
31917
|
+
}), h$2("path", {
|
|
31918
|
+
d: "M1846 841.894c-46.476-3.961-90.914 4.992-135.4 26.53-87.703 42.446-153.02 134.41-180.82 254.34-18.867 94.103-12.328 227.39-4.828 249.94 319.31-106.43 357.59-127.01 718.45 33.353.047-262.2-153.05-505.36-349.97-555.73-16.102-4.102-31.922-7.125-47.438-8.438z"
|
|
31919
|
+
}), h$2("path", {
|
|
31920
|
+
strokeLinejoin: "round",
|
|
31921
|
+
d: "M2354.1 863.624c-553.64-380.81 28.008-361.78-606.26-139.87-341.25 119.39 46.36 646.29 149.18 299.67 191.09-644.2 352.71-85.148-54.328-619.8-219-287.65-600.33 243.8-238.92 234.47 671.74-17.344 189.98 309.14 572.7-243.19 205.9-297.16-417.4-495.61-296.84-154.78 224.06 633.52-235.31 276.23 408.26 469.52 346.27 103.99 342.37-550.12 55.476-330.14-533.25 408.87-335.41-138.42-320.37 533.37 8.11 361.45 628.99 155.63 331.1-49.242z",
|
|
31922
|
+
stroke: "#f57f05",
|
|
31923
|
+
strokeWidth: 51.801,
|
|
31924
|
+
fill: "#fa9705"
|
|
31925
|
+
}), h$2("path", {
|
|
31926
|
+
strokeLinejoin: "round",
|
|
31927
|
+
d: "M2119.5 611.644c0 62.672-50.812 113.48-113.48 113.48-62.672 0-113.48-50.813-113.48-113.48 0-62.672 50.813-113.48 113.48-113.48 62.672 0 113.48 50.812 113.48 113.48z",
|
|
31928
|
+
stroke: "#f57f05",
|
|
31929
|
+
strokeWidth: 51.801,
|
|
31930
|
+
fill: "#fadc05"
|
|
31931
|
+
}), h$2("path", {
|
|
31932
|
+
fill: "#333",
|
|
31933
|
+
d: "M1154 841.894c46.476-3.961 90.914 4.992 135.4 26.53 87.703 42.446 153.02 134.41 180.82 254.34 18.867 94.103 12.328 227.39 4.828 249.94-319.31-106.43-357.59-127.01-718.45 33.353-.047-262.2 153.05-505.36 349.97-555.73 16.102-4.102 31.922-7.125 47.438-8.438z"
|
|
31934
|
+
}));
|
|
31935
|
+
} // Original from https://openclipart.org/detail/178473/flower-by-bartm-178473
|
|
31936
|
+
|
|
31937
|
+
/*
|
|
31938
|
+
<metadata
|
|
31939
|
+
>
|
|
31940
|
+
<rdf:RDF
|
|
31941
|
+
>
|
|
31942
|
+
<cc:Work
|
|
31943
|
+
>
|
|
31944
|
+
<dc:format
|
|
31945
|
+
>image/svg+xml</dc:format
|
|
31946
|
+
>
|
|
31947
|
+
<dc:type
|
|
31948
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage"
|
|
31949
|
+
/>
|
|
31950
|
+
<cc:license
|
|
31951
|
+
rdf:resource="http://creativecommons.org/licenses/publicdomain/"
|
|
31952
|
+
/>
|
|
31953
|
+
<dc:publisher
|
|
31954
|
+
>
|
|
31955
|
+
<cc:Agent
|
|
31956
|
+
rdf:about="http://openclipart.org/"
|
|
31957
|
+
>
|
|
31958
|
+
<dc:title
|
|
31959
|
+
>Openclipart</dc:title
|
|
31960
|
+
>
|
|
31961
|
+
</cc:Agent
|
|
31962
|
+
>
|
|
31963
|
+
</dc:publisher
|
|
31964
|
+
>
|
|
31965
|
+
<dc:title
|
|
31966
|
+
>flower penguin</dc:title
|
|
31967
|
+
>
|
|
31968
|
+
<dc:date
|
|
31969
|
+
>2013-05-23T01:59:09</dc:date
|
|
31970
|
+
>
|
|
31971
|
+
<dc:description
|
|
31972
|
+
>A penguin in an outfit reminds us of tux from Linux fame.</dc:description
|
|
31973
|
+
>
|
|
31974
|
+
<dc:source
|
|
31975
|
+
>https://openclipart.org/detail/178473/flower-by-bartm-178473</dc:source
|
|
31976
|
+
>
|
|
31977
|
+
<dc:creator
|
|
31978
|
+
>
|
|
31979
|
+
<cc:Agent
|
|
31980
|
+
>
|
|
31981
|
+
<dc:title
|
|
31982
|
+
>BartM</dc:title
|
|
31983
|
+
>
|
|
31984
|
+
</cc:Agent
|
|
31985
|
+
>
|
|
31986
|
+
</dc:creator
|
|
31987
|
+
>
|
|
31988
|
+
<dc:subject
|
|
31989
|
+
>
|
|
31990
|
+
<rdf:Bag
|
|
31991
|
+
>
|
|
31992
|
+
<rdf:li
|
|
31993
|
+
>animal</rdf:li
|
|
31994
|
+
>
|
|
31995
|
+
<rdf:li
|
|
31996
|
+
>color</rdf:li
|
|
31997
|
+
>
|
|
31998
|
+
<rdf:li
|
|
31999
|
+
>flower</rdf:li
|
|
32000
|
+
>
|
|
32001
|
+
<rdf:li
|
|
32002
|
+
>linux</rdf:li
|
|
32003
|
+
>
|
|
32004
|
+
<rdf:li
|
|
32005
|
+
>penguin</rdf:li
|
|
32006
|
+
>
|
|
32007
|
+
<rdf:li
|
|
32008
|
+
>pet</rdf:li
|
|
32009
|
+
>
|
|
32010
|
+
<rdf:li
|
|
32011
|
+
>tux</rdf:li
|
|
32012
|
+
>
|
|
32013
|
+
</rdf:Bag
|
|
32014
|
+
>
|
|
32015
|
+
</dc:subject
|
|
32016
|
+
>
|
|
32017
|
+
</cc:Work
|
|
32018
|
+
>
|
|
32019
|
+
<cc:License
|
|
32020
|
+
rdf:about="http://creativecommons.org/licenses/publicdomain/"
|
|
32021
|
+
>
|
|
32022
|
+
<cc:permits
|
|
32023
|
+
rdf:resource="http://creativecommons.org/ns#Reproduction"
|
|
32024
|
+
/>
|
|
32025
|
+
<cc:permits
|
|
32026
|
+
rdf:resource="http://creativecommons.org/ns#Distribution"
|
|
32027
|
+
/>
|
|
32028
|
+
<cc:permits
|
|
32029
|
+
rdf:resource="http://creativecommons.org/ns#DerivativeWorks"
|
|
32030
|
+
/>
|
|
32031
|
+
</cc:License
|
|
32032
|
+
>
|
|
32033
|
+
</rdf:RDF
|
|
32034
|
+
>
|
|
32035
|
+
</metadata
|
|
32036
|
+
>
|
|
32037
|
+
*/
|
|
32038
|
+
|
|
32039
|
+
/* eslint-disable no-nested-ternary */
|
|
32040
|
+
|
|
32041
|
+
/**
|
|
32042
|
+
* A component which renders the given child when the provided SubmitStatus is idle, a spinner when submitting
|
|
32043
|
+
* a success message on success and error message on error.
|
|
32044
|
+
*
|
|
32045
|
+
* @param props
|
|
32046
|
+
* @constructor
|
|
32047
|
+
*/
|
|
32048
|
+
function SubmitStatusView(props) {
|
|
32049
|
+
var children = props.children,
|
|
32050
|
+
submitStatus = props.submitStatus;
|
|
32051
|
+
|
|
32052
|
+
switch (submitStatus) {
|
|
32053
|
+
case SubmitStatus.idle:
|
|
32054
|
+
return children;
|
|
32055
|
+
|
|
32056
|
+
case SubmitStatus.submitting:
|
|
32057
|
+
return h$2("div", {
|
|
32058
|
+
className: "spinner"
|
|
32059
|
+
});
|
|
32060
|
+
|
|
32061
|
+
case SubmitStatus.success:
|
|
32062
|
+
return h$2("div", {
|
|
32063
|
+
className: "submit-success"
|
|
32064
|
+
}, h$2(FlowerPenguin, null), "Thank you!");
|
|
32065
|
+
|
|
32066
|
+
default:
|
|
32067
|
+
return h$2("div", {
|
|
32068
|
+
className: "submit-error"
|
|
32069
|
+
}, h$2(SadPenguin, null), "Error.");
|
|
32070
|
+
}
|
|
32071
|
+
}
|
|
32072
|
+
|
|
31515
32073
|
var _excluded = ["id", "badges"];
|
|
31516
32074
|
function BadgeSet(_ref) {
|
|
31517
32075
|
var id = _ref.id,
|
|
@@ -31541,7 +32099,8 @@
|
|
|
31541
32099
|
apiUrl = _getBaseProps.apiUrl;
|
|
31542
32100
|
|
|
31543
32101
|
var _useFeedbackApi = useFeedbackApi(apiUrl, props[ATTR_SOURCE_UUID], props[ATTR_TARGET_UUID], props[ATTR_TRANSACTION_ID]),
|
|
31544
|
-
sendFeedback = _useFeedbackApi.sendFeedback
|
|
32102
|
+
sendFeedback = _useFeedbackApi.sendFeedback,
|
|
32103
|
+
submitStatus = _useFeedbackApi.submitStatus;
|
|
31545
32104
|
|
|
31546
32105
|
return h$2(BaseComponent, {
|
|
31547
32106
|
style: css_248z$h
|
|
@@ -31550,7 +32109,9 @@
|
|
|
31550
32109
|
className: "badge-set-container"
|
|
31551
32110
|
}, h$2("h3", {
|
|
31552
32111
|
className: "text-left badge-text-h3 badge-text-h3-".concat(isDark ? "dark" : "light")
|
|
31553
|
-
}, id), h$2(
|
|
32112
|
+
}, id), h$2(SubmitStatusView, {
|
|
32113
|
+
submitStatus: submitStatus
|
|
32114
|
+
}, h$2("div", {
|
|
31554
32115
|
className: "badge-img-container"
|
|
31555
32116
|
}, badges.map(function (_ref2) {
|
|
31556
32117
|
var qualifier = _ref2.qualifier,
|
|
@@ -31572,7 +32133,7 @@
|
|
|
31572
32133
|
className: "badge-img",
|
|
31573
32134
|
alt: "badges"
|
|
31574
32135
|
})));
|
|
31575
|
-
})))));
|
|
32136
|
+
}))))));
|
|
31576
32137
|
}
|
|
31577
32138
|
|
|
31578
32139
|
function Badges(props) {
|
|
@@ -33142,30 +33703,22 @@
|
|
|
33142
33703
|
const FormContext = B(null);
|
|
33143
33704
|
FormContext.displayName = 'RHFContext';
|
|
33144
33705
|
|
|
33145
|
-
var css_248z$
|
|
33146
|
-
styleInject(css_248z$
|
|
33706
|
+
var css_248z$f = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.text-area {\n width: 100%;\n border-radius: 10px 10px 0 0;\n}\n.text-input-section {\n width: 100%;\n}\n.text-input-form {\n display: flex;\n flex-direction: column;\n padding: 1rem 2.5rem 2rem;\n justify-content: center;\n align-items: center;\n width: 100vw;\n}\n.text-input-btn {\n border-radius: 0 0 10px 10px;\n width: 80vw;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .text-area {\n width: 90%;\n }\n .text-input-form {\n padding: 2rem 2.5rem;\n width: 60vw;\n display: flex;\n justify-content: center;\n align-items: center;\n }\n .text-input-btn {\n width: 90%;\n }\n}";
|
|
33707
|
+
styleInject(css_248z$f);
|
|
33147
33708
|
|
|
33709
|
+
/* eslint-disable no-nested-ternary */
|
|
33148
33710
|
var minLength = 5;
|
|
33149
33711
|
function FeedbackTextInput(props) {
|
|
33150
|
-
|
|
33151
|
-
var _useState = p(false),
|
|
33152
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
33153
|
-
isDark = _useState2[0],
|
|
33154
|
-
setIsDark = _useState2[1]; // const [isDark, setIsDark] = useState(false);
|
|
33712
|
+
var _props$ATTR_THEME_COL;
|
|
33155
33713
|
|
|
33156
|
-
|
|
33157
|
-
if (props[ATTR_THEME_COLOR] === "dark") {
|
|
33158
|
-
setIsDark(true);
|
|
33159
|
-
} // environment conditionals
|
|
33160
|
-
|
|
33161
|
-
|
|
33162
|
-
var envCondition = isDark ? "dark" : "light";
|
|
33714
|
+
var envCondition = (_props$ATTR_THEME_COL = props[ATTR_THEME_COLOR]) !== null && _props$ATTR_THEME_COL !== void 0 ? _props$ATTR_THEME_COL : "light";
|
|
33163
33715
|
|
|
33164
33716
|
var _getBaseProps = getBaseProps(props, TAG_FEEDBACK_FORM),
|
|
33165
33717
|
apiUrl = _getBaseProps.apiUrl;
|
|
33166
33718
|
|
|
33167
33719
|
var _useFeedbackApi = useFeedbackApi(apiUrl, props[ATTR_SOURCE_UUID], props[ATTR_TARGET_UUID], props[ATTR_TRANSACTION_ID]),
|
|
33168
|
-
sendFeedback = _useFeedbackApi.sendFeedback
|
|
33720
|
+
sendFeedback = _useFeedbackApi.sendFeedback,
|
|
33721
|
+
submitStatus = _useFeedbackApi.submitStatus;
|
|
33169
33722
|
|
|
33170
33723
|
var _useForm = useForm(),
|
|
33171
33724
|
register = _useForm.register,
|
|
@@ -33177,7 +33730,7 @@
|
|
|
33177
33730
|
}
|
|
33178
33731
|
|
|
33179
33732
|
return h$2(BaseComponent, {
|
|
33180
|
-
style: css_248z$
|
|
33733
|
+
style: css_248z$f // className={`text-input-form utu-section-no-border-${envCondition}`}
|
|
33181
33734
|
,
|
|
33182
33735
|
className: "d-flex justify-content-center text-input-section utu-section-no-border-".concat(envCondition),
|
|
33183
33736
|
excludeBootstrap: true,
|
|
@@ -33195,75 +33748,17 @@
|
|
|
33195
33748
|
placeholder: "Your text review"
|
|
33196
33749
|
}), errors.review && h$2("div", {
|
|
33197
33750
|
className: "mt-1 error"
|
|
33198
|
-
}, "* Feedback should be at least ", minLength, " characters long"), h$2(
|
|
33751
|
+
}, "* Feedback should be at least ", minLength, " characters long"), h$2(SubmitStatusView, {
|
|
33752
|
+
submitStatus: submitStatus
|
|
33753
|
+
}, h$2("button", {
|
|
33199
33754
|
style: {
|
|
33200
33755
|
backgroundColor: props[ATTR_BTN_COLOR] === undefined ? null : "".concat(props[ATTR_BTN_COLOR])
|
|
33201
33756
|
},
|
|
33202
|
-
className: "
|
|
33757
|
+
className: "text-input-btn btn btn-".concat(envCondition),
|
|
33203
33758
|
type: "submit"
|
|
33204
|
-
}, "Submit")));
|
|
33759
|
+
}, "Submit text review"))));
|
|
33205
33760
|
}
|
|
33206
33761
|
|
|
33207
|
-
// a string of all valid unicode whitespaces
|
|
33208
|
-
var whitespaces = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' + '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
|
|
33209
|
-
|
|
33210
|
-
var replace = functionUncurryThis(''.replace);
|
|
33211
|
-
var whitespace = '[' + whitespaces + ']';
|
|
33212
|
-
var ltrim = RegExp('^' + whitespace + whitespace + '*');
|
|
33213
|
-
var rtrim = RegExp(whitespace + whitespace + '*$'); // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
|
|
33214
|
-
|
|
33215
|
-
var createMethod = function (TYPE) {
|
|
33216
|
-
return function ($this) {
|
|
33217
|
-
var string = toString$2(requireObjectCoercible($this));
|
|
33218
|
-
if (TYPE & 1) string = replace(string, ltrim, '');
|
|
33219
|
-
if (TYPE & 2) string = replace(string, rtrim, '');
|
|
33220
|
-
return string;
|
|
33221
|
-
};
|
|
33222
|
-
};
|
|
33223
|
-
|
|
33224
|
-
var stringTrim = {
|
|
33225
|
-
// `String.prototype.{ trimLeft, trimStart }` methods
|
|
33226
|
-
// https://tc39.es/ecma262/#sec-string.prototype.trimstart
|
|
33227
|
-
start: createMethod(1),
|
|
33228
|
-
// `String.prototype.{ trimRight, trimEnd }` methods
|
|
33229
|
-
// https://tc39.es/ecma262/#sec-string.prototype.trimend
|
|
33230
|
-
end: createMethod(2),
|
|
33231
|
-
// `String.prototype.trim` method
|
|
33232
|
-
// https://tc39.es/ecma262/#sec-string.prototype.trim
|
|
33233
|
-
trim: createMethod(3)
|
|
33234
|
-
};
|
|
33235
|
-
|
|
33236
|
-
var PROPER_FUNCTION_NAME = functionName.PROPER;
|
|
33237
|
-
|
|
33238
|
-
|
|
33239
|
-
|
|
33240
|
-
|
|
33241
|
-
|
|
33242
|
-
var non = '\u200B\u0085\u180E'; // check that a method works with the correct list
|
|
33243
|
-
// of whitespaces and has a correct name
|
|
33244
|
-
|
|
33245
|
-
var stringTrimForced = function (METHOD_NAME) {
|
|
33246
|
-
return fails(function () {
|
|
33247
|
-
return !!whitespaces[METHOD_NAME]() || non[METHOD_NAME]() !== non || PROPER_FUNCTION_NAME && whitespaces[METHOD_NAME].name !== METHOD_NAME;
|
|
33248
|
-
});
|
|
33249
|
-
};
|
|
33250
|
-
|
|
33251
|
-
var $trim = stringTrim.trim;
|
|
33252
|
-
|
|
33253
|
-
// `String.prototype.trim` method
|
|
33254
|
-
// https://tc39.es/ecma262/#sec-string.prototype.trim
|
|
33255
|
-
|
|
33256
|
-
|
|
33257
|
-
_export({
|
|
33258
|
-
target: 'String',
|
|
33259
|
-
proto: true,
|
|
33260
|
-
forced: stringTrimForced('trim')
|
|
33261
|
-
}, {
|
|
33262
|
-
trim: function trim() {
|
|
33263
|
-
return $trim(this);
|
|
33264
|
-
}
|
|
33265
|
-
});
|
|
33266
|
-
|
|
33267
33762
|
var $includes = arrayIncludes.includes;
|
|
33268
33763
|
|
|
33269
33764
|
|
|
@@ -33334,6 +33829,192 @@
|
|
|
33334
33829
|
}
|
|
33335
33830
|
});
|
|
33336
33831
|
|
|
33832
|
+
var $String = String;
|
|
33833
|
+
var $TypeError = TypeError;
|
|
33834
|
+
|
|
33835
|
+
var aPossiblePrototype = function (argument) {
|
|
33836
|
+
if (typeof argument == 'object' || isCallable(argument)) return argument;
|
|
33837
|
+
throw $TypeError("Can't set " + $String(argument) + ' as a prototype');
|
|
33838
|
+
};
|
|
33839
|
+
|
|
33840
|
+
/* eslint-disable no-proto -- safe */
|
|
33841
|
+
|
|
33842
|
+
// `Object.setPrototypeOf` method
|
|
33843
|
+
// https://tc39.es/ecma262/#sec-object.setprototypeof
|
|
33844
|
+
// Works with __proto__ only. Old v8 can't work with null proto objects.
|
|
33845
|
+
// eslint-disable-next-line es-x/no-object-setprototypeof -- safe
|
|
33846
|
+
|
|
33847
|
+
|
|
33848
|
+
var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
|
|
33849
|
+
var CORRECT_SETTER = false;
|
|
33850
|
+
var test = {};
|
|
33851
|
+
var setter;
|
|
33852
|
+
|
|
33853
|
+
try {
|
|
33854
|
+
// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
|
|
33855
|
+
setter = functionUncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
|
|
33856
|
+
setter(test, []);
|
|
33857
|
+
CORRECT_SETTER = test instanceof Array;
|
|
33858
|
+
} catch (error) {
|
|
33859
|
+
/* empty */
|
|
33860
|
+
}
|
|
33861
|
+
|
|
33862
|
+
return function setPrototypeOf(O, proto) {
|
|
33863
|
+
anObject(O);
|
|
33864
|
+
aPossiblePrototype(proto);
|
|
33865
|
+
if (CORRECT_SETTER) setter(O, proto);else O.__proto__ = proto;
|
|
33866
|
+
return O;
|
|
33867
|
+
};
|
|
33868
|
+
}() : undefined);
|
|
33869
|
+
|
|
33870
|
+
// makes subclassing work correct for wrapped built-ins
|
|
33871
|
+
|
|
33872
|
+
|
|
33873
|
+
var inheritIfRequired = function ($this, dummy, Wrapper) {
|
|
33874
|
+
var NewTarget, NewTargetPrototype;
|
|
33875
|
+
if ( // it can work only with native `setPrototypeOf`
|
|
33876
|
+
objectSetPrototypeOf && // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
|
|
33877
|
+
isCallable(NewTarget = dummy.constructor) && NewTarget !== Wrapper && isObject$2(NewTargetPrototype = NewTarget.prototype) && NewTargetPrototype !== Wrapper.prototype) objectSetPrototypeOf($this, NewTargetPrototype);
|
|
33878
|
+
return $this;
|
|
33879
|
+
};
|
|
33880
|
+
|
|
33881
|
+
// `thisNumberValue` abstract operation
|
|
33882
|
+
// https://tc39.es/ecma262/#sec-thisnumbervalue
|
|
33883
|
+
|
|
33884
|
+
|
|
33885
|
+
var thisNumberValue = functionUncurryThis(1.0.valueOf);
|
|
33886
|
+
|
|
33887
|
+
// a string of all valid unicode whitespaces
|
|
33888
|
+
var whitespaces = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' + '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
|
|
33889
|
+
|
|
33890
|
+
var replace = functionUncurryThis(''.replace);
|
|
33891
|
+
var whitespace = '[' + whitespaces + ']';
|
|
33892
|
+
var ltrim = RegExp('^' + whitespace + whitespace + '*');
|
|
33893
|
+
var rtrim = RegExp(whitespace + whitespace + '*$'); // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
|
|
33894
|
+
|
|
33895
|
+
var createMethod = function (TYPE) {
|
|
33896
|
+
return function ($this) {
|
|
33897
|
+
var string = toString$2(requireObjectCoercible($this));
|
|
33898
|
+
if (TYPE & 1) string = replace(string, ltrim, '');
|
|
33899
|
+
if (TYPE & 2) string = replace(string, rtrim, '');
|
|
33900
|
+
return string;
|
|
33901
|
+
};
|
|
33902
|
+
};
|
|
33903
|
+
|
|
33904
|
+
var stringTrim = {
|
|
33905
|
+
// `String.prototype.{ trimLeft, trimStart }` methods
|
|
33906
|
+
// https://tc39.es/ecma262/#sec-string.prototype.trimstart
|
|
33907
|
+
start: createMethod(1),
|
|
33908
|
+
// `String.prototype.{ trimRight, trimEnd }` methods
|
|
33909
|
+
// https://tc39.es/ecma262/#sec-string.prototype.trimend
|
|
33910
|
+
end: createMethod(2),
|
|
33911
|
+
// `String.prototype.trim` method
|
|
33912
|
+
// https://tc39.es/ecma262/#sec-string.prototype.trim
|
|
33913
|
+
trim: createMethod(3)
|
|
33914
|
+
};
|
|
33915
|
+
|
|
33916
|
+
var getOwnPropertyNames = objectGetOwnPropertyNames.f;
|
|
33917
|
+
|
|
33918
|
+
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
|
33919
|
+
|
|
33920
|
+
var defineProperty = objectDefineProperty.f;
|
|
33921
|
+
|
|
33922
|
+
|
|
33923
|
+
|
|
33924
|
+
var trim = stringTrim.trim;
|
|
33925
|
+
|
|
33926
|
+
var NUMBER = 'Number';
|
|
33927
|
+
var NativeNumber = global$1[NUMBER];
|
|
33928
|
+
var NumberPrototype = NativeNumber.prototype;
|
|
33929
|
+
var TypeError$1 = global$1.TypeError;
|
|
33930
|
+
var arraySlice = functionUncurryThis(''.slice);
|
|
33931
|
+
var charCodeAt = functionUncurryThis(''.charCodeAt); // `ToNumeric` abstract operation
|
|
33932
|
+
// https://tc39.es/ecma262/#sec-tonumeric
|
|
33933
|
+
|
|
33934
|
+
var toNumeric = function (value) {
|
|
33935
|
+
var primValue = toPrimitive(value, 'number');
|
|
33936
|
+
return typeof primValue == 'bigint' ? primValue : toNumber(primValue);
|
|
33937
|
+
}; // `ToNumber` abstract operation
|
|
33938
|
+
// https://tc39.es/ecma262/#sec-tonumber
|
|
33939
|
+
|
|
33940
|
+
|
|
33941
|
+
var toNumber = function (argument) {
|
|
33942
|
+
var it = toPrimitive(argument, 'number');
|
|
33943
|
+
var first, third, radix, maxCode, digits, length, index, code;
|
|
33944
|
+
if (isSymbol$1(it)) throw TypeError$1('Cannot convert a Symbol value to a number');
|
|
33945
|
+
|
|
33946
|
+
if (typeof it == 'string' && it.length > 2) {
|
|
33947
|
+
it = trim(it);
|
|
33948
|
+
first = charCodeAt(it, 0);
|
|
33949
|
+
|
|
33950
|
+
if (first === 43 || first === 45) {
|
|
33951
|
+
third = charCodeAt(it, 2);
|
|
33952
|
+
if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix
|
|
33953
|
+
} else if (first === 48) {
|
|
33954
|
+
switch (charCodeAt(it, 1)) {
|
|
33955
|
+
case 66:
|
|
33956
|
+
case 98:
|
|
33957
|
+
radix = 2;
|
|
33958
|
+
maxCode = 49;
|
|
33959
|
+
break;
|
|
33960
|
+
// fast equal of /^0b[01]+$/i
|
|
33961
|
+
|
|
33962
|
+
case 79:
|
|
33963
|
+
case 111:
|
|
33964
|
+
radix = 8;
|
|
33965
|
+
maxCode = 55;
|
|
33966
|
+
break;
|
|
33967
|
+
// fast equal of /^0o[0-7]+$/i
|
|
33968
|
+
|
|
33969
|
+
default:
|
|
33970
|
+
return +it;
|
|
33971
|
+
}
|
|
33972
|
+
|
|
33973
|
+
digits = arraySlice(it, 2);
|
|
33974
|
+
length = digits.length;
|
|
33975
|
+
|
|
33976
|
+
for (index = 0; index < length; index++) {
|
|
33977
|
+
code = charCodeAt(digits, index); // parseInt parses a string to a first unavailable symbol
|
|
33978
|
+
// but ToNumber should return NaN if a string contains unavailable symbols
|
|
33979
|
+
|
|
33980
|
+
if (code < 48 || code > maxCode) return NaN;
|
|
33981
|
+
}
|
|
33982
|
+
|
|
33983
|
+
return parseInt(digits, radix);
|
|
33984
|
+
}
|
|
33985
|
+
}
|
|
33986
|
+
|
|
33987
|
+
return +it;
|
|
33988
|
+
}; // `Number` constructor
|
|
33989
|
+
// https://tc39.es/ecma262/#sec-number-constructor
|
|
33990
|
+
|
|
33991
|
+
|
|
33992
|
+
if (isForced_1(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumber('+0x1'))) {
|
|
33993
|
+
var NumberWrapper = function Number(value) {
|
|
33994
|
+
var n = arguments.length < 1 ? 0 : NativeNumber(toNumeric(value));
|
|
33995
|
+
var dummy = this; // check on 1..constructor(foo) case
|
|
33996
|
+
|
|
33997
|
+
return objectIsPrototypeOf(NumberPrototype, dummy) && fails(function () {
|
|
33998
|
+
thisNumberValue(dummy);
|
|
33999
|
+
}) ? inheritIfRequired(Object(n), dummy, NumberWrapper) : n;
|
|
34000
|
+
};
|
|
34001
|
+
|
|
34002
|
+
for (var keys = descriptors ? getOwnPropertyNames(NativeNumber) : ( // ES3:
|
|
34003
|
+
'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' + // ES2015 (in case, if modules with ES2015 Number statics required before):
|
|
34004
|
+
'EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,' + // ESNext
|
|
34005
|
+
'fromString,range').split(','), j = 0, key; keys.length > j; j++) {
|
|
34006
|
+
if (hasOwnProperty_1(NativeNumber, key = keys[j]) && !hasOwnProperty_1(NumberWrapper, key)) {
|
|
34007
|
+
defineProperty(NumberWrapper, key, getOwnPropertyDescriptor(NativeNumber, key));
|
|
34008
|
+
}
|
|
34009
|
+
}
|
|
34010
|
+
|
|
34011
|
+
NumberWrapper.prototype = NumberPrototype;
|
|
34012
|
+
NumberPrototype.constructor = NumberWrapper;
|
|
34013
|
+
defineBuiltIn(global$1, NUMBER, NumberWrapper, {
|
|
34014
|
+
constructor: true
|
|
34015
|
+
});
|
|
34016
|
+
}
|
|
34017
|
+
|
|
33337
34018
|
var abi = [
|
|
33338
34019
|
{
|
|
33339
34020
|
inputs: [
|
|
@@ -34198,49 +34879,112 @@
|
|
|
34198
34879
|
}
|
|
34199
34880
|
];
|
|
34200
34881
|
|
|
34201
|
-
var css_248z$
|
|
34202
|
-
styleInject(css_248z$
|
|
34882
|
+
var css_248z$e = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.endor-input-form {\n display: flex;\n flex-direction: row;\n justify-items: center;\n justify-content: center;\n align-items: center;\n padding-top: 3rem;\n padding-bottom: 3rem;\n width: 50%;\n}\n.endor-input-form-text-area {\n height: 3rem;\n width: 100%;\n margin-right: 1rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.8rem;\n align-items: center;\n align-content: center;\n background-color: #fcf8e5;\n overflow: hidden;\n}\n.endor-input-section {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n padding: 1rem 2rem;\n width: 100%;\n}\n.endor-text {\n font-size: 1.5rem;\n width: 50%;\n}\n.endor-text-light {\n color: black;\n}\n.endor-text-dark {\n color: white;\n}\n.endor-text-area {\n display: flex;\n flex-direction: row;\n}\n.endor-text-info {\n display: flex;\n justify-content: center;\n align-items: center;\n background-color: rgb(251, 201, 61);\n width: 1rem;\n height: 1rem;\n margin-left: 1rem;\n font-size: 0.8rem;\n border-radius: 50%;\n cursor: pointer;\n margin-left: 0.5rem;\n transition-timing-function: ease-in-out;\n transition-duration: 2s;\n transition: width 2s, height 4s;\n}\n.endor-text-body {\n font-size: 1rem;\n}\n.endor-text-title {\n font-size: 1rem;\n}\n.endor-btn {\n border-radius: 10px;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .endor-input-section {\n padding-left: 0rem;\n padding-right: 0rem;\n }\n .endor-input-form {\n width: 45%;\n padding: 2rem;\n }\n .endor-input-form-text-area {\n background-color: rgb(253, 253, 253);\n font-size: 1rem;\n }\n .endor-input-form-section {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n width: 100%;\n }\n .endor-text {\n padding: 2rem;\n width: 45%;\n }\n .endor-text-info {\n font-size: 1rem;\n }\n}\n@media only screen and (min-width: 830px) {\n .endor-input-form-text-area {\n font-size: 1rem;\n }\n}";
|
|
34883
|
+
styleInject(css_248z$e);
|
|
34203
34884
|
|
|
34204
|
-
var
|
|
34205
|
-
|
|
34206
|
-
|
|
34207
|
-
|
|
34208
|
-
|
|
34209
|
-
|
|
34210
|
-
|
|
34211
|
-
|
|
34212
|
-
|
|
34213
|
-
|
|
34214
|
-
|
|
34215
|
-
|
|
34216
|
-
|
|
34217
|
-
|
|
34218
|
-
|
|
34885
|
+
var _SWITCH_CHAIN_PARAMS, _ADD_CHAIN_PARAMS, _UTT_CONTRACT_ADDRESS;
|
|
34886
|
+
/**
|
|
34887
|
+
* Parameter interface definition for wallet_addEthereumChain
|
|
34888
|
+
* Copied from https://docs.metamask.io/guide/rpc-api.html#unrestricted-methods
|
|
34889
|
+
*/
|
|
34890
|
+
|
|
34891
|
+
/**
|
|
34892
|
+
* Convers a number to a 0x-prefixed hexadecimal string
|
|
34893
|
+
* @param n
|
|
34894
|
+
*/
|
|
34895
|
+
function toHexString(n) {
|
|
34896
|
+
return hexStripZeros(hexlify(n));
|
|
34897
|
+
}
|
|
34898
|
+
|
|
34899
|
+
var SWITCH_CHAIN_PARAMS = (_SWITCH_CHAIN_PARAMS = {}, _defineProperty$2(_SWITCH_CHAIN_PARAMS, NETWORK_NAME.polygon_mainnet, {
|
|
34900
|
+
chainId: toHexString(137)
|
|
34901
|
+
}), _defineProperty$2(_SWITCH_CHAIN_PARAMS, NETWORK_NAME.polygon_mumbai, {
|
|
34902
|
+
chainId: toHexString(80001)
|
|
34903
|
+
}), _SWITCH_CHAIN_PARAMS);
|
|
34904
|
+
var ADD_CHAIN_PARAMS = (_ADD_CHAIN_PARAMS = {}, _defineProperty$2(_ADD_CHAIN_PARAMS, NETWORK_NAME.polygon_mainnet, {
|
|
34905
|
+
chainId: SWITCH_CHAIN_PARAMS[NETWORK_NAME.polygon_mainnet].chainId,
|
|
34906
|
+
chainName: "Polygon",
|
|
34907
|
+
nativeCurrency: {
|
|
34908
|
+
name: "MATIC",
|
|
34909
|
+
symbol: "MATIC",
|
|
34910
|
+
decimals: 18
|
|
34219
34911
|
},
|
|
34220
|
-
|
|
34221
|
-
|
|
34222
|
-
|
|
34223
|
-
|
|
34224
|
-
|
|
34225
|
-
|
|
34226
|
-
|
|
34227
|
-
|
|
34228
|
-
|
|
34229
|
-
rpcUrls: ["https://rpc-mumbai.maticvigil.com"],
|
|
34230
|
-
blockExplorerUrls: ["https://mumbai.polygonscan.com"]
|
|
34912
|
+
rpcUrls: ["https://polygon-rpc.com"],
|
|
34913
|
+
blockExplorerUrls: ["https://polygonscan.com"]
|
|
34914
|
+
}), _defineProperty$2(_ADD_CHAIN_PARAMS, NETWORK_NAME.polygon_mumbai, {
|
|
34915
|
+
chainId: SWITCH_CHAIN_PARAMS[NETWORK_NAME.polygon_mumbai].chainId,
|
|
34916
|
+
chainName: "Mumbai",
|
|
34917
|
+
nativeCurrency: {
|
|
34918
|
+
name: "MATIC",
|
|
34919
|
+
symbol: "MATIC",
|
|
34920
|
+
decimals: 18
|
|
34231
34921
|
},
|
|
34232
|
-
|
|
34233
|
-
|
|
34234
|
-
|
|
34235
|
-
};
|
|
34236
|
-
|
|
34237
|
-
|
|
34238
|
-
|
|
34239
|
-
|
|
34240
|
-
|
|
34241
|
-
|
|
34242
|
-
|
|
34243
|
-
|
|
34922
|
+
rpcUrls: ["https://rpc-mumbai.maticvigil.com"],
|
|
34923
|
+
blockExplorerUrls: ["https://mumbai.polygonscan.com"]
|
|
34924
|
+
}), _ADD_CHAIN_PARAMS);
|
|
34925
|
+
var UTT_CONTRACT_ADDRESS = (_UTT_CONTRACT_ADDRESS = {}, _defineProperty$2(_UTT_CONTRACT_ADDRESS, NETWORK_NAME.polygon_mainnet, "0xbA6de5f4a98d2AEbb289d1136194D05Ee24C426f"), _defineProperty$2(_UTT_CONTRACT_ADDRESS, NETWORK_NAME.polygon_mumbai, "0x19bc90FfBDCaD53c48eF0b08A67B0D2563AEE2a8"), _UTT_CONTRACT_ADDRESS);
|
|
34926
|
+
function addNetwork(_x, _x2) {
|
|
34927
|
+
return _addNetwork.apply(this, arguments);
|
|
34928
|
+
}
|
|
34929
|
+
|
|
34930
|
+
function _addNetwork() {
|
|
34931
|
+
_addNetwork = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(provider, networkName) {
|
|
34932
|
+
var network;
|
|
34933
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
34934
|
+
while (1) {
|
|
34935
|
+
switch (_context.prev = _context.next) {
|
|
34936
|
+
case 0:
|
|
34937
|
+
network = ADD_CHAIN_PARAMS[networkName];
|
|
34938
|
+
_context.next = 3;
|
|
34939
|
+
return provider.request({
|
|
34940
|
+
method: "wallet_addEthereumChain",
|
|
34941
|
+
params: [network]
|
|
34942
|
+
});
|
|
34943
|
+
|
|
34944
|
+
case 3:
|
|
34945
|
+
case "end":
|
|
34946
|
+
return _context.stop();
|
|
34947
|
+
}
|
|
34948
|
+
}
|
|
34949
|
+
}, _callee);
|
|
34950
|
+
}));
|
|
34951
|
+
return _addNetwork.apply(this, arguments);
|
|
34952
|
+
}
|
|
34953
|
+
|
|
34954
|
+
function requestNetworkChange(_x3, _x4) {
|
|
34955
|
+
return _requestNetworkChange.apply(this, arguments);
|
|
34956
|
+
}
|
|
34957
|
+
|
|
34958
|
+
function _requestNetworkChange() {
|
|
34959
|
+
_requestNetworkChange = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(provider, networkName) {
|
|
34960
|
+
var network;
|
|
34961
|
+
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
34962
|
+
while (1) {
|
|
34963
|
+
switch (_context2.prev = _context2.next) {
|
|
34964
|
+
case 0:
|
|
34965
|
+
network = SWITCH_CHAIN_PARAMS[networkName];
|
|
34966
|
+
_context2.next = 3;
|
|
34967
|
+
return provider.request({
|
|
34968
|
+
method: "wallet_switchEthereumChain",
|
|
34969
|
+
params: [network]
|
|
34970
|
+
});
|
|
34971
|
+
|
|
34972
|
+
case 3:
|
|
34973
|
+
case "end":
|
|
34974
|
+
return _context2.stop();
|
|
34975
|
+
}
|
|
34976
|
+
}
|
|
34977
|
+
}, _callee2);
|
|
34978
|
+
}));
|
|
34979
|
+
return _requestNetworkChange.apply(this, arguments);
|
|
34980
|
+
}
|
|
34981
|
+
|
|
34982
|
+
function getDefaultNetworkName() {
|
|
34983
|
+
return config.production ? NETWORK_NAME.polygon_mainnet : NETWORK_NAME.polygon_mumbai;
|
|
34984
|
+
}
|
|
34985
|
+
function getUTTContractAddress(networkName) {
|
|
34986
|
+
return UTT_CONTRACT_ADDRESS[networkName];
|
|
34987
|
+
}
|
|
34244
34988
|
|
|
34245
34989
|
function EndorsementForm(props) {
|
|
34246
34990
|
var _window, _window2;
|
|
@@ -34272,172 +35016,221 @@
|
|
|
34272
35016
|
|
|
34273
35017
|
if (!((_window = window) !== null && _window !== void 0 && _window.ethereum || (_window2 = window) !== null && _window2 !== void 0 && _window2.web3 || window.utuWeb3Provider) || !props[ATTR_TARGET_UUID] || !isAddress(props[ATTR_TARGET_UUID]) || !props[ATTR_TRANSACTION_ID]) return null;
|
|
34274
35018
|
|
|
34275
|
-
|
|
35019
|
+
function getProvider() {
|
|
34276
35020
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
34277
35021
|
// @ts-ignore
|
|
34278
35022
|
return window.utuWeb3Provider || window.ethereum;
|
|
34279
|
-
}
|
|
35023
|
+
}
|
|
35024
|
+
/**
|
|
35025
|
+
* Determines which network to use for endorsements.
|
|
35026
|
+
*/
|
|
35027
|
+
|
|
35028
|
+
|
|
35029
|
+
function getEndorsementNetwork() {
|
|
35030
|
+
var _props$ATTR_ENDORSEME;
|
|
35031
|
+
|
|
35032
|
+
return (_props$ATTR_ENDORSEME = props[ATTR_ENDORSEMENT_NETWORK]) !== null && _props$ATTR_ENDORSEME !== void 0 ? _props$ATTR_ENDORSEME : getDefaultNetworkName();
|
|
35033
|
+
}
|
|
35034
|
+
/**
|
|
35035
|
+
* Switches to the given network, adding it if necessary.
|
|
35036
|
+
*/
|
|
35037
|
+
|
|
35038
|
+
|
|
35039
|
+
function switchNetwork(_x) {
|
|
35040
|
+
return _switchNetwork.apply(this, arguments);
|
|
35041
|
+
}
|
|
35042
|
+
/**
|
|
35043
|
+
* return the UTU contract instance on the given network
|
|
35044
|
+
*/
|
|
34280
35045
|
|
|
34281
|
-
|
|
34282
|
-
|
|
35046
|
+
|
|
35047
|
+
function _switchNetwork() {
|
|
35048
|
+
_switchNetwork = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(network) {
|
|
35049
|
+
var provider;
|
|
34283
35050
|
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
34284
35051
|
while (1) {
|
|
34285
35052
|
switch (_context.prev = _context.next) {
|
|
34286
35053
|
case 0:
|
|
34287
|
-
|
|
34288
|
-
|
|
34289
|
-
|
|
34290
|
-
|
|
34291
|
-
chainId: hexStripZeros(hexlify(selectedNetwork.chainId))
|
|
34292
|
-
}]
|
|
34293
|
-
});
|
|
35054
|
+
provider = getProvider();
|
|
35055
|
+
_context.prev = 1;
|
|
35056
|
+
_context.next = 4;
|
|
35057
|
+
return requestNetworkChange(provider, network);
|
|
34294
35058
|
|
|
34295
|
-
case
|
|
35059
|
+
case 4:
|
|
35060
|
+
_context.next = 14;
|
|
35061
|
+
break;
|
|
35062
|
+
|
|
35063
|
+
case 6:
|
|
35064
|
+
_context.prev = 6;
|
|
35065
|
+
_context.t0 = _context["catch"](1);
|
|
35066
|
+
console.log(_context.t0, _context.t0.message);
|
|
35067
|
+
|
|
35068
|
+
if (!(_context.t0.code === 4902 || _context.t0.message.toLowerCase().includes("unrecognized"))) {
|
|
35069
|
+
_context.next = 14;
|
|
35070
|
+
break;
|
|
35071
|
+
}
|
|
35072
|
+
|
|
35073
|
+
_context.next = 12;
|
|
35074
|
+
return addNetwork(provider, network);
|
|
35075
|
+
|
|
35076
|
+
case 12:
|
|
35077
|
+
_context.next = 14;
|
|
35078
|
+
return requestNetworkChange(provider, network);
|
|
35079
|
+
|
|
35080
|
+
case 14:
|
|
34296
35081
|
case "end":
|
|
34297
35082
|
return _context.stop();
|
|
34298
35083
|
}
|
|
34299
35084
|
}
|
|
34300
|
-
}, _callee);
|
|
35085
|
+
}, _callee, null, [[1, 6]]);
|
|
34301
35086
|
}));
|
|
35087
|
+
return _switchNetwork.apply(this, arguments);
|
|
35088
|
+
}
|
|
34302
35089
|
|
|
34303
|
-
|
|
34304
|
-
|
|
34305
|
-
|
|
34306
|
-
|
|
35090
|
+
function getContractInstance(_x2) {
|
|
35091
|
+
return _getContractInstance.apply(this, arguments);
|
|
35092
|
+
}
|
|
35093
|
+
/**
|
|
35094
|
+
* returns the current connected address
|
|
35095
|
+
*/
|
|
34307
35096
|
|
|
34308
|
-
|
|
34309
|
-
|
|
35097
|
+
|
|
35098
|
+
function _getContractInstance() {
|
|
35099
|
+
_getContractInstance = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(network) {
|
|
35100
|
+
var UTT_CONTRACT_ADDRESS, web3Provider, signer;
|
|
34310
35101
|
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
34311
35102
|
while (1) {
|
|
34312
35103
|
switch (_context2.prev = _context2.next) {
|
|
34313
35104
|
case 0:
|
|
34314
|
-
|
|
34315
|
-
|
|
34316
|
-
|
|
34317
|
-
params: [_objectSpread2(_objectSpread2({}, selectedNetwork), {}, {
|
|
34318
|
-
chainId: hexStripZeros(hexlify(selectedNetwork.chainId))
|
|
34319
|
-
})]
|
|
34320
|
-
});
|
|
35105
|
+
UTT_CONTRACT_ADDRESS = getUTTContractAddress(network);
|
|
35106
|
+
_context2.next = 3;
|
|
35107
|
+
return new Web3Provider(getProvider());
|
|
34321
35108
|
|
|
34322
|
-
case
|
|
35109
|
+
case 3:
|
|
35110
|
+
web3Provider = _context2.sent;
|
|
35111
|
+
signer = web3Provider.getSigner();
|
|
35112
|
+
return _context2.abrupt("return", new Contract(UTT_CONTRACT_ADDRESS, abi, signer));
|
|
35113
|
+
|
|
35114
|
+
case 6:
|
|
34323
35115
|
case "end":
|
|
34324
35116
|
return _context2.stop();
|
|
34325
35117
|
}
|
|
34326
35118
|
}
|
|
34327
35119
|
}, _callee2);
|
|
34328
35120
|
}));
|
|
35121
|
+
return _getContractInstance.apply(this, arguments);
|
|
35122
|
+
}
|
|
34329
35123
|
|
|
34330
|
-
|
|
34331
|
-
|
|
34332
|
-
|
|
34333
|
-
|
|
35124
|
+
function getConnectedAddress() {
|
|
35125
|
+
return _getConnectedAddress.apply(this, arguments);
|
|
35126
|
+
}
|
|
35127
|
+
/**
|
|
35128
|
+
* Creates an endorsement transaction
|
|
35129
|
+
* @param address the target address of the endorsement
|
|
35130
|
+
* @param amount the amount of UTT to stake on the endorsement
|
|
35131
|
+
* @param transactionId the business transaction id (might or might not be an Ethereum tx id) to record with the
|
|
35132
|
+
* endorsement, if any
|
|
35133
|
+
*/
|
|
34334
35134
|
|
|
34335
|
-
var CURRENT_NETWORK = String(props[ATTR_ENDORSEMENT_NETWORK]).toLowerCase().trim();
|
|
34336
35135
|
|
|
34337
|
-
|
|
34338
|
-
|
|
34339
|
-
var
|
|
35136
|
+
function _getConnectedAddress() {
|
|
35137
|
+
_getConnectedAddress = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3() {
|
|
35138
|
+
var web3Provider, signer;
|
|
34340
35139
|
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
|
34341
35140
|
while (1) {
|
|
34342
35141
|
switch (_context3.prev = _context3.next) {
|
|
34343
35142
|
case 0:
|
|
34344
|
-
|
|
34345
|
-
|
|
34346
|
-
provider = getProvider();
|
|
34347
|
-
selectedNetwork = networks[CURRENT_NETWORK] || getDefaultNetwork();
|
|
34348
|
-
_context3.prev = 2;
|
|
34349
|
-
_context3.next = 5;
|
|
34350
|
-
return requestNetworkChange(provider, selectedNetwork);
|
|
34351
|
-
|
|
34352
|
-
case 5:
|
|
34353
|
-
_context3.next = 15;
|
|
34354
|
-
break;
|
|
34355
|
-
|
|
34356
|
-
case 7:
|
|
34357
|
-
_context3.prev = 7;
|
|
34358
|
-
_context3.t0 = _context3["catch"](2);
|
|
34359
|
-
console.log(_context3.t0, _context3.t0.message);
|
|
34360
|
-
|
|
34361
|
-
if (!(_context3.t0.code === 4902 || _context3.t0.message.toLowerCase().includes("unrecognized"))) {
|
|
34362
|
-
_context3.next = 15;
|
|
34363
|
-
break;
|
|
34364
|
-
}
|
|
34365
|
-
|
|
34366
|
-
_context3.next = 13;
|
|
34367
|
-
return addNetwork(provider, selectedNetwork);
|
|
35143
|
+
_context3.next = 2;
|
|
35144
|
+
return new Web3Provider(getProvider());
|
|
34368
35145
|
|
|
34369
|
-
case
|
|
34370
|
-
|
|
34371
|
-
|
|
35146
|
+
case 2:
|
|
35147
|
+
web3Provider = _context3.sent;
|
|
35148
|
+
signer = web3Provider.getSigner();
|
|
35149
|
+
return _context3.abrupt("return", signer.getAddress());
|
|
34372
35150
|
|
|
34373
|
-
case
|
|
35151
|
+
case 5:
|
|
34374
35152
|
case "end":
|
|
34375
35153
|
return _context3.stop();
|
|
34376
35154
|
}
|
|
34377
35155
|
}
|
|
34378
|
-
}, _callee3
|
|
35156
|
+
}, _callee3);
|
|
34379
35157
|
}));
|
|
35158
|
+
return _getConnectedAddress.apply(this, arguments);
|
|
35159
|
+
}
|
|
34380
35160
|
|
|
34381
|
-
|
|
34382
|
-
|
|
34383
|
-
|
|
34384
|
-
}();
|
|
35161
|
+
function endorse(_x3, _x4, _x5) {
|
|
35162
|
+
return _endorse.apply(this, arguments);
|
|
35163
|
+
}
|
|
34385
35164
|
|
|
34386
|
-
|
|
34387
|
-
|
|
34388
|
-
var
|
|
35165
|
+
function _endorse() {
|
|
35166
|
+
_endorse = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4(address, amount, transactionId) {
|
|
35167
|
+
var network, contract, connectedAddress, utuBalance, transaction;
|
|
34389
35168
|
return _regeneratorRuntime().wrap(function _callee4$(_context4) {
|
|
34390
35169
|
while (1) {
|
|
34391
35170
|
switch (_context4.prev = _context4.next) {
|
|
34392
35171
|
case 0:
|
|
34393
|
-
|
|
34394
|
-
|
|
35172
|
+
network = getEndorsementNetwork();
|
|
35173
|
+
_context4.next = 3;
|
|
35174
|
+
return switchNetwork(network);
|
|
34395
35175
|
|
|
34396
|
-
case
|
|
34397
|
-
UTT_CONTRACT_ADDRESS = getUTTContractAddress(CURRENT_NETWORK || DEFAULT_NETWORK);
|
|
35176
|
+
case 3:
|
|
34398
35177
|
_context4.next = 5;
|
|
34399
|
-
return
|
|
35178
|
+
return getContractInstance(network);
|
|
34400
35179
|
|
|
34401
35180
|
case 5:
|
|
34402
|
-
|
|
34403
|
-
|
|
34404
|
-
|
|
34405
|
-
|
|
35181
|
+
contract = _context4.sent;
|
|
35182
|
+
_context4.next = 8;
|
|
35183
|
+
return getConnectedAddress();
|
|
35184
|
+
|
|
35185
|
+
case 8:
|
|
35186
|
+
connectedAddress = _context4.sent;
|
|
35187
|
+
_context4.next = 11;
|
|
35188
|
+
return contract.balanceOf(connectedAddress);
|
|
35189
|
+
|
|
35190
|
+
case 11:
|
|
35191
|
+
utuBalance = _context4.sent;
|
|
35192
|
+
|
|
35193
|
+
if (!(Number(utuBalance) < Number(amount))) {
|
|
35194
|
+
_context4.next = 14;
|
|
35195
|
+
break;
|
|
35196
|
+
}
|
|
35197
|
+
|
|
35198
|
+
throw new Error("Insufficient UTU tokens");
|
|
35199
|
+
|
|
35200
|
+
case 14:
|
|
35201
|
+
_context4.next = 16;
|
|
34406
35202
|
return contract.endorse(address, String(amount), transactionId);
|
|
34407
35203
|
|
|
34408
|
-
case
|
|
35204
|
+
case 16:
|
|
34409
35205
|
transaction = _context4.sent;
|
|
34410
|
-
_context4.next =
|
|
35206
|
+
_context4.next = 19;
|
|
34411
35207
|
return transaction.wait();
|
|
34412
35208
|
|
|
34413
|
-
case
|
|
35209
|
+
case 19:
|
|
34414
35210
|
return _context4.abrupt("return", transaction);
|
|
34415
35211
|
|
|
34416
|
-
case
|
|
35212
|
+
case 20:
|
|
34417
35213
|
case "end":
|
|
34418
35214
|
return _context4.stop();
|
|
34419
35215
|
}
|
|
34420
35216
|
}
|
|
34421
35217
|
}, _callee4);
|
|
34422
35218
|
}));
|
|
35219
|
+
return _endorse.apply(this, arguments);
|
|
35220
|
+
}
|
|
34423
35221
|
|
|
34424
|
-
|
|
34425
|
-
return _ref4.apply(this, arguments);
|
|
34426
|
-
};
|
|
34427
|
-
}();
|
|
34428
|
-
|
|
34429
|
-
function onSubmit(_x8) {
|
|
35222
|
+
function onSubmit(_x6) {
|
|
34430
35223
|
return _onSubmit.apply(this, arguments);
|
|
34431
35224
|
}
|
|
34432
35225
|
|
|
34433
35226
|
function _onSubmit() {
|
|
34434
|
-
_onSubmit = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5(
|
|
35227
|
+
_onSubmit = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5(_ref) {
|
|
34435
35228
|
var amount;
|
|
34436
35229
|
return _regeneratorRuntime().wrap(function _callee5$(_context5) {
|
|
34437
35230
|
while (1) {
|
|
34438
35231
|
switch (_context5.prev = _context5.next) {
|
|
34439
35232
|
case 0:
|
|
34440
|
-
amount =
|
|
35233
|
+
amount = _ref.amount;
|
|
34441
35234
|
|
|
34442
35235
|
if (amount) {
|
|
34443
35236
|
_context5.next = 3;
|
|
@@ -34450,7 +35243,7 @@
|
|
|
34450
35243
|
setTxError("");
|
|
34451
35244
|
_context5.prev = 4;
|
|
34452
35245
|
_context5.next = 7;
|
|
34453
|
-
return
|
|
35246
|
+
return endorse(props[ATTR_TARGET_UUID], amount, props[ATTR_TRANSACTION_ID]);
|
|
34454
35247
|
|
|
34455
35248
|
case 7:
|
|
34456
35249
|
_context5.next = 13;
|
|
@@ -34472,8 +35265,8 @@
|
|
|
34472
35265
|
return _onSubmit.apply(this, arguments);
|
|
34473
35266
|
}
|
|
34474
35267
|
|
|
34475
|
-
var showError = function showError(
|
|
34476
|
-
var amount =
|
|
35268
|
+
var showError = function showError(_ref2) {
|
|
35269
|
+
var amount = _ref2.amount;
|
|
34477
35270
|
|
|
34478
35271
|
switch (amount === null || amount === void 0 ? void 0 : amount.type) {
|
|
34479
35272
|
case "required":
|
|
@@ -34491,7 +35284,7 @@
|
|
|
34491
35284
|
};
|
|
34492
35285
|
|
|
34493
35286
|
return h$2(BaseComponent, {
|
|
34494
|
-
style: css_248z$
|
|
35287
|
+
style: css_248z$e,
|
|
34495
35288
|
className: "endor-input-section utu-section-no-border-".concat(envCondition),
|
|
34496
35289
|
excludeBootstrap: true,
|
|
34497
35290
|
excludeFonts: true
|
|
@@ -34506,7 +35299,7 @@
|
|
|
34506
35299
|
}, "Would you like to Endorse ?"), h$2("p", {
|
|
34507
35300
|
className: "endor-text-info",
|
|
34508
35301
|
"data-bs-toggle": "tooltip",
|
|
34509
|
-
title: " To endorse, you need to have some UTT
|
|
35302
|
+
title: " To endorse, you need to have some UTT in your account. Make sure you have a sufficient balance in your account"
|
|
34510
35303
|
}, "i")), h$2("p", {
|
|
34511
35304
|
className: "endor-text-body"
|
|
34512
35305
|
}, "When you endorse a platform, it means you have personally had a good experience and want to back your rating by staking an amount of UTT (UTU trust token) on the platform.")), h$2("form", {
|
|
@@ -36984,15 +37777,16 @@
|
|
|
36984
37777
|
};
|
|
36985
37778
|
var _default = ReactStars;
|
|
36986
37779
|
|
|
36987
|
-
var css_248z$
|
|
36988
|
-
styleInject(css_248z$
|
|
37780
|
+
var css_248z$d = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.star-rating-section {\n display: flex;\n justify-content: center;\n align-items: center;\n padding-top: 1.5rem;\n padding-bottom: 1.5rem;\n width: 170px;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .star-rating-section {\n padding-top: 1.5rem;\n padding-bottom: 1.5rem;\n padding-left: 1rem;\n width: 170px;\n }\n}";
|
|
37781
|
+
styleInject(css_248z$d);
|
|
36989
37782
|
|
|
36990
37783
|
function StarRatingInput(props) {
|
|
36991
37784
|
var _getBaseProps = getBaseProps(props, TAG_FEEDBACK_FORM),
|
|
36992
37785
|
apiUrl = _getBaseProps.apiUrl;
|
|
36993
37786
|
|
|
36994
37787
|
var _useFeedbackApi = useFeedbackApi(apiUrl, props[ATTR_SOURCE_UUID], props[ATTR_TARGET_UUID], props[ATTR_TRANSACTION_ID]),
|
|
36995
|
-
sendFeedback = _useFeedbackApi.sendFeedback
|
|
37788
|
+
sendFeedback = _useFeedbackApi.sendFeedback,
|
|
37789
|
+
submitStatus = _useFeedbackApi.submitStatus; // environments
|
|
36996
37790
|
|
|
36997
37791
|
|
|
36998
37792
|
var _useState = p(false),
|
|
@@ -37011,10 +37805,12 @@
|
|
|
37011
37805
|
};
|
|
37012
37806
|
|
|
37013
37807
|
return h$2(BaseComponent, {
|
|
37014
|
-
style: css_248z$
|
|
37808
|
+
style: css_248z$d,
|
|
37015
37809
|
className: "star-rating-section utu-section-".concat(isDark ? "dark" : "light"),
|
|
37016
37810
|
excludeBootstrap: true,
|
|
37017
37811
|
excludeFonts: true
|
|
37812
|
+
}, h$2(SubmitStatusView, {
|
|
37813
|
+
submitStatus: submitStatus
|
|
37018
37814
|
}, h$2(_default, {
|
|
37019
37815
|
count: 5,
|
|
37020
37816
|
half: false,
|
|
@@ -37022,190 +37818,7 @@
|
|
|
37022
37818
|
size: 30,
|
|
37023
37819
|
color2: "#FFDD33" // color2= {ratingColor}
|
|
37024
37820
|
|
|
37025
|
-
}));
|
|
37026
|
-
}
|
|
37027
|
-
|
|
37028
|
-
var css_248z$d = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}";
|
|
37029
|
-
styleInject(css_248z$d);
|
|
37030
|
-
|
|
37031
|
-
/* eslint max-len: 0 */
|
|
37032
|
-
function Logo() {
|
|
37033
|
-
return h$2("svg", {
|
|
37034
|
-
style: css_248z$d,
|
|
37035
|
-
version: "1.1",
|
|
37036
|
-
id: "Capa_1",
|
|
37037
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
37038
|
-
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
37039
|
-
x: "0px",
|
|
37040
|
-
y: "0px",
|
|
37041
|
-
className: "logo-size",
|
|
37042
|
-
viewBox: "0 0 841.89 401.471",
|
|
37043
|
-
xmlSpace: "preserve"
|
|
37044
|
-
}, h$2("g", {
|
|
37045
|
-
id: "Layer_2"
|
|
37046
|
-
}, h$2("g", {
|
|
37047
|
-
id: "Layer_1-2"
|
|
37048
|
-
}, h$2("path", {
|
|
37049
|
-
fill: "#FFFFFF",
|
|
37050
|
-
d: "M565.858,0c263.37,4.676,263.323,395.802,0,400.243C302.487,395.709,302.532,4.397,565.858,0z"
|
|
37051
|
-
}), h$2("path", {
|
|
37052
|
-
fill: "#BBBBBB",
|
|
37053
|
-
d: "M0.005,224.144v-45.228c-0.005-2.54,2.051-4.603,4.591-4.607c0.019,0,0.038,0,0.057,0 c7.535,0.416,21.79-1.872,27.35,4.176c6.247,4.983,6.239,19.43,0,24.454c-4.912,5.359-15.871,4.127-22.758,4.215v16.991 C9.443,230.176-0.14,230.119,0.005,224.144z M9.26,198.834c6.479-0.119,18.55,1.96,17.854-8.119 c0.695-10.07-11.415-7.999-17.854-8.087V198.834z"
|
|
37054
|
-
}), h$2("path", {
|
|
37055
|
-
fill: "#BBBBBB",
|
|
37056
|
-
d: "M40.041,209.985c-1.848-25.798,36.885-25.901,34.957,0C76.878,235.775,38.241,235.671,40.041,209.985z M48.84,209.985c-1.208,15.847,18.742,15.839,17.534,0c1.232-15.99-18.782-15.99-17.574,0H48.84z"
|
|
37057
|
-
}), h$2("path", {
|
|
37058
|
-
fill: "#BBBBBB",
|
|
37059
|
-
d: "M77.149,195.475c-0.192-4.712,6.936-5.911,8.399-1.479l6.64,19.646l5.352-19.334 c0.498-1.867,2.202-3.156,4.135-3.128c1.851-0.022,3.506,1.146,4.104,2.896l5.352,19.574l6.56-19.646 c0.912-2.96,5.12-3.712,7.199-1.64c4.496,2.079-9.991,30.637-10.11,33.709c-1.112,3.823-7.144,3.384-8.168-0.32l-4.959-17.534 l-4.936,17.43c-0.72,2.308-3.173,3.595-5.479,2.875c-0.419-0.13-0.815-0.322-1.176-0.57 C87.868,226.512,77.678,197.931,77.149,195.475z"
|
|
37060
|
-
}), h$2("path", {
|
|
37061
|
-
fill: "#BBBBBB",
|
|
37062
|
-
d: "M128.201,209.649c-2.473-23.021,33.517-26.27,33.356-3.199c0.288,3.399-0.896,6.831-4.911,6.559h-19.814 c0.392,11.487,13.039,8.592,19.91,4.96C174.181,225.784,126.593,242.11,128.201,209.649z M137.063,205.649h15.854 C153.502,195.499,137.048,195.698,137.063,205.649z"
|
|
37063
|
-
}), h$2("path", {
|
|
37064
|
-
fill: "#BBBBBB",
|
|
37065
|
-
d: "M167.453,224.456c0.472-1.896-1.264-31.637,1.264-31.997c2.704-2.863,7.855-0.416,7.367,3.504 c2.288-6.655,16.919-7.04,11.535,1.823c-5.88,2.776-11.199,0.801-11.535,10.096v16.614 C176.212,230.039,167.325,230.048,167.453,224.456z"
|
|
37066
|
-
}), h$2("path", {
|
|
37067
|
-
fill: "#BBBBBB",
|
|
37068
|
-
d: "M190.963,209.649c-2.464-23.021,33.524-26.27,33.356-3.199c0.296,3.399-0.896,6.831-4.903,6.559h-19.822 c0.4,11.487,13.047,8.592,19.918,4.96C236.95,225.784,189.355,242.11,190.963,209.649z M199.834,205.649h15.854 C216.272,195.499,199.818,195.698,199.834,205.649z"
|
|
37069
|
-
}), h$2("path", {
|
|
37070
|
-
fill: "#BBBBBB",
|
|
37071
|
-
d: "M228.543,209.985c-1.544-14.935,13.255-24.861,25.03-16.11v-18.398c-0.152-3.728,4.848-5.76,7.375-3.048 c2.584-0.136,0.744,39.236,1.264,40.74c0,5.157-1.506,9.116-4.52,11.879C245.75,234.767,226.888,227.248,228.543,209.985z M237.175,209.985c-1.984,13.143,15.998,16.902,16.406,3.199v-11.062C246.79,193.891,236.07,198.986,237.175,209.985 L237.175,209.985z"
|
|
37072
|
-
}), h$2("path", {
|
|
37073
|
-
fill: "#BBBBBB",
|
|
37074
|
-
d: "M287.834,213.169v-37.692c-0.16-3.735,4.84-5.751,7.367-3.048c2.479,1.32,0.8,19.158,1.264,21.446 c5.464-5.088,16.526-3.696,20.838,1.688c5.703,5.728,5.768,23.198-0.191,28.798C307.92,233.959,286.426,228.976,287.834,213.169z M296.465,213.169c-0.855,8.104,9.807,11.679,14.287,5.655c6.839-10.398-2-29.524-14.287-16.727V213.169z"
|
|
37075
|
-
}), h$2("path", {
|
|
37076
|
-
fill: "#BBBBBB",
|
|
37077
|
-
d: "M323.175,243.046c-2.584-2.399-0.681-7.199,2.951-6.983c6.151-0.296,7.447-4.799,10.151-10.631 l-12.303-28.293c-0.211-0.535-0.317-1.105-0.312-1.68c-0.2-4.656,6.848-5.855,8.319-1.601l8.791,22.19l8.8-22.182 c0.928-2.744,5.031-3.656,7.071-1.44c5.095,2.2-13.775,35.325-13.943,38.356C338.413,240.198,331.006,246.95,323.175,243.046z"
|
|
37078
|
-
}), h$2("path", {
|
|
37079
|
-
fill: "#2B2B2B",
|
|
37080
|
-
d: "M710.811,214.345v-18.67c-0.152-3.728,4.871-5.76,7.383-3.048c4.903,6.264-5.039,29.693,8.479,28.941 c4.735,0,7.105-2.399,7.111-7.199v-18.687c-0.136-5.6,8.799-5.6,8.631,0c-0.695,7.199,2.096,23.198-3.031,29.077 C730.688,234.063,708.843,229.567,710.811,214.345z"
|
|
37081
|
-
}), h$2("path", {
|
|
37082
|
-
fill: "#2B2B2B",
|
|
37083
|
-
d: "M766.469,198.259c-2.928-3.288,0.552-7.111,4.376-6.256c0.144-3.455-1.264-10.943,4.264-10.814 c5.495-0.137,4.071,7.391,4.216,10.814c2.76-0.176,7.287-0.248,7.199,3.656c0.104,3.903-4.408,3.879-7.199,3.688 c0.376,1.399-0.96,21.118,0.936,21.462c2.191,1.304,6.008,0.8,5.855,4.472c-0.488,6.151-9.679,3.392-12.143,0.655 c-5.399-3.999-2.4-20.894-3.128-26.589C769.373,199.362,767.533,199.53,766.469,198.259z"
|
|
37084
|
-
}), h$2("path", {
|
|
37085
|
-
fill: "#2B2B2B",
|
|
37086
|
-
d: "M810.137,214.345v-18.67c-0.151-3.728,4.872-5.76,7.384-3.048c4.903,6.264-5.04,29.693,8.479,28.941 c4.736,0,7.106-2.399,7.111-7.199v-18.687c-0.136-5.6,8.8-5.6,8.632,0c-0.696,7.199,2.096,23.198-3.032,29.077 C830.015,234.063,808.169,229.567,810.137,214.345z"
|
|
37087
|
-
}), h$2("path", {
|
|
37088
|
-
fill: "#2B2B2B",
|
|
37089
|
-
d: "M531.155,40.865c45.052,0.8,45.044,67.729,0,68.489C486.104,108.579,486.111,41.665,531.155,40.865z"
|
|
37090
|
-
}), h$2("path", {
|
|
37091
|
-
fill: "#2B2B2B",
|
|
37092
|
-
d: "M444.163,148.855c45.052,0.8,45.044,67.705,0,68.465C399.111,216.545,399.119,149.607,444.163,148.855z"
|
|
37093
|
-
}), h$2("path", {
|
|
37094
|
-
fill: "#2B2B2B",
|
|
37095
|
-
d: "M529.835,248.934c39.845,0.672,39.845,59.898,0,60.57C489.982,308.84,489.991,249.646,529.835,248.934z"
|
|
37096
|
-
}), h$2("path", {
|
|
37097
|
-
fill: "#2B2B2B",
|
|
37098
|
-
d: "M465.257,230.447c31.197,0.528,31.197,46.916,0,47.443C434.084,277.371,434.092,230.991,465.257,230.447z"
|
|
37099
|
-
}), h$2("path", {
|
|
37100
|
-
fill: "#2B2B2B",
|
|
37101
|
-
d: "M511.389,130.457c29.47,0.504,29.461,44.268,0,44.796C481.911,174.677,481.92,130.921,511.389,130.457z"
|
|
37102
|
-
}), h$2("path", {
|
|
37103
|
-
fill: "#2B2B2B",
|
|
37104
|
-
d: "M582.566,101.42c29.469,0.504,29.461,44.308,0,44.795C553.097,145.72,553.104,101.915,582.566,101.42z"
|
|
37105
|
-
}), h$2("path", {
|
|
37106
|
-
fill: "#2B2B2B",
|
|
37107
|
-
d: "M637.921,93.524c29.445,0.504,29.445,44.292,0,44.796C608.628,138.176,608.628,93.66,637.921,93.524z"
|
|
37108
|
-
}), h$2("path", {
|
|
37109
|
-
fill: "#2B2B2B",
|
|
37110
|
-
d: "M656.367,146.224c26.006,0.447,26.006,39.052,0,39.492C630.346,185.268,630.346,146.671,656.367,146.224z"
|
|
37111
|
-
}), h$2("path", {
|
|
37112
|
-
fill: "#2B2B2B",
|
|
37113
|
-
d: "M593.109,264.732c22.525,0.384,22.518,33.86,0,34.236C570.583,298.585,570.583,265.116,593.109,264.732z"
|
|
37114
|
-
}), h$2("path", {
|
|
37115
|
-
fill: "#2B2B2B",
|
|
37116
|
-
d: "M651.096,198.866c22.534,0.384,22.534,33.854,0,34.229C628.554,232.711,628.562,199.25,651.096,198.866z"
|
|
37117
|
-
}), h$2("path", {
|
|
37118
|
-
fill: "#2B2B2B",
|
|
37119
|
-
d: "M437.563,101.42c22.51,0.384,22.51,33.893,0,34.276C415.166,135.593,415.166,101.516,437.563,101.42z"
|
|
37120
|
-
}), h$2("path", {
|
|
37121
|
-
fill: "#2B2B2B",
|
|
37122
|
-
d: "M603.66,56.655c22.526,0.385,22.518,33.854,0,34.237C581.254,90.788,581.254,56.752,603.66,56.655z"
|
|
37123
|
-
}), h$2("path", {
|
|
37124
|
-
fill: "#2B2B2B",
|
|
37125
|
-
d: "M500.838,196.251c22.534,0.384,22.534,33.828,0,34.213C478.296,230.071,478.304,196.627,500.838,196.251z"
|
|
37126
|
-
}), h$2("path", {
|
|
37127
|
-
fill: "#2B2B2B",
|
|
37128
|
-
d: "M632.642,240.99c19.046,0.328,19.046,28.678,0,29.006C613.604,269.644,613.604,241.318,632.642,240.99z"
|
|
37129
|
-
}), h$2("path", {
|
|
37130
|
-
fill: "#2B2B2B",
|
|
37131
|
-
d: "M474.464,64.567c19.062,0.327,19.062,28.637,0,28.957C455.506,93.437,455.506,64.655,474.464,64.567z"
|
|
37132
|
-
}), h$2("path", {
|
|
37133
|
-
fill: "#2B2B2B",
|
|
37134
|
-
d: "M479.744,104.06c19.054,0.319,19.054,28.677,0,28.997C460.762,132.969,460.762,104.14,479.744,104.06z"
|
|
37135
|
-
}), h$2("rect", {
|
|
37136
|
-
x: "474.385",
|
|
37137
|
-
y: "78.803",
|
|
37138
|
-
transform: "matrix(-0.9944 0.1058 -0.1058 -0.9944 961.3718 138.2227)",
|
|
37139
|
-
fill: "#2B2B2B",
|
|
37140
|
-
width: "5.272",
|
|
37141
|
-
height: "31.605"
|
|
37142
|
-
}), h$2("rect", {
|
|
37143
|
-
x: "437.48",
|
|
37144
|
-
y: "126.203",
|
|
37145
|
-
transform: "matrix(-0.9944 0.1058 -0.1058 -0.9944 892.7841 236.662)",
|
|
37146
|
-
fill: "#2B2B2B",
|
|
37147
|
-
width: "5.272",
|
|
37148
|
-
height: "31.606"
|
|
37149
|
-
}), h$2("rect", {
|
|
37150
|
-
x: "490.251",
|
|
37151
|
-
y: "181.519",
|
|
37152
|
-
transform: "matrix(-0.0772 0.997 -0.997 -0.0772 728.7499 -306.1609)",
|
|
37153
|
-
fill: "#2B2B2B",
|
|
37154
|
-
width: "31.605",
|
|
37155
|
-
height: "5.272"
|
|
37156
|
-
}), h$2("rect", {
|
|
37157
|
-
x: "501.348",
|
|
37158
|
-
y: "116.825",
|
|
37159
|
-
transform: "matrix(-0.349 0.9371 -0.9371 -0.349 809.6375 -323.5298)",
|
|
37160
|
-
fill: "#2B2B2B",
|
|
37161
|
-
width: "31.702",
|
|
37162
|
-
height: "5.288"
|
|
37163
|
-
}), h$2("polygon", {
|
|
37164
|
-
fill: "#2B2B2B",
|
|
37165
|
-
points: "500.006,156.966 469.969,166.869 468.312,161.87 498.35,151.959 500.006,156.966 \t\t"
|
|
37166
|
-
}), h$2("polygon", {
|
|
37167
|
-
fill: "#2B2B2B",
|
|
37168
|
-
points: "474.744,120.346 443.115,121.018 443.003,115.754 474.632,115.082 474.744,120.346 \t\t"
|
|
37169
|
-
}), h$2("polygon", {
|
|
37170
|
-
fill: "#2B2B2B",
|
|
37171
|
-
points: "591.813,71.87 560.265,72.462 560.152,67.782 591.701,67.183 591.813,71.87 \t\t"
|
|
37172
|
-
}), h$2("polygon", {
|
|
37173
|
-
fill: "#2B2B2B",
|
|
37174
|
-
points: "499.438,223.992 476.472,245.614 473.248,242.223 496.206,220.601 499.438,223.992 \t\t"
|
|
37175
|
-
}), h$2("polygon", {
|
|
37176
|
-
fill: "#2B2B2B",
|
|
37177
|
-
points: "625.714,262.309 601.301,282.282 598.316,278.667 622.73,258.701 625.714,262.309 \t\t"
|
|
37178
|
-
}), h$2("polygon", {
|
|
37179
|
-
fill: "#2B2B2B",
|
|
37180
|
-
points: "587.094,241.286 595.189,271.748 590.669,272.972 582.566,242.511 \t\t"
|
|
37181
|
-
}), h$2("polygon", {
|
|
37182
|
-
fill: "#2B2B2B",
|
|
37183
|
-
points: "643.904,215.889 612.739,210.985 613.451,206.354 644.616,211.257 643.904,215.889 \t\t"
|
|
37184
|
-
}), h$2("polygon", {
|
|
37185
|
-
fill: "#2B2B2B",
|
|
37186
|
-
points: "642.568,172.725 612.188,181.22 610.907,176.717 641.289,168.222 642.568,172.725 \t\t"
|
|
37187
|
-
}), h$2("polygon", {
|
|
37188
|
-
fill: "#2B2B2B",
|
|
37189
|
-
points: "583.342,137.208 579.742,168.518 575.079,168.005 578.679,136.696 \t\t"
|
|
37190
|
-
}), h$2("polygon", {
|
|
37191
|
-
fill: "#2B2B2B",
|
|
37192
|
-
points: "545.922,177.221 519.204,160.454 521.676,156.479 548.394,173.245 545.922,177.221 \t\t"
|
|
37193
|
-
}), h$2("polygon", {
|
|
37194
|
-
fill: "#2B2B2B",
|
|
37195
|
-
points: "567.008,111.379 540.29,94.612 542.762,90.637 569.479,107.403 567.008,111.379 \t\t"
|
|
37196
|
-
}), h$2("polygon", {
|
|
37197
|
-
fill: "#2B2B2B",
|
|
37198
|
-
points: "584.438,112.122 594.733,82.325 599.173,83.829 588.878,113.626 584.438,112.122 \t\t"
|
|
37199
|
-
}), h$2("polygon", {
|
|
37200
|
-
fill: "#2B2B2B",
|
|
37201
|
-
points: "528.579,261.717 543.498,233.943 547.642,236.143 532.715,263.908 528.579,261.717 \t\t"
|
|
37202
|
-
}), h$2("polygon", {
|
|
37203
|
-
fill: "#2B2B2B",
|
|
37204
|
-
points: "633.905,106.683 609.972,86.141 613.012,82.573 636.945,103.115 633.905,106.683 \t\t"
|
|
37205
|
-
}), h$2("path", {
|
|
37206
|
-
fill: "#FFE535",
|
|
37207
|
-
d: "M575.951,156.759c62.394,1.063,62.394,93.759,0,94.807C513.604,250.502,513.62,157.814,575.951,156.759z"
|
|
37208
|
-
}))));
|
|
37821
|
+
})));
|
|
37209
37822
|
}
|
|
37210
37823
|
|
|
37211
37824
|
var bundle$3 = createCommonjsModule$1(function (module, exports) {
|
|
@@ -45148,7 +45761,7 @@
|
|
|
45148
45761
|
|
|
45149
45762
|
var e=0;function t(t){return "__private_"+e+++"_"+t}function i(e,t){if(!Object.prototype.hasOwnProperty.call(e,t))throw new TypeError("attempted to use private field on non-instance");return e}var r=function(e){this.value=e;},n=t("head"),o=t("end"),u=function(){function e(){Object.defineProperty(this,n,{writable:!0,value:void 0}),Object.defineProperty(this,o,{writable:!0,value:void 0});}var t=e.prototype;return t.enqueue=function(e){var t=new r(e);i(this,o)[o]?(i(this,o)[o].next=t,i(this,o)[o]=t):i(this,n)[n]=i(this,o)[o]=t;},t.dequeue=function(){var e=i(this,n)[n];return i(this,n)[n]=null==e?void 0:e.next,i(this,n)[n]||(i(this,o)[o]=void 0),null==e?void 0:e.value},e}();function s(e){return {done:!1,value:e}}var h={done:!0},a=t("chunkQueue"),l=t("resolveQueue"),v=t("isInProgress"),c=t("isLocked"),d=function(){function e(){Object.defineProperty(this,a,{writable:!0,value:void 0}),Object.defineProperty(this,l,{writable:!0,value:void 0}),Object.defineProperty(this,v,{writable:!0,value:void 0}),Object.defineProperty(this,c,{writable:!0,value:void 0}),this.url=null,i(this,a)[a]=new u,i(this,l)[l]=new u,i(this,v)[v]=!0,i(this,c)[c]=!1;}var t=e.prototype;return t.setUrl=function(e){this.url=e;},t.setBlobProperties=function(e){this.blobProperties=e;},t.storeChunk=function(e){i(this,v)[v]=!0;var t=i(this,l)[l].dequeue();t?t(s(e)):i(this,a)[a].enqueue(e);},t.stop=function(){i(this,v)[v]=!1;},t.reset=function(){i(this,v)[v]=!0,i(this,a)[a]=new u,i(this,l)[l]=new u,i(this,c)[c]=!1;},t.getUrl=function(){return this.url},t.getBlob=function(){},t.getReader=function(){if(i(this,c)[c])throw new Error("ReadableStorage is locked.");i(this,c)[c]=!0;var e=this;return {read:function(){var t=i(e,a)[a].dequeue();return t?Promise.resolve(s(t)):i(e,v)[v]?new Promise(function(t){return i(e,l)[l].enqueue(t)}):Promise.resolve(h)}}},e}();
|
|
45150
45763
|
|
|
45151
|
-
var css_248z$c = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.popup {\n display: flex;\n position: fixed;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n z-index: 2;\n overflow: scroll;\n}\n.popup-container {\n z-index: 1001;\n width: 100%;\n}\n.popup-container-dark {\n background: rgb(36, 35, 35);\n}\n.popup-container-light {\n background: rgb(253, 253, 253);\n}\n.popup .icon-btn-popup {\n padding: 10px;\n font-size: 1.2em;\n border: none;\n background: none;\n}\n.popup .icon-btn-popup.btn-overlay {\n z-index: 1001;\n}\n.popup .icon-btn-popup-light {\n color: #000000;\n}\n.popup .icon-btn-popup-dark {\n color: #ffffff;\n}\n.popup .background {\n position: fixed;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n background-color: rgba(229, 229, 229, 0.95);\n min-width: 100%;\n min-height: 100%;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .popup {\n min-width: 100%;\n min-height: 100%;\n }\n .popup-container {\n align-items: center;\n min-width: 100%;\n min-height: 100%;\n }\n .popup-container-content {\n align-items: center;\n margin-top: 4%;\n }\n}";
|
|
45764
|
+
var css_248z$c = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.popup {\n display: flex;\n position: fixed;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n z-index: 2;\n overflow: scroll;\n}\n.popup-container {\n z-index: 1001;\n width: 100%;\n}\n.popup-container-dark {\n background: rgb(36, 35, 35);\n}\n.popup-container-light {\n background: rgb(253, 253, 253);\n}\n.popup .icon-btn-popup {\n padding: 10px;\n font-size: 1.2em;\n border: none;\n background: none;\n}\n.popup .icon-btn-popup.btn-overlay {\n z-index: 1001;\n}\n.popup .icon-btn-popup-light {\n color: #000000;\n}\n.popup .icon-btn-popup-dark {\n color: #ffffff;\n}\n.popup .background {\n position: fixed;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n background-color: rgba(229, 229, 229, 0.95);\n min-width: 100%;\n min-height: 100%;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .popup {\n min-width: 100%;\n min-height: 100%;\n }\n .popup-container {\n align-items: center;\n min-width: 100%;\n min-height: 100%;\n }\n .popup-container-content {\n align-items: center;\n margin-top: 4%;\n }\n}";
|
|
45152
45765
|
styleInject(css_248z$c);
|
|
45153
45766
|
|
|
45154
45767
|
function PopUp(_ref) {
|
|
@@ -45187,163 +45800,6 @@
|
|
|
45187
45800
|
}));
|
|
45188
45801
|
}
|
|
45189
45802
|
|
|
45190
|
-
var $String = String;
|
|
45191
|
-
var $TypeError = TypeError;
|
|
45192
|
-
|
|
45193
|
-
var aPossiblePrototype = function (argument) {
|
|
45194
|
-
if (typeof argument == 'object' || isCallable(argument)) return argument;
|
|
45195
|
-
throw $TypeError("Can't set " + $String(argument) + ' as a prototype');
|
|
45196
|
-
};
|
|
45197
|
-
|
|
45198
|
-
/* eslint-disable no-proto -- safe */
|
|
45199
|
-
|
|
45200
|
-
// `Object.setPrototypeOf` method
|
|
45201
|
-
// https://tc39.es/ecma262/#sec-object.setprototypeof
|
|
45202
|
-
// Works with __proto__ only. Old v8 can't work with null proto objects.
|
|
45203
|
-
// eslint-disable-next-line es-x/no-object-setprototypeof -- safe
|
|
45204
|
-
|
|
45205
|
-
|
|
45206
|
-
var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
|
|
45207
|
-
var CORRECT_SETTER = false;
|
|
45208
|
-
var test = {};
|
|
45209
|
-
var setter;
|
|
45210
|
-
|
|
45211
|
-
try {
|
|
45212
|
-
// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
|
|
45213
|
-
setter = functionUncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
|
|
45214
|
-
setter(test, []);
|
|
45215
|
-
CORRECT_SETTER = test instanceof Array;
|
|
45216
|
-
} catch (error) {
|
|
45217
|
-
/* empty */
|
|
45218
|
-
}
|
|
45219
|
-
|
|
45220
|
-
return function setPrototypeOf(O, proto) {
|
|
45221
|
-
anObject(O);
|
|
45222
|
-
aPossiblePrototype(proto);
|
|
45223
|
-
if (CORRECT_SETTER) setter(O, proto);else O.__proto__ = proto;
|
|
45224
|
-
return O;
|
|
45225
|
-
};
|
|
45226
|
-
}() : undefined);
|
|
45227
|
-
|
|
45228
|
-
// makes subclassing work correct for wrapped built-ins
|
|
45229
|
-
|
|
45230
|
-
|
|
45231
|
-
var inheritIfRequired = function ($this, dummy, Wrapper) {
|
|
45232
|
-
var NewTarget, NewTargetPrototype;
|
|
45233
|
-
if ( // it can work only with native `setPrototypeOf`
|
|
45234
|
-
objectSetPrototypeOf && // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
|
|
45235
|
-
isCallable(NewTarget = dummy.constructor) && NewTarget !== Wrapper && isObject$2(NewTargetPrototype = NewTarget.prototype) && NewTargetPrototype !== Wrapper.prototype) objectSetPrototypeOf($this, NewTargetPrototype);
|
|
45236
|
-
return $this;
|
|
45237
|
-
};
|
|
45238
|
-
|
|
45239
|
-
// `thisNumberValue` abstract operation
|
|
45240
|
-
// https://tc39.es/ecma262/#sec-thisnumbervalue
|
|
45241
|
-
|
|
45242
|
-
|
|
45243
|
-
var thisNumberValue = functionUncurryThis(1.0.valueOf);
|
|
45244
|
-
|
|
45245
|
-
var getOwnPropertyNames = objectGetOwnPropertyNames.f;
|
|
45246
|
-
|
|
45247
|
-
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
|
45248
|
-
|
|
45249
|
-
var defineProperty = objectDefineProperty.f;
|
|
45250
|
-
|
|
45251
|
-
|
|
45252
|
-
|
|
45253
|
-
var trim = stringTrim.trim;
|
|
45254
|
-
|
|
45255
|
-
var NUMBER = 'Number';
|
|
45256
|
-
var NativeNumber = global$1[NUMBER];
|
|
45257
|
-
var NumberPrototype = NativeNumber.prototype;
|
|
45258
|
-
var TypeError$1 = global$1.TypeError;
|
|
45259
|
-
var arraySlice = functionUncurryThis(''.slice);
|
|
45260
|
-
var charCodeAt = functionUncurryThis(''.charCodeAt); // `ToNumeric` abstract operation
|
|
45261
|
-
// https://tc39.es/ecma262/#sec-tonumeric
|
|
45262
|
-
|
|
45263
|
-
var toNumeric = function (value) {
|
|
45264
|
-
var primValue = toPrimitive(value, 'number');
|
|
45265
|
-
return typeof primValue == 'bigint' ? primValue : toNumber(primValue);
|
|
45266
|
-
}; // `ToNumber` abstract operation
|
|
45267
|
-
// https://tc39.es/ecma262/#sec-tonumber
|
|
45268
|
-
|
|
45269
|
-
|
|
45270
|
-
var toNumber = function (argument) {
|
|
45271
|
-
var it = toPrimitive(argument, 'number');
|
|
45272
|
-
var first, third, radix, maxCode, digits, length, index, code;
|
|
45273
|
-
if (isSymbol$1(it)) throw TypeError$1('Cannot convert a Symbol value to a number');
|
|
45274
|
-
|
|
45275
|
-
if (typeof it == 'string' && it.length > 2) {
|
|
45276
|
-
it = trim(it);
|
|
45277
|
-
first = charCodeAt(it, 0);
|
|
45278
|
-
|
|
45279
|
-
if (first === 43 || first === 45) {
|
|
45280
|
-
third = charCodeAt(it, 2);
|
|
45281
|
-
if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix
|
|
45282
|
-
} else if (first === 48) {
|
|
45283
|
-
switch (charCodeAt(it, 1)) {
|
|
45284
|
-
case 66:
|
|
45285
|
-
case 98:
|
|
45286
|
-
radix = 2;
|
|
45287
|
-
maxCode = 49;
|
|
45288
|
-
break;
|
|
45289
|
-
// fast equal of /^0b[01]+$/i
|
|
45290
|
-
|
|
45291
|
-
case 79:
|
|
45292
|
-
case 111:
|
|
45293
|
-
radix = 8;
|
|
45294
|
-
maxCode = 55;
|
|
45295
|
-
break;
|
|
45296
|
-
// fast equal of /^0o[0-7]+$/i
|
|
45297
|
-
|
|
45298
|
-
default:
|
|
45299
|
-
return +it;
|
|
45300
|
-
}
|
|
45301
|
-
|
|
45302
|
-
digits = arraySlice(it, 2);
|
|
45303
|
-
length = digits.length;
|
|
45304
|
-
|
|
45305
|
-
for (index = 0; index < length; index++) {
|
|
45306
|
-
code = charCodeAt(digits, index); // parseInt parses a string to a first unavailable symbol
|
|
45307
|
-
// but ToNumber should return NaN if a string contains unavailable symbols
|
|
45308
|
-
|
|
45309
|
-
if (code < 48 || code > maxCode) return NaN;
|
|
45310
|
-
}
|
|
45311
|
-
|
|
45312
|
-
return parseInt(digits, radix);
|
|
45313
|
-
}
|
|
45314
|
-
}
|
|
45315
|
-
|
|
45316
|
-
return +it;
|
|
45317
|
-
}; // `Number` constructor
|
|
45318
|
-
// https://tc39.es/ecma262/#sec-number-constructor
|
|
45319
|
-
|
|
45320
|
-
|
|
45321
|
-
if (isForced_1(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumber('+0x1'))) {
|
|
45322
|
-
var NumberWrapper = function Number(value) {
|
|
45323
|
-
var n = arguments.length < 1 ? 0 : NativeNumber(toNumeric(value));
|
|
45324
|
-
var dummy = this; // check on 1..constructor(foo) case
|
|
45325
|
-
|
|
45326
|
-
return objectIsPrototypeOf(NumberPrototype, dummy) && fails(function () {
|
|
45327
|
-
thisNumberValue(dummy);
|
|
45328
|
-
}) ? inheritIfRequired(Object(n), dummy, NumberWrapper) : n;
|
|
45329
|
-
};
|
|
45330
|
-
|
|
45331
|
-
for (var keys = descriptors ? getOwnPropertyNames(NativeNumber) : ( // ES3:
|
|
45332
|
-
'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' + // ES2015 (in case, if modules with ES2015 Number statics required before):
|
|
45333
|
-
'EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,' + // ESNext
|
|
45334
|
-
'fromString,range').split(','), j = 0, key; keys.length > j; j++) {
|
|
45335
|
-
if (hasOwnProperty_1(NativeNumber, key = keys[j]) && !hasOwnProperty_1(NumberWrapper, key)) {
|
|
45336
|
-
defineProperty(NumberWrapper, key, getOwnPropertyDescriptor(NativeNumber, key));
|
|
45337
|
-
}
|
|
45338
|
-
}
|
|
45339
|
-
|
|
45340
|
-
NumberWrapper.prototype = NumberPrototype;
|
|
45341
|
-
NumberPrototype.constructor = NumberWrapper;
|
|
45342
|
-
defineBuiltIn(global$1, NUMBER, NumberWrapper, {
|
|
45343
|
-
constructor: true
|
|
45344
|
-
});
|
|
45345
|
-
}
|
|
45346
|
-
|
|
45347
45803
|
var css_248z$b = "@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);\n.trust-video {\n border: none;\n width: 100%;\n height: auto;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-wrapper {\n width: 100%;\n margin-top: -80%;\n align-items: center;\n}\n.trust-video-wrapper:hover .trust-video-controls {\n visibility: visible;\n opacity: 1;\n}\n.trust-video-msg {\n display: flex;\n align-items: center;\n}\n.trust-video-controls {\n position: absolute;\n bottom: 0;\n width: 100%;\n margin-top: 35%;\n transform: translate(0, -50%);\n padding-left: 36px;\n border-radius: 10px;\n height: 4em;\n align-items: center;\n justify-content: space-between;\n visibility: hidden;\n opacity: 0;\n transition: all 0.25s ease-out;\n display: none;\n}\n.trust-video-controls.show {\n display: flex;\n}\n.trust-video-play {\n border-color: transparent;\n transition: 0.3s;\n font-size: 3em;\n margin: auto;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n padding: 0;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n border-radius: 50%;\n font: normal normal normal 18px/1 FontAwesome;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n border-radius: 20%;\n line-height: 1.5em;\n width: 2em;\n height: 1.5em;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-volume:before {\n content: \"\\f028\";\n}\n.trust-video-volume.off:before {\n content: \"\\f026\";\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n line-height: 2.5rem;\n width: 3em;\n border-radius: 20%;\n height: 2.5rem;\n margin-right: 5%;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n.trust-video-fullscreen:before {\n content: \"\\f065\";\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .trust-video-wrapper {\n margin-top: 20%;\n }\n}\n@media only screen and (max-width: 768px) {\n .trust-video {\n border: none;\n width: 70%;\n }\n}";
|
|
45348
45804
|
styleInject(css_248z$b);
|
|
45349
45805
|
|
|
@@ -45601,7 +46057,7 @@
|
|
|
45601
46057
|
}))));
|
|
45602
46058
|
}
|
|
45603
46059
|
|
|
45604
|
-
var css_248z$9 = "@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);\nbody {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.trust-video {\n border: none;\n width: 100%;\n height: auto;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-wrapper {\n width: 100%;\n margin-top: -80%;\n align-items: center;\n}\n.trust-video-wrapper:hover .trust-video-controls {\n visibility: visible;\n opacity: 1;\n}\n.trust-video-msg {\n display: flex;\n align-items: center;\n}\n.trust-video-controls {\n position: absolute;\n bottom: 0;\n width: 100%;\n margin-top: 35%;\n transform: translate(0, -50%);\n padding-left: 36px;\n border-radius: 10px;\n height: 4em;\n align-items: center;\n justify-content: space-between;\n visibility: hidden;\n opacity: 0;\n transition: all 0.25s ease-out;\n display: none;\n}\n.trust-video-controls.show {\n display: flex;\n}\n.trust-video-play {\n border-color: transparent;\n transition: 0.3s;\n font-size: 3em;\n margin: auto;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n padding: 0;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n border-radius: 50%;\n font: normal normal normal 18px/1 FontAwesome;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n border-radius: 20%;\n line-height: 1.5em;\n width: 2em;\n height: 1.5em;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-volume:before {\n content: \"\\f028\";\n}\n.trust-video-volume.off:before {\n content: \"\\f026\";\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n line-height: 2.5rem;\n width: 3em;\n border-radius: 20%;\n height: 2.5rem;\n margin-right: 5%;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n.trust-video-fullscreen:before {\n content: \"\\f065\";\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .trust-video-wrapper {\n margin-top: 20%;\n }\n}\n@media only screen and (max-width: 768px) {\n .trust-video {\n border: none;\n width: 70%;\n }\n}\n.utu-screen-recording {\n width: 100%;\n height: 100vh;\n margin: 5% auto 0;\n position: relative;\n z-index: 1;\n justify-content: center;\n}\n\n.btn-round {\n border: none;\n margin: 5px 0;\n width: 6rem;\n height: 6rem;\n border-radius: 90px;\n border: none;\n font-size: 9px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n z-index: 1;\n}\n.btn-round-light {\n background-color: rgb(251, 201, 61);\n}\n.btn-round-dark {\n background-color: rgb(251, 201, 61);\n}\n.btn-round-loading {\n position: absolute;\n bottom: 5.5rem;\n}\n.btn-round-spinner-light {\n fill: #000000;\n}\n.btn-round-spinner-dark {\n fill: #000000;\n}\n.btn-round-play {\n width: 4rem;\n margin-left: 0.5rem;\n}\n.btn-round-play-light {\n fill: #000000;\n}\n.btn-round-play-dark {\n fill: #000000;\n}\n.btn-round-stop {\n position: absolute;\n bottom: 17rem;\n}\n.btn-round-stop-light {\n fill: #000000;\n}\n.btn-round-stop-dark {\n fill: #000000;\n}\n.btn-round-text-light {\n color: #000000;\n}\n.btn-round-text-dark {\n color: #000000;\n}\n.btn-container {\n display: flex;\n z-index: 0;\n justify-content: center;\n}\n.btn-stop-icon {\n width: 30px;\n height: 30px;\n border-radius: 5px;\n}\n.btn-stop-icon-light {\n background: #000000;\n}\n.btn-stop-icon-dark {\n background: #000000;\n}\n\n.video-recorder {\n padding-top: 0;\n padding-bottom: 4rem;\n height: fit-content;\n}\n\n.video-container {\n padding-top: 0;\n padding-bottom: 4rem;\n}\n\n.response-message {\n height: 3rem;\n line-height: 3rem;\n width: 100%;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .video-recorder {\n padding-bottom: 4rem;\n height: fit-content;\n background-color: rgb(253, 253, 253) !important;\n }\n .utu-screen-recording {\n max-height: 80rem;\n min-width: 20rem;\n width: 27rem;\n height: 43rem;\n margin: 5% auto 0;\n z-index: 1;\n justify-content: center;\n border-bottom-left-radius: 2%;\n border-bottom-right-radius: 2%;\n border-bottom: 13px rgb(251, 201, 61) solid;\n }\n .btn-round-stop {\n bottom: 2.5rem;\n }\n .video-container {\n padding-top: 2rem;\n padding-bottom: 2rem;\n }\n}";
|
|
46060
|
+
var css_248z$9 = "@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);\nbody {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.trust-video {\n border: none;\n width: 100%;\n height: auto;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-wrapper {\n width: 100%;\n margin-top: -80%;\n align-items: center;\n}\n.trust-video-wrapper:hover .trust-video-controls {\n visibility: visible;\n opacity: 1;\n}\n.trust-video-msg {\n display: flex;\n align-items: center;\n}\n.trust-video-controls {\n position: absolute;\n bottom: 0;\n width: 100%;\n margin-top: 35%;\n transform: translate(0, -50%);\n padding-left: 36px;\n border-radius: 10px;\n height: 4em;\n align-items: center;\n justify-content: space-between;\n visibility: hidden;\n opacity: 0;\n transition: all 0.25s ease-out;\n display: none;\n}\n.trust-video-controls.show {\n display: flex;\n}\n.trust-video-play {\n border-color: transparent;\n transition: 0.3s;\n font-size: 3em;\n margin: auto;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n padding: 0;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n border-radius: 50%;\n font: normal normal normal 18px/1 FontAwesome;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n border-radius: 20%;\n line-height: 1.5em;\n width: 2em;\n height: 1.5em;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-volume:before {\n content: \"\\f028\";\n}\n.trust-video-volume.off:before {\n content: \"\\f026\";\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n line-height: 2.5rem;\n width: 3em;\n border-radius: 20%;\n height: 2.5rem;\n margin-right: 5%;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n.trust-video-fullscreen:before {\n content: \"\\f065\";\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .trust-video-wrapper {\n margin-top: 20%;\n }\n}\n@media only screen and (max-width: 768px) {\n .trust-video {\n border: none;\n width: 70%;\n }\n}\n.utu-screen-recording {\n width: 100%;\n height: 100vh;\n margin: 5% auto 0;\n position: relative;\n z-index: 1;\n justify-content: center;\n}\n\n.btn-round {\n border: none;\n margin: 5px 0;\n width: 6rem;\n height: 6rem;\n border-radius: 90px;\n border: none;\n font-size: 9px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n z-index: 1;\n}\n.btn-round-light {\n background-color: rgb(251, 201, 61);\n}\n.btn-round-dark {\n background-color: rgb(251, 201, 61);\n}\n.btn-round-loading {\n position: absolute;\n bottom: 5.5rem;\n}\n.btn-round-spinner-light {\n fill: #000000;\n}\n.btn-round-spinner-dark {\n fill: #000000;\n}\n.btn-round-play {\n width: 4rem;\n margin-left: 0.5rem;\n}\n.btn-round-play-light {\n fill: #000000;\n}\n.btn-round-play-dark {\n fill: #000000;\n}\n.btn-round-stop {\n position: absolute;\n bottom: 17rem;\n}\n.btn-round-stop-light {\n fill: #000000;\n}\n.btn-round-stop-dark {\n fill: #000000;\n}\n.btn-round-text-light {\n color: #000000;\n}\n.btn-round-text-dark {\n color: #000000;\n}\n.btn-container {\n display: flex;\n z-index: 0;\n justify-content: center;\n}\n.btn-stop-icon {\n width: 30px;\n height: 30px;\n border-radius: 5px;\n}\n.btn-stop-icon-light {\n background: #000000;\n}\n.btn-stop-icon-dark {\n background: #000000;\n}\n\n.video-recorder {\n padding-top: 0;\n padding-bottom: 4rem;\n height: fit-content;\n}\n\n.video-container {\n padding-top: 0;\n padding-bottom: 4rem;\n}\n\n.response-message {\n height: 3rem;\n line-height: 3rem;\n width: 100%;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .video-recorder {\n padding-bottom: 4rem;\n height: fit-content;\n background-color: rgb(253, 253, 253) !important;\n }\n .utu-screen-recording {\n max-height: 80rem;\n min-width: 20rem;\n width: 27rem;\n height: 43rem;\n margin: 5% auto 0;\n z-index: 1;\n justify-content: center;\n border-bottom-left-radius: 2%;\n border-bottom-right-radius: 2%;\n border-bottom: 13px rgb(251, 201, 61) solid;\n }\n .btn-round-stop {\n bottom: 2.5rem;\n }\n .video-container {\n padding-top: 2rem;\n padding-bottom: 2rem;\n }\n}";
|
|
45605
46061
|
styleInject(css_248z$9);
|
|
45606
46062
|
|
|
45607
46063
|
function RecordIcon() {
|
|
@@ -45906,7 +46362,7 @@
|
|
|
45906
46362
|
}, h$2(Logo, null)))));
|
|
45907
46363
|
}
|
|
45908
46364
|
|
|
45909
|
-
var css_248z$8 = "@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);\n.trust-video {\n border: none;\n width: 100%;\n height: auto;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-wrapper {\n width: 100%;\n margin-top: -80%;\n align-items: center;\n}\n.trust-video-wrapper:hover .trust-video-controls {\n visibility: visible;\n opacity: 1;\n}\n.trust-video-msg {\n display: flex;\n align-items: center;\n}\n.trust-video-controls {\n position: absolute;\n bottom: 0;\n width: 100%;\n margin-top: 35%;\n transform: translate(0, -50%);\n padding-left: 36px;\n border-radius: 10px;\n height: 4em;\n align-items: center;\n justify-content: space-between;\n visibility: hidden;\n opacity: 0;\n transition: all 0.25s ease-out;\n display: none;\n}\n.trust-video-controls.show {\n display: flex;\n}\n.trust-video-play {\n border-color: transparent;\n transition: 0.3s;\n font-size: 3em;\n margin: auto;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n padding: 0;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n border-radius: 50%;\n font: normal normal normal 18px/1 FontAwesome;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n border-radius: 20%;\n line-height: 1.5em;\n width: 2em;\n height: 1.5em;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-volume:before {\n content: \"\\f028\";\n}\n.trust-video-volume.off:before {\n content: \"\\f026\";\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n line-height: 2.5rem;\n width: 3em;\n border-radius: 20%;\n height: 2.5rem;\n margin-right: 5%;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n.trust-video-fullscreen:before {\n content: \"\\f065\";\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .trust-video-wrapper {\n margin-top: 20%;\n }\n}\n@media only screen and (max-width: 768px) {\n .trust-video {\n border: none;\n width: 70%;\n }\n}\nbody {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.utu-feedback-details {\n display: flex;\n flex-direction: column;\n text-align: center;\n width: 100%;\n position: relative;\n z-index: 1;\n justify-content: start;\n border-bottom: 15px rgb(251, 201, 61) solid;\n}\n.utu-feedback-details-details {\n justify-content: start;\n max-height: 40rem;\n}\n.utu-feedback-details-video-popup {\n justify-content: center;\n max-height: 80rem;\n height: 43rem;\n}\n\n.mobile-view {\n visibility: visible;\n}\n\n.desktop-view {\n display: none;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-feedback-details {\n border-bottom: 0;\n z-index: 1;\n align-items: center;\n width: 100%;\n }\n .mobile-view {\n display: none;\n }\n .desktop-view {\n display: flex;\n width: 100%;\n flex-direction: column;\n }\n .desktop-view-block-1 {\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-evenly;\n margin: 1rem 0;\n }\n .desktop-view-block-1-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-1-light {\n background-color: #fcf8e5;\n }\n .desktop-view-block-2 {\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n margin: 1rem 0;\n }\n .desktop-view-block-2-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-2-light {\n background-color: #fcf8e5;\n }\n}";
|
|
46365
|
+
var css_248z$8 = "@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);\n.trust-video {\n border: none;\n width: 100%;\n height: auto;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-wrapper {\n width: 100%;\n margin-top: -80%;\n align-items: center;\n}\n.trust-video-wrapper:hover .trust-video-controls {\n visibility: visible;\n opacity: 1;\n}\n.trust-video-msg {\n display: flex;\n align-items: center;\n}\n.trust-video-controls {\n position: absolute;\n bottom: 0;\n width: 100%;\n margin-top: 35%;\n transform: translate(0, -50%);\n padding-left: 36px;\n border-radius: 10px;\n height: 4em;\n align-items: center;\n justify-content: space-between;\n visibility: hidden;\n opacity: 0;\n transition: all 0.25s ease-out;\n display: none;\n}\n.trust-video-controls.show {\n display: flex;\n}\n.trust-video-play {\n border-color: transparent;\n transition: 0.3s;\n font-size: 3em;\n margin: auto;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n padding: 0;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n border-radius: 50%;\n font: normal normal normal 18px/1 FontAwesome;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n border-radius: 20%;\n line-height: 1.5em;\n width: 2em;\n height: 1.5em;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-volume:before {\n content: \"\\f028\";\n}\n.trust-video-volume.off:before {\n content: \"\\f026\";\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n line-height: 2.5rem;\n width: 3em;\n border-radius: 20%;\n height: 2.5rem;\n margin-right: 5%;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n.trust-video-fullscreen:before {\n content: \"\\f065\";\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .trust-video-wrapper {\n margin-top: 20%;\n }\n}\n@media only screen and (max-width: 768px) {\n .trust-video {\n border: none;\n width: 70%;\n }\n}\nbody {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.utu-feedback-details {\n display: flex;\n flex-direction: column;\n text-align: center;\n width: 100%;\n position: relative;\n z-index: 1;\n justify-content: start;\n border-bottom: 15px rgb(251, 201, 61) solid;\n}\n.utu-feedback-details-details {\n justify-content: start;\n max-height: 40rem;\n}\n.utu-feedback-details-video-popup {\n justify-content: center;\n max-height: 80rem;\n height: 43rem;\n}\n\n.mobile-view {\n visibility: visible;\n}\n\n.desktop-view {\n display: none;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-feedback-details {\n border-bottom: 0;\n z-index: 1;\n align-items: center;\n width: 100%;\n }\n .mobile-view {\n display: none;\n }\n .desktop-view {\n display: flex;\n width: 100%;\n flex-direction: column;\n }\n .desktop-view-block-1 {\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-evenly;\n margin: 1rem 0;\n }\n .desktop-view-block-1-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-1-light {\n background-color: #fcf8e5;\n }\n .desktop-view-block-2 {\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n margin: 1rem 0;\n }\n .desktop-view-block-2-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-2-light {\n background-color: #fcf8e5;\n }\n}";
|
|
45910
46366
|
styleInject(css_248z$8);
|
|
45911
46367
|
|
|
45912
46368
|
var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');
|
|
@@ -45953,10 +46409,59 @@
|
|
|
45953
46409
|
}
|
|
45954
46410
|
});
|
|
45955
46411
|
|
|
45956
|
-
var css_248z$7 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.endor-avatar {\n width: 2rem;\n}\n\n.endorsement-body {\n display: flex;\n}\n\n.truncate-text {\n display: inline-block;\n width: 5rem;\n
|
|
46412
|
+
var css_248z$7 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.endor-avatar {\n width: 2rem;\n}\n\n.endorsement-body {\n display: flex;\n}\n\n.truncate-text {\n display: inline-block;\n max-width: 5rem;\n vertical-align: bottom;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.endor-text {\n width: 100%;\n justify-content: space-around;\n padding-left: 3rem;\n padding-right: 3rem;\n font-size: 1rem;\n align-items: center;\n}\n.endor-text-light {\n color: black;\n}\n.endor-text-dark {\n color: white;\n}\n.endor-text-section {\n width: 100%;\n padding-top: 2.5rem;\n padding-bottom: 2.5rem;\n align-items: center;\n}\n.endor-text-stakes-item {\n font-size: 1.5rem;\n}\n.endor-text-stakes-item-light {\n color: black;\n}\n.endor-text-stakes-item-dark {\n color: white;\n}\n.endor-text-stakes-item-2 {\n font-size: 1rem;\n}\n.endor-text-stakes-item-2-light {\n color: black;\n}\n.endor-text-stakes-item-2-dark {\n color: white;\n}\n.endor-text-contacts-section {\n padding-left: 2rem;\n padding-right: 2rem;\n font-size: 0.7rem;\n width: 27em;\n text-align: left;\n}\n.endor-text-contacts-section-light {\n color: black;\n}\n.endor-text-contacts-section-dark {\n color: white;\n}\n.endor-text-contacts-body {\n font-size: 1rem;\n margin-top: 0.5em;\n}\n.endor-text-image-item {\n margin-left: -15px;\n height: 4rem;\n border-radius: 50%;\n}\n.endor-text-image-item-light {\n border: 2px solid rgb(251, 201, 61);\n}\n.endor-text-image-item-dark {\n border: 2px solid rgb(251, 201, 61);\n}";
|
|
45957
46413
|
styleInject(css_248z$7);
|
|
45958
46414
|
|
|
45959
46415
|
// const minLength = 5;
|
|
46416
|
+
var CONNECTION_TYPE_REF = {
|
|
46417
|
+
// twitter: "Your Twitter connection",
|
|
46418
|
+
// telegram: "Your Telegram contact"
|
|
46419
|
+
twitter: "Twitter user",
|
|
46420
|
+
telegram: "Telegram user"
|
|
46421
|
+
};
|
|
46422
|
+
var DEFAULT_CONNECTION_REF = "User";
|
|
46423
|
+
|
|
46424
|
+
function getConnectionInfo(entity) {
|
|
46425
|
+
if (!entity) return {
|
|
46426
|
+
ref: "Someone"
|
|
46427
|
+
}; // eslint-disable-next-line no-restricted-syntax
|
|
46428
|
+
|
|
46429
|
+
for (var key in CONNECTION_TYPE_REF) {
|
|
46430
|
+
if (entity.properties[key]) {
|
|
46431
|
+
return {
|
|
46432
|
+
ref: CONNECTION_TYPE_REF[key],
|
|
46433
|
+
name: entity.properties[key].name
|
|
46434
|
+
};
|
|
46435
|
+
}
|
|
46436
|
+
} // No connection type was found, return default
|
|
46437
|
+
|
|
46438
|
+
|
|
46439
|
+
return {
|
|
46440
|
+
ref: DEFAULT_CONNECTION_REF,
|
|
46441
|
+
name: entity.name
|
|
46442
|
+
};
|
|
46443
|
+
}
|
|
46444
|
+
|
|
46445
|
+
var SELF_INFO = {
|
|
46446
|
+
ref: "You"
|
|
46447
|
+
};
|
|
46448
|
+
|
|
46449
|
+
function getEndorsementTextBody(userUuid, endorsementInfo) {
|
|
46450
|
+
var _connectionInfo$name, _endorsementInfo$endo;
|
|
46451
|
+
|
|
46452
|
+
var endorser = endorsementInfo.source;
|
|
46453
|
+
var isSelf = endorser.uuid === userUuid;
|
|
46454
|
+
var connectionInfo = isSelf ? SELF_INFO : getConnectionInfo(endorser);
|
|
46455
|
+
var has = isSelf ? "have" : "has";
|
|
46456
|
+
return h$2("p", {
|
|
46457
|
+
className: "endor-text-contacts-body "
|
|
46458
|
+
}, connectionInfo.ref, "\xA0", ((_connectionInfo$name = connectionInfo.name) === null || _connectionInfo$name === void 0 ? void 0 : _connectionInfo$name.length) > 0 && h$2("span", {
|
|
46459
|
+
className: "truncate-text"
|
|
46460
|
+
}, h$2("b", null, connectionInfo.name), "\xA0"), has, " endorsed ", h$2("b", {
|
|
46461
|
+
className: "mx-1"
|
|
46462
|
+
}, (_endorsementInfo$endo = endorsementInfo.endorsement) === null || _endorsementInfo$endo === void 0 ? void 0 : _endorsementInfo$endo.value, " UTT"));
|
|
46463
|
+
}
|
|
46464
|
+
|
|
45960
46465
|
function EndorsementsList(props) {
|
|
45961
46466
|
// environments
|
|
45962
46467
|
var _useState = p(false),
|
|
@@ -45979,10 +46484,11 @@
|
|
|
45979
46484
|
|
|
45980
46485
|
if (!endorsements) {
|
|
45981
46486
|
return h$2(p$1, null);
|
|
45982
|
-
}
|
|
46487
|
+
}
|
|
45983
46488
|
|
|
46489
|
+
var displayEndorsements = endorsements.slice(0, config.feedbackDetailsMaxEndorsements); // image
|
|
45984
46490
|
|
|
45985
|
-
var img =
|
|
46491
|
+
var img = displayEndorsements.map(function (i) {
|
|
45986
46492
|
var _i$source;
|
|
45987
46493
|
|
|
45988
46494
|
return (_i$source = i.source) === null || _i$source === void 0 ? void 0 : _i$source.image;
|
|
@@ -46000,21 +46506,7 @@
|
|
|
46000
46506
|
e.target.alt = "";
|
|
46001
46507
|
}
|
|
46002
46508
|
});
|
|
46003
|
-
};
|
|
46004
|
-
|
|
46005
|
-
|
|
46006
|
-
var nameFirst = endorsements.map(function (i) {
|
|
46007
|
-
var _i$source2;
|
|
46008
|
-
|
|
46009
|
-
return (_i$source2 = i.source) === null || _i$source2 === void 0 ? void 0 : _i$source2.name.slice(0, 3);
|
|
46010
|
-
});
|
|
46011
|
-
var nameSec = endorsements.map(function (i) {
|
|
46012
|
-
var _i$source3;
|
|
46013
|
-
|
|
46014
|
-
return (_i$source3 = i.source) === null || _i$source3 === void 0 ? void 0 : _i$source3.name.slice(-3);
|
|
46015
|
-
});
|
|
46016
|
-
nameFirst === null || nameFirst === void 0 ? void 0 : nameFirst.concat(nameSec); // stake
|
|
46017
|
-
// const endorStk = endorsements.map(i => i.endorsement?.value)
|
|
46509
|
+
};
|
|
46018
46510
|
|
|
46019
46511
|
return h$2(BaseComponent, {
|
|
46020
46512
|
style: css_248z$7,
|
|
@@ -46025,8 +46517,8 @@
|
|
|
46025
46517
|
className: "endor-text-section utu-section-".concat(envCondition)
|
|
46026
46518
|
}, h$2("div", {
|
|
46027
46519
|
className: "endor-text endor-text-".concat(envCondition)
|
|
46028
|
-
},
|
|
46029
|
-
var _i$
|
|
46520
|
+
}, displayEndorsements.map(function (i) {
|
|
46521
|
+
var _i$endorsement;
|
|
46030
46522
|
|
|
46031
46523
|
return h$2("div", {
|
|
46032
46524
|
className: "py-3 px-5 endorsement-body"
|
|
@@ -46034,19 +46526,11 @@
|
|
|
46034
46526
|
className: "endor-text-img"
|
|
46035
46527
|
}, endorImg()), h$2("div", {
|
|
46036
46528
|
className: "endor-text-contacts-section"
|
|
46037
|
-
}, h$2("
|
|
46038
|
-
className: "endor-text-contacts-body "
|
|
46039
|
-
}, "Your connection ", h$2("span", {
|
|
46040
|
-
className: "truncate-text"
|
|
46041
|
-
}, h$2("b", {
|
|
46042
|
-
className: ""
|
|
46043
|
-
}, (_i$source4 = i.source) === null || _i$source4 === void 0 ? void 0 : _i$source4.name)), "has endorsed ", h$2("b", {
|
|
46044
|
-
className: "mx-1"
|
|
46045
|
-
}, (_i$endorsement = i.endorsement) === null || _i$endorsement === void 0 ? void 0 : _i$endorsement.value, " UTT "), " ")), h$2("div", {
|
|
46529
|
+
}, getEndorsementTextBody(props[ATTR_SOURCE_UUID], i)), h$2("div", {
|
|
46046
46530
|
className: "endor-text-stakes"
|
|
46047
46531
|
}, h$2("div", {
|
|
46048
46532
|
className: "endor-text-stakes-item"
|
|
46049
|
-
},
|
|
46533
|
+
}, h$2("b", null, (_i$endorsement = i.endorsement) === null || _i$endorsement === void 0 ? void 0 : _i$endorsement.value)), h$2("div", {
|
|
46050
46534
|
className: "endor-text-stakes-item-2"
|
|
46051
46535
|
}, h$2("b", null, "staked"))));
|
|
46052
46536
|
}))));
|
|
@@ -46106,7 +46590,7 @@
|
|
|
46106
46590
|
}
|
|
46107
46591
|
});
|
|
46108
46592
|
|
|
46109
|
-
var css_248z$5 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.badge-section {\n padding-left: 1rem;\n width: 40%;\n}\n\n.badge-container {\n display: flex;\n padding-top: 1rem;\n padding-bottom: 1rem;\n box-sizing: border-box;\n}\n.badge-img {\n border-radius: 50%;\n height: 4rem;\n width: 4rem;\n margin-bottom: 0.5rem;\n margin-left: 0.5rem;\n margin-right: 0.5rem;\n}\n.badge-counter {\n border-radius: 50%;\n border: 1px rgb(235, 232, 232) solid;\n height: 1rem;\n width: 1rem;\n font-size: 0.6rem;\n justify-self: center;\n}\n.badge-counter-light {\n background-color: rgb(253, 253, 253);\n color: #000000;\n}\n.badge-counter-dark {\n background-color: rgb(36, 35, 35);\n color: #ffffff;\n}\n.badge-title {\n padding-bottom: 0.5rem;\n font-size: 0.7rem;\n}\n.badge-title-dark {\n color: #ffffff;\n}\n.badge-title-light {\n color: #000000;\n}\n.badge-counter-align {\n align-items: center;\n}\n.badge-section {\n display: flex;\n justify-content: center;\n padding-top: 1rem;\n padding-bottom: 1rem;\n width: 100%;\n}\n.badge-spacing {\n display: flex;\n flex-direction: column;\n margin-right: 0.5rem;\n margin-left: 0.5rem;\n padding-bottom: 3rem;\n padding-top: 3rem;\n}\n.badge-position-child {\n position: relative;\n top: 2.6rem;\n right: 1.3rem;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .badge-section {\n width: 40%;\n }\n}";
|
|
46593
|
+
var css_248z$5 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.badge-section {\n padding-left: 1rem;\n width: 40%;\n}\n\n.badge-container {\n display: flex;\n padding-top: 1rem;\n padding-bottom: 1rem;\n box-sizing: border-box;\n}\n.badge-img {\n border-radius: 50%;\n height: 4rem;\n width: 4rem;\n margin-bottom: 0.5rem;\n margin-left: 0.5rem;\n margin-right: 0.5rem;\n}\n.badge-counter {\n border-radius: 50%;\n border: 1px rgb(235, 232, 232) solid;\n height: 1rem;\n width: 1rem;\n font-size: 0.6rem;\n justify-self: center;\n}\n.badge-counter-light {\n background-color: rgb(253, 253, 253);\n color: #000000;\n}\n.badge-counter-dark {\n background-color: rgb(36, 35, 35);\n color: #ffffff;\n}\n.badge-title {\n padding-bottom: 0.5rem;\n font-size: 0.7rem;\n}\n.badge-title-dark {\n color: #ffffff;\n}\n.badge-title-light {\n color: #000000;\n}\n.badge-counter-align {\n align-items: center;\n}\n.badge-section {\n display: flex;\n justify-content: center;\n padding-top: 1rem;\n padding-bottom: 1rem;\n width: 100%;\n}\n.badge-spacing {\n display: flex;\n flex-direction: column;\n margin-right: 0.5rem;\n margin-left: 0.5rem;\n padding-bottom: 3rem;\n padding-top: 3rem;\n}\n.badge-position-child {\n position: relative;\n top: 2.6rem;\n right: 1.3rem;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .badge-section {\n width: 40%;\n }\n}";
|
|
46110
46594
|
styleInject(css_248z$5);
|
|
46111
46595
|
|
|
46112
46596
|
function BadgesShow$1(props) {
|
|
@@ -46195,7 +46679,7 @@
|
|
|
46195
46679
|
}))));
|
|
46196
46680
|
}
|
|
46197
46681
|
|
|
46198
|
-
var css_248z$3 = "@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);\n.trust-video {\n border: none;\n width: 100%;\n height: auto;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-wrapper {\n width: 100%;\n margin-top: -80%;\n align-items: center;\n}\n.trust-video-wrapper:hover .trust-video-controls {\n visibility: visible;\n opacity: 1;\n}\n.trust-video-msg {\n display: flex;\n align-items: center;\n}\n.trust-video-controls {\n position: absolute;\n bottom: 0;\n width: 100%;\n margin-top: 35%;\n transform: translate(0, -50%);\n padding-left: 36px;\n border-radius: 10px;\n height: 4em;\n align-items: center;\n justify-content: space-between;\n visibility: hidden;\n opacity: 0;\n transition: all 0.25s ease-out;\n display: none;\n}\n.trust-video-controls.show {\n display: flex;\n}\n.trust-video-play {\n border-color: transparent;\n transition: 0.3s;\n font-size: 3em;\n margin: auto;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n padding: 0;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n border-radius: 50%;\n font: normal normal normal 18px/1 FontAwesome;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n border-radius: 20%;\n line-height: 1.5em;\n width: 2em;\n height: 1.5em;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-volume:before {\n content: \"\\f028\";\n}\n.trust-video-volume.off:before {\n content: \"\\f026\";\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n line-height: 2.5rem;\n width: 3em;\n border-radius: 20%;\n height: 2.5rem;\n margin-right: 5%;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n.trust-video-fullscreen:before {\n content: \"\\f065\";\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .trust-video-wrapper {\n margin-top: 20%;\n }\n}\n@media only screen and (max-width: 768px) {\n .trust-video {\n border: none;\n width: 70%;\n }\n}\nbody {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.feedback-details-profile {\n cursor: pointer;\n}\n\n.utu-feedback {\n position: relative;\n width: 50%;\n margin: auto;\n}\n\n.avatar-img {\n border-radius: 50%;\n height: 2rem;\n border: 1px rgb(155, 152, 152) solid;\n}\n.avatar-img-top {\n height: 5rem;\n border-radius: 50%;\n border: 4px solid rgb(251, 201, 61);\n}\n.avatar-img-top:not(:first-child) {\n margin-left: -15px;\n}\n.avatar-img-top-video {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding-bottom: 4rem;\n padding-top: 4rem;\n}\n.avatar-img-text {\n font-size: 0.8rem;\n text-align: left;\n width: 19rem;\n}\n.avatar-no-img {\n width: 6rem;\n border-radius: 50%;\n padding: 1.5rem;\n}\n.avatar-no-img-no-vid {\n padding: 5px !important;\n}\n.avatar-no-img-light {\n background-color: rgb(251, 201, 61);\n border: 4px solid rgb(251, 201, 61);\n}\n.avatar-no-img-dark {\n background-color: rgb(251, 201, 61);\n border: 4px solid rgb(251, 201, 61);\n}\n.avatar-no-video-dark {\n fill: #000000;\n}\n.avatar-no-video-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .avatar-img-top-video {\n padding-bottom: 4rem;\n padding-top: 4rem;\n }\n .avatar-no-img {\n margin-bottom: 1rem;\n margin-top: 0.5rem;\n }\n}";
|
|
46682
|
+
var css_248z$3 = "@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);\n.trust-video {\n border: none;\n width: 100%;\n height: auto;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-wrapper {\n width: 100%;\n margin-top: -80%;\n align-items: center;\n}\n.trust-video-wrapper:hover .trust-video-controls {\n visibility: visible;\n opacity: 1;\n}\n.trust-video-msg {\n display: flex;\n align-items: center;\n}\n.trust-video-controls {\n position: absolute;\n bottom: 0;\n width: 100%;\n margin-top: 35%;\n transform: translate(0, -50%);\n padding-left: 36px;\n border-radius: 10px;\n height: 4em;\n align-items: center;\n justify-content: space-between;\n visibility: hidden;\n opacity: 0;\n transition: all 0.25s ease-out;\n display: none;\n}\n.trust-video-controls.show {\n display: flex;\n}\n.trust-video-play {\n border-color: transparent;\n transition: 0.3s;\n font-size: 3em;\n margin: auto;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n padding: 0;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n border-radius: 50%;\n font: normal normal normal 18px/1 FontAwesome;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n border-radius: 20%;\n line-height: 1.5em;\n width: 2em;\n height: 1.5em;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-volume:before {\n content: \"\\f028\";\n}\n.trust-video-volume.off:before {\n content: \"\\f026\";\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n line-height: 2.5rem;\n width: 3em;\n border-radius: 20%;\n height: 2.5rem;\n margin-right: 5%;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n.trust-video-fullscreen:before {\n content: \"\\f065\";\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .trust-video-wrapper {\n margin-top: 20%;\n }\n}\n@media only screen and (max-width: 768px) {\n .trust-video {\n border: none;\n width: 70%;\n }\n}\nbody {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.feedback-details-profile {\n cursor: pointer;\n}\n\n.utu-feedback {\n position: relative;\n width: 50%;\n margin: auto;\n}\n\n.avatar-img {\n border-radius: 50%;\n height: 2rem;\n border: 1px rgb(155, 152, 152) solid;\n}\n.avatar-img-top {\n height: 5rem;\n border-radius: 50%;\n border: 4px solid rgb(251, 201, 61);\n}\n.avatar-img-top:not(:first-child) {\n margin-left: -15px;\n}\n.avatar-img-top-video {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding-bottom: 4rem;\n padding-top: 4rem;\n}\n.avatar-img-text {\n font-size: 0.8rem;\n text-align: left;\n width: 19rem;\n}\n.avatar-no-img {\n width: 6rem;\n border-radius: 50%;\n padding: 1.5rem;\n}\n.avatar-no-img-no-vid {\n padding: 5px !important;\n}\n.avatar-no-img-light {\n background-color: rgb(251, 201, 61);\n border: 4px solid rgb(251, 201, 61);\n}\n.avatar-no-img-dark {\n background-color: rgb(251, 201, 61);\n border: 4px solid rgb(251, 201, 61);\n}\n.avatar-no-video-dark {\n fill: #000000;\n}\n.avatar-no-video-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .avatar-img-top-video {\n padding-bottom: 4rem;\n padding-top: 4rem;\n }\n .avatar-no-img {\n margin-bottom: 1rem;\n margin-top: 0.5rem;\n }\n}";
|
|
46199
46683
|
styleInject(css_248z$3);
|
|
46200
46684
|
|
|
46201
46685
|
function VideoShow(props) {
|
|
@@ -46268,7 +46752,7 @@
|
|
|
46268
46752
|
}))));
|
|
46269
46753
|
}
|
|
46270
46754
|
|
|
46271
|
-
var css_248z$2 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.video-avatar {\n width: 2rem;\n}\n\n.video-placeholder {\n height: 2rem;\n}\n\n.review-text {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0 8px;\n}\n.review-text-dark {\n color: #ffffff;\n}\n.review-text-light {\n color: #000000;\n}\n.review-card {\n font-size: 0.7rem;\n display: flex;\n padding: 1.5rem;\n padding-top: 4rem;\n padding-bottom: 4rem;\n justify-content: space-around;\n}\n.review-card-group {\n padding: 2rem 1rem 2rem 1rem;\n background-color: rgba(255, 221, 51, 0.15);\n}\n.review-img {\n border-radius: 50%;\n height: 3rem;\n border: 1px rgb(155, 152, 152) solid;\n}\n\n.onerror-review-img {\n border-radius: 50%;\n height: 3rem;\n border: 1px rgb(155, 152, 152) solid;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .review-text-dark {\n color: rgb(36, 35, 35);\n }\n .review-text-light {\n color: #000000;\n }\n .review-card {\n padding-top: 4rem;\n padding-bottom: 4rem;\n display: flex;\n justify-content: center;\n }\n .review-card-group {\n padding: 2rem 1rem 2rem 1rem;\n width: 100%;\n display: flex;\n justify-content: center;\n }\n}";
|
|
46755
|
+
var css_248z$2 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.video-avatar {\n width: 2rem;\n}\n\n.video-placeholder {\n height: 2rem;\n}\n\n.review-text {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0 8px;\n}\n.review-text-dark {\n color: #ffffff;\n}\n.review-text-light {\n color: #000000;\n}\n.review-card {\n font-size: 0.7rem;\n display: flex;\n padding: 1.5rem;\n padding-top: 4rem;\n padding-bottom: 4rem;\n justify-content: space-around;\n}\n.review-card-group {\n padding: 2rem 1rem 2rem 1rem;\n background-color: rgba(255, 221, 51, 0.15);\n}\n.review-img {\n border-radius: 50%;\n height: 3rem;\n border: 1px rgb(155, 152, 152) solid;\n}\n\n.onerror-review-img {\n border-radius: 50%;\n height: 3rem;\n border: 1px rgb(155, 152, 152) solid;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .review-text-dark {\n color: rgb(36, 35, 35);\n }\n .review-text-light {\n color: #000000;\n }\n .review-card {\n padding-top: 4rem;\n padding-bottom: 4rem;\n display: flex;\n justify-content: center;\n }\n .review-card-group {\n padding: 2rem 1rem 2rem 1rem;\n width: 100%;\n display: flex;\n justify-content: center;\n }\n}";
|
|
46272
46756
|
styleInject(css_248z$2);
|
|
46273
46757
|
|
|
46274
46758
|
function BadgesShow(props) {
|
|
@@ -46334,9 +46818,10 @@
|
|
|
46334
46818
|
var _getBaseProps = getBaseProps(props, TAG_FEEDBACK_DETAILS_POPUP),
|
|
46335
46819
|
apiUrl = _getBaseProps.apiUrl;
|
|
46336
46820
|
|
|
46821
|
+
var sourceUuid = props[ATTR_SOURCE_UUID];
|
|
46337
46822
|
var targetUuid = props[ATTR_TARGET_UUID];
|
|
46338
46823
|
|
|
46339
|
-
var _useFeedbackSummaryAp = useFeedbackSummaryApi(apiUrl, targetUuid),
|
|
46824
|
+
var _useFeedbackSummaryAp = useFeedbackSummaryApi(apiUrl, sourceUuid, targetUuid),
|
|
46340
46825
|
feedbackSummary = _useFeedbackSummaryAp.feedbackSummary;
|
|
46341
46826
|
|
|
46342
46827
|
return h$2(BaseComponent, {
|
|
@@ -46381,7 +46866,7 @@
|
|
|
46381
46866
|
}, h$2(Logo, null)))));
|
|
46382
46867
|
}
|
|
46383
46868
|
|
|
46384
|
-
var css_248z$1 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.utu-feedback-details-popup {\n padding: 0.5rem;\n}\n\n.utu-feedback-form-popup {\n padding: 0.5rem;\n}";
|
|
46869
|
+
var css_248z$1 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.utu-feedback-details-popup {\n padding: 0.5rem;\n}\n\n.utu-feedback-form-popup {\n padding: 0.5rem;\n}";
|
|
46385
46870
|
styleInject(css_248z$1);
|
|
46386
46871
|
|
|
46387
46872
|
function FeedbackPopup(props) {
|
|
@@ -46459,7 +46944,7 @@
|
|
|
46459
46944
|
}, props), h$2(FeedbackForm, props)));
|
|
46460
46945
|
} // style={{backgroundColor: `${props[ATTR_BTN_COLOR]} || yellow ` }}
|
|
46461
46946
|
|
|
46462
|
-
var css_248z = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.utu-Header {\n width: 100%;\n padding: 2rem 3rem;\n background-color: #fcf8e5;\n}";
|
|
46947
|
+
var css_248z = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(251, 201, 61);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.spinner {\n width: 21px;\n height: 21px;\n display: inline-block;\n border: 3px solid rgb(251, 201, 61);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n margin: 12px;\n}\n\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: #e5e5e5;\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.btn-light {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(251, 201, 61);\n color: #000000 !important;\n}\n.btn-round {\n color: \"white\" !important;\n}\n.btn-round-text {\n color: \"white\" !important;\n}\n\n.icon-btn {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n.icon-btn svg {\n width: 60px;\n height: 60px;\n}\n\nbutton.p {\n color: \"white\";\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: #fcf8e5;\n}\n\nsvg.video-icon {\n width: 1.5rem;\n height: 2.4rem;\n padding-top: 0.3rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section-light {\n border-bottom: 0px;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0px;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgb(253, 253, 253);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.utu-Header {\n width: 100%;\n padding: 2rem 3rem;\n background-color: #fcf8e5;\n}";
|
|
46463
46948
|
styleInject(css_248z);
|
|
46464
46949
|
|
|
46465
46950
|
function Header() {
|
|
@@ -46491,7 +46976,7 @@
|
|
|
46491
46976
|
register$2(FeedbackPopup, TAG_FEEDBACK_DETAILS_POPUP, [ATTR_API_URL, ATTR_BTN_COLOR], {
|
|
46492
46977
|
shadow: true
|
|
46493
46978
|
});
|
|
46494
|
-
register$2(FeedbackDetails, TAG_FEEDBACK_DETAILS, [ATTR_API_URL], {
|
|
46979
|
+
register$2(FeedbackDetails, TAG_FEEDBACK_DETAILS, [ATTR_API_URL, ATTR_SOURCE_UUID, ATTR_TARGET_UUID], {
|
|
46495
46980
|
shadow: true
|
|
46496
46981
|
});
|
|
46497
46982
|
|