@revolugo/elements 4.13.18-beta.4 → 4.13.18-beta.5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/css/revolugo.29.min.css +1 -1
- package/dist/css/revolugo.30.min.css +1 -1
- package/dist/css/revolugo.32.min.css +1 -1
- package/dist/css/revolugo.33.min.css +1 -1
- package/dist/css/revolugo.34.min.css +1 -1
- package/dist/css/revolugo.35.min.css +1 -0
- package/dist/index.min.js +1 -1
- package/dist/revolugo.1.js +0 -11
- package/dist/revolugo.1.min.js +1 -1
- package/dist/revolugo.10.js +13 -0
- package/dist/revolugo.10.min.js +2 -2
- package/dist/revolugo.11.js +13 -0
- package/dist/revolugo.11.min.js +2 -2
- package/dist/revolugo.12.js +13 -0
- package/dist/revolugo.12.min.js +2 -2
- package/dist/revolugo.13.js +13 -0
- package/dist/revolugo.13.min.js +2 -2
- package/dist/revolugo.14.js +13 -0
- package/dist/revolugo.14.min.js +2 -2
- package/dist/revolugo.15.js +13 -0
- package/dist/revolugo.15.min.js +2 -2
- package/dist/revolugo.16.js +13 -0
- package/dist/revolugo.16.min.js +2 -2
- package/dist/revolugo.17.js +13 -0
- package/dist/revolugo.17.min.js +1 -1
- package/dist/revolugo.18.js +2 -0
- package/dist/revolugo.18.min.js +1 -1
- package/dist/revolugo.19.js +2 -0
- package/dist/revolugo.19.min.js +1 -1
- package/dist/revolugo.20.js +2 -0
- package/dist/revolugo.20.min.js +2 -2
- package/dist/revolugo.21.js +13 -0
- package/dist/revolugo.21.min.js +2 -2
- package/dist/revolugo.22.js +2 -0
- package/dist/revolugo.22.min.js +1 -1
- package/dist/revolugo.23.js +2 -0
- package/dist/revolugo.23.min.js +1 -1
- package/dist/revolugo.24.js +2 -0
- package/dist/revolugo.24.min.js +1 -1
- package/dist/revolugo.25.js +11 -0
- package/dist/revolugo.25.min.js +1 -1
- package/dist/revolugo.26.js +2 -0
- package/dist/revolugo.26.min.js +1 -1
- package/dist/revolugo.29.js +1460 -997
- package/dist/revolugo.29.min.js +1 -1
- package/dist/revolugo.30.js +1141 -35810
- package/dist/revolugo.30.min.js +1 -1
- package/dist/revolugo.31.js +1359 -2190
- package/dist/revolugo.31.min.js +1 -1
- package/dist/revolugo.32.js +36689 -1836
- package/dist/revolugo.32.min.js +1 -1
- package/dist/revolugo.33.js +1724 -1437
- package/dist/revolugo.33.min.js +1 -1
- package/dist/revolugo.34.js +1576 -6567
- package/dist/revolugo.34.min.js +1 -1
- package/dist/revolugo.35.js +5198 -909
- package/dist/revolugo.35.min.js +1 -1
- package/dist/revolugo.36.js +680 -1607
- package/dist/revolugo.36.min.js +1 -1
- package/dist/revolugo.37.js +2986 -250
- package/dist/revolugo.37.min.js +1 -1
- package/dist/revolugo.38.js +1819 -0
- package/dist/revolugo.38.min.js +1 -0
- package/dist/revolugo.39.js +579 -0
- package/dist/revolugo.39.min.js +1 -0
- package/dist/revolugo.4.js +11 -0
- package/dist/revolugo.4.min.js +1 -1
- package/dist/revolugo.5.js +2 -0
- package/dist/revolugo.5.min.js +1 -1
- package/dist/revolugo.9.js +13 -0
- package/dist/revolugo.9.min.js +2 -2
- package/dist/revolugo.en-US.js +7 -0
- package/dist/revolugo.en-US.min.js +1 -1
- package/dist/revolugo.fr-FR.js +7 -0
- package/dist/revolugo.fr-FR.min.js +1 -1
- package/dist/revolugo.js +10 -8
- package/dist/revolugo.min.js +1 -1
- package/package.json +1 -1
- /package/dist/css/{revolugo.36.min.css → revolugo.37.min.css} +0 -0
package/dist/revolugo.36.js
CHANGED
@@ -1110,14 +1110,372 @@ var o = r.b4,
|
|
1110
1110
|
|
1111
1111
|
/***/ }),
|
1112
1112
|
|
1113
|
-
/***/ "
|
1114
|
-
/***/ (function(module,
|
1113
|
+
/***/ "17d8":
|
1114
|
+
/***/ (function(module, exports, __webpack_require__) {
|
1115
1115
|
|
1116
1116
|
"use strict";
|
1117
|
-
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1117
|
+
|
1118
|
+
|
1119
|
+
class QuickLRU {
|
1120
|
+
constructor(options = {}) {
|
1121
|
+
if (!(options.maxSize && options.maxSize > 0)) {
|
1122
|
+
throw new TypeError('`maxSize` must be a number greater than 0');
|
1123
|
+
}
|
1124
|
+
|
1125
|
+
this.maxSize = options.maxSize;
|
1126
|
+
this.onEviction = options.onEviction;
|
1127
|
+
this.cache = new Map();
|
1128
|
+
this.oldCache = new Map();
|
1129
|
+
this._size = 0;
|
1130
|
+
}
|
1131
|
+
|
1132
|
+
_set(key, value) {
|
1133
|
+
this.cache.set(key, value);
|
1134
|
+
this._size++;
|
1135
|
+
|
1136
|
+
if (this._size >= this.maxSize) {
|
1137
|
+
this._size = 0;
|
1138
|
+
|
1139
|
+
if (typeof this.onEviction === 'function') {
|
1140
|
+
for (const [key, value] of this.oldCache.entries()) {
|
1141
|
+
this.onEviction(key, value);
|
1142
|
+
}
|
1143
|
+
}
|
1144
|
+
|
1145
|
+
this.oldCache = this.cache;
|
1146
|
+
this.cache = new Map();
|
1147
|
+
}
|
1148
|
+
}
|
1149
|
+
|
1150
|
+
get(key) {
|
1151
|
+
if (this.cache.has(key)) {
|
1152
|
+
return this.cache.get(key);
|
1153
|
+
}
|
1154
|
+
|
1155
|
+
if (this.oldCache.has(key)) {
|
1156
|
+
const value = this.oldCache.get(key);
|
1157
|
+
this.oldCache.delete(key);
|
1158
|
+
this._set(key, value);
|
1159
|
+
return value;
|
1160
|
+
}
|
1161
|
+
}
|
1162
|
+
|
1163
|
+
set(key, value) {
|
1164
|
+
if (this.cache.has(key)) {
|
1165
|
+
this.cache.set(key, value);
|
1166
|
+
} else {
|
1167
|
+
this._set(key, value);
|
1168
|
+
}
|
1169
|
+
|
1170
|
+
return this;
|
1171
|
+
}
|
1172
|
+
|
1173
|
+
has(key) {
|
1174
|
+
return this.cache.has(key) || this.oldCache.has(key);
|
1175
|
+
}
|
1176
|
+
|
1177
|
+
peek(key) {
|
1178
|
+
if (this.cache.has(key)) {
|
1179
|
+
return this.cache.get(key);
|
1180
|
+
}
|
1181
|
+
|
1182
|
+
if (this.oldCache.has(key)) {
|
1183
|
+
return this.oldCache.get(key);
|
1184
|
+
}
|
1185
|
+
}
|
1186
|
+
|
1187
|
+
delete(key) {
|
1188
|
+
const deleted = this.cache.delete(key);
|
1189
|
+
if (deleted) {
|
1190
|
+
this._size--;
|
1191
|
+
}
|
1192
|
+
|
1193
|
+
return this.oldCache.delete(key) || deleted;
|
1194
|
+
}
|
1195
|
+
|
1196
|
+
clear() {
|
1197
|
+
this.cache.clear();
|
1198
|
+
this.oldCache.clear();
|
1199
|
+
this._size = 0;
|
1200
|
+
}
|
1201
|
+
|
1202
|
+
* keys() {
|
1203
|
+
for (const [key] of this) {
|
1204
|
+
yield key;
|
1205
|
+
}
|
1206
|
+
}
|
1207
|
+
|
1208
|
+
* values() {
|
1209
|
+
for (const [, value] of this) {
|
1210
|
+
yield value;
|
1211
|
+
}
|
1212
|
+
}
|
1213
|
+
|
1214
|
+
* [Symbol.iterator]() {
|
1215
|
+
for (const item of this.cache) {
|
1216
|
+
yield item;
|
1217
|
+
}
|
1218
|
+
|
1219
|
+
for (const item of this.oldCache) {
|
1220
|
+
const [key] = item;
|
1221
|
+
if (!this.cache.has(key)) {
|
1222
|
+
yield item;
|
1223
|
+
}
|
1224
|
+
}
|
1225
|
+
}
|
1226
|
+
|
1227
|
+
get size() {
|
1228
|
+
let oldCacheSize = 0;
|
1229
|
+
for (const key of this.oldCache.keys()) {
|
1230
|
+
if (!this.cache.has(key)) {
|
1231
|
+
oldCacheSize++;
|
1232
|
+
}
|
1233
|
+
}
|
1234
|
+
|
1235
|
+
return Math.min(this._size + oldCacheSize, this.maxSize);
|
1236
|
+
}
|
1237
|
+
}
|
1238
|
+
|
1239
|
+
module.exports = QuickLRU;
|
1240
|
+
|
1241
|
+
|
1242
|
+
/***/ }),
|
1243
|
+
|
1244
|
+
/***/ "2444":
|
1245
|
+
/***/ (function(module, exports, __webpack_require__) {
|
1246
|
+
|
1247
|
+
/* global ActiveXObject -- old IE, WSH */
|
1248
|
+
var anObject = __webpack_require__("50b4");
|
1249
|
+
var definePropertiesModule = __webpack_require__("de39");
|
1250
|
+
var enumBugKeys = __webpack_require__("7edb");
|
1251
|
+
var hiddenKeys = __webpack_require__("23d9");
|
1252
|
+
var html = __webpack_require__("ce02");
|
1253
|
+
var documentCreateElement = __webpack_require__("6e0f");
|
1254
|
+
var sharedKey = __webpack_require__("2cac");
|
1255
|
+
|
1256
|
+
var GT = '>';
|
1257
|
+
var LT = '<';
|
1258
|
+
var PROTOTYPE = 'prototype';
|
1259
|
+
var SCRIPT = 'script';
|
1260
|
+
var IE_PROTO = sharedKey('IE_PROTO');
|
1261
|
+
|
1262
|
+
var EmptyConstructor = function () { /* empty */ };
|
1263
|
+
|
1264
|
+
var scriptTag = function (content) {
|
1265
|
+
return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
|
1266
|
+
};
|
1267
|
+
|
1268
|
+
// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
|
1269
|
+
var NullProtoObjectViaActiveX = function (activeXDocument) {
|
1270
|
+
activeXDocument.write(scriptTag(''));
|
1271
|
+
activeXDocument.close();
|
1272
|
+
var temp = activeXDocument.parentWindow.Object;
|
1273
|
+
activeXDocument = null; // avoid memory leak
|
1274
|
+
return temp;
|
1275
|
+
};
|
1276
|
+
|
1277
|
+
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
1278
|
+
var NullProtoObjectViaIFrame = function () {
|
1279
|
+
// Thrash, waste and sodomy: IE GC bug
|
1280
|
+
var iframe = documentCreateElement('iframe');
|
1281
|
+
var JS = 'java' + SCRIPT + ':';
|
1282
|
+
var iframeDocument;
|
1283
|
+
iframe.style.display = 'none';
|
1284
|
+
html.appendChild(iframe);
|
1285
|
+
// https://github.com/zloirock/core-js/issues/475
|
1286
|
+
iframe.src = String(JS);
|
1287
|
+
iframeDocument = iframe.contentWindow.document;
|
1288
|
+
iframeDocument.open();
|
1289
|
+
iframeDocument.write(scriptTag('document.F=Object'));
|
1290
|
+
iframeDocument.close();
|
1291
|
+
return iframeDocument.F;
|
1292
|
+
};
|
1293
|
+
|
1294
|
+
// Check for document.domain and active x support
|
1295
|
+
// No need to use active x approach when document.domain is not set
|
1296
|
+
// see https://github.com/es-shims/es5-shim/issues/150
|
1297
|
+
// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
|
1298
|
+
// avoid IE GC bug
|
1299
|
+
var activeXDocument;
|
1300
|
+
var NullProtoObject = function () {
|
1301
|
+
try {
|
1302
|
+
activeXDocument = new ActiveXObject('htmlfile');
|
1303
|
+
} catch (error) { /* ignore */ }
|
1304
|
+
NullProtoObject = typeof document != 'undefined'
|
1305
|
+
? document.domain && activeXDocument
|
1306
|
+
? NullProtoObjectViaActiveX(activeXDocument) // old IE
|
1307
|
+
: NullProtoObjectViaIFrame()
|
1308
|
+
: NullProtoObjectViaActiveX(activeXDocument); // WSH
|
1309
|
+
var length = enumBugKeys.length;
|
1310
|
+
while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
|
1311
|
+
return NullProtoObject();
|
1312
|
+
};
|
1313
|
+
|
1314
|
+
hiddenKeys[IE_PROTO] = true;
|
1315
|
+
|
1316
|
+
// `Object.create` method
|
1317
|
+
// https://tc39.es/ecma262/#sec-object.create
|
1318
|
+
// eslint-disable-next-line es/no-object-create -- safe
|
1319
|
+
module.exports = Object.create || function create(O, Properties) {
|
1320
|
+
var result;
|
1321
|
+
if (O !== null) {
|
1322
|
+
EmptyConstructor[PROTOTYPE] = anObject(O);
|
1323
|
+
result = new EmptyConstructor();
|
1324
|
+
EmptyConstructor[PROTOTYPE] = null;
|
1325
|
+
// add "__proto__" for Object.getPrototypeOf polyfill
|
1326
|
+
result[IE_PROTO] = O;
|
1327
|
+
} else result = NullProtoObject();
|
1328
|
+
return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
|
1329
|
+
};
|
1330
|
+
|
1331
|
+
|
1332
|
+
/***/ }),
|
1333
|
+
|
1334
|
+
/***/ "45a8":
|
1335
|
+
/***/ (function(module, exports, __webpack_require__) {
|
1336
|
+
|
1337
|
+
"use strict";
|
1338
|
+
|
1339
|
+
var $ = __webpack_require__("4b31");
|
1340
|
+
var toObject = __webpack_require__("368f");
|
1341
|
+
var lengthOfArrayLike = __webpack_require__("c944");
|
1342
|
+
var toIntegerOrInfinity = __webpack_require__("015b");
|
1343
|
+
var addToUnscopables = __webpack_require__("7310");
|
1344
|
+
|
1345
|
+
// `Array.prototype.at` method
|
1346
|
+
// https://github.com/tc39/proposal-relative-indexing-method
|
1347
|
+
$({ target: 'Array', proto: true }, {
|
1348
|
+
at: function at(index) {
|
1349
|
+
var O = toObject(this);
|
1350
|
+
var len = lengthOfArrayLike(O);
|
1351
|
+
var relativeIndex = toIntegerOrInfinity(index);
|
1352
|
+
var k = relativeIndex >= 0 ? relativeIndex : len + relativeIndex;
|
1353
|
+
return (k < 0 || k >= len) ? undefined : O[k];
|
1354
|
+
}
|
1355
|
+
});
|
1356
|
+
|
1357
|
+
addToUnscopables('at');
|
1358
|
+
|
1359
|
+
|
1360
|
+
/***/ }),
|
1361
|
+
|
1362
|
+
/***/ "5375":
|
1363
|
+
/***/ (function(module, exports, __webpack_require__) {
|
1364
|
+
|
1365
|
+
"use strict";
|
1366
|
+
|
1367
|
+
|
1368
|
+
const UPPERCASE = /[\p{Lu}]/u;
|
1369
|
+
const LOWERCASE = /[\p{Ll}]/u;
|
1370
|
+
const LEADING_CAPITAL = /^[\p{Lu}](?![\p{Lu}])/gu;
|
1371
|
+
const IDENTIFIER = /([\p{Alpha}\p{N}_]|$)/u;
|
1372
|
+
const SEPARATORS = /[_.\- ]+/;
|
1373
|
+
|
1374
|
+
const LEADING_SEPARATORS = new RegExp('^' + SEPARATORS.source);
|
1375
|
+
const SEPARATORS_AND_IDENTIFIER = new RegExp(SEPARATORS.source + IDENTIFIER.source, 'gu');
|
1376
|
+
const NUMBERS_AND_IDENTIFIER = new RegExp('\\d+' + IDENTIFIER.source, 'gu');
|
1377
|
+
|
1378
|
+
const preserveCamelCase = (string, toLowerCase, toUpperCase) => {
|
1379
|
+
let isLastCharLower = false;
|
1380
|
+
let isLastCharUpper = false;
|
1381
|
+
let isLastLastCharUpper = false;
|
1382
|
+
|
1383
|
+
for (let i = 0; i < string.length; i++) {
|
1384
|
+
const character = string[i];
|
1385
|
+
|
1386
|
+
if (isLastCharLower && UPPERCASE.test(character)) {
|
1387
|
+
string = string.slice(0, i) + '-' + string.slice(i);
|
1388
|
+
isLastCharLower = false;
|
1389
|
+
isLastLastCharUpper = isLastCharUpper;
|
1390
|
+
isLastCharUpper = true;
|
1391
|
+
i++;
|
1392
|
+
} else if (isLastCharUpper && isLastLastCharUpper && LOWERCASE.test(character)) {
|
1393
|
+
string = string.slice(0, i - 1) + '-' + string.slice(i - 1);
|
1394
|
+
isLastLastCharUpper = isLastCharUpper;
|
1395
|
+
isLastCharUpper = false;
|
1396
|
+
isLastCharLower = true;
|
1397
|
+
} else {
|
1398
|
+
isLastCharLower = toLowerCase(character) === character && toUpperCase(character) !== character;
|
1399
|
+
isLastLastCharUpper = isLastCharUpper;
|
1400
|
+
isLastCharUpper = toUpperCase(character) === character && toLowerCase(character) !== character;
|
1401
|
+
}
|
1402
|
+
}
|
1403
|
+
|
1404
|
+
return string;
|
1405
|
+
};
|
1406
|
+
|
1407
|
+
const preserveConsecutiveUppercase = (input, toLowerCase) => {
|
1408
|
+
LEADING_CAPITAL.lastIndex = 0;
|
1409
|
+
|
1410
|
+
return input.replace(LEADING_CAPITAL, m1 => toLowerCase(m1));
|
1411
|
+
};
|
1412
|
+
|
1413
|
+
const postProcess = (input, toUpperCase) => {
|
1414
|
+
SEPARATORS_AND_IDENTIFIER.lastIndex = 0;
|
1415
|
+
NUMBERS_AND_IDENTIFIER.lastIndex = 0;
|
1416
|
+
|
1417
|
+
return input.replace(SEPARATORS_AND_IDENTIFIER, (_, identifier) => toUpperCase(identifier))
|
1418
|
+
.replace(NUMBERS_AND_IDENTIFIER, m => toUpperCase(m));
|
1419
|
+
};
|
1420
|
+
|
1421
|
+
const camelCase = (input, options) => {
|
1422
|
+
if (!(typeof input === 'string' || Array.isArray(input))) {
|
1423
|
+
throw new TypeError('Expected the input to be `string | string[]`');
|
1424
|
+
}
|
1425
|
+
|
1426
|
+
options = {
|
1427
|
+
pascalCase: false,
|
1428
|
+
preserveConsecutiveUppercase: false,
|
1429
|
+
...options
|
1430
|
+
};
|
1431
|
+
|
1432
|
+
if (Array.isArray(input)) {
|
1433
|
+
input = input.map(x => x.trim())
|
1434
|
+
.filter(x => x.length)
|
1435
|
+
.join('-');
|
1436
|
+
} else {
|
1437
|
+
input = input.trim();
|
1438
|
+
}
|
1439
|
+
|
1440
|
+
if (input.length === 0) {
|
1441
|
+
return '';
|
1442
|
+
}
|
1443
|
+
|
1444
|
+
const toLowerCase = options.locale === false ?
|
1445
|
+
string => string.toLowerCase() :
|
1446
|
+
string => string.toLocaleLowerCase(options.locale);
|
1447
|
+
const toUpperCase = options.locale === false ?
|
1448
|
+
string => string.toUpperCase() :
|
1449
|
+
string => string.toLocaleUpperCase(options.locale);
|
1450
|
+
|
1451
|
+
if (input.length === 1) {
|
1452
|
+
return options.pascalCase ? toUpperCase(input) : toLowerCase(input);
|
1453
|
+
}
|
1454
|
+
|
1455
|
+
const hasUpperCase = input !== toLowerCase(input);
|
1456
|
+
|
1457
|
+
if (hasUpperCase) {
|
1458
|
+
input = preserveCamelCase(input, toLowerCase, toUpperCase);
|
1459
|
+
}
|
1460
|
+
|
1461
|
+
input = input.replace(LEADING_SEPARATORS, '');
|
1462
|
+
|
1463
|
+
if (options.preserveConsecutiveUppercase) {
|
1464
|
+
input = preserveConsecutiveUppercase(input, toLowerCase);
|
1465
|
+
} else {
|
1466
|
+
input = toLowerCase(input);
|
1467
|
+
}
|
1468
|
+
|
1469
|
+
if (options.pascalCase) {
|
1470
|
+
input = toUpperCase(input.charAt(0)) + input.slice(1);
|
1471
|
+
}
|
1472
|
+
|
1473
|
+
return postProcess(input, toUpperCase);
|
1474
|
+
};
|
1475
|
+
|
1476
|
+
module.exports = camelCase;
|
1477
|
+
// TODO: Remove this for the next major release
|
1478
|
+
module.exports.default = camelCase;
|
1121
1479
|
|
1122
1480
|
|
1123
1481
|
/***/ }),
|
@@ -1652,40 +2010,79 @@ const cancellationPoliciesListProps = (cov_1sh18mvyl9().s[0]++, {
|
|
1652
2010
|
|
1653
2011
|
/***/ }),
|
1654
2012
|
|
1655
|
-
/***/ "
|
2013
|
+
/***/ "7310":
|
2014
|
+
/***/ (function(module, exports, __webpack_require__) {
|
2015
|
+
|
2016
|
+
var wellKnownSymbol = __webpack_require__("1860");
|
2017
|
+
var create = __webpack_require__("2444");
|
2018
|
+
var defineProperty = __webpack_require__("3ce5").f;
|
2019
|
+
|
2020
|
+
var UNSCOPABLES = wellKnownSymbol('unscopables');
|
2021
|
+
var ArrayPrototype = Array.prototype;
|
2022
|
+
|
2023
|
+
// Array.prototype[@@unscopables]
|
2024
|
+
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
2025
|
+
if (ArrayPrototype[UNSCOPABLES] == undefined) {
|
2026
|
+
defineProperty(ArrayPrototype, UNSCOPABLES, {
|
2027
|
+
configurable: true,
|
2028
|
+
value: create(null)
|
2029
|
+
});
|
2030
|
+
}
|
2031
|
+
|
2032
|
+
// add a key to Array.prototype[@@unscopables]
|
2033
|
+
module.exports = function (key) {
|
2034
|
+
ArrayPrototype[UNSCOPABLES][key] = true;
|
2035
|
+
};
|
2036
|
+
|
2037
|
+
|
2038
|
+
/***/ }),
|
2039
|
+
|
2040
|
+
/***/ "8306":
|
1656
2041
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
1657
2042
|
|
1658
2043
|
"use strict";
|
1659
|
-
|
1660
|
-
|
1661
|
-
|
1662
|
-
|
1663
|
-
|
2044
|
+
// ESM COMPAT FLAG
|
2045
|
+
__webpack_require__.r(__webpack_exports__);
|
2046
|
+
|
2047
|
+
// CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/cache-loader@4.1.0_webpack@4.46.0/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"38294fbf-vue-loader-template"}!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/cache-loader@4.1.0_webpack@4.46.0/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/babel-loader@8.3.0_@babel+core@7.21.4_webpack@4.46.0/node_modules/babel-loader/lib!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vue-loader@15.10.1_cache-loader@4.1.0_css-loader@3.6.0_react-dom@16.14.0_react@16.14.0_vue-te_in2h7w4pcz7gmv74d3b5fqofg4/node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/cache-loader@4.1.0_webpack@4.46.0/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vue-loader@15.10.1_cache-loader@4.1.0_css-loader@3.6.0_react-dom@16.14.0_react@16.14.0_vue-te_in2h7w4pcz7gmv74d3b5fqofg4/node_modules/vue-loader/lib??vue-loader-options!./src/components/web-components/CancellationPoliciesList/CancellationPoliciesList.vue?vue&type=template&id=3d7d113a&shadow
|
2048
|
+
var render = function render() {
|
2049
|
+
var _vm = this,
|
2050
|
+
_c = _vm._self._c,
|
2051
|
+
_setup = _vm._self._setupProxy;
|
2052
|
+
return _c('web-component-wrapper', [_c('cancellation-policies-list', _vm._b({}, 'cancellation-policies-list', _vm.$props, false))], 1);
|
2053
|
+
};
|
2054
|
+
var staticRenderFns = [];
|
2055
|
+
|
2056
|
+
// CONCATENATED MODULE: ./src/components/web-components/CancellationPoliciesList/CancellationPoliciesList.vue?vue&type=template&id=3d7d113a&shadow
|
2057
|
+
|
2058
|
+
// EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vue@2.7.14_patch_hash=eabltful76efbfyd536dwkbr5a/node_modules/vue/dist/vue.runtime.esm.js
|
2059
|
+
var vue_runtime_esm = __webpack_require__("ad27");
|
2060
|
+
|
2061
|
+
// EXTERNAL MODULE: ./src/components/RevolugoElements/CancellationPoliciesList/CancellationPoliciesList.props.ts
|
2062
|
+
var CancellationPoliciesList_props = __webpack_require__("5b96");
|
2063
|
+
|
2064
|
+
// EXTERNAL MODULE: ./src/components/RevolugoElements/CancellationPoliciesList/CancellationPoliciesList.vue + 4 modules
|
2065
|
+
var CancellationPoliciesList = __webpack_require__("57b9");
|
2066
|
+
|
2067
|
+
// EXTERNAL MODULE: ./src/components/utils/WebComponentWrapper/WebComponentWrapper.vue + 12 modules
|
2068
|
+
var WebComponentWrapper = __webpack_require__("9825");
|
2069
|
+
|
2070
|
+
// CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/cache-loader@4.1.0_webpack@4.46.0/node_modules/cache-loader/dist/cjs.js??ref--13-0!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/babel-loader@8.3.0_@babel+core@7.21.4_webpack@4.46.0/node_modules/babel-loader/lib!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/ts-loader@6.2.2_typescript@4.7.4/node_modules/ts-loader??ref--13-2!./src/components/web-components/CancellationPoliciesList/CancellationPoliciesList.ts?vue&type=script&lang=ts&shadow
|
2071
|
+
function cov_1gjtk9evpm() {
|
2072
|
+
var path = "/opt/atlassian/pipelines/agent/build/libs/elements/core/src/components/web-components/CancellationPoliciesList/CancellationPoliciesList.ts";
|
2073
|
+
var hash = "a5a3a8541e29f494d2a07671b9721eabc904bb28";
|
1664
2074
|
var global = new Function("return this")();
|
1665
2075
|
var gcv = "__coverage__";
|
1666
2076
|
var coverageData = {
|
1667
|
-
path: "/opt/atlassian/pipelines/agent/build/libs/elements/core/src/components/
|
1668
|
-
statementMap: {
|
1669
|
-
"0": {
|
1670
|
-
start: {
|
1671
|
-
line: 2,
|
1672
|
-
column: 46
|
1673
|
-
},
|
1674
|
-
end: {
|
1675
|
-
line: 5,
|
1676
|
-
column: 1
|
1677
|
-
}
|
1678
|
-
}
|
1679
|
-
},
|
2077
|
+
path: "/opt/atlassian/pipelines/agent/build/libs/elements/core/src/components/web-components/CancellationPoliciesList/CancellationPoliciesList.ts",
|
2078
|
+
statementMap: {},
|
1680
2079
|
fnMap: {},
|
1681
2080
|
branchMap: {},
|
1682
|
-
s: {
|
1683
|
-
"0": 0
|
1684
|
-
},
|
2081
|
+
s: {},
|
1685
2082
|
f: {},
|
1686
2083
|
b: {},
|
1687
2084
|
_coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
|
1688
|
-
hash: "
|
2085
|
+
hash: "a5a3a8541e29f494d2a07671b9721eabc904bb28"
|
1689
2086
|
};
|
1690
2087
|
var coverage = global[gcv] || (global[gcv] = {});
|
1691
2088
|
if (!coverage[path] || coverage[path].hash !== hash) {
|
@@ -1694,1621 +2091,297 @@ function cov_2hr4xt02yd() {
|
|
1694
2091
|
var actualCoverage = coverage[path];
|
1695
2092
|
{
|
1696
2093
|
// @ts-ignore
|
1697
|
-
|
2094
|
+
cov_1gjtk9evpm = function () {
|
1698
2095
|
return actualCoverage;
|
1699
2096
|
};
|
1700
2097
|
}
|
1701
2098
|
return actualCoverage;
|
1702
2099
|
}
|
1703
|
-
|
2100
|
+
cov_1gjtk9evpm();
|
1704
2101
|
|
1705
|
-
|
1706
|
-
|
1707
|
-
|
1708
|
-
|
2102
|
+
|
2103
|
+
|
2104
|
+
|
2105
|
+
/* harmony default export */ var CancellationPoliciesListvue_type_script_lang_ts_shadow = (vue_runtime_esm["a" /* default */].extend({
|
2106
|
+
components: {
|
2107
|
+
CancellationPoliciesList: CancellationPoliciesList["a" /* default */],
|
2108
|
+
WebComponentWrapper: WebComponentWrapper["a" /* default */]
|
2109
|
+
},
|
2110
|
+
props: CancellationPoliciesList_props["a" /* cancellationPoliciesListProps */]
|
2111
|
+
}));
|
2112
|
+
// CONCATENATED MODULE: ./src/components/web-components/CancellationPoliciesList/CancellationPoliciesList.ts?vue&type=script&lang=ts&shadow
|
2113
|
+
/* harmony default export */ var CancellationPoliciesList_CancellationPoliciesListvue_type_script_lang_ts_shadow = (CancellationPoliciesListvue_type_script_lang_ts_shadow);
|
2114
|
+
// EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vue-loader@15.10.1_cache-loader@4.1.0_css-loader@3.6.0_react-dom@16.14.0_react@16.14.0_vue-te_in2h7w4pcz7gmv74d3b5fqofg4/node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
2115
|
+
var componentNormalizer = __webpack_require__("f0a0");
|
2116
|
+
|
2117
|
+
// CONCATENATED MODULE: ./src/components/web-components/CancellationPoliciesList/CancellationPoliciesList.vue?shadow
|
2118
|
+
|
2119
|
+
|
2120
|
+
|
2121
|
+
|
2122
|
+
|
2123
|
+
/* normalize component */
|
2124
|
+
|
2125
|
+
var component = Object(componentNormalizer["a" /* default */])(
|
2126
|
+
CancellationPoliciesList_CancellationPoliciesListvue_type_script_lang_ts_shadow,
|
2127
|
+
render,
|
2128
|
+
staticRenderFns,
|
2129
|
+
false,
|
2130
|
+
null,
|
2131
|
+
null,
|
2132
|
+
null
|
2133
|
+
,true
|
2134
|
+
)
|
2135
|
+
|
2136
|
+
/* harmony default export */ var CancellationPoliciesListshadow = __webpack_exports__["default"] = (component.exports);
|
2137
|
+
|
2138
|
+
/***/ }),
|
2139
|
+
|
2140
|
+
/***/ "9e3f":
|
2141
|
+
/***/ (function(module, exports, __webpack_require__) {
|
2142
|
+
|
2143
|
+
"use strict";
|
2144
|
+
|
2145
|
+
|
2146
|
+
const isObject = value => typeof value === 'object' && value !== null;
|
2147
|
+
const mapObjectSkip = Symbol('skip');
|
2148
|
+
|
2149
|
+
// Customized for this use-case
|
2150
|
+
const isObjectCustom = value =>
|
2151
|
+
isObject(value) &&
|
2152
|
+
!(value instanceof RegExp) &&
|
2153
|
+
!(value instanceof Error) &&
|
2154
|
+
!(value instanceof Date);
|
2155
|
+
|
2156
|
+
const mapObject = (object, mapper, options, isSeen = new WeakMap()) => {
|
2157
|
+
options = {
|
2158
|
+
deep: false,
|
2159
|
+
target: {},
|
2160
|
+
...options
|
2161
|
+
};
|
2162
|
+
|
2163
|
+
if (isSeen.has(object)) {
|
2164
|
+
return isSeen.get(object);
|
2165
|
+
}
|
2166
|
+
|
2167
|
+
isSeen.set(object, options.target);
|
2168
|
+
|
2169
|
+
const {target} = options;
|
2170
|
+
delete options.target;
|
2171
|
+
|
2172
|
+
const mapArray = array => array.map(element => isObjectCustom(element) ? mapObject(element, mapper, options, isSeen) : element);
|
2173
|
+
if (Array.isArray(object)) {
|
2174
|
+
return mapArray(object);
|
2175
|
+
}
|
2176
|
+
|
2177
|
+
for (const [key, value] of Object.entries(object)) {
|
2178
|
+
const mapResult = mapper(key, value, object);
|
2179
|
+
|
2180
|
+
if (mapResult === mapObjectSkip) {
|
2181
|
+
continue;
|
2182
|
+
}
|
2183
|
+
|
2184
|
+
let [newKey, newValue, {shouldRecurse = true} = {}] = mapResult;
|
2185
|
+
|
2186
|
+
// Drop `__proto__` keys.
|
2187
|
+
if (newKey === '__proto__') {
|
2188
|
+
continue;
|
2189
|
+
}
|
2190
|
+
|
2191
|
+
if (options.deep && shouldRecurse && isObjectCustom(newValue)) {
|
2192
|
+
newValue = Array.isArray(newValue) ?
|
2193
|
+
mapArray(newValue) :
|
2194
|
+
mapObject(newValue, mapper, options, isSeen);
|
2195
|
+
}
|
2196
|
+
|
2197
|
+
target[newKey] = newValue;
|
2198
|
+
}
|
2199
|
+
|
2200
|
+
return target;
|
2201
|
+
};
|
2202
|
+
|
2203
|
+
module.exports = (object, mapper, options) => {
|
2204
|
+
if (!isObject(object)) {
|
2205
|
+
throw new TypeError(`Expected an object, got \`${object}\` (${typeof object})`);
|
2206
|
+
}
|
2207
|
+
|
2208
|
+
return mapObject(object, mapper, options);
|
2209
|
+
};
|
2210
|
+
|
2211
|
+
module.exports.mapObjectSkip = mapObjectSkip;
|
2212
|
+
|
2213
|
+
|
2214
|
+
/***/ }),
|
2215
|
+
|
2216
|
+
/***/ "c9b3":
|
2217
|
+
/***/ (function(module, exports, __webpack_require__) {
|
2218
|
+
|
2219
|
+
"use strict";
|
2220
|
+
|
2221
|
+
var $ = __webpack_require__("4b31");
|
2222
|
+
var uncurryThis = __webpack_require__("d244");
|
2223
|
+
var requireObjectCoercible = __webpack_require__("7768");
|
2224
|
+
var toIntegerOrInfinity = __webpack_require__("015b");
|
2225
|
+
var toString = __webpack_require__("b0b4");
|
2226
|
+
var fails = __webpack_require__("8659");
|
2227
|
+
|
2228
|
+
var charAt = uncurryThis(''.charAt);
|
2229
|
+
|
2230
|
+
var FORCED = fails(function () {
|
2231
|
+
// eslint-disable-next-line es/no-array-string-prototype-at -- safe
|
2232
|
+
return '𠮷'.at(-2) !== '\uD842';
|
2233
|
+
});
|
2234
|
+
|
2235
|
+
// `String.prototype.at` method
|
2236
|
+
// https://github.com/tc39/proposal-relative-indexing-method
|
2237
|
+
$({ target: 'String', proto: true, forced: FORCED }, {
|
2238
|
+
at: function at(index) {
|
2239
|
+
var S = toString(requireObjectCoercible(this));
|
2240
|
+
var len = S.length;
|
2241
|
+
var relativeIndex = toIntegerOrInfinity(index);
|
2242
|
+
var k = relativeIndex >= 0 ? relativeIndex : len + relativeIndex;
|
2243
|
+
return (k < 0 || k >= len) ? undefined : charAt(S, k);
|
1709
2244
|
}
|
1710
2245
|
});
|
1711
2246
|
|
2247
|
+
|
1712
2248
|
/***/ }),
|
1713
2249
|
|
1714
|
-
/***/ "
|
1715
|
-
/***/ (function(module,
|
2250
|
+
/***/ "cbfb":
|
2251
|
+
/***/ (function(module, exports, __webpack_require__) {
|
1716
2252
|
|
1717
2253
|
"use strict";
|
1718
2254
|
|
1719
|
-
|
2255
|
+
const mapObj = __webpack_require__("9e3f");
|
2256
|
+
const camelCase = __webpack_require__("5375");
|
2257
|
+
const QuickLru = __webpack_require__("17d8");
|
1720
2258
|
|
1721
|
-
|
1722
|
-
|
1723
|
-
|
1724
|
-
|
1725
|
-
|
1726
|
-
|
1727
|
-
|
1728
|
-
|
1729
|
-
|
1730
|
-
|
1731
|
-
|
1732
|
-
|
1733
|
-
|
1734
|
-
|
1735
|
-
|
1736
|
-
|
1737
|
-
|
1738
|
-
|
1739
|
-
|
1740
|
-
|
1741
|
-
|
1742
|
-
|
1743
|
-
|
1744
|
-
|
1745
|
-
|
1746
|
-
|
1747
|
-
|
1748
|
-
|
1749
|
-
|
1750
|
-
|
1751
|
-
|
1752
|
-
|
1753
|
-
|
1754
|
-
|
1755
|
-
|
1756
|
-
|
1757
|
-
|
1758
|
-
|
1759
|
-
|
1760
|
-
|
1761
|
-
|
1762
|
-
|
1763
|
-
|
1764
|
-
|
1765
|
-
|
2259
|
+
const has = (array, key) => array.some(x => {
|
2260
|
+
if (typeof x === 'string') {
|
2261
|
+
return x === key;
|
2262
|
+
}
|
2263
|
+
|
2264
|
+
x.lastIndex = 0;
|
2265
|
+
return x.test(key);
|
2266
|
+
});
|
2267
|
+
|
2268
|
+
const cache = new QuickLru({maxSize: 100000});
|
2269
|
+
|
2270
|
+
// Reproduces behavior from `map-obj`
|
2271
|
+
const isObject = value =>
|
2272
|
+
typeof value === 'object' &&
|
2273
|
+
value !== null &&
|
2274
|
+
!(value instanceof RegExp) &&
|
2275
|
+
!(value instanceof Error) &&
|
2276
|
+
!(value instanceof Date);
|
2277
|
+
|
2278
|
+
const camelCaseConvert = (input, options) => {
|
2279
|
+
if (!isObject(input)) {
|
2280
|
+
return input;
|
2281
|
+
}
|
2282
|
+
|
2283
|
+
options = {
|
2284
|
+
deep: false,
|
2285
|
+
pascalCase: false,
|
2286
|
+
...options
|
2287
|
+
};
|
2288
|
+
|
2289
|
+
const {exclude, pascalCase, stopPaths, deep} = options;
|
2290
|
+
|
2291
|
+
const stopPathsSet = new Set(stopPaths);
|
2292
|
+
|
2293
|
+
const makeMapper = parentPath => (key, value) => {
|
2294
|
+
if (deep && isObject(value)) {
|
2295
|
+
const path = parentPath === undefined ? key : `${parentPath}.${key}`;
|
2296
|
+
|
2297
|
+
if (!stopPathsSet.has(path)) {
|
2298
|
+
value = mapObj(value, makeMapper(path));
|
2299
|
+
}
|
2300
|
+
}
|
2301
|
+
|
2302
|
+
if (!(exclude && has(exclude, key))) {
|
2303
|
+
const cacheKey = pascalCase ? `${key}_` : key;
|
2304
|
+
|
2305
|
+
if (cache.has(cacheKey)) {
|
2306
|
+
key = cache.get(cacheKey);
|
2307
|
+
} else {
|
2308
|
+
const returnValue = camelCase(key, {pascalCase, locale: false});
|
2309
|
+
|
2310
|
+
if (key.length < 100) { // Prevent abuse
|
2311
|
+
cache.set(cacheKey, returnValue);
|
2312
|
+
}
|
2313
|
+
|
2314
|
+
key = returnValue;
|
2315
|
+
}
|
2316
|
+
}
|
2317
|
+
|
2318
|
+
return [key, value];
|
2319
|
+
};
|
2320
|
+
|
2321
|
+
return mapObj(input, makeMapper(undefined));
|
1766
2322
|
};
|
1767
|
-
var staticRenderFns = [];
|
1768
2323
|
|
1769
|
-
|
2324
|
+
module.exports = (input, options) => {
|
2325
|
+
if (Array.isArray(input)) {
|
2326
|
+
return Object.keys(input).map(key => camelCaseConvert(input[key], options));
|
2327
|
+
}
|
1770
2328
|
|
1771
|
-
|
1772
|
-
|
2329
|
+
return camelCaseConvert(input, options);
|
2330
|
+
};
|
1773
2331
|
|
1774
|
-
// CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/cache-loader@4.1.0_webpack@4.46.0/node_modules/cache-loader/dist/cjs.js??ref--13-0!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/babel-loader@8.3.0_@babel+core@7.21.4_webpack@4.46.0/node_modules/babel-loader/lib!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/ts-loader@6.2.2_typescript@4.7.4/node_modules/ts-loader??ref--13-2!./src/components/ui/BTag/BTag.ts?vue&type=script&lang=ts&
|
1775
|
-
function cov_1xvi2opjya() {
|
1776
|
-
var path = "/opt/atlassian/pipelines/agent/build/libs/elements/core/src/components/ui/BTag/BTag.ts";
|
1777
|
-
var hash = "0d3b585bef7ead7a12d97bdb04d081021b459219";
|
1778
|
-
var global = new Function("return this")();
|
1779
|
-
var gcv = "__coverage__";
|
1780
|
-
var coverageData = {
|
1781
|
-
path: "/opt/atlassian/pipelines/agent/build/libs/elements/core/src/components/ui/BTag/BTag.ts",
|
1782
|
-
statementMap: {
|
1783
|
-
"0": {
|
1784
|
-
start: {
|
1785
|
-
line: 2,
|
1786
|
-
column: 21
|
1787
|
-
},
|
1788
|
-
end: {
|
1789
|
-
line: 7,
|
1790
|
-
column: 1
|
1791
|
-
}
|
1792
|
-
},
|
1793
|
-
"1": {
|
1794
|
-
start: {
|
1795
|
-
line: 14,
|
1796
|
-
column: 12
|
1797
|
-
},
|
1798
|
-
end: {
|
1799
|
-
line: 14,
|
1800
|
-
column: 190
|
1801
|
-
}
|
1802
|
-
}
|
1803
|
-
},
|
1804
|
-
fnMap: {
|
1805
|
-
"0": {
|
1806
|
-
name: "(anonymous_0)",
|
1807
|
-
decl: {
|
1808
|
-
start: {
|
1809
|
-
line: 12,
|
1810
|
-
column: 8
|
1811
|
-
},
|
1812
|
-
end: {
|
1813
|
-
line: 12,
|
1814
|
-
column: 9
|
1815
|
-
}
|
1816
|
-
},
|
1817
|
-
loc: {
|
1818
|
-
start: {
|
1819
|
-
line: 12,
|
1820
|
-
column: 27
|
1821
|
-
},
|
1822
|
-
end: {
|
1823
|
-
line: 15,
|
1824
|
-
column: 9
|
1825
|
-
}
|
1826
|
-
},
|
1827
|
-
line: 12
|
1828
|
-
}
|
1829
|
-
},
|
1830
|
-
branchMap: {
|
1831
|
-
"0": {
|
1832
|
-
loc: {
|
1833
|
-
start: {
|
1834
|
-
line: 14,
|
1835
|
-
column: 20
|
1836
|
-
},
|
1837
|
-
end: {
|
1838
|
-
line: 14,
|
1839
|
-
column: 188
|
1840
|
-
}
|
1841
|
-
},
|
1842
|
-
type: "binary-expr",
|
1843
|
-
locations: [{
|
1844
|
-
start: {
|
1845
|
-
line: 14,
|
1846
|
-
column: 20
|
1847
|
-
},
|
1848
|
-
end: {
|
1849
|
-
line: 14,
|
1850
|
-
column: 97
|
1851
|
-
}
|
1852
|
-
}, {
|
1853
|
-
start: {
|
1854
|
-
line: 14,
|
1855
|
-
column: 101
|
1856
|
-
},
|
1857
|
-
end: {
|
1858
|
-
line: 14,
|
1859
|
-
column: 188
|
1860
|
-
}
|
1861
|
-
}],
|
1862
|
-
line: 14
|
1863
|
-
},
|
1864
|
-
"1": {
|
1865
|
-
loc: {
|
1866
|
-
start: {
|
1867
|
-
line: 14,
|
1868
|
-
column: 23
|
1869
|
-
},
|
1870
|
-
end: {
|
1871
|
-
line: 14,
|
1872
|
-
column: 96
|
1873
|
-
}
|
1874
|
-
},
|
1875
|
-
type: "cond-expr",
|
1876
|
-
locations: [{
|
1877
|
-
start: {
|
1878
|
-
line: 14,
|
1879
|
-
column: 78
|
1880
|
-
},
|
1881
|
-
end: {
|
1882
|
-
line: 14,
|
1883
|
-
column: 84
|
1884
|
-
}
|
1885
|
-
}, {
|
1886
|
-
start: {
|
1887
|
-
line: 14,
|
1888
|
-
column: 87
|
1889
|
-
},
|
1890
|
-
end: {
|
1891
|
-
line: 14,
|
1892
|
-
column: 96
|
1893
|
-
}
|
1894
|
-
}],
|
1895
|
-
line: 14
|
1896
|
-
},
|
1897
|
-
"2": {
|
1898
|
-
loc: {
|
1899
|
-
start: {
|
1900
|
-
line: 14,
|
1901
|
-
column: 23
|
1902
|
-
},
|
1903
|
-
end: {
|
1904
|
-
line: 14,
|
1905
|
-
column: 75
|
1906
|
-
}
|
1907
|
-
},
|
1908
|
-
type: "binary-expr",
|
1909
|
-
locations: [{
|
1910
|
-
start: {
|
1911
|
-
line: 14,
|
1912
|
-
column: 23
|
1913
|
-
},
|
1914
|
-
end: {
|
1915
|
-
line: 14,
|
1916
|
-
column: 58
|
1917
|
-
}
|
1918
|
-
}, {
|
1919
|
-
start: {
|
1920
|
-
line: 14,
|
1921
|
-
column: 62
|
1922
|
-
},
|
1923
|
-
end: {
|
1924
|
-
line: 14,
|
1925
|
-
column: 75
|
1926
|
-
}
|
1927
|
-
}],
|
1928
|
-
line: 14
|
1929
|
-
},
|
1930
|
-
"3": {
|
1931
|
-
loc: {
|
1932
|
-
start: {
|
1933
|
-
line: 14,
|
1934
|
-
column: 104
|
1935
|
-
},
|
1936
|
-
end: {
|
1937
|
-
line: 14,
|
1938
|
-
column: 187
|
1939
|
-
}
|
1940
|
-
},
|
1941
|
-
type: "cond-expr",
|
1942
|
-
locations: [{
|
1943
|
-
start: {
|
1944
|
-
line: 14,
|
1945
|
-
column: 169
|
1946
|
-
},
|
1947
|
-
end: {
|
1948
|
-
line: 14,
|
1949
|
-
column: 175
|
1950
|
-
}
|
1951
|
-
}, {
|
1952
|
-
start: {
|
1953
|
-
line: 14,
|
1954
|
-
column: 178
|
1955
|
-
},
|
1956
|
-
end: {
|
1957
|
-
line: 14,
|
1958
|
-
column: 187
|
1959
|
-
}
|
1960
|
-
}],
|
1961
|
-
line: 14
|
1962
|
-
},
|
1963
|
-
"4": {
|
1964
|
-
loc: {
|
1965
|
-
start: {
|
1966
|
-
line: 14,
|
1967
|
-
column: 104
|
1968
|
-
},
|
1969
|
-
end: {
|
1970
|
-
line: 14,
|
1971
|
-
column: 166
|
1972
|
-
}
|
1973
|
-
},
|
1974
|
-
type: "binary-expr",
|
1975
|
-
locations: [{
|
1976
|
-
start: {
|
1977
|
-
line: 14,
|
1978
|
-
column: 104
|
1979
|
-
},
|
1980
|
-
end: {
|
1981
|
-
line: 14,
|
1982
|
-
column: 149
|
1983
|
-
}
|
1984
|
-
}, {
|
1985
|
-
start: {
|
1986
|
-
line: 14,
|
1987
|
-
column: 153
|
1988
|
-
},
|
1989
|
-
end: {
|
1990
|
-
line: 14,
|
1991
|
-
column: 166
|
1992
|
-
}
|
1993
|
-
}],
|
1994
|
-
line: 14
|
1995
|
-
}
|
1996
|
-
},
|
1997
|
-
s: {
|
1998
|
-
"0": 0,
|
1999
|
-
"1": 0
|
2000
|
-
},
|
2001
|
-
f: {
|
2002
|
-
"0": 0
|
2003
|
-
},
|
2004
|
-
b: {
|
2005
|
-
"0": [0, 0],
|
2006
|
-
"1": [0, 0],
|
2007
|
-
"2": [0, 0],
|
2008
|
-
"3": [0, 0],
|
2009
|
-
"4": [0, 0]
|
2010
|
-
},
|
2011
|
-
_coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
|
2012
|
-
hash: "0d3b585bef7ead7a12d97bdb04d081021b459219"
|
2013
|
-
};
|
2014
|
-
var coverage = global[gcv] || (global[gcv] = {});
|
2015
|
-
if (!coverage[path] || coverage[path].hash !== hash) {
|
2016
|
-
coverage[path] = coverageData;
|
2017
|
-
}
|
2018
|
-
var actualCoverage = coverage[path];
|
2019
|
-
{
|
2020
|
-
// @ts-ignore
|
2021
|
-
cov_1xvi2opjya = function () {
|
2022
|
-
return actualCoverage;
|
2023
|
-
};
|
2024
|
-
}
|
2025
|
-
return actualCoverage;
|
2026
|
-
}
|
2027
|
-
cov_1xvi2opjya();
|
2028
|
-
|
2029
|
-
const props = (cov_1xvi2opjya().s[0]++, {
|
2030
|
-
postIcon: {
|
2031
|
-
type: String
|
2032
|
-
},
|
2033
|
-
preIcon: {
|
2034
|
-
type: String
|
2035
|
-
},
|
2036
|
-
regular: {
|
2037
|
-
type: Boolean
|
2038
|
-
},
|
2039
|
-
tooltipContent: {
|
2040
|
-
type: String
|
2041
|
-
}
|
2042
|
-
});
|
2043
|
-
/* harmony default export */ var BTagvue_type_script_lang_ts_ = (vue_runtime_esm["a" /* default */].extend({
|
2044
|
-
name: 'BTag',
|
2045
|
-
props,
|
2046
|
-
computed: {
|
2047
|
-
isTooltipEnabled() {
|
2048
|
-
cov_1xvi2opjya().f[0]++;
|
2049
|
-
var _a, _b;
|
2050
|
-
cov_1xvi2opjya().s[1]++;
|
2051
|
-
return (cov_1xvi2opjya().b[0][0]++, !!((cov_1xvi2opjya().b[2][0]++, (_a = this.tooltipContent) === null) || (cov_1xvi2opjya().b[2][1]++, _a === void 0) ? (cov_1xvi2opjya().b[1][0]++, void 0) : (cov_1xvi2opjya().b[1][1]++, _a.length))) || (cov_1xvi2opjya().b[0][1]++, !!((cov_1xvi2opjya().b[4][0]++, (_b = this.$slots['tooltipContent']) === null) || (cov_1xvi2opjya().b[4][1]++, _b === void 0) ? (cov_1xvi2opjya().b[3][0]++, void 0) : (cov_1xvi2opjya().b[3][1]++, _b.length)));
|
2052
|
-
}
|
2053
|
-
}
|
2054
|
-
}));
|
2055
|
-
// CONCATENATED MODULE: ./src/components/ui/BTag/BTag.ts?vue&type=script&lang=ts&
|
2056
|
-
/* harmony default export */ var BTag_BTagvue_type_script_lang_ts_ = (BTagvue_type_script_lang_ts_);
|
2057
|
-
// EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vue-loader@15.10.1_cache-loader@4.1.0_css-loader@3.6.0_react-dom@16.14.0_react@16.14.0_vue-te_in2h7w4pcz7gmv74d3b5fqofg4/node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
2058
|
-
var componentNormalizer = __webpack_require__("f0a0");
|
2059
|
-
|
2060
|
-
// EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/github.com+adhimos+vuetify-loader@3649a32836cbd14daf4400733f35df2946fe69c7_vue-template-compi_f774ocvuwakfhkezdbjczje4tu/node_modules/vuetify-loader/lib/runtime/installComponents.js
|
2061
|
-
var installComponents = __webpack_require__("61eb");
|
2062
|
-
var installComponents_default = /*#__PURE__*/__webpack_require__.n(installComponents);
|
2063
|
-
|
2064
|
-
// EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vuetify@2.6.14_patch_hash=7jnfvumgd57swvvwptudmj6sgy_vue@2.7.14/node_modules/vuetify/lib/components/VChip/VChip.js
|
2065
|
-
var VChip = __webpack_require__("dcde");
|
2066
|
-
|
2067
|
-
// EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vuetify@2.6.14_patch_hash=7jnfvumgd57swvvwptudmj6sgy_vue@2.7.14/node_modules/vuetify/lib/components/VIcon/VIcon.js
|
2068
|
-
var VIcon = __webpack_require__("fbf8");
|
2069
|
-
|
2070
|
-
// EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vuetify@2.6.14_patch_hash=7jnfvumgd57swvvwptudmj6sgy_vue@2.7.14/node_modules/vuetify/lib/components/VTooltip/VTooltip.js
|
2071
|
-
var VTooltip = __webpack_require__("9be7");
|
2072
|
-
|
2073
|
-
// CONCATENATED MODULE: ./src/components/ui/BTag/BTag.vue
|
2074
|
-
|
2075
|
-
|
2076
|
-
|
2077
|
-
function injectStyles (context) {
|
2078
|
-
|
2079
|
-
var style0 = __webpack_require__("21ba")
|
2080
|
-
if (style0.__inject__) style0.__inject__(context)
|
2081
|
-
|
2082
|
-
}
|
2083
|
-
|
2084
|
-
/* normalize component */
|
2085
|
-
|
2086
|
-
var component = Object(componentNormalizer["a" /* default */])(
|
2087
|
-
BTag_BTagvue_type_script_lang_ts_,
|
2088
|
-
render,
|
2089
|
-
staticRenderFns,
|
2090
|
-
false,
|
2091
|
-
injectStyles,
|
2092
|
-
"06038fd6",
|
2093
|
-
null
|
2094
|
-
,true
|
2095
|
-
)
|
2096
|
-
|
2097
|
-
/* harmony default export */ var BTag = __webpack_exports__["a"] = (component.exports);
|
2098
|
-
|
2099
|
-
/* vuetify-loader */
|
2100
2332
|
|
2333
|
+
/***/ }),
|
2101
2334
|
|
2335
|
+
/***/ "ce02":
|
2336
|
+
/***/ (function(module, exports, __webpack_require__) {
|
2102
2337
|
|
2338
|
+
var getBuiltIn = __webpack_require__("a542");
|
2103
2339
|
|
2104
|
-
|
2340
|
+
module.exports = getBuiltIn('document', 'documentElement');
|
2105
2341
|
|
2106
2342
|
|
2107
2343
|
/***/ }),
|
2108
2344
|
|
2109
|
-
/***/ "
|
2345
|
+
/***/ "de39":
|
2110
2346
|
/***/ (function(module, exports, __webpack_require__) {
|
2111
2347
|
|
2112
|
-
|
2113
|
-
|
2114
|
-
|
2115
|
-
|
2116
|
-
|
2117
|
-
|
2118
|
-
|
2119
|
-
|
2120
|
-
|
2121
|
-
//
|
2122
|
-
|
2123
|
-
|
2124
|
-
|
2125
|
-
|
2126
|
-
|
2127
|
-
|
2128
|
-
|
2129
|
-
|
2130
|
-
|
2131
|
-
"text-color": !_vm.isRefundable ? undefined : 'white'
|
2132
|
-
},
|
2133
|
-
scopedSlots: _vm._u([{
|
2134
|
-
key: "tooltipContent",
|
2135
|
-
fn: function () {
|
2136
|
-
return [_c('div', [_c('b', [_vm._v(_vm._s(_vm.$t('CancellationPoliciesBadge.cancellationPolicies')))])]), _c('cancellation-policies-list', {
|
2137
|
-
attrs: {
|
2138
|
-
"cancellation-policies": _vm.sanitizedCancellationPolicies,
|
2139
|
-
"check-in-date": _vm.checkInDate,
|
2140
|
-
"initial-date": _vm.initialDate,
|
2141
|
-
"timezone": _vm.timezone
|
2142
|
-
}
|
2143
|
-
})];
|
2144
|
-
},
|
2145
|
-
proxy: true
|
2146
|
-
}])
|
2147
|
-
}, [_vm.currentCancellationPolicy.penaltyPercentage === 0 ? _c('span', [_vm._v(" " + _vm._s(_vm.$t('CancellationPoliciesBadge.freeCancellationBefore')) + " ")]) : _vm.currentCancellationPolicy.penaltyPercentage === 100 ? _c('span', [_vm._v(" " + _vm._s(_vm.$t('CancellationPoliciesBadge.nonRefundable')) + " ")]) : _c('span', [_vm._v(" " + _vm._s(_vm.$t('CancellationPoliciesBadge.partiallyRefundable')) + " ")])]);
|
2348
|
+
var DESCRIPTORS = __webpack_require__("1616");
|
2349
|
+
var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__("7ded");
|
2350
|
+
var definePropertyModule = __webpack_require__("3ce5");
|
2351
|
+
var anObject = __webpack_require__("50b4");
|
2352
|
+
var toIndexedObject = __webpack_require__("52b6");
|
2353
|
+
var objectKeys = __webpack_require__("e23e");
|
2354
|
+
|
2355
|
+
// `Object.defineProperties` method
|
2356
|
+
// https://tc39.es/ecma262/#sec-object.defineproperties
|
2357
|
+
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
2358
|
+
exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
|
2359
|
+
anObject(O);
|
2360
|
+
var props = toIndexedObject(Properties);
|
2361
|
+
var keys = objectKeys(Properties);
|
2362
|
+
var length = keys.length;
|
2363
|
+
var index = 0;
|
2364
|
+
var key;
|
2365
|
+
while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
|
2366
|
+
return O;
|
2148
2367
|
};
|
2149
|
-
var staticRenderFns = [];
|
2150
|
-
|
2151
|
-
// CONCATENATED MODULE: ./src/components/RevolugoElements/CancellationPoliciesBadge/CancellationPoliciesBadge.vue?vue&type=template&id=52ae8436&
|
2152
|
-
|
2153
|
-
// EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/libs/cancellation-policies/dist/index.js
|
2154
|
-
var dist = __webpack_require__("05ef");
|
2155
|
-
|
2156
|
-
// EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/camelcase-keys@7.0.2/node_modules/camelcase-keys/index.js
|
2157
|
-
var camelcase_keys = __webpack_require__("cbfb");
|
2158
|
-
var camelcase_keys_default = /*#__PURE__*/__webpack_require__.n(camelcase_keys);
|
2159
|
-
|
2160
|
-
// EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/dayjs@1.11.7/node_modules/dayjs/dayjs.min.js
|
2161
|
-
var dayjs_min = __webpack_require__("1eef");
|
2162
|
-
var dayjs_min_default = /*#__PURE__*/__webpack_require__.n(dayjs_min);
|
2163
|
-
|
2164
|
-
// EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/dayjs@1.11.7/node_modules/dayjs/plugin/isBetween.js
|
2165
|
-
var isBetween = __webpack_require__("5ecd");
|
2166
|
-
var isBetween_default = /*#__PURE__*/__webpack_require__.n(isBetween);
|
2167
|
-
|
2168
|
-
// EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vue@2.7.14_patch_hash=eabltful76efbfyd536dwkbr5a/node_modules/vue/dist/vue.runtime.esm.js
|
2169
|
-
var vue_runtime_esm = __webpack_require__("ad27");
|
2170
2368
|
|
2171
|
-
// EXTERNAL MODULE: ./src/components/RevolugoElements/CancellationPoliciesList/CancellationPoliciesList.vue + 4 modules
|
2172
|
-
var CancellationPoliciesList = __webpack_require__("57b9");
|
2173
2369
|
|
2174
|
-
|
2175
|
-
var BTag = __webpack_require__("9ed2");
|
2370
|
+
/***/ }),
|
2176
2371
|
|
2177
|
-
|
2178
|
-
|
2372
|
+
/***/ "e23e":
|
2373
|
+
/***/ (function(module, exports, __webpack_require__) {
|
2179
2374
|
|
2180
|
-
|
2181
|
-
var
|
2375
|
+
var internalObjectKeys = __webpack_require__("6a9b");
|
2376
|
+
var enumBugKeys = __webpack_require__("7edb");
|
2182
2377
|
|
2183
|
-
//
|
2184
|
-
|
2185
|
-
|
2186
|
-
|
2187
|
-
|
2188
|
-
var gcv = "__coverage__";
|
2189
|
-
var coverageData = {
|
2190
|
-
path: "/opt/atlassian/pipelines/agent/build/libs/elements/core/src/components/RevolugoElements/CancellationPoliciesBadge/CancellationPoliciesBadge.ts",
|
2191
|
-
statementMap: {
|
2192
|
-
"0": {
|
2193
|
-
start: {
|
2194
|
-
line: 10,
|
2195
|
-
column: 0
|
2196
|
-
},
|
2197
|
-
end: {
|
2198
|
-
line: 10,
|
2199
|
-
column: 18
|
2200
|
-
}
|
2201
|
-
},
|
2202
|
-
"1": {
|
2203
|
-
start: {
|
2204
|
-
line: 21,
|
2205
|
-
column: 12
|
2206
|
-
},
|
2207
|
-
end: {
|
2208
|
-
line: 28,
|
2209
|
-
column: 13
|
2210
|
-
}
|
2211
|
-
},
|
2212
|
-
"2": {
|
2213
|
-
start: {
|
2214
|
-
line: 22,
|
2215
|
-
column: 16
|
2216
|
-
},
|
2217
|
-
end: {
|
2218
|
-
line: 27,
|
2219
|
-
column: 17
|
2220
|
-
}
|
2221
|
-
},
|
2222
|
-
"3": {
|
2223
|
-
start: {
|
2224
|
-
line: 23,
|
2225
|
-
column: 20
|
2226
|
-
},
|
2227
|
-
end: {
|
2228
|
-
line: 23,
|
2229
|
-
column: 65
|
2230
|
-
}
|
2231
|
-
},
|
2232
|
-
"4": {
|
2233
|
-
start: {
|
2234
|
-
line: 26,
|
2235
|
-
column: 20
|
2236
|
-
},
|
2237
|
-
end: {
|
2238
|
-
line: 26,
|
2239
|
-
column: 30
|
2240
|
-
}
|
2241
|
-
},
|
2242
|
-
"5": {
|
2243
|
-
start: {
|
2244
|
-
line: 29,
|
2245
|
-
column: 12
|
2246
|
-
},
|
2247
|
-
end: {
|
2248
|
-
line: 29,
|
2249
|
-
column: 45
|
2250
|
-
}
|
2251
|
-
},
|
2252
|
-
"6": {
|
2253
|
-
start: {
|
2254
|
-
line: 32,
|
2255
|
-
column: 12
|
2256
|
-
},
|
2257
|
-
end: {
|
2258
|
-
line: 43,
|
2259
|
-
column: 16
|
2260
|
-
}
|
2261
|
-
},
|
2262
|
-
"7": {
|
2263
|
-
start: {
|
2264
|
-
line: 34,
|
2265
|
-
column: 81
|
2266
|
-
},
|
2267
|
-
end: {
|
2268
|
-
line: 40,
|
2269
|
-
column: 17
|
2270
|
-
}
|
2271
|
-
},
|
2272
|
-
"8": {
|
2273
|
-
start: {
|
2274
|
-
line: 47,
|
2275
|
-
column: 12
|
2276
|
-
},
|
2277
|
-
end: {
|
2278
|
-
line: 49,
|
2279
|
-
column: 13
|
2280
|
-
}
|
2281
|
-
},
|
2282
|
-
"9": {
|
2283
|
-
start: {
|
2284
|
-
line: 48,
|
2285
|
-
column: 16
|
2286
|
-
},
|
2287
|
-
end: {
|
2288
|
-
line: 48,
|
2289
|
-
column: 34
|
2290
|
-
}
|
2291
|
-
},
|
2292
|
-
"10": {
|
2293
|
-
start: {
|
2294
|
-
line: 50,
|
2295
|
-
column: 12
|
2296
|
-
},
|
2297
|
-
end: {
|
2298
|
-
line: 52,
|
2299
|
-
column: 13
|
2300
|
-
}
|
2301
|
-
},
|
2302
|
-
"11": {
|
2303
|
-
start: {
|
2304
|
-
line: 51,
|
2305
|
-
column: 16
|
2306
|
-
},
|
2307
|
-
end: {
|
2308
|
-
line: 51,
|
2309
|
-
column: 26
|
2310
|
-
}
|
2311
|
-
},
|
2312
|
-
"12": {
|
2313
|
-
start: {
|
2314
|
-
line: 53,
|
2315
|
-
column: 12
|
2316
|
-
},
|
2317
|
-
end: {
|
2318
|
-
line: 53,
|
2319
|
-
column: 36
|
2320
|
-
}
|
2321
|
-
},
|
2322
|
-
"13": {
|
2323
|
-
start: {
|
2324
|
-
line: 56,
|
2325
|
-
column: 12
|
2326
|
-
},
|
2327
|
-
end: {
|
2328
|
-
line: 56,
|
2329
|
-
column: 58
|
2330
|
-
}
|
2331
|
-
},
|
2332
|
-
"14": {
|
2333
|
-
start: {
|
2334
|
-
line: 59,
|
2335
|
-
column: 12
|
2336
|
-
},
|
2337
|
-
end: {
|
2338
|
-
line: 59,
|
2339
|
-
column: 177
|
2340
|
-
}
|
2341
|
-
},
|
2342
|
-
"15": {
|
2343
|
-
start: {
|
2344
|
-
line: 59,
|
2345
|
-
column: 70
|
2346
|
-
},
|
2347
|
-
end: {
|
2348
|
-
line: 59,
|
2349
|
-
column: 133
|
2350
|
-
}
|
2351
|
-
},
|
2352
|
-
"16": {
|
2353
|
-
start: {
|
2354
|
-
line: 63,
|
2355
|
-
column: 12
|
2356
|
-
},
|
2357
|
-
end: {
|
2358
|
-
line: 63,
|
2359
|
-
column: 165
|
2360
|
-
}
|
2361
|
-
}
|
2362
|
-
},
|
2363
|
-
fnMap: {
|
2364
|
-
"0": {
|
2365
|
-
name: "(anonymous_0)",
|
2366
|
-
decl: {
|
2367
|
-
start: {
|
2368
|
-
line: 20,
|
2369
|
-
column: 8
|
2370
|
-
},
|
2371
|
-
end: {
|
2372
|
-
line: 20,
|
2373
|
-
column: 9
|
2374
|
-
}
|
2375
|
-
},
|
2376
|
-
loc: {
|
2377
|
-
start: {
|
2378
|
-
line: 20,
|
2379
|
-
column: 37
|
2380
|
-
},
|
2381
|
-
end: {
|
2382
|
-
line: 30,
|
2383
|
-
column: 9
|
2384
|
-
}
|
2385
|
-
},
|
2386
|
-
line: 20
|
2387
|
-
},
|
2388
|
-
"1": {
|
2389
|
-
name: "(anonymous_1)",
|
2390
|
-
decl: {
|
2391
|
-
start: {
|
2392
|
-
line: 31,
|
2393
|
-
column: 8
|
2394
|
-
},
|
2395
|
-
end: {
|
2396
|
-
line: 31,
|
2397
|
-
column: 9
|
2398
|
-
}
|
2399
|
-
},
|
2400
|
-
loc: {
|
2401
|
-
start: {
|
2402
|
-
line: 31,
|
2403
|
-
column: 40
|
2404
|
-
},
|
2405
|
-
end: {
|
2406
|
-
line: 44,
|
2407
|
-
column: 9
|
2408
|
-
}
|
2409
|
-
},
|
2410
|
-
line: 31
|
2411
|
-
},
|
2412
|
-
"2": {
|
2413
|
-
name: "(anonymous_2)",
|
2414
|
-
decl: {
|
2415
|
-
start: {
|
2416
|
-
line: 34,
|
2417
|
-
column: 74
|
2418
|
-
},
|
2419
|
-
end: {
|
2420
|
-
line: 34,
|
2421
|
-
column: 75
|
2422
|
-
}
|
2423
|
-
},
|
2424
|
-
loc: {
|
2425
|
-
start: {
|
2426
|
-
line: 34,
|
2427
|
-
column: 81
|
2428
|
-
},
|
2429
|
-
end: {
|
2430
|
-
line: 40,
|
2431
|
-
column: 17
|
2432
|
-
}
|
2433
|
-
},
|
2434
|
-
line: 34
|
2435
|
-
},
|
2436
|
-
"3": {
|
2437
|
-
name: "(anonymous_3)",
|
2438
|
-
decl: {
|
2439
|
-
start: {
|
2440
|
-
line: 45,
|
2441
|
-
column: 8
|
2442
|
-
},
|
2443
|
-
end: {
|
2444
|
-
line: 45,
|
2445
|
-
column: 9
|
2446
|
-
}
|
2447
|
-
},
|
2448
|
-
loc: {
|
2449
|
-
start: {
|
2450
|
-
line: 45,
|
2451
|
-
column: 18
|
2452
|
-
},
|
2453
|
-
end: {
|
2454
|
-
line: 54,
|
2455
|
-
column: 9
|
2456
|
-
}
|
2457
|
-
},
|
2458
|
-
line: 45
|
2459
|
-
},
|
2460
|
-
"4": {
|
2461
|
-
name: "(anonymous_4)",
|
2462
|
-
decl: {
|
2463
|
-
start: {
|
2464
|
-
line: 55,
|
2465
|
-
column: 8
|
2466
|
-
},
|
2467
|
-
end: {
|
2468
|
-
line: 55,
|
2469
|
-
column: 9
|
2470
|
-
}
|
2471
|
-
},
|
2472
|
-
loc: {
|
2473
|
-
start: {
|
2474
|
-
line: 55,
|
2475
|
-
column: 16
|
2476
|
-
},
|
2477
|
-
end: {
|
2478
|
-
line: 57,
|
2479
|
-
column: 9
|
2480
|
-
}
|
2481
|
-
},
|
2482
|
-
line: 55
|
2483
|
-
},
|
2484
|
-
"5": {
|
2485
|
-
name: "(anonymous_5)",
|
2486
|
-
decl: {
|
2487
|
-
start: {
|
2488
|
-
line: 58,
|
2489
|
-
column: 8
|
2490
|
-
},
|
2491
|
-
end: {
|
2492
|
-
line: 58,
|
2493
|
-
column: 9
|
2494
|
-
}
|
2495
|
-
},
|
2496
|
-
loc: {
|
2497
|
-
start: {
|
2498
|
-
line: 58,
|
2499
|
-
column: 36
|
2500
|
-
},
|
2501
|
-
end: {
|
2502
|
-
line: 60,
|
2503
|
-
column: 9
|
2504
|
-
}
|
2505
|
-
},
|
2506
|
-
line: 58
|
2507
|
-
},
|
2508
|
-
"6": {
|
2509
|
-
name: "(anonymous_6)",
|
2510
|
-
decl: {
|
2511
|
-
start: {
|
2512
|
-
line: 59,
|
2513
|
-
column: 60
|
2514
|
-
},
|
2515
|
-
end: {
|
2516
|
-
line: 59,
|
2517
|
-
column: 61
|
2518
|
-
}
|
2519
|
-
},
|
2520
|
-
loc: {
|
2521
|
-
start: {
|
2522
|
-
line: 59,
|
2523
|
-
column: 70
|
2524
|
-
},
|
2525
|
-
end: {
|
2526
|
-
line: 59,
|
2527
|
-
column: 133
|
2528
|
-
}
|
2529
|
-
},
|
2530
|
-
line: 59
|
2531
|
-
},
|
2532
|
-
"7": {
|
2533
|
-
name: "(anonymous_7)",
|
2534
|
-
decl: {
|
2535
|
-
start: {
|
2536
|
-
line: 61,
|
2537
|
-
column: 8
|
2538
|
-
},
|
2539
|
-
end: {
|
2540
|
-
line: 61,
|
2541
|
-
column: 9
|
2542
|
-
}
|
2543
|
-
},
|
2544
|
-
loc: {
|
2545
|
-
start: {
|
2546
|
-
line: 61,
|
2547
|
-
column: 23
|
2548
|
-
},
|
2549
|
-
end: {
|
2550
|
-
line: 64,
|
2551
|
-
column: 9
|
2552
|
-
}
|
2553
|
-
},
|
2554
|
-
line: 61
|
2555
|
-
}
|
2556
|
-
},
|
2557
|
-
branchMap: {
|
2558
|
-
"0": {
|
2559
|
-
loc: {
|
2560
|
-
start: {
|
2561
|
-
line: 21,
|
2562
|
-
column: 12
|
2563
|
-
},
|
2564
|
-
end: {
|
2565
|
-
line: 28,
|
2566
|
-
column: 13
|
2567
|
-
}
|
2568
|
-
},
|
2569
|
-
type: "if",
|
2570
|
-
locations: [{
|
2571
|
-
start: {
|
2572
|
-
line: 21,
|
2573
|
-
column: 12
|
2574
|
-
},
|
2575
|
-
end: {
|
2576
|
-
line: 28,
|
2577
|
-
column: 13
|
2578
|
-
}
|
2579
|
-
}, {
|
2580
|
-
start: {
|
2581
|
-
line: undefined,
|
2582
|
-
column: undefined
|
2583
|
-
},
|
2584
|
-
end: {
|
2585
|
-
line: undefined,
|
2586
|
-
column: undefined
|
2587
|
-
}
|
2588
|
-
}],
|
2589
|
-
line: 21
|
2590
|
-
},
|
2591
|
-
"1": {
|
2592
|
-
loc: {
|
2593
|
-
start: {
|
2594
|
-
line: 33,
|
2595
|
-
column: 33
|
2596
|
-
},
|
2597
|
-
end: {
|
2598
|
-
line: 33,
|
2599
|
-
column: 69
|
2600
|
-
}
|
2601
|
-
},
|
2602
|
-
type: "binary-expr",
|
2603
|
-
locations: [{
|
2604
|
-
start: {
|
2605
|
-
line: 33,
|
2606
|
-
column: 33
|
2607
|
-
},
|
2608
|
-
end: {
|
2609
|
-
line: 33,
|
2610
|
-
column: 49
|
2611
|
-
}
|
2612
|
-
}, {
|
2613
|
-
start: {
|
2614
|
-
line: 33,
|
2615
|
-
column: 53
|
2616
|
-
},
|
2617
|
-
end: {
|
2618
|
-
line: 33,
|
2619
|
-
column: 69
|
2620
|
-
}
|
2621
|
-
}],
|
2622
|
-
line: 33
|
2623
|
-
},
|
2624
|
-
"2": {
|
2625
|
-
loc: {
|
2626
|
-
start: {
|
2627
|
-
line: 47,
|
2628
|
-
column: 12
|
2629
|
-
},
|
2630
|
-
end: {
|
2631
|
-
line: 49,
|
2632
|
-
column: 13
|
2633
|
-
}
|
2634
|
-
},
|
2635
|
-
type: "if",
|
2636
|
-
locations: [{
|
2637
|
-
start: {
|
2638
|
-
line: 47,
|
2639
|
-
column: 12
|
2640
|
-
},
|
2641
|
-
end: {
|
2642
|
-
line: 49,
|
2643
|
-
column: 13
|
2644
|
-
}
|
2645
|
-
}, {
|
2646
|
-
start: {
|
2647
|
-
line: undefined,
|
2648
|
-
column: undefined
|
2649
|
-
},
|
2650
|
-
end: {
|
2651
|
-
line: undefined,
|
2652
|
-
column: undefined
|
2653
|
-
}
|
2654
|
-
}],
|
2655
|
-
line: 47
|
2656
|
-
},
|
2657
|
-
"3": {
|
2658
|
-
loc: {
|
2659
|
-
start: {
|
2660
|
-
line: 47,
|
2661
|
-
column: 17
|
2662
|
-
},
|
2663
|
-
end: {
|
2664
|
-
line: 47,
|
2665
|
-
column: 112
|
2666
|
-
}
|
2667
|
-
},
|
2668
|
-
type: "cond-expr",
|
2669
|
-
locations: [{
|
2670
|
-
start: {
|
2671
|
-
line: 47,
|
2672
|
-
column: 83
|
2673
|
-
},
|
2674
|
-
end: {
|
2675
|
-
line: 47,
|
2676
|
-
column: 89
|
2677
|
-
}
|
2678
|
-
}, {
|
2679
|
-
start: {
|
2680
|
-
line: 47,
|
2681
|
-
column: 92
|
2682
|
-
},
|
2683
|
-
end: {
|
2684
|
-
line: 47,
|
2685
|
-
column: 112
|
2686
|
-
}
|
2687
|
-
}],
|
2688
|
-
line: 47
|
2689
|
-
},
|
2690
|
-
"4": {
|
2691
|
-
loc: {
|
2692
|
-
start: {
|
2693
|
-
line: 47,
|
2694
|
-
column: 17
|
2695
|
-
},
|
2696
|
-
end: {
|
2697
|
-
line: 47,
|
2698
|
-
column: 80
|
2699
|
-
}
|
2700
|
-
},
|
2701
|
-
type: "binary-expr",
|
2702
|
-
locations: [{
|
2703
|
-
start: {
|
2704
|
-
line: 47,
|
2705
|
-
column: 17
|
2706
|
-
},
|
2707
|
-
end: {
|
2708
|
-
line: 47,
|
2709
|
-
column: 63
|
2710
|
-
}
|
2711
|
-
}, {
|
2712
|
-
start: {
|
2713
|
-
line: 47,
|
2714
|
-
column: 67
|
2715
|
-
},
|
2716
|
-
end: {
|
2717
|
-
line: 47,
|
2718
|
-
column: 80
|
2719
|
-
}
|
2720
|
-
}],
|
2721
|
-
line: 47
|
2722
|
-
},
|
2723
|
-
"5": {
|
2724
|
-
loc: {
|
2725
|
-
start: {
|
2726
|
-
line: 50,
|
2727
|
-
column: 12
|
2728
|
-
},
|
2729
|
-
end: {
|
2730
|
-
line: 52,
|
2731
|
-
column: 13
|
2732
|
-
}
|
2733
|
-
},
|
2734
|
-
type: "if",
|
2735
|
-
locations: [{
|
2736
|
-
start: {
|
2737
|
-
line: 50,
|
2738
|
-
column: 12
|
2739
|
-
},
|
2740
|
-
end: {
|
2741
|
-
line: 52,
|
2742
|
-
column: 13
|
2743
|
-
}
|
2744
|
-
}, {
|
2745
|
-
start: {
|
2746
|
-
line: undefined,
|
2747
|
-
column: undefined
|
2748
|
-
},
|
2749
|
-
end: {
|
2750
|
-
line: undefined,
|
2751
|
-
column: undefined
|
2752
|
-
}
|
2753
|
-
}],
|
2754
|
-
line: 50
|
2755
|
-
},
|
2756
|
-
"6": {
|
2757
|
-
loc: {
|
2758
|
-
start: {
|
2759
|
-
line: 50,
|
2760
|
-
column: 17
|
2761
|
-
},
|
2762
|
-
end: {
|
2763
|
-
line: 50,
|
2764
|
-
column: 112
|
2765
|
-
}
|
2766
|
-
},
|
2767
|
-
type: "cond-expr",
|
2768
|
-
locations: [{
|
2769
|
-
start: {
|
2770
|
-
line: 50,
|
2771
|
-
column: 83
|
2772
|
-
},
|
2773
|
-
end: {
|
2774
|
-
line: 50,
|
2775
|
-
column: 89
|
2776
|
-
}
|
2777
|
-
}, {
|
2778
|
-
start: {
|
2779
|
-
line: 50,
|
2780
|
-
column: 92
|
2781
|
-
},
|
2782
|
-
end: {
|
2783
|
-
line: 50,
|
2784
|
-
column: 112
|
2785
|
-
}
|
2786
|
-
}],
|
2787
|
-
line: 50
|
2788
|
-
},
|
2789
|
-
"7": {
|
2790
|
-
loc: {
|
2791
|
-
start: {
|
2792
|
-
line: 50,
|
2793
|
-
column: 17
|
2794
|
-
},
|
2795
|
-
end: {
|
2796
|
-
line: 50,
|
2797
|
-
column: 80
|
2798
|
-
}
|
2799
|
-
},
|
2800
|
-
type: "binary-expr",
|
2801
|
-
locations: [{
|
2802
|
-
start: {
|
2803
|
-
line: 50,
|
2804
|
-
column: 17
|
2805
|
-
},
|
2806
|
-
end: {
|
2807
|
-
line: 50,
|
2808
|
-
column: 63
|
2809
|
-
}
|
2810
|
-
}, {
|
2811
|
-
start: {
|
2812
|
-
line: 50,
|
2813
|
-
column: 67
|
2814
|
-
},
|
2815
|
-
end: {
|
2816
|
-
line: 50,
|
2817
|
-
column: 80
|
2818
|
-
}
|
2819
|
-
}],
|
2820
|
-
line: 50
|
2821
|
-
},
|
2822
|
-
"8": {
|
2823
|
-
loc: {
|
2824
|
-
start: {
|
2825
|
-
line: 56,
|
2826
|
-
column: 19
|
2827
|
-
},
|
2828
|
-
end: {
|
2829
|
-
line: 56,
|
2830
|
-
column: 57
|
2831
|
-
}
|
2832
|
-
},
|
2833
|
-
type: "cond-expr",
|
2834
|
-
locations: [{
|
2835
|
-
start: {
|
2836
|
-
line: 56,
|
2837
|
-
column: 39
|
2838
|
-
},
|
2839
|
-
end: {
|
2840
|
-
line: 56,
|
2841
|
-
column: 48
|
2842
|
-
}
|
2843
|
-
}, {
|
2844
|
-
start: {
|
2845
|
-
line: 56,
|
2846
|
-
column: 51
|
2847
|
-
},
|
2848
|
-
end: {
|
2849
|
-
line: 56,
|
2850
|
-
column: 57
|
2851
|
-
}
|
2852
|
-
}],
|
2853
|
-
line: 56
|
2854
|
-
},
|
2855
|
-
"9": {
|
2856
|
-
loc: {
|
2857
|
-
start: {
|
2858
|
-
line: 59,
|
2859
|
-
column: 20
|
2860
|
-
},
|
2861
|
-
end: {
|
2862
|
-
line: 59,
|
2863
|
-
column: 175
|
2864
|
-
}
|
2865
|
-
},
|
2866
|
-
type: "binary-expr",
|
2867
|
-
locations: [{
|
2868
|
-
start: {
|
2869
|
-
line: 59,
|
2870
|
-
column: 20
|
2871
|
-
},
|
2872
|
-
end: {
|
2873
|
-
line: 59,
|
2874
|
-
column: 134
|
2875
|
-
}
|
2876
|
-
}, {
|
2877
|
-
start: {
|
2878
|
-
line: 59,
|
2879
|
-
column: 138
|
2880
|
-
},
|
2881
|
-
end: {
|
2882
|
-
line: 59,
|
2883
|
-
column: 175
|
2884
|
-
}
|
2885
|
-
}],
|
2886
|
-
line: 59
|
2887
|
-
},
|
2888
|
-
"10": {
|
2889
|
-
loc: {
|
2890
|
-
start: {
|
2891
|
-
line: 63,
|
2892
|
-
column: 20
|
2893
|
-
},
|
2894
|
-
end: {
|
2895
|
-
line: 63,
|
2896
|
-
column: 157
|
2897
|
-
}
|
2898
|
-
},
|
2899
|
-
type: "cond-expr",
|
2900
|
-
locations: [{
|
2901
|
-
start: {
|
2902
|
-
line: 63,
|
2903
|
-
column: 151
|
2904
|
-
},
|
2905
|
-
end: {
|
2906
|
-
line: 63,
|
2907
|
-
column: 153
|
2908
|
-
}
|
2909
|
-
}, {
|
2910
|
-
start: {
|
2911
|
-
line: 63,
|
2912
|
-
column: 156
|
2913
|
-
},
|
2914
|
-
end: {
|
2915
|
-
line: 63,
|
2916
|
-
column: 157
|
2917
|
-
}
|
2918
|
-
}],
|
2919
|
-
line: 63
|
2920
|
-
},
|
2921
|
-
"11": {
|
2922
|
-
loc: {
|
2923
|
-
start: {
|
2924
|
-
line: 63,
|
2925
|
-
column: 20
|
2926
|
-
},
|
2927
|
-
end: {
|
2928
|
-
line: 63,
|
2929
|
-
column: 148
|
2930
|
-
}
|
2931
|
-
},
|
2932
|
-
type: "binary-expr",
|
2933
|
-
locations: [{
|
2934
|
-
start: {
|
2935
|
-
line: 63,
|
2936
|
-
column: 20
|
2937
|
-
},
|
2938
|
-
end: {
|
2939
|
-
line: 63,
|
2940
|
-
column: 131
|
2941
|
-
}
|
2942
|
-
}, {
|
2943
|
-
start: {
|
2944
|
-
line: 63,
|
2945
|
-
column: 135
|
2946
|
-
},
|
2947
|
-
end: {
|
2948
|
-
line: 63,
|
2949
|
-
column: 148
|
2950
|
-
}
|
2951
|
-
}],
|
2952
|
-
line: 63
|
2953
|
-
},
|
2954
|
-
"12": {
|
2955
|
-
loc: {
|
2956
|
-
start: {
|
2957
|
-
line: 63,
|
2958
|
-
column: 26
|
2959
|
-
},
|
2960
|
-
end: {
|
2961
|
-
line: 63,
|
2962
|
-
column: 121
|
2963
|
-
}
|
2964
|
-
},
|
2965
|
-
type: "cond-expr",
|
2966
|
-
locations: [{
|
2967
|
-
start: {
|
2968
|
-
line: 63,
|
2969
|
-
column: 92
|
2970
|
-
},
|
2971
|
-
end: {
|
2972
|
-
line: 63,
|
2973
|
-
column: 98
|
2974
|
-
}
|
2975
|
-
}, {
|
2976
|
-
start: {
|
2977
|
-
line: 63,
|
2978
|
-
column: 101
|
2979
|
-
},
|
2980
|
-
end: {
|
2981
|
-
line: 63,
|
2982
|
-
column: 121
|
2983
|
-
}
|
2984
|
-
}],
|
2985
|
-
line: 63
|
2986
|
-
},
|
2987
|
-
"13": {
|
2988
|
-
loc: {
|
2989
|
-
start: {
|
2990
|
-
line: 63,
|
2991
|
-
column: 26
|
2992
|
-
},
|
2993
|
-
end: {
|
2994
|
-
line: 63,
|
2995
|
-
column: 89
|
2996
|
-
}
|
2997
|
-
},
|
2998
|
-
type: "binary-expr",
|
2999
|
-
locations: [{
|
3000
|
-
start: {
|
3001
|
-
line: 63,
|
3002
|
-
column: 26
|
3003
|
-
},
|
3004
|
-
end: {
|
3005
|
-
line: 63,
|
3006
|
-
column: 72
|
3007
|
-
}
|
3008
|
-
}, {
|
3009
|
-
start: {
|
3010
|
-
line: 63,
|
3011
|
-
column: 76
|
3012
|
-
},
|
3013
|
-
end: {
|
3014
|
-
line: 63,
|
3015
|
-
column: 89
|
3016
|
-
}
|
3017
|
-
}],
|
3018
|
-
line: 63
|
3019
|
-
}
|
3020
|
-
},
|
3021
|
-
s: {
|
3022
|
-
"0": 0,
|
3023
|
-
"1": 0,
|
3024
|
-
"2": 0,
|
3025
|
-
"3": 0,
|
3026
|
-
"4": 0,
|
3027
|
-
"5": 0,
|
3028
|
-
"6": 0,
|
3029
|
-
"7": 0,
|
3030
|
-
"8": 0,
|
3031
|
-
"9": 0,
|
3032
|
-
"10": 0,
|
3033
|
-
"11": 0,
|
3034
|
-
"12": 0,
|
3035
|
-
"13": 0,
|
3036
|
-
"14": 0,
|
3037
|
-
"15": 0,
|
3038
|
-
"16": 0
|
3039
|
-
},
|
3040
|
-
f: {
|
3041
|
-
"0": 0,
|
3042
|
-
"1": 0,
|
3043
|
-
"2": 0,
|
3044
|
-
"3": 0,
|
3045
|
-
"4": 0,
|
3046
|
-
"5": 0,
|
3047
|
-
"6": 0,
|
3048
|
-
"7": 0
|
3049
|
-
},
|
3050
|
-
b: {
|
3051
|
-
"0": [0, 0],
|
3052
|
-
"1": [0, 0],
|
3053
|
-
"2": [0, 0],
|
3054
|
-
"3": [0, 0],
|
3055
|
-
"4": [0, 0],
|
3056
|
-
"5": [0, 0],
|
3057
|
-
"6": [0, 0],
|
3058
|
-
"7": [0, 0],
|
3059
|
-
"8": [0, 0],
|
3060
|
-
"9": [0, 0],
|
3061
|
-
"10": [0, 0],
|
3062
|
-
"11": [0, 0],
|
3063
|
-
"12": [0, 0],
|
3064
|
-
"13": [0, 0]
|
3065
|
-
},
|
3066
|
-
_coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
|
3067
|
-
hash: "bbe4b3f811d308f499340429b020afde1691694a"
|
3068
|
-
};
|
3069
|
-
var coverage = global[gcv] || (global[gcv] = {});
|
3070
|
-
if (!coverage[path] || coverage[path].hash !== hash) {
|
3071
|
-
coverage[path] = coverageData;
|
3072
|
-
}
|
3073
|
-
var actualCoverage = coverage[path];
|
3074
|
-
{
|
3075
|
-
// @ts-ignore
|
3076
|
-
cov_1zhvuuxyb6 = function () {
|
3077
|
-
return actualCoverage;
|
3078
|
-
};
|
3079
|
-
}
|
3080
|
-
return actualCoverage;
|
3081
|
-
}
|
3082
|
-
cov_1zhvuuxyb6();
|
3083
|
-
|
3084
|
-
|
3085
|
-
|
3086
|
-
|
3087
|
-
|
3088
|
-
|
3089
|
-
|
3090
|
-
|
3091
|
-
|
3092
|
-
cov_1zhvuuxyb6().s[0]++;
|
3093
|
-
Object(dayjs_min["extend"])(isBetween_default.a);
|
3094
|
-
/* harmony default export */ var CancellationPoliciesBadgevue_type_script_lang_ts_ = (vue_runtime_esm["a" /* default */].extend({
|
3095
|
-
name: 'CancellationPolicyBadge',
|
3096
|
-
components: {
|
3097
|
-
BTag: BTag["a" /* default */],
|
3098
|
-
CancellationPoliciesList: CancellationPoliciesList["a" /* default */]
|
3099
|
-
},
|
3100
|
-
mixins: [Object(locale_async_loader["a" /* localeAsyncLoaderMixin */])("components/RevolugoElements/CancellationPoliciesBadge")],
|
3101
|
-
props: CancellationPoliciesBadge_props["a" /* cancellationPoliciesBadgeProps */],
|
3102
|
-
computed: {
|
3103
|
-
parsedCancellationPolicies() {
|
3104
|
-
cov_1zhvuuxyb6().f[0]++;
|
3105
|
-
cov_1zhvuuxyb6().s[1]++;
|
3106
|
-
if (typeof this.cancellationPolicies === 'string') {
|
3107
|
-
cov_1zhvuuxyb6().b[0][0]++;
|
3108
|
-
cov_1zhvuuxyb6().s[2]++;
|
3109
|
-
try {
|
3110
|
-
cov_1zhvuuxyb6().s[3]++;
|
3111
|
-
return JSON.parse(this.cancellationPolicies);
|
3112
|
-
} catch {
|
3113
|
-
cov_1zhvuuxyb6().s[4]++;
|
3114
|
-
return [];
|
3115
|
-
}
|
3116
|
-
} else {
|
3117
|
-
cov_1zhvuuxyb6().b[0][1]++;
|
3118
|
-
}
|
3119
|
-
cov_1zhvuuxyb6().s[5]++;
|
3120
|
-
return this.cancellationPolicies;
|
3121
|
-
},
|
3122
|
-
sanitizedCancellationPolicies() {
|
3123
|
-
cov_1zhvuuxyb6().f[1]++;
|
3124
|
-
cov_1zhvuuxyb6().s[6]++;
|
3125
|
-
return camelcase_keys_default()(Object(dist["b" /* sanitizeCancellationPolicies */])({
|
3126
|
-
bookingDatetime: (cov_1zhvuuxyb6().b[1][0]++, this.initialDate) || (cov_1zhvuuxyb6().b[1][1]++, dayjs_min_default()().format()),
|
3127
|
-
cancellationPolicies: this.parsedCancellationPolicies.map(cp => {
|
3128
|
-
cov_1zhvuuxyb6().f[2]++;
|
3129
|
-
cov_1zhvuuxyb6().s[7]++;
|
3130
|
-
return {
|
3131
|
-
/* eslint-disable camelcase */
|
3132
|
-
date_from: cp.dateFrom,
|
3133
|
-
date_to: cp.dateTo,
|
3134
|
-
penalty_percentage: cp.penaltyPercentage
|
3135
|
-
/* eslint-enable camelcase */
|
3136
|
-
};
|
3137
|
-
}),
|
3138
|
-
|
3139
|
-
checkInDate: this.checkInDate,
|
3140
|
-
timezone: this.timezone
|
3141
|
-
}));
|
3142
|
-
},
|
3143
|
-
preIcon() {
|
3144
|
-
cov_1zhvuuxyb6().f[3]++;
|
3145
|
-
var _a, _b;
|
3146
|
-
cov_1zhvuuxyb6().s[8]++;
|
3147
|
-
if (((cov_1zhvuuxyb6().b[4][0]++, (_a = this.currentCancellationPolicy) === null) || (cov_1zhvuuxyb6().b[4][1]++, _a === void 0) ? (cov_1zhvuuxyb6().b[3][0]++, void 0) : (cov_1zhvuuxyb6().b[3][1]++, _a.penaltyPercentage)) === 0) {
|
3148
|
-
cov_1zhvuuxyb6().b[2][0]++;
|
3149
|
-
cov_1zhvuuxyb6().s[9]++;
|
3150
|
-
return 'fa-check';
|
3151
|
-
} else {
|
3152
|
-
cov_1zhvuuxyb6().b[2][1]++;
|
3153
|
-
}
|
3154
|
-
cov_1zhvuuxyb6().s[10]++;
|
3155
|
-
if (((cov_1zhvuuxyb6().b[7][0]++, (_b = this.currentCancellationPolicy) === null) || (cov_1zhvuuxyb6().b[7][1]++, _b === void 0) ? (cov_1zhvuuxyb6().b[6][0]++, void 0) : (cov_1zhvuuxyb6().b[6][1]++, _b.penaltyPercentage)) === 100) {
|
3156
|
-
cov_1zhvuuxyb6().b[5][0]++;
|
3157
|
-
cov_1zhvuuxyb6().s[11]++;
|
3158
|
-
return '';
|
3159
|
-
} else {
|
3160
|
-
cov_1zhvuuxyb6().b[5][1]++;
|
3161
|
-
}
|
3162
|
-
cov_1zhvuuxyb6().s[12]++;
|
3163
|
-
return 'fa-info-circle';
|
3164
|
-
},
|
3165
|
-
color() {
|
3166
|
-
cov_1zhvuuxyb6().f[4]++;
|
3167
|
-
cov_1zhvuuxyb6().s[13]++;
|
3168
|
-
return this.isRefundable ? (cov_1zhvuuxyb6().b[8][0]++, 'success') : (cov_1zhvuuxyb6().b[8][1]++, 'grey');
|
3169
|
-
},
|
3170
|
-
currentCancellationPolicy() {
|
3171
|
-
cov_1zhvuuxyb6().f[5]++;
|
3172
|
-
cov_1zhvuuxyb6().s[14]++;
|
3173
|
-
return (cov_1zhvuuxyb6().b[9][0]++, this.sanitizedCancellationPolicies.find(policy => {
|
3174
|
-
cov_1zhvuuxyb6().f[6]++;
|
3175
|
-
cov_1zhvuuxyb6().s[15]++;
|
3176
|
-
return dayjs_min_default()().isBetween(dayjs_min_default()(policy.dateFrom), dayjs_min_default()(policy.dateTo));
|
3177
|
-
})) || (cov_1zhvuuxyb6().b[9][1]++, this.sanitizedCancellationPolicies[0]);
|
3178
|
-
},
|
3179
|
-
isRefundable() {
|
3180
|
-
cov_1zhvuuxyb6().f[7]++;
|
3181
|
-
var _a, _b;
|
3182
|
-
cov_1zhvuuxyb6().s[16]++;
|
3183
|
-
return ((cov_1zhvuuxyb6().b[11][0]++, (_b = (cov_1zhvuuxyb6().b[13][0]++, (_a = this.currentCancellationPolicy) === null) || (cov_1zhvuuxyb6().b[13][1]++, _a === void 0) ? (cov_1zhvuuxyb6().b[12][0]++, void 0) : (cov_1zhvuuxyb6().b[12][1]++, _a.penaltyPercentage)) !== null) && (cov_1zhvuuxyb6().b[11][1]++, _b !== void 0) ? (cov_1zhvuuxyb6().b[10][0]++, _b) : (cov_1zhvuuxyb6().b[10][1]++, 0)) < 100;
|
3184
|
-
}
|
3185
|
-
}
|
3186
|
-
}));
|
3187
|
-
// CONCATENATED MODULE: ./src/components/RevolugoElements/CancellationPoliciesBadge/CancellationPoliciesBadge.ts?vue&type=script&lang=ts&
|
3188
|
-
/* harmony default export */ var CancellationPoliciesBadge_CancellationPoliciesBadgevue_type_script_lang_ts_ = (CancellationPoliciesBadgevue_type_script_lang_ts_);
|
3189
|
-
// EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vue-loader@15.10.1_cache-loader@4.1.0_css-loader@3.6.0_react-dom@16.14.0_react@16.14.0_vue-te_in2h7w4pcz7gmv74d3b5fqofg4/node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
3190
|
-
var componentNormalizer = __webpack_require__("f0a0");
|
3191
|
-
|
3192
|
-
// CONCATENATED MODULE: ./src/components/RevolugoElements/CancellationPoliciesBadge/CancellationPoliciesBadge.vue
|
3193
|
-
|
3194
|
-
|
3195
|
-
|
3196
|
-
|
3197
|
-
|
3198
|
-
/* normalize component */
|
3199
|
-
|
3200
|
-
var component = Object(componentNormalizer["a" /* default */])(
|
3201
|
-
CancellationPoliciesBadge_CancellationPoliciesBadgevue_type_script_lang_ts_,
|
3202
|
-
render,
|
3203
|
-
staticRenderFns,
|
3204
|
-
false,
|
3205
|
-
null,
|
3206
|
-
null,
|
3207
|
-
null
|
3208
|
-
,true
|
3209
|
-
)
|
3210
|
-
|
3211
|
-
/* harmony default export */ var CancellationPoliciesBadge = __webpack_exports__["a"] = (component.exports);
|
3212
|
-
|
3213
|
-
/***/ }),
|
3214
|
-
|
3215
|
-
/***/ "ee1a":
|
3216
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
3217
|
-
|
3218
|
-
"use strict";
|
3219
|
-
// ESM COMPAT FLAG
|
3220
|
-
__webpack_require__.r(__webpack_exports__);
|
3221
|
-
|
3222
|
-
// CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/cache-loader@4.1.0_webpack@4.46.0/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"38294fbf-vue-loader-template"}!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/cache-loader@4.1.0_webpack@4.46.0/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/babel-loader@8.3.0_@babel+core@7.21.4_webpack@4.46.0/node_modules/babel-loader/lib!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vue-loader@15.10.1_cache-loader@4.1.0_css-loader@3.6.0_react-dom@16.14.0_react@16.14.0_vue-te_in2h7w4pcz7gmv74d3b5fqofg4/node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/cache-loader@4.1.0_webpack@4.46.0/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vue-loader@15.10.1_cache-loader@4.1.0_css-loader@3.6.0_react-dom@16.14.0_react@16.14.0_vue-te_in2h7w4pcz7gmv74d3b5fqofg4/node_modules/vue-loader/lib??vue-loader-options!./src/components/web-components/CancellationPoliciesBadge/CancellationPoliciesBadge.vue?vue&type=template&id=065b19f7&shadow
|
3223
|
-
var render = function render() {
|
3224
|
-
var _vm = this,
|
3225
|
-
_c = _vm._self._c,
|
3226
|
-
_setup = _vm._self._setupProxy;
|
3227
|
-
return _c('web-component-wrapper', [_c('cancellation-policies-badge', _vm._b({}, 'cancellation-policies-badge', _vm.$props, false))], 1);
|
2378
|
+
// `Object.keys` method
|
2379
|
+
// https://tc39.es/ecma262/#sec-object.keys
|
2380
|
+
// eslint-disable-next-line es/no-object-keys -- safe
|
2381
|
+
module.exports = Object.keys || function keys(O) {
|
2382
|
+
return internalObjectKeys(O, enumBugKeys);
|
3228
2383
|
};
|
3229
|
-
var staticRenderFns = [];
|
3230
|
-
|
3231
|
-
// CONCATENATED MODULE: ./src/components/web-components/CancellationPoliciesBadge/CancellationPoliciesBadge.vue?vue&type=template&id=065b19f7&shadow
|
3232
|
-
|
3233
|
-
// EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vue@2.7.14_patch_hash=eabltful76efbfyd536dwkbr5a/node_modules/vue/dist/vue.runtime.esm.js
|
3234
|
-
var vue_runtime_esm = __webpack_require__("ad27");
|
3235
|
-
|
3236
|
-
// EXTERNAL MODULE: ./src/components/RevolugoElements/CancellationPoliciesBadge/CancellationPoliciesBadge.props.ts
|
3237
|
-
var CancellationPoliciesBadge_props = __webpack_require__("9720");
|
3238
|
-
|
3239
|
-
// EXTERNAL MODULE: ./src/components/RevolugoElements/CancellationPoliciesBadge/CancellationPoliciesBadge.vue + 4 modules
|
3240
|
-
var CancellationPoliciesBadge = __webpack_require__("d406");
|
3241
|
-
|
3242
|
-
// EXTERNAL MODULE: ./src/components/utils/WebComponentWrapper/WebComponentWrapper.vue + 12 modules
|
3243
|
-
var WebComponentWrapper = __webpack_require__("9825");
|
3244
|
-
|
3245
|
-
// CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/cache-loader@4.1.0_webpack@4.46.0/node_modules/cache-loader/dist/cjs.js??ref--13-0!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/babel-loader@8.3.0_@babel+core@7.21.4_webpack@4.46.0/node_modules/babel-loader/lib!/opt/atlassian/pipelines/agent/build/node_modules/.pnpm/ts-loader@6.2.2_typescript@4.7.4/node_modules/ts-loader??ref--13-2!./src/components/web-components/CancellationPoliciesBadge/CancellationPoliciesBadge.ts?vue&type=script&lang=ts&shadow
|
3246
|
-
function cov_2cj97lh74l() {
|
3247
|
-
var path = "/opt/atlassian/pipelines/agent/build/libs/elements/core/src/components/web-components/CancellationPoliciesBadge/CancellationPoliciesBadge.ts";
|
3248
|
-
var hash = "12c211d8d8e0a7c45ba358610dc7f3e07f46f514";
|
3249
|
-
var global = new Function("return this")();
|
3250
|
-
var gcv = "__coverage__";
|
3251
|
-
var coverageData = {
|
3252
|
-
path: "/opt/atlassian/pipelines/agent/build/libs/elements/core/src/components/web-components/CancellationPoliciesBadge/CancellationPoliciesBadge.ts",
|
3253
|
-
statementMap: {},
|
3254
|
-
fnMap: {},
|
3255
|
-
branchMap: {},
|
3256
|
-
s: {},
|
3257
|
-
f: {},
|
3258
|
-
b: {},
|
3259
|
-
_coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
|
3260
|
-
hash: "12c211d8d8e0a7c45ba358610dc7f3e07f46f514"
|
3261
|
-
};
|
3262
|
-
var coverage = global[gcv] || (global[gcv] = {});
|
3263
|
-
if (!coverage[path] || coverage[path].hash !== hash) {
|
3264
|
-
coverage[path] = coverageData;
|
3265
|
-
}
|
3266
|
-
var actualCoverage = coverage[path];
|
3267
|
-
{
|
3268
|
-
// @ts-ignore
|
3269
|
-
cov_2cj97lh74l = function () {
|
3270
|
-
return actualCoverage;
|
3271
|
-
};
|
3272
|
-
}
|
3273
|
-
return actualCoverage;
|
3274
|
-
}
|
3275
|
-
cov_2cj97lh74l();
|
3276
|
-
|
3277
|
-
|
3278
|
-
|
3279
|
-
|
3280
|
-
/* harmony default export */ var CancellationPoliciesBadgevue_type_script_lang_ts_shadow = (vue_runtime_esm["a" /* default */].extend({
|
3281
|
-
components: {
|
3282
|
-
CancellationPoliciesBadge: CancellationPoliciesBadge["a" /* default */],
|
3283
|
-
WebComponentWrapper: WebComponentWrapper["a" /* default */]
|
3284
|
-
},
|
3285
|
-
props: CancellationPoliciesBadge_props["a" /* cancellationPoliciesBadgeProps */]
|
3286
|
-
}));
|
3287
|
-
// CONCATENATED MODULE: ./src/components/web-components/CancellationPoliciesBadge/CancellationPoliciesBadge.ts?vue&type=script&lang=ts&shadow
|
3288
|
-
/* harmony default export */ var CancellationPoliciesBadge_CancellationPoliciesBadgevue_type_script_lang_ts_shadow = (CancellationPoliciesBadgevue_type_script_lang_ts_shadow);
|
3289
|
-
// EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vue-loader@15.10.1_cache-loader@4.1.0_css-loader@3.6.0_react-dom@16.14.0_react@16.14.0_vue-te_in2h7w4pcz7gmv74d3b5fqofg4/node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
3290
|
-
var componentNormalizer = __webpack_require__("f0a0");
|
3291
|
-
|
3292
|
-
// CONCATENATED MODULE: ./src/components/web-components/CancellationPoliciesBadge/CancellationPoliciesBadge.vue?shadow
|
3293
|
-
|
3294
|
-
|
3295
|
-
|
3296
|
-
|
3297
|
-
|
3298
|
-
/* normalize component */
|
3299
|
-
|
3300
|
-
var component = Object(componentNormalizer["a" /* default */])(
|
3301
|
-
CancellationPoliciesBadge_CancellationPoliciesBadgevue_type_script_lang_ts_shadow,
|
3302
|
-
render,
|
3303
|
-
staticRenderFns,
|
3304
|
-
false,
|
3305
|
-
null,
|
3306
|
-
null,
|
3307
|
-
null
|
3308
|
-
,true
|
3309
|
-
)
|
3310
2384
|
|
3311
|
-
/* harmony default export */ var CancellationPoliciesBadgeshadow = __webpack_exports__["default"] = (component.exports);
|
3312
2385
|
|
3313
2386
|
/***/ })
|
3314
2387
|
|