@kongponents/kcard
Advanced tools
Comparing version 6.0.0-beta.0 to 6.0.1-alpha.0
@@ -367,5 +367,5 @@ module.exports = | ||
var i | ||
if ((i = window.document.currentScript) && (i = i.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))) { | ||
__webpack_require__.p = i[1] // eslint-disable-line | ||
var setPublicPath_i | ||
if ((setPublicPath_i = window.document.currentScript) && (setPublicPath_i = setPublicPath_i.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))) { | ||
__webpack_require__.p = setPublicPath_i[1] // eslint-disable-line | ||
} | ||
@@ -377,9 +377,662 @@ } | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"4ecc09ca-vue-loader-template"}!/home/runner/work/kongponents/kongponents/node_modules/@vue/cli-service/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/runner/work/kongponents/kongponents/node_modules/cache-loader/dist/cjs.js??ref--0-0!/home/runner/work/kongponents/kongponents/node_modules/vue-loader/lib??vue-loader-options!./KCard.vue?vue&type=template&id=0029352b&scoped=true& | ||
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"kong-card",class:[_vm.borderVariant, {'hover': _vm.hasHover, 'kcard-shadow': _vm.hasShadow }]},[(_vm.title || _vm.$scopedSlots.title || _vm.$scopedSlots.actions || _vm.$slots.title)?_c('div',{staticClass:"k-card-header",class:(_vm.helpText || _vm.$scopedSlots.helpText !== undefined) && 'mb-0' || 'mb-4'},[_c('div',{staticClass:"k-card-title"},[_c('h4',[_vm._t("title",[_vm._v(_vm._s(_vm.title))])],2)]),_c('div',{staticClass:"k-card-actions"},[_vm._t("actions")],2)]):_vm._e(),(_vm.helpText || _vm.$scopedSlots.helpText)?_c('div',{staticClass:"k-card-help-text mb-5"},[_vm._t("helpText",[_c('span',[_vm._v(_vm._s(_vm.helpText))])])],2):_vm._e(),_c('div',{staticClass:"k-card-body"},[_vm._t("body",[_vm._v(_vm._s(_vm.body))])],2)])} | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"4ecc09ca-vue-loader-template"}!/home/runner/work/kongponents/kongponents/node_modules/@vue/cli-service/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/runner/work/kongponents/kongponents/node_modules/cache-loader/dist/cjs.js??ref--0-0!/home/runner/work/kongponents/kongponents/node_modules/vue-loader/lib??vue-loader-options!./KCard.vue?vue&type=template&id=16bad2a4&scoped=true& | ||
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:"kong-card",class:[_vm.borderVariant, {'hover': _vm.hasHover, 'kcard-shadow': _vm.hasShadow }],attrs:{"aria-label":_vm.title ? _vm.title : null,"aria-labelledby":!_vm.title && (_vm.$scopedSlots.title || _vm.$slots.title) ? _vm.titleId : null,"aria-describedby":_vm.contentId}},[(_vm.title || _vm.$scopedSlots.title || _vm.$slots.title || _vm.$scopedSlots.actions || _vm.status || _vm.$scopedSlots.statusHat)?_c('div',{staticClass:"k-card-header d-flex mb-4",class:{ 'has-status': _vm.status || _vm.$scopedSlots.statusHat }},[_c('div',[(_vm.status || _vm.$scopedSlots.statusHat)?_c('div',{staticClass:"k-card-status-hat mb-4"},[_vm._t("statusHat",[_vm._v(_vm._s(_vm.status))])],2):_vm._e(),_c('div',{staticClass:"k-card-title",attrs:{"id":_vm.title ? null : _vm.titleId}},[_c('h4',[_vm._t("title",[_vm._v(_vm._s(_vm.title))])],2)])]),_c('div',{staticClass:"k-card-actions"},[_vm._t("actions")],2)]):_vm._e(),_c('div',{staticClass:"k-card-content d-flex"},[_c('div',{staticClass:"k-card-body",attrs:{"id":_vm.contentId}},[_vm._t("body",[_vm._v(_vm._s(_vm.body))])],2),(_vm.$scopedSlots.notifications)?_c('div',{staticClass:"k-card-notifications ml-3"},[_vm._t("notifications")],2):_vm._e()])])} | ||
var staticRenderFns = [] | ||
// CONCATENATED MODULE: ./KCard.vue?vue&type=template&id=0029352b&scoped=true& | ||
// CONCATENATED MODULE: ./KCard.vue?vue&type=template&id=16bad2a4&scoped=true& | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/rng.js | ||
// Unique ID creation requires a high quality random # generator. In the browser we therefore | ||
// require the crypto API and do not support built-in fallback to lower quality random number | ||
// generators (like Math.random()). | ||
var getRandomValues; | ||
var rnds8 = new Uint8Array(16); | ||
function rng() { | ||
// lazy load so that environments that need to polyfill have a chance to do so | ||
if (!getRandomValues) { | ||
// getRandomValues needs to be invoked in a context where "this" is a Crypto implementation. Also, | ||
// find the complete implementation of crypto (msCrypto) on IE11. | ||
getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto) || typeof msCrypto !== 'undefined' && typeof msCrypto.getRandomValues === 'function' && msCrypto.getRandomValues.bind(msCrypto); | ||
if (!getRandomValues) { | ||
throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported'); | ||
} | ||
} | ||
return getRandomValues(rnds8); | ||
} | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/regex.js | ||
/* harmony default export */ var regex = (/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/validate.js | ||
function validate(uuid) { | ||
return typeof uuid === 'string' && regex.test(uuid); | ||
} | ||
/* harmony default export */ var esm_browser_validate = (validate); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/stringify.js | ||
/** | ||
* Convert array of 16 byte values to UUID string format of the form: | ||
* XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX | ||
*/ | ||
var byteToHex = []; | ||
for (var stringify_i = 0; stringify_i < 256; ++stringify_i) { | ||
byteToHex.push((stringify_i + 0x100).toString(16).substr(1)); | ||
} | ||
function stringify(arr) { | ||
var offset = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; | ||
// Note: Be careful editing this code! It's been tuned for performance | ||
// and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434 | ||
var uuid = (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase(); // Consistency check for valid UUID. If this throws, it's likely due to one | ||
// of the following: | ||
// - One or more input array values don't map to a hex octet (leading to | ||
// "undefined" in the uuid) | ||
// - Invalid input values for the RFC `version` or `variant` fields | ||
if (!esm_browser_validate(uuid)) { | ||
throw TypeError('Stringified UUID is invalid'); | ||
} | ||
return uuid; | ||
} | ||
/* harmony default export */ var esm_browser_stringify = (stringify); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/v1.js | ||
// **`v1()` - Generate time-based UUID** | ||
// | ||
// Inspired by https://github.com/LiosK/UUID.js | ||
// and http://docs.python.org/library/uuid.html | ||
var _nodeId; | ||
var _clockseq; // Previous uuid creation time | ||
var _lastMSecs = 0; | ||
var _lastNSecs = 0; // See https://github.com/uuidjs/uuid for API details | ||
function v1(options, buf, offset) { | ||
var i = buf && offset || 0; | ||
var b = buf || new Array(16); | ||
options = options || {}; | ||
var node = options.node || _nodeId; | ||
var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; // node and clockseq need to be initialized to random values if they're not | ||
// specified. We do this lazily to minimize issues related to insufficient | ||
// system entropy. See #189 | ||
if (node == null || clockseq == null) { | ||
var seedBytes = options.random || (options.rng || rng)(); | ||
if (node == null) { | ||
// Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1) | ||
node = _nodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]]; | ||
} | ||
if (clockseq == null) { | ||
// Per 4.2.2, randomize (14 bit) clockseq | ||
clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff; | ||
} | ||
} // UUID timestamps are 100 nano-second units since the Gregorian epoch, | ||
// (1582-10-15 00:00). JSNumbers aren't precise enough for this, so | ||
// time is handled internally as 'msecs' (integer milliseconds) and 'nsecs' | ||
// (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00. | ||
var msecs = options.msecs !== undefined ? options.msecs : Date.now(); // Per 4.2.1.2, use count of uuid's generated during the current clock | ||
// cycle to simulate higher resolution clock | ||
var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; // Time since last uuid creation (in msecs) | ||
var dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; // Per 4.2.1.2, Bump clockseq on clock regression | ||
if (dt < 0 && options.clockseq === undefined) { | ||
clockseq = clockseq + 1 & 0x3fff; | ||
} // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new | ||
// time interval | ||
if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) { | ||
nsecs = 0; | ||
} // Per 4.2.1.2 Throw error if too many uuids are requested | ||
if (nsecs >= 10000) { | ||
throw new Error("uuid.v1(): Can't create more than 10M uuids/sec"); | ||
} | ||
_lastMSecs = msecs; | ||
_lastNSecs = nsecs; | ||
_clockseq = clockseq; // Per 4.1.4 - Convert from unix epoch to Gregorian epoch | ||
msecs += 12219292800000; // `time_low` | ||
var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000; | ||
b[i++] = tl >>> 24 & 0xff; | ||
b[i++] = tl >>> 16 & 0xff; | ||
b[i++] = tl >>> 8 & 0xff; | ||
b[i++] = tl & 0xff; // `time_mid` | ||
var tmh = msecs / 0x100000000 * 10000 & 0xfffffff; | ||
b[i++] = tmh >>> 8 & 0xff; | ||
b[i++] = tmh & 0xff; // `time_high_and_version` | ||
b[i++] = tmh >>> 24 & 0xf | 0x10; // include version | ||
b[i++] = tmh >>> 16 & 0xff; // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant) | ||
b[i++] = clockseq >>> 8 | 0x80; // `clock_seq_low` | ||
b[i++] = clockseq & 0xff; // `node` | ||
for (var n = 0; n < 6; ++n) { | ||
b[i + n] = node[n]; | ||
} | ||
return buf || esm_browser_stringify(b); | ||
} | ||
/* harmony default export */ var esm_browser_v1 = (v1); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/parse.js | ||
function parse(uuid) { | ||
if (!esm_browser_validate(uuid)) { | ||
throw TypeError('Invalid UUID'); | ||
} | ||
var v; | ||
var arr = new Uint8Array(16); // Parse ########-....-....-....-............ | ||
arr[0] = (v = parseInt(uuid.slice(0, 8), 16)) >>> 24; | ||
arr[1] = v >>> 16 & 0xff; | ||
arr[2] = v >>> 8 & 0xff; | ||
arr[3] = v & 0xff; // Parse ........-####-....-....-............ | ||
arr[4] = (v = parseInt(uuid.slice(9, 13), 16)) >>> 8; | ||
arr[5] = v & 0xff; // Parse ........-....-####-....-............ | ||
arr[6] = (v = parseInt(uuid.slice(14, 18), 16)) >>> 8; | ||
arr[7] = v & 0xff; // Parse ........-....-....-####-............ | ||
arr[8] = (v = parseInt(uuid.slice(19, 23), 16)) >>> 8; | ||
arr[9] = v & 0xff; // Parse ........-....-....-....-############ | ||
// (Use "/" to avoid 32-bit truncation when bit-shifting high-order bytes) | ||
arr[10] = (v = parseInt(uuid.slice(24, 36), 16)) / 0x10000000000 & 0xff; | ||
arr[11] = v / 0x100000000 & 0xff; | ||
arr[12] = v >>> 24 & 0xff; | ||
arr[13] = v >>> 16 & 0xff; | ||
arr[14] = v >>> 8 & 0xff; | ||
arr[15] = v & 0xff; | ||
return arr; | ||
} | ||
/* harmony default export */ var esm_browser_parse = (parse); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/v35.js | ||
function stringToBytes(str) { | ||
str = unescape(encodeURIComponent(str)); // UTF8 escape | ||
var bytes = []; | ||
for (var i = 0; i < str.length; ++i) { | ||
bytes.push(str.charCodeAt(i)); | ||
} | ||
return bytes; | ||
} | ||
var DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8'; | ||
var URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8'; | ||
/* harmony default export */ var v35 = (function (name, version, hashfunc) { | ||
function generateUUID(value, namespace, buf, offset) { | ||
if (typeof value === 'string') { | ||
value = stringToBytes(value); | ||
} | ||
if (typeof namespace === 'string') { | ||
namespace = esm_browser_parse(namespace); | ||
} | ||
if (namespace.length !== 16) { | ||
throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)'); | ||
} // Compute hash of namespace and value, Per 4.3 | ||
// Future: Use spread syntax when supported on all platforms, e.g. `bytes = | ||
// hashfunc([...namespace, ... value])` | ||
var bytes = new Uint8Array(16 + value.length); | ||
bytes.set(namespace); | ||
bytes.set(value, namespace.length); | ||
bytes = hashfunc(bytes); | ||
bytes[6] = bytes[6] & 0x0f | version; | ||
bytes[8] = bytes[8] & 0x3f | 0x80; | ||
if (buf) { | ||
offset = offset || 0; | ||
for (var i = 0; i < 16; ++i) { | ||
buf[offset + i] = bytes[i]; | ||
} | ||
return buf; | ||
} | ||
return esm_browser_stringify(bytes); | ||
} // Function#name is not settable on some platforms (#270) | ||
try { | ||
generateUUID.name = name; // eslint-disable-next-line no-empty | ||
} catch (err) {} // For CommonJS default export support | ||
generateUUID.DNS = DNS; | ||
generateUUID.URL = URL; | ||
return generateUUID; | ||
}); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/md5.js | ||
/* | ||
* Browser-compatible JavaScript MD5 | ||
* | ||
* Modification of JavaScript MD5 | ||
* https://github.com/blueimp/JavaScript-MD5 | ||
* | ||
* Copyright 2011, Sebastian Tschan | ||
* https://blueimp.net | ||
* | ||
* Licensed under the MIT license: | ||
* https://opensource.org/licenses/MIT | ||
* | ||
* Based on | ||
* A JavaScript implementation of the RSA Data Security, Inc. MD5 Message | ||
* Digest Algorithm, as defined in RFC 1321. | ||
* Version 2.2 Copyright (C) Paul Johnston 1999 - 2009 | ||
* Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet | ||
* Distributed under the BSD License | ||
* See http://pajhome.org.uk/crypt/md5 for more info. | ||
*/ | ||
function md5(bytes) { | ||
if (typeof bytes === 'string') { | ||
var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape | ||
bytes = new Uint8Array(msg.length); | ||
for (var i = 0; i < msg.length; ++i) { | ||
bytes[i] = msg.charCodeAt(i); | ||
} | ||
} | ||
return md5ToHexEncodedArray(wordsToMd5(bytesToWords(bytes), bytes.length * 8)); | ||
} | ||
/* | ||
* Convert an array of little-endian words to an array of bytes | ||
*/ | ||
function md5ToHexEncodedArray(input) { | ||
var output = []; | ||
var length32 = input.length * 32; | ||
var hexTab = '0123456789abcdef'; | ||
for (var i = 0; i < length32; i += 8) { | ||
var x = input[i >> 5] >>> i % 32 & 0xff; | ||
var hex = parseInt(hexTab.charAt(x >>> 4 & 0x0f) + hexTab.charAt(x & 0x0f), 16); | ||
output.push(hex); | ||
} | ||
return output; | ||
} | ||
/** | ||
* Calculate output length with padding and bit length | ||
*/ | ||
function getOutputLength(inputLength8) { | ||
return (inputLength8 + 64 >>> 9 << 4) + 14 + 1; | ||
} | ||
/* | ||
* Calculate the MD5 of an array of little-endian words, and a bit length. | ||
*/ | ||
function wordsToMd5(x, len) { | ||
/* append padding */ | ||
x[len >> 5] |= 0x80 << len % 32; | ||
x[getOutputLength(len) - 1] = len; | ||
var a = 1732584193; | ||
var b = -271733879; | ||
var c = -1732584194; | ||
var d = 271733878; | ||
for (var i = 0; i < x.length; i += 16) { | ||
var olda = a; | ||
var oldb = b; | ||
var oldc = c; | ||
var oldd = d; | ||
a = md5ff(a, b, c, d, x[i], 7, -680876936); | ||
d = md5ff(d, a, b, c, x[i + 1], 12, -389564586); | ||
c = md5ff(c, d, a, b, x[i + 2], 17, 606105819); | ||
b = md5ff(b, c, d, a, x[i + 3], 22, -1044525330); | ||
a = md5ff(a, b, c, d, x[i + 4], 7, -176418897); | ||
d = md5ff(d, a, b, c, x[i + 5], 12, 1200080426); | ||
c = md5ff(c, d, a, b, x[i + 6], 17, -1473231341); | ||
b = md5ff(b, c, d, a, x[i + 7], 22, -45705983); | ||
a = md5ff(a, b, c, d, x[i + 8], 7, 1770035416); | ||
d = md5ff(d, a, b, c, x[i + 9], 12, -1958414417); | ||
c = md5ff(c, d, a, b, x[i + 10], 17, -42063); | ||
b = md5ff(b, c, d, a, x[i + 11], 22, -1990404162); | ||
a = md5ff(a, b, c, d, x[i + 12], 7, 1804603682); | ||
d = md5ff(d, a, b, c, x[i + 13], 12, -40341101); | ||
c = md5ff(c, d, a, b, x[i + 14], 17, -1502002290); | ||
b = md5ff(b, c, d, a, x[i + 15], 22, 1236535329); | ||
a = md5gg(a, b, c, d, x[i + 1], 5, -165796510); | ||
d = md5gg(d, a, b, c, x[i + 6], 9, -1069501632); | ||
c = md5gg(c, d, a, b, x[i + 11], 14, 643717713); | ||
b = md5gg(b, c, d, a, x[i], 20, -373897302); | ||
a = md5gg(a, b, c, d, x[i + 5], 5, -701558691); | ||
d = md5gg(d, a, b, c, x[i + 10], 9, 38016083); | ||
c = md5gg(c, d, a, b, x[i + 15], 14, -660478335); | ||
b = md5gg(b, c, d, a, x[i + 4], 20, -405537848); | ||
a = md5gg(a, b, c, d, x[i + 9], 5, 568446438); | ||
d = md5gg(d, a, b, c, x[i + 14], 9, -1019803690); | ||
c = md5gg(c, d, a, b, x[i + 3], 14, -187363961); | ||
b = md5gg(b, c, d, a, x[i + 8], 20, 1163531501); | ||
a = md5gg(a, b, c, d, x[i + 13], 5, -1444681467); | ||
d = md5gg(d, a, b, c, x[i + 2], 9, -51403784); | ||
c = md5gg(c, d, a, b, x[i + 7], 14, 1735328473); | ||
b = md5gg(b, c, d, a, x[i + 12], 20, -1926607734); | ||
a = md5hh(a, b, c, d, x[i + 5], 4, -378558); | ||
d = md5hh(d, a, b, c, x[i + 8], 11, -2022574463); | ||
c = md5hh(c, d, a, b, x[i + 11], 16, 1839030562); | ||
b = md5hh(b, c, d, a, x[i + 14], 23, -35309556); | ||
a = md5hh(a, b, c, d, x[i + 1], 4, -1530992060); | ||
d = md5hh(d, a, b, c, x[i + 4], 11, 1272893353); | ||
c = md5hh(c, d, a, b, x[i + 7], 16, -155497632); | ||
b = md5hh(b, c, d, a, x[i + 10], 23, -1094730640); | ||
a = md5hh(a, b, c, d, x[i + 13], 4, 681279174); | ||
d = md5hh(d, a, b, c, x[i], 11, -358537222); | ||
c = md5hh(c, d, a, b, x[i + 3], 16, -722521979); | ||
b = md5hh(b, c, d, a, x[i + 6], 23, 76029189); | ||
a = md5hh(a, b, c, d, x[i + 9], 4, -640364487); | ||
d = md5hh(d, a, b, c, x[i + 12], 11, -421815835); | ||
c = md5hh(c, d, a, b, x[i + 15], 16, 530742520); | ||
b = md5hh(b, c, d, a, x[i + 2], 23, -995338651); | ||
a = md5ii(a, b, c, d, x[i], 6, -198630844); | ||
d = md5ii(d, a, b, c, x[i + 7], 10, 1126891415); | ||
c = md5ii(c, d, a, b, x[i + 14], 15, -1416354905); | ||
b = md5ii(b, c, d, a, x[i + 5], 21, -57434055); | ||
a = md5ii(a, b, c, d, x[i + 12], 6, 1700485571); | ||
d = md5ii(d, a, b, c, x[i + 3], 10, -1894986606); | ||
c = md5ii(c, d, a, b, x[i + 10], 15, -1051523); | ||
b = md5ii(b, c, d, a, x[i + 1], 21, -2054922799); | ||
a = md5ii(a, b, c, d, x[i + 8], 6, 1873313359); | ||
d = md5ii(d, a, b, c, x[i + 15], 10, -30611744); | ||
c = md5ii(c, d, a, b, x[i + 6], 15, -1560198380); | ||
b = md5ii(b, c, d, a, x[i + 13], 21, 1309151649); | ||
a = md5ii(a, b, c, d, x[i + 4], 6, -145523070); | ||
d = md5ii(d, a, b, c, x[i + 11], 10, -1120210379); | ||
c = md5ii(c, d, a, b, x[i + 2], 15, 718787259); | ||
b = md5ii(b, c, d, a, x[i + 9], 21, -343485551); | ||
a = safeAdd(a, olda); | ||
b = safeAdd(b, oldb); | ||
c = safeAdd(c, oldc); | ||
d = safeAdd(d, oldd); | ||
} | ||
return [a, b, c, d]; | ||
} | ||
/* | ||
* Convert an array bytes to an array of little-endian words | ||
* Characters >255 have their high-byte silently ignored. | ||
*/ | ||
function bytesToWords(input) { | ||
if (input.length === 0) { | ||
return []; | ||
} | ||
var length8 = input.length * 8; | ||
var output = new Uint32Array(getOutputLength(length8)); | ||
for (var i = 0; i < length8; i += 8) { | ||
output[i >> 5] |= (input[i / 8] & 0xff) << i % 32; | ||
} | ||
return output; | ||
} | ||
/* | ||
* Add integers, wrapping at 2^32. This uses 16-bit operations internally | ||
* to work around bugs in some JS interpreters. | ||
*/ | ||
function safeAdd(x, y) { | ||
var lsw = (x & 0xffff) + (y & 0xffff); | ||
var msw = (x >> 16) + (y >> 16) + (lsw >> 16); | ||
return msw << 16 | lsw & 0xffff; | ||
} | ||
/* | ||
* Bitwise rotate a 32-bit number to the left. | ||
*/ | ||
function bitRotateLeft(num, cnt) { | ||
return num << cnt | num >>> 32 - cnt; | ||
} | ||
/* | ||
* These functions implement the four basic operations the algorithm uses. | ||
*/ | ||
function md5cmn(q, a, b, x, s, t) { | ||
return safeAdd(bitRotateLeft(safeAdd(safeAdd(a, q), safeAdd(x, t)), s), b); | ||
} | ||
function md5ff(a, b, c, d, x, s, t) { | ||
return md5cmn(b & c | ~b & d, a, b, x, s, t); | ||
} | ||
function md5gg(a, b, c, d, x, s, t) { | ||
return md5cmn(b & d | c & ~d, a, b, x, s, t); | ||
} | ||
function md5hh(a, b, c, d, x, s, t) { | ||
return md5cmn(b ^ c ^ d, a, b, x, s, t); | ||
} | ||
function md5ii(a, b, c, d, x, s, t) { | ||
return md5cmn(c ^ (b | ~d), a, b, x, s, t); | ||
} | ||
/* harmony default export */ var esm_browser_md5 = (md5); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/v3.js | ||
var v3 = v35('v3', 0x30, esm_browser_md5); | ||
/* harmony default export */ var esm_browser_v3 = (v3); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/v4.js | ||
function v4(options, buf, offset) { | ||
options = options || {}; | ||
var rnds = options.random || (options.rng || rng)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` | ||
rnds[6] = rnds[6] & 0x0f | 0x40; | ||
rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided | ||
if (buf) { | ||
offset = offset || 0; | ||
for (var i = 0; i < 16; ++i) { | ||
buf[offset + i] = rnds[i]; | ||
} | ||
return buf; | ||
} | ||
return esm_browser_stringify(rnds); | ||
} | ||
/* harmony default export */ var esm_browser_v4 = (v4); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/sha1.js | ||
// Adapted from Chris Veness' SHA1 code at | ||
// http://www.movable-type.co.uk/scripts/sha1.html | ||
function f(s, x, y, z) { | ||
switch (s) { | ||
case 0: | ||
return x & y ^ ~x & z; | ||
case 1: | ||
return x ^ y ^ z; | ||
case 2: | ||
return x & y ^ x & z ^ y & z; | ||
case 3: | ||
return x ^ y ^ z; | ||
} | ||
} | ||
function ROTL(x, n) { | ||
return x << n | x >>> 32 - n; | ||
} | ||
function sha1(bytes) { | ||
var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6]; | ||
var H = [0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0]; | ||
if (typeof bytes === 'string') { | ||
var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape | ||
bytes = []; | ||
for (var i = 0; i < msg.length; ++i) { | ||
bytes.push(msg.charCodeAt(i)); | ||
} | ||
} else if (!Array.isArray(bytes)) { | ||
// Convert Array-like to Array | ||
bytes = Array.prototype.slice.call(bytes); | ||
} | ||
bytes.push(0x80); | ||
var l = bytes.length / 4 + 2; | ||
var N = Math.ceil(l / 16); | ||
var M = new Array(N); | ||
for (var _i = 0; _i < N; ++_i) { | ||
var arr = new Uint32Array(16); | ||
for (var j = 0; j < 16; ++j) { | ||
arr[j] = bytes[_i * 64 + j * 4] << 24 | bytes[_i * 64 + j * 4 + 1] << 16 | bytes[_i * 64 + j * 4 + 2] << 8 | bytes[_i * 64 + j * 4 + 3]; | ||
} | ||
M[_i] = arr; | ||
} | ||
M[N - 1][14] = (bytes.length - 1) * 8 / Math.pow(2, 32); | ||
M[N - 1][14] = Math.floor(M[N - 1][14]); | ||
M[N - 1][15] = (bytes.length - 1) * 8 & 0xffffffff; | ||
for (var _i2 = 0; _i2 < N; ++_i2) { | ||
var W = new Uint32Array(80); | ||
for (var t = 0; t < 16; ++t) { | ||
W[t] = M[_i2][t]; | ||
} | ||
for (var _t = 16; _t < 80; ++_t) { | ||
W[_t] = ROTL(W[_t - 3] ^ W[_t - 8] ^ W[_t - 14] ^ W[_t - 16], 1); | ||
} | ||
var a = H[0]; | ||
var b = H[1]; | ||
var c = H[2]; | ||
var d = H[3]; | ||
var e = H[4]; | ||
for (var _t2 = 0; _t2 < 80; ++_t2) { | ||
var s = Math.floor(_t2 / 20); | ||
var T = ROTL(a, 5) + f(s, b, c, d) + e + K[s] + W[_t2] >>> 0; | ||
e = d; | ||
d = c; | ||
c = ROTL(b, 30) >>> 0; | ||
b = a; | ||
a = T; | ||
} | ||
H[0] = H[0] + a >>> 0; | ||
H[1] = H[1] + b >>> 0; | ||
H[2] = H[2] + c >>> 0; | ||
H[3] = H[3] + d >>> 0; | ||
H[4] = H[4] + e >>> 0; | ||
} | ||
return [H[0] >> 24 & 0xff, H[0] >> 16 & 0xff, H[0] >> 8 & 0xff, H[0] & 0xff, H[1] >> 24 & 0xff, H[1] >> 16 & 0xff, H[1] >> 8 & 0xff, H[1] & 0xff, H[2] >> 24 & 0xff, H[2] >> 16 & 0xff, H[2] >> 8 & 0xff, H[2] & 0xff, H[3] >> 24 & 0xff, H[3] >> 16 & 0xff, H[3] >> 8 & 0xff, H[3] & 0xff, H[4] >> 24 & 0xff, H[4] >> 16 & 0xff, H[4] >> 8 & 0xff, H[4] & 0xff]; | ||
} | ||
/* harmony default export */ var esm_browser_sha1 = (sha1); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/v5.js | ||
var v5 = v35('v5', 0x50, esm_browser_sha1); | ||
/* harmony default export */ var esm_browser_v5 = (v5); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/dist/index.esm.js | ||
/** | ||
* @typedef {Object} UUID | ||
* @property {typeof v1} v1 | ||
* @property {typeof v3} v3 | ||
* @property {typeof v4} v4 | ||
* @property {typeof v5} v5 | ||
*/ | ||
/** | ||
* An object with uuid's v1, v3, v4 and v5 functions. | ||
* @type {UUID} | ||
*/ | ||
var index_esm_uuid = { | ||
v1: esm_browser_v1, | ||
v3: esm_browser_v3, | ||
v4: esm_browser_v4, | ||
v5: esm_browser_v5 | ||
}; | ||
/** | ||
* Installs UUID on Vue instance. It creates a property on Vue instance to | ||
* expose an object with uuid's v1, v3, v4 and v5 functions. | ||
* @example ```js | ||
* import Vue from 'vue'; | ||
* import VueUUID from 'vue-uuid'; | ||
* | ||
* Vue.use(VueUUID); | ||
* | ||
* new Vue({ | ||
* mounted () { | ||
* console.log(this.$uuid.v1()); | ||
* } | ||
* }); | ||
* ``` | ||
* @param {import('vue').default} Vue Vue constructor. | ||
*/ | ||
function install(Vue) { | ||
Vue.prototype.$uuid = index_esm_uuid; | ||
} | ||
/* harmony default export */ var index_esm = (install); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/cache-loader/dist/cjs.js??ref--0-0!/home/runner/work/kongponents/kongponents/node_modules/vue-loader/lib??vue-loader-options!./KCard.vue?vue&type=script&lang=js& | ||
@@ -420,3 +1073,19 @@ // | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
/* harmony default export */ var lib_vue_loader_options_KCardvue_type_script_lang_js_ = ({ | ||
@@ -427,3 +1096,3 @@ name: 'KCard', | ||
/** | ||
* Pass title string in if slot not used | ||
* Title string if slot not used, also used for aria-label | ||
*/ | ||
@@ -434,2 +1103,3 @@ title: { | ||
}, | ||
/** | ||
@@ -464,8 +1134,23 @@ * Pass body string in if slot not used | ||
/** | ||
* Adds help text positioned closely under the card title | ||
*/ | ||
helpText: { | ||
* Add small status text above the card title | ||
*/ | ||
status: { | ||
type: String, | ||
default: '' | ||
}, | ||
/** | ||
* Test mode - for testing only, strips out generated ids | ||
*/ | ||
testMode: { | ||
type: Boolean, | ||
default: false | ||
} | ||
}, | ||
data () { | ||
return { | ||
titleId: !this.testMode ? index_esm_uuid.v1() : 'test-title-id-1234', | ||
contentId: !this.testMode ? index_esm_uuid.v1() : 'test-content-id-1234' | ||
} | ||
} | ||
@@ -476,4 +1161,4 @@ }); | ||
/* harmony default export */ var KCardvue_type_script_lang_js_ = (lib_vue_loader_options_KCardvue_type_script_lang_js_); | ||
// EXTERNAL MODULE: ./KCard.vue?vue&type=style&index=0&id=0029352b&lang=scss&scoped=true& | ||
var KCardvue_type_style_index_0_id_0029352b_lang_scss_scoped_true_ = __webpack_require__("3845"); | ||
// EXTERNAL MODULE: ./KCard.vue?vue&type=style&index=0&id=16bad2a4&lang=scss&scoped=true& | ||
var KCardvue_type_style_index_0_id_16bad2a4_lang_scss_scoped_true_ = __webpack_require__("9014"); | ||
@@ -590,3 +1275,3 @@ // CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-loader/lib/runtime/componentNormalizer.js | ||
null, | ||
"0029352b", | ||
"16bad2a4", | ||
null | ||
@@ -606,13 +1291,2 @@ | ||
/***/ "3845": | ||
/***/ (function(module, __webpack_exports__, __webpack_require__) { | ||
"use strict"; | ||
/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_0029352b_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("d0d7"); | ||
/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_0029352b_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_0029352b_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__); | ||
/* unused harmony reexport * */ | ||
/* unused harmony default export */ var _unused_webpack_default_export = (_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_0029352b_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a); | ||
/***/ }), | ||
/***/ "4141": | ||
@@ -744,3 +1418,3 @@ /***/ (function(module, exports) { | ||
/***/ "6e11": | ||
/***/ "70b4": | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -753,3 +1427,3 @@ | ||
// module | ||
exports.push([module.i, ".kong-card[data-v-0029352b]{padding:1rem 1rem;padding:var(--KCardPaddingY,1rem) var(--KCardPaddingX,1rem);border-radius:3px;border-radius:var(--KCardBorderRadius,3px);background-color:#fff;background-color:var(--KCardBackground,var(--white,#fff))}.kong-card.noBorder[data-v-0029352b]{border:none}.kong-card.border[data-v-0029352b]{border:1px solid rgba(0,0,0,.1);border:var(--KCardBorder,1px solid var(--black-10,rgba(0,0,0,.1)));box-shadow:none}.kong-card.borderTop[data-v-0029352b]{border-top:1px solid rgba(0,0,0,.1);border-top:var(--KCardBorder,1px solid var(--black-10,rgba(0,0,0,.1)))}.kong-card.hover[data-v-0029352b]:hover,.kong-card.kcard-shadow[data-v-0029352b]{box-shadow:0 4px 8px rgba(0,0,0,.1);box-shadow:var(--KCardShadow,0 4px 8px var(--black-10,rgba(0,0,0,.1)))}.kong-card .k-card-header[data-v-0029352b]{display:flex;align-items:center;margin-bottom:1rem;min-height:38px}.kong-card .k-card-header .k-button[data-v-0029352b]{min-height:38px}.kong-card .k-card-title h4[data-v-0029352b]{margin:0;font-size:18px;font-size:var(--KCardTitleFontSize,var(--type-lg,18px));font-weight:500;color:rgba(0,0,0,.85);color:var(--KCardTitleColor,var(--black-85,rgba(0,0,0,.85)))}.kong-card .k-card-actions[data-v-0029352b]{margin-left:auto}.kong-card .k-card-help-text[data-v-0029352b]{color:var(--black-45)}", ""]); | ||
exports.push([module.i, ".kong-card[data-v-16bad2a4]{padding:var(--spacing-lg) var(--spacing-lg);padding:var(--KCardPaddingY,var(--spacing-lg)) var(--KCardPaddingX,var(--spacing-lg));border-radius:3px;border-radius:var(--KCardBorderRadius,3px);background-color:#fff;background-color:var(--KCardBackground,var(--white,#fff))}.kong-card.noBorder[data-v-16bad2a4]{border:none}.kong-card.border[data-v-16bad2a4]{border:1px solid rgba(0,0,0,.1);border:var(--KCardBorder,1px solid var(--black-10,rgba(0,0,0,.1)));box-shadow:none}.kong-card.borderTop[data-v-16bad2a4]{border-top:1px solid rgba(0,0,0,.1);border-top:var(--KCardBorder,1px solid var(--black-10,rgba(0,0,0,.1)))}.kong-card.hover[data-v-16bad2a4]:hover,.kong-card.kcard-shadow[data-v-16bad2a4]{box-shadow:0 4px 8px rgba(0,0,0,.1);box-shadow:var(--KCardShadow,0 4px 8px var(--black-10,rgba(0,0,0,.1)))}.kong-card .k-card-header[data-v-16bad2a4]{align-items:center;min-height:38px}.kong-card .k-card-header.has-status[data-v-16bad2a4]{align-items:flex-start}.kong-card .k-card-header .k-button[data-v-16bad2a4]{min-height:38px}.kong-card .k-card-status-hat[data-v-16bad2a4]{font-size:var(--type-xs);color:var(--grey-600);display:flex;align-items:center}.kong-card .k-card-title h4[data-v-16bad2a4]{margin:0;font-size:20px;font-size:var(--KCardTitleFontSize,20px);font-weight:500;color:var(--black-500);color:var(--KCardTitleColor,var(--black-500))}.kong-card .k-card-actions[data-v-16bad2a4]{margin-left:auto}.kong-card .k-card-body[data-v-16bad2a4]{font-size:13px;line-height:20px;color:var(--grey-600);width:100%}.kong-card .k-card-notifications[data-v-16bad2a4]{margin-left:auto;margin-top:auto}", ""]); | ||
@@ -761,3 +1435,14 @@ // exports | ||
/***/ "d0d7": | ||
/***/ "9014": | ||
/***/ (function(module, __webpack_exports__, __webpack_require__) { | ||
"use strict"; | ||
/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_16bad2a4_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("f4dd"); | ||
/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_16bad2a4_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_16bad2a4_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__); | ||
/* unused harmony reexport * */ | ||
/* unused harmony default export */ var _unused_webpack_default_export = (_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_16bad2a4_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a); | ||
/***/ }), | ||
/***/ "f4dd": | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -768,3 +1453,3 @@ | ||
// load the styles | ||
var content = __webpack_require__("6e11"); | ||
var content = __webpack_require__("70b4"); | ||
if(typeof content === 'string') content = [[module.i, content, '']]; | ||
@@ -774,3 +1459,3 @@ if(content.locals) module.exports = content.locals; | ||
var add = __webpack_require__("0ed3").default | ||
var update = add("beb02050", content, true, {"sourceMap":false,"shadowMode":false}); | ||
var update = add("b5850cb8", content, true, {"sourceMap":false,"shadowMode":false}); | ||
@@ -777,0 +1462,0 @@ /***/ }) |
@@ -376,5 +376,5 @@ (function webpackUniversalModuleDefinition(root, factory) { | ||
var i | ||
if ((i = window.document.currentScript) && (i = i.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))) { | ||
__webpack_require__.p = i[1] // eslint-disable-line | ||
var setPublicPath_i | ||
if ((setPublicPath_i = window.document.currentScript) && (setPublicPath_i = setPublicPath_i.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))) { | ||
__webpack_require__.p = setPublicPath_i[1] // eslint-disable-line | ||
} | ||
@@ -386,9 +386,662 @@ } | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"4ecc09ca-vue-loader-template"}!/home/runner/work/kongponents/kongponents/node_modules/@vue/cli-service/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/runner/work/kongponents/kongponents/node_modules/cache-loader/dist/cjs.js??ref--0-0!/home/runner/work/kongponents/kongponents/node_modules/vue-loader/lib??vue-loader-options!./KCard.vue?vue&type=template&id=0029352b&scoped=true& | ||
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"kong-card",class:[_vm.borderVariant, {'hover': _vm.hasHover, 'kcard-shadow': _vm.hasShadow }]},[(_vm.title || _vm.$scopedSlots.title || _vm.$scopedSlots.actions || _vm.$slots.title)?_c('div',{staticClass:"k-card-header",class:(_vm.helpText || _vm.$scopedSlots.helpText !== undefined) && 'mb-0' || 'mb-4'},[_c('div',{staticClass:"k-card-title"},[_c('h4',[_vm._t("title",[_vm._v(_vm._s(_vm.title))])],2)]),_c('div',{staticClass:"k-card-actions"},[_vm._t("actions")],2)]):_vm._e(),(_vm.helpText || _vm.$scopedSlots.helpText)?_c('div',{staticClass:"k-card-help-text mb-5"},[_vm._t("helpText",[_c('span',[_vm._v(_vm._s(_vm.helpText))])])],2):_vm._e(),_c('div',{staticClass:"k-card-body"},[_vm._t("body",[_vm._v(_vm._s(_vm.body))])],2)])} | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"4ecc09ca-vue-loader-template"}!/home/runner/work/kongponents/kongponents/node_modules/@vue/cli-service/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/runner/work/kongponents/kongponents/node_modules/cache-loader/dist/cjs.js??ref--0-0!/home/runner/work/kongponents/kongponents/node_modules/vue-loader/lib??vue-loader-options!./KCard.vue?vue&type=template&id=16bad2a4&scoped=true& | ||
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:"kong-card",class:[_vm.borderVariant, {'hover': _vm.hasHover, 'kcard-shadow': _vm.hasShadow }],attrs:{"aria-label":_vm.title ? _vm.title : null,"aria-labelledby":!_vm.title && (_vm.$scopedSlots.title || _vm.$slots.title) ? _vm.titleId : null,"aria-describedby":_vm.contentId}},[(_vm.title || _vm.$scopedSlots.title || _vm.$slots.title || _vm.$scopedSlots.actions || _vm.status || _vm.$scopedSlots.statusHat)?_c('div',{staticClass:"k-card-header d-flex mb-4",class:{ 'has-status': _vm.status || _vm.$scopedSlots.statusHat }},[_c('div',[(_vm.status || _vm.$scopedSlots.statusHat)?_c('div',{staticClass:"k-card-status-hat mb-4"},[_vm._t("statusHat",[_vm._v(_vm._s(_vm.status))])],2):_vm._e(),_c('div',{staticClass:"k-card-title",attrs:{"id":_vm.title ? null : _vm.titleId}},[_c('h4',[_vm._t("title",[_vm._v(_vm._s(_vm.title))])],2)])]),_c('div',{staticClass:"k-card-actions"},[_vm._t("actions")],2)]):_vm._e(),_c('div',{staticClass:"k-card-content d-flex"},[_c('div',{staticClass:"k-card-body",attrs:{"id":_vm.contentId}},[_vm._t("body",[_vm._v(_vm._s(_vm.body))])],2),(_vm.$scopedSlots.notifications)?_c('div',{staticClass:"k-card-notifications ml-3"},[_vm._t("notifications")],2):_vm._e()])])} | ||
var staticRenderFns = [] | ||
// CONCATENATED MODULE: ./KCard.vue?vue&type=template&id=0029352b&scoped=true& | ||
// CONCATENATED MODULE: ./KCard.vue?vue&type=template&id=16bad2a4&scoped=true& | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/rng.js | ||
// Unique ID creation requires a high quality random # generator. In the browser we therefore | ||
// require the crypto API and do not support built-in fallback to lower quality random number | ||
// generators (like Math.random()). | ||
var getRandomValues; | ||
var rnds8 = new Uint8Array(16); | ||
function rng() { | ||
// lazy load so that environments that need to polyfill have a chance to do so | ||
if (!getRandomValues) { | ||
// getRandomValues needs to be invoked in a context where "this" is a Crypto implementation. Also, | ||
// find the complete implementation of crypto (msCrypto) on IE11. | ||
getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto) || typeof msCrypto !== 'undefined' && typeof msCrypto.getRandomValues === 'function' && msCrypto.getRandomValues.bind(msCrypto); | ||
if (!getRandomValues) { | ||
throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported'); | ||
} | ||
} | ||
return getRandomValues(rnds8); | ||
} | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/regex.js | ||
/* harmony default export */ var regex = (/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/validate.js | ||
function validate(uuid) { | ||
return typeof uuid === 'string' && regex.test(uuid); | ||
} | ||
/* harmony default export */ var esm_browser_validate = (validate); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/stringify.js | ||
/** | ||
* Convert array of 16 byte values to UUID string format of the form: | ||
* XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX | ||
*/ | ||
var byteToHex = []; | ||
for (var stringify_i = 0; stringify_i < 256; ++stringify_i) { | ||
byteToHex.push((stringify_i + 0x100).toString(16).substr(1)); | ||
} | ||
function stringify(arr) { | ||
var offset = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; | ||
// Note: Be careful editing this code! It's been tuned for performance | ||
// and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434 | ||
var uuid = (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase(); // Consistency check for valid UUID. If this throws, it's likely due to one | ||
// of the following: | ||
// - One or more input array values don't map to a hex octet (leading to | ||
// "undefined" in the uuid) | ||
// - Invalid input values for the RFC `version` or `variant` fields | ||
if (!esm_browser_validate(uuid)) { | ||
throw TypeError('Stringified UUID is invalid'); | ||
} | ||
return uuid; | ||
} | ||
/* harmony default export */ var esm_browser_stringify = (stringify); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/v1.js | ||
// **`v1()` - Generate time-based UUID** | ||
// | ||
// Inspired by https://github.com/LiosK/UUID.js | ||
// and http://docs.python.org/library/uuid.html | ||
var _nodeId; | ||
var _clockseq; // Previous uuid creation time | ||
var _lastMSecs = 0; | ||
var _lastNSecs = 0; // See https://github.com/uuidjs/uuid for API details | ||
function v1(options, buf, offset) { | ||
var i = buf && offset || 0; | ||
var b = buf || new Array(16); | ||
options = options || {}; | ||
var node = options.node || _nodeId; | ||
var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; // node and clockseq need to be initialized to random values if they're not | ||
// specified. We do this lazily to minimize issues related to insufficient | ||
// system entropy. See #189 | ||
if (node == null || clockseq == null) { | ||
var seedBytes = options.random || (options.rng || rng)(); | ||
if (node == null) { | ||
// Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1) | ||
node = _nodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]]; | ||
} | ||
if (clockseq == null) { | ||
// Per 4.2.2, randomize (14 bit) clockseq | ||
clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff; | ||
} | ||
} // UUID timestamps are 100 nano-second units since the Gregorian epoch, | ||
// (1582-10-15 00:00). JSNumbers aren't precise enough for this, so | ||
// time is handled internally as 'msecs' (integer milliseconds) and 'nsecs' | ||
// (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00. | ||
var msecs = options.msecs !== undefined ? options.msecs : Date.now(); // Per 4.2.1.2, use count of uuid's generated during the current clock | ||
// cycle to simulate higher resolution clock | ||
var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; // Time since last uuid creation (in msecs) | ||
var dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; // Per 4.2.1.2, Bump clockseq on clock regression | ||
if (dt < 0 && options.clockseq === undefined) { | ||
clockseq = clockseq + 1 & 0x3fff; | ||
} // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new | ||
// time interval | ||
if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) { | ||
nsecs = 0; | ||
} // Per 4.2.1.2 Throw error if too many uuids are requested | ||
if (nsecs >= 10000) { | ||
throw new Error("uuid.v1(): Can't create more than 10M uuids/sec"); | ||
} | ||
_lastMSecs = msecs; | ||
_lastNSecs = nsecs; | ||
_clockseq = clockseq; // Per 4.1.4 - Convert from unix epoch to Gregorian epoch | ||
msecs += 12219292800000; // `time_low` | ||
var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000; | ||
b[i++] = tl >>> 24 & 0xff; | ||
b[i++] = tl >>> 16 & 0xff; | ||
b[i++] = tl >>> 8 & 0xff; | ||
b[i++] = tl & 0xff; // `time_mid` | ||
var tmh = msecs / 0x100000000 * 10000 & 0xfffffff; | ||
b[i++] = tmh >>> 8 & 0xff; | ||
b[i++] = tmh & 0xff; // `time_high_and_version` | ||
b[i++] = tmh >>> 24 & 0xf | 0x10; // include version | ||
b[i++] = tmh >>> 16 & 0xff; // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant) | ||
b[i++] = clockseq >>> 8 | 0x80; // `clock_seq_low` | ||
b[i++] = clockseq & 0xff; // `node` | ||
for (var n = 0; n < 6; ++n) { | ||
b[i + n] = node[n]; | ||
} | ||
return buf || esm_browser_stringify(b); | ||
} | ||
/* harmony default export */ var esm_browser_v1 = (v1); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/parse.js | ||
function parse(uuid) { | ||
if (!esm_browser_validate(uuid)) { | ||
throw TypeError('Invalid UUID'); | ||
} | ||
var v; | ||
var arr = new Uint8Array(16); // Parse ########-....-....-....-............ | ||
arr[0] = (v = parseInt(uuid.slice(0, 8), 16)) >>> 24; | ||
arr[1] = v >>> 16 & 0xff; | ||
arr[2] = v >>> 8 & 0xff; | ||
arr[3] = v & 0xff; // Parse ........-####-....-....-............ | ||
arr[4] = (v = parseInt(uuid.slice(9, 13), 16)) >>> 8; | ||
arr[5] = v & 0xff; // Parse ........-....-####-....-............ | ||
arr[6] = (v = parseInt(uuid.slice(14, 18), 16)) >>> 8; | ||
arr[7] = v & 0xff; // Parse ........-....-....-####-............ | ||
arr[8] = (v = parseInt(uuid.slice(19, 23), 16)) >>> 8; | ||
arr[9] = v & 0xff; // Parse ........-....-....-....-############ | ||
// (Use "/" to avoid 32-bit truncation when bit-shifting high-order bytes) | ||
arr[10] = (v = parseInt(uuid.slice(24, 36), 16)) / 0x10000000000 & 0xff; | ||
arr[11] = v / 0x100000000 & 0xff; | ||
arr[12] = v >>> 24 & 0xff; | ||
arr[13] = v >>> 16 & 0xff; | ||
arr[14] = v >>> 8 & 0xff; | ||
arr[15] = v & 0xff; | ||
return arr; | ||
} | ||
/* harmony default export */ var esm_browser_parse = (parse); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/v35.js | ||
function stringToBytes(str) { | ||
str = unescape(encodeURIComponent(str)); // UTF8 escape | ||
var bytes = []; | ||
for (var i = 0; i < str.length; ++i) { | ||
bytes.push(str.charCodeAt(i)); | ||
} | ||
return bytes; | ||
} | ||
var DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8'; | ||
var URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8'; | ||
/* harmony default export */ var v35 = (function (name, version, hashfunc) { | ||
function generateUUID(value, namespace, buf, offset) { | ||
if (typeof value === 'string') { | ||
value = stringToBytes(value); | ||
} | ||
if (typeof namespace === 'string') { | ||
namespace = esm_browser_parse(namespace); | ||
} | ||
if (namespace.length !== 16) { | ||
throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)'); | ||
} // Compute hash of namespace and value, Per 4.3 | ||
// Future: Use spread syntax when supported on all platforms, e.g. `bytes = | ||
// hashfunc([...namespace, ... value])` | ||
var bytes = new Uint8Array(16 + value.length); | ||
bytes.set(namespace); | ||
bytes.set(value, namespace.length); | ||
bytes = hashfunc(bytes); | ||
bytes[6] = bytes[6] & 0x0f | version; | ||
bytes[8] = bytes[8] & 0x3f | 0x80; | ||
if (buf) { | ||
offset = offset || 0; | ||
for (var i = 0; i < 16; ++i) { | ||
buf[offset + i] = bytes[i]; | ||
} | ||
return buf; | ||
} | ||
return esm_browser_stringify(bytes); | ||
} // Function#name is not settable on some platforms (#270) | ||
try { | ||
generateUUID.name = name; // eslint-disable-next-line no-empty | ||
} catch (err) {} // For CommonJS default export support | ||
generateUUID.DNS = DNS; | ||
generateUUID.URL = URL; | ||
return generateUUID; | ||
}); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/md5.js | ||
/* | ||
* Browser-compatible JavaScript MD5 | ||
* | ||
* Modification of JavaScript MD5 | ||
* https://github.com/blueimp/JavaScript-MD5 | ||
* | ||
* Copyright 2011, Sebastian Tschan | ||
* https://blueimp.net | ||
* | ||
* Licensed under the MIT license: | ||
* https://opensource.org/licenses/MIT | ||
* | ||
* Based on | ||
* A JavaScript implementation of the RSA Data Security, Inc. MD5 Message | ||
* Digest Algorithm, as defined in RFC 1321. | ||
* Version 2.2 Copyright (C) Paul Johnston 1999 - 2009 | ||
* Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet | ||
* Distributed under the BSD License | ||
* See http://pajhome.org.uk/crypt/md5 for more info. | ||
*/ | ||
function md5(bytes) { | ||
if (typeof bytes === 'string') { | ||
var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape | ||
bytes = new Uint8Array(msg.length); | ||
for (var i = 0; i < msg.length; ++i) { | ||
bytes[i] = msg.charCodeAt(i); | ||
} | ||
} | ||
return md5ToHexEncodedArray(wordsToMd5(bytesToWords(bytes), bytes.length * 8)); | ||
} | ||
/* | ||
* Convert an array of little-endian words to an array of bytes | ||
*/ | ||
function md5ToHexEncodedArray(input) { | ||
var output = []; | ||
var length32 = input.length * 32; | ||
var hexTab = '0123456789abcdef'; | ||
for (var i = 0; i < length32; i += 8) { | ||
var x = input[i >> 5] >>> i % 32 & 0xff; | ||
var hex = parseInt(hexTab.charAt(x >>> 4 & 0x0f) + hexTab.charAt(x & 0x0f), 16); | ||
output.push(hex); | ||
} | ||
return output; | ||
} | ||
/** | ||
* Calculate output length with padding and bit length | ||
*/ | ||
function getOutputLength(inputLength8) { | ||
return (inputLength8 + 64 >>> 9 << 4) + 14 + 1; | ||
} | ||
/* | ||
* Calculate the MD5 of an array of little-endian words, and a bit length. | ||
*/ | ||
function wordsToMd5(x, len) { | ||
/* append padding */ | ||
x[len >> 5] |= 0x80 << len % 32; | ||
x[getOutputLength(len) - 1] = len; | ||
var a = 1732584193; | ||
var b = -271733879; | ||
var c = -1732584194; | ||
var d = 271733878; | ||
for (var i = 0; i < x.length; i += 16) { | ||
var olda = a; | ||
var oldb = b; | ||
var oldc = c; | ||
var oldd = d; | ||
a = md5ff(a, b, c, d, x[i], 7, -680876936); | ||
d = md5ff(d, a, b, c, x[i + 1], 12, -389564586); | ||
c = md5ff(c, d, a, b, x[i + 2], 17, 606105819); | ||
b = md5ff(b, c, d, a, x[i + 3], 22, -1044525330); | ||
a = md5ff(a, b, c, d, x[i + 4], 7, -176418897); | ||
d = md5ff(d, a, b, c, x[i + 5], 12, 1200080426); | ||
c = md5ff(c, d, a, b, x[i + 6], 17, -1473231341); | ||
b = md5ff(b, c, d, a, x[i + 7], 22, -45705983); | ||
a = md5ff(a, b, c, d, x[i + 8], 7, 1770035416); | ||
d = md5ff(d, a, b, c, x[i + 9], 12, -1958414417); | ||
c = md5ff(c, d, a, b, x[i + 10], 17, -42063); | ||
b = md5ff(b, c, d, a, x[i + 11], 22, -1990404162); | ||
a = md5ff(a, b, c, d, x[i + 12], 7, 1804603682); | ||
d = md5ff(d, a, b, c, x[i + 13], 12, -40341101); | ||
c = md5ff(c, d, a, b, x[i + 14], 17, -1502002290); | ||
b = md5ff(b, c, d, a, x[i + 15], 22, 1236535329); | ||
a = md5gg(a, b, c, d, x[i + 1], 5, -165796510); | ||
d = md5gg(d, a, b, c, x[i + 6], 9, -1069501632); | ||
c = md5gg(c, d, a, b, x[i + 11], 14, 643717713); | ||
b = md5gg(b, c, d, a, x[i], 20, -373897302); | ||
a = md5gg(a, b, c, d, x[i + 5], 5, -701558691); | ||
d = md5gg(d, a, b, c, x[i + 10], 9, 38016083); | ||
c = md5gg(c, d, a, b, x[i + 15], 14, -660478335); | ||
b = md5gg(b, c, d, a, x[i + 4], 20, -405537848); | ||
a = md5gg(a, b, c, d, x[i + 9], 5, 568446438); | ||
d = md5gg(d, a, b, c, x[i + 14], 9, -1019803690); | ||
c = md5gg(c, d, a, b, x[i + 3], 14, -187363961); | ||
b = md5gg(b, c, d, a, x[i + 8], 20, 1163531501); | ||
a = md5gg(a, b, c, d, x[i + 13], 5, -1444681467); | ||
d = md5gg(d, a, b, c, x[i + 2], 9, -51403784); | ||
c = md5gg(c, d, a, b, x[i + 7], 14, 1735328473); | ||
b = md5gg(b, c, d, a, x[i + 12], 20, -1926607734); | ||
a = md5hh(a, b, c, d, x[i + 5], 4, -378558); | ||
d = md5hh(d, a, b, c, x[i + 8], 11, -2022574463); | ||
c = md5hh(c, d, a, b, x[i + 11], 16, 1839030562); | ||
b = md5hh(b, c, d, a, x[i + 14], 23, -35309556); | ||
a = md5hh(a, b, c, d, x[i + 1], 4, -1530992060); | ||
d = md5hh(d, a, b, c, x[i + 4], 11, 1272893353); | ||
c = md5hh(c, d, a, b, x[i + 7], 16, -155497632); | ||
b = md5hh(b, c, d, a, x[i + 10], 23, -1094730640); | ||
a = md5hh(a, b, c, d, x[i + 13], 4, 681279174); | ||
d = md5hh(d, a, b, c, x[i], 11, -358537222); | ||
c = md5hh(c, d, a, b, x[i + 3], 16, -722521979); | ||
b = md5hh(b, c, d, a, x[i + 6], 23, 76029189); | ||
a = md5hh(a, b, c, d, x[i + 9], 4, -640364487); | ||
d = md5hh(d, a, b, c, x[i + 12], 11, -421815835); | ||
c = md5hh(c, d, a, b, x[i + 15], 16, 530742520); | ||
b = md5hh(b, c, d, a, x[i + 2], 23, -995338651); | ||
a = md5ii(a, b, c, d, x[i], 6, -198630844); | ||
d = md5ii(d, a, b, c, x[i + 7], 10, 1126891415); | ||
c = md5ii(c, d, a, b, x[i + 14], 15, -1416354905); | ||
b = md5ii(b, c, d, a, x[i + 5], 21, -57434055); | ||
a = md5ii(a, b, c, d, x[i + 12], 6, 1700485571); | ||
d = md5ii(d, a, b, c, x[i + 3], 10, -1894986606); | ||
c = md5ii(c, d, a, b, x[i + 10], 15, -1051523); | ||
b = md5ii(b, c, d, a, x[i + 1], 21, -2054922799); | ||
a = md5ii(a, b, c, d, x[i + 8], 6, 1873313359); | ||
d = md5ii(d, a, b, c, x[i + 15], 10, -30611744); | ||
c = md5ii(c, d, a, b, x[i + 6], 15, -1560198380); | ||
b = md5ii(b, c, d, a, x[i + 13], 21, 1309151649); | ||
a = md5ii(a, b, c, d, x[i + 4], 6, -145523070); | ||
d = md5ii(d, a, b, c, x[i + 11], 10, -1120210379); | ||
c = md5ii(c, d, a, b, x[i + 2], 15, 718787259); | ||
b = md5ii(b, c, d, a, x[i + 9], 21, -343485551); | ||
a = safeAdd(a, olda); | ||
b = safeAdd(b, oldb); | ||
c = safeAdd(c, oldc); | ||
d = safeAdd(d, oldd); | ||
} | ||
return [a, b, c, d]; | ||
} | ||
/* | ||
* Convert an array bytes to an array of little-endian words | ||
* Characters >255 have their high-byte silently ignored. | ||
*/ | ||
function bytesToWords(input) { | ||
if (input.length === 0) { | ||
return []; | ||
} | ||
var length8 = input.length * 8; | ||
var output = new Uint32Array(getOutputLength(length8)); | ||
for (var i = 0; i < length8; i += 8) { | ||
output[i >> 5] |= (input[i / 8] & 0xff) << i % 32; | ||
} | ||
return output; | ||
} | ||
/* | ||
* Add integers, wrapping at 2^32. This uses 16-bit operations internally | ||
* to work around bugs in some JS interpreters. | ||
*/ | ||
function safeAdd(x, y) { | ||
var lsw = (x & 0xffff) + (y & 0xffff); | ||
var msw = (x >> 16) + (y >> 16) + (lsw >> 16); | ||
return msw << 16 | lsw & 0xffff; | ||
} | ||
/* | ||
* Bitwise rotate a 32-bit number to the left. | ||
*/ | ||
function bitRotateLeft(num, cnt) { | ||
return num << cnt | num >>> 32 - cnt; | ||
} | ||
/* | ||
* These functions implement the four basic operations the algorithm uses. | ||
*/ | ||
function md5cmn(q, a, b, x, s, t) { | ||
return safeAdd(bitRotateLeft(safeAdd(safeAdd(a, q), safeAdd(x, t)), s), b); | ||
} | ||
function md5ff(a, b, c, d, x, s, t) { | ||
return md5cmn(b & c | ~b & d, a, b, x, s, t); | ||
} | ||
function md5gg(a, b, c, d, x, s, t) { | ||
return md5cmn(b & d | c & ~d, a, b, x, s, t); | ||
} | ||
function md5hh(a, b, c, d, x, s, t) { | ||
return md5cmn(b ^ c ^ d, a, b, x, s, t); | ||
} | ||
function md5ii(a, b, c, d, x, s, t) { | ||
return md5cmn(c ^ (b | ~d), a, b, x, s, t); | ||
} | ||
/* harmony default export */ var esm_browser_md5 = (md5); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/v3.js | ||
var v3 = v35('v3', 0x30, esm_browser_md5); | ||
/* harmony default export */ var esm_browser_v3 = (v3); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/v4.js | ||
function v4(options, buf, offset) { | ||
options = options || {}; | ||
var rnds = options.random || (options.rng || rng)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` | ||
rnds[6] = rnds[6] & 0x0f | 0x40; | ||
rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided | ||
if (buf) { | ||
offset = offset || 0; | ||
for (var i = 0; i < 16; ++i) { | ||
buf[offset + i] = rnds[i]; | ||
} | ||
return buf; | ||
} | ||
return esm_browser_stringify(rnds); | ||
} | ||
/* harmony default export */ var esm_browser_v4 = (v4); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/sha1.js | ||
// Adapted from Chris Veness' SHA1 code at | ||
// http://www.movable-type.co.uk/scripts/sha1.html | ||
function f(s, x, y, z) { | ||
switch (s) { | ||
case 0: | ||
return x & y ^ ~x & z; | ||
case 1: | ||
return x ^ y ^ z; | ||
case 2: | ||
return x & y ^ x & z ^ y & z; | ||
case 3: | ||
return x ^ y ^ z; | ||
} | ||
} | ||
function ROTL(x, n) { | ||
return x << n | x >>> 32 - n; | ||
} | ||
function sha1(bytes) { | ||
var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6]; | ||
var H = [0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0]; | ||
if (typeof bytes === 'string') { | ||
var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape | ||
bytes = []; | ||
for (var i = 0; i < msg.length; ++i) { | ||
bytes.push(msg.charCodeAt(i)); | ||
} | ||
} else if (!Array.isArray(bytes)) { | ||
// Convert Array-like to Array | ||
bytes = Array.prototype.slice.call(bytes); | ||
} | ||
bytes.push(0x80); | ||
var l = bytes.length / 4 + 2; | ||
var N = Math.ceil(l / 16); | ||
var M = new Array(N); | ||
for (var _i = 0; _i < N; ++_i) { | ||
var arr = new Uint32Array(16); | ||
for (var j = 0; j < 16; ++j) { | ||
arr[j] = bytes[_i * 64 + j * 4] << 24 | bytes[_i * 64 + j * 4 + 1] << 16 | bytes[_i * 64 + j * 4 + 2] << 8 | bytes[_i * 64 + j * 4 + 3]; | ||
} | ||
M[_i] = arr; | ||
} | ||
M[N - 1][14] = (bytes.length - 1) * 8 / Math.pow(2, 32); | ||
M[N - 1][14] = Math.floor(M[N - 1][14]); | ||
M[N - 1][15] = (bytes.length - 1) * 8 & 0xffffffff; | ||
for (var _i2 = 0; _i2 < N; ++_i2) { | ||
var W = new Uint32Array(80); | ||
for (var t = 0; t < 16; ++t) { | ||
W[t] = M[_i2][t]; | ||
} | ||
for (var _t = 16; _t < 80; ++_t) { | ||
W[_t] = ROTL(W[_t - 3] ^ W[_t - 8] ^ W[_t - 14] ^ W[_t - 16], 1); | ||
} | ||
var a = H[0]; | ||
var b = H[1]; | ||
var c = H[2]; | ||
var d = H[3]; | ||
var e = H[4]; | ||
for (var _t2 = 0; _t2 < 80; ++_t2) { | ||
var s = Math.floor(_t2 / 20); | ||
var T = ROTL(a, 5) + f(s, b, c, d) + e + K[s] + W[_t2] >>> 0; | ||
e = d; | ||
d = c; | ||
c = ROTL(b, 30) >>> 0; | ||
b = a; | ||
a = T; | ||
} | ||
H[0] = H[0] + a >>> 0; | ||
H[1] = H[1] + b >>> 0; | ||
H[2] = H[2] + c >>> 0; | ||
H[3] = H[3] + d >>> 0; | ||
H[4] = H[4] + e >>> 0; | ||
} | ||
return [H[0] >> 24 & 0xff, H[0] >> 16 & 0xff, H[0] >> 8 & 0xff, H[0] & 0xff, H[1] >> 24 & 0xff, H[1] >> 16 & 0xff, H[1] >> 8 & 0xff, H[1] & 0xff, H[2] >> 24 & 0xff, H[2] >> 16 & 0xff, H[2] >> 8 & 0xff, H[2] & 0xff, H[3] >> 24 & 0xff, H[3] >> 16 & 0xff, H[3] >> 8 & 0xff, H[3] & 0xff, H[4] >> 24 & 0xff, H[4] >> 16 & 0xff, H[4] >> 8 & 0xff, H[4] & 0xff]; | ||
} | ||
/* harmony default export */ var esm_browser_sha1 = (sha1); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/node_modules/uuid/dist/esm-browser/v5.js | ||
var v5 = v35('v5', 0x50, esm_browser_sha1); | ||
/* harmony default export */ var esm_browser_v5 = (v5); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-uuid/dist/index.esm.js | ||
/** | ||
* @typedef {Object} UUID | ||
* @property {typeof v1} v1 | ||
* @property {typeof v3} v3 | ||
* @property {typeof v4} v4 | ||
* @property {typeof v5} v5 | ||
*/ | ||
/** | ||
* An object with uuid's v1, v3, v4 and v5 functions. | ||
* @type {UUID} | ||
*/ | ||
var index_esm_uuid = { | ||
v1: esm_browser_v1, | ||
v3: esm_browser_v3, | ||
v4: esm_browser_v4, | ||
v5: esm_browser_v5 | ||
}; | ||
/** | ||
* Installs UUID on Vue instance. It creates a property on Vue instance to | ||
* expose an object with uuid's v1, v3, v4 and v5 functions. | ||
* @example ```js | ||
* import Vue from 'vue'; | ||
* import VueUUID from 'vue-uuid'; | ||
* | ||
* Vue.use(VueUUID); | ||
* | ||
* new Vue({ | ||
* mounted () { | ||
* console.log(this.$uuid.v1()); | ||
* } | ||
* }); | ||
* ``` | ||
* @param {import('vue').default} Vue Vue constructor. | ||
*/ | ||
function install(Vue) { | ||
Vue.prototype.$uuid = index_esm_uuid; | ||
} | ||
/* harmony default export */ var index_esm = (install); | ||
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/cache-loader/dist/cjs.js??ref--0-0!/home/runner/work/kongponents/kongponents/node_modules/vue-loader/lib??vue-loader-options!./KCard.vue?vue&type=script&lang=js& | ||
@@ -429,3 +1082,19 @@ // | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
// | ||
/* harmony default export */ var lib_vue_loader_options_KCardvue_type_script_lang_js_ = ({ | ||
@@ -436,3 +1105,3 @@ name: 'KCard', | ||
/** | ||
* Pass title string in if slot not used | ||
* Title string if slot not used, also used for aria-label | ||
*/ | ||
@@ -443,2 +1112,3 @@ title: { | ||
}, | ||
/** | ||
@@ -473,8 +1143,23 @@ * Pass body string in if slot not used | ||
/** | ||
* Adds help text positioned closely under the card title | ||
*/ | ||
helpText: { | ||
* Add small status text above the card title | ||
*/ | ||
status: { | ||
type: String, | ||
default: '' | ||
}, | ||
/** | ||
* Test mode - for testing only, strips out generated ids | ||
*/ | ||
testMode: { | ||
type: Boolean, | ||
default: false | ||
} | ||
}, | ||
data () { | ||
return { | ||
titleId: !this.testMode ? index_esm_uuid.v1() : 'test-title-id-1234', | ||
contentId: !this.testMode ? index_esm_uuid.v1() : 'test-content-id-1234' | ||
} | ||
} | ||
@@ -485,4 +1170,4 @@ }); | ||
/* harmony default export */ var KCardvue_type_script_lang_js_ = (lib_vue_loader_options_KCardvue_type_script_lang_js_); | ||
// EXTERNAL MODULE: ./KCard.vue?vue&type=style&index=0&id=0029352b&lang=scss&scoped=true& | ||
var KCardvue_type_style_index_0_id_0029352b_lang_scss_scoped_true_ = __webpack_require__("3845"); | ||
// EXTERNAL MODULE: ./KCard.vue?vue&type=style&index=0&id=16bad2a4&lang=scss&scoped=true& | ||
var KCardvue_type_style_index_0_id_16bad2a4_lang_scss_scoped_true_ = __webpack_require__("9014"); | ||
@@ -599,3 +1284,3 @@ // CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-loader/lib/runtime/componentNormalizer.js | ||
null, | ||
"0029352b", | ||
"16bad2a4", | ||
null | ||
@@ -615,13 +1300,2 @@ | ||
/***/ "3845": | ||
/***/ (function(module, __webpack_exports__, __webpack_require__) { | ||
"use strict"; | ||
/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_0029352b_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("d0d7"); | ||
/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_0029352b_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_0029352b_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__); | ||
/* unused harmony reexport * */ | ||
/* unused harmony default export */ var _unused_webpack_default_export = (_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_0029352b_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a); | ||
/***/ }), | ||
/***/ "4141": | ||
@@ -753,3 +1427,3 @@ /***/ (function(module, exports) { | ||
/***/ "6e11": | ||
/***/ "70b4": | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -762,3 +1436,3 @@ | ||
// module | ||
exports.push([module.i, ".kong-card[data-v-0029352b]{padding:1rem 1rem;padding:var(--KCardPaddingY,1rem) var(--KCardPaddingX,1rem);border-radius:3px;border-radius:var(--KCardBorderRadius,3px);background-color:#fff;background-color:var(--KCardBackground,var(--white,#fff))}.kong-card.noBorder[data-v-0029352b]{border:none}.kong-card.border[data-v-0029352b]{border:1px solid rgba(0,0,0,.1);border:var(--KCardBorder,1px solid var(--black-10,rgba(0,0,0,.1)));box-shadow:none}.kong-card.borderTop[data-v-0029352b]{border-top:1px solid rgba(0,0,0,.1);border-top:var(--KCardBorder,1px solid var(--black-10,rgba(0,0,0,.1)))}.kong-card.hover[data-v-0029352b]:hover,.kong-card.kcard-shadow[data-v-0029352b]{box-shadow:0 4px 8px rgba(0,0,0,.1);box-shadow:var(--KCardShadow,0 4px 8px var(--black-10,rgba(0,0,0,.1)))}.kong-card .k-card-header[data-v-0029352b]{display:flex;align-items:center;margin-bottom:1rem;min-height:38px}.kong-card .k-card-header .k-button[data-v-0029352b]{min-height:38px}.kong-card .k-card-title h4[data-v-0029352b]{margin:0;font-size:18px;font-size:var(--KCardTitleFontSize,var(--type-lg,18px));font-weight:500;color:rgba(0,0,0,.85);color:var(--KCardTitleColor,var(--black-85,rgba(0,0,0,.85)))}.kong-card .k-card-actions[data-v-0029352b]{margin-left:auto}.kong-card .k-card-help-text[data-v-0029352b]{color:var(--black-45)}", ""]); | ||
exports.push([module.i, ".kong-card[data-v-16bad2a4]{padding:var(--spacing-lg) var(--spacing-lg);padding:var(--KCardPaddingY,var(--spacing-lg)) var(--KCardPaddingX,var(--spacing-lg));border-radius:3px;border-radius:var(--KCardBorderRadius,3px);background-color:#fff;background-color:var(--KCardBackground,var(--white,#fff))}.kong-card.noBorder[data-v-16bad2a4]{border:none}.kong-card.border[data-v-16bad2a4]{border:1px solid rgba(0,0,0,.1);border:var(--KCardBorder,1px solid var(--black-10,rgba(0,0,0,.1)));box-shadow:none}.kong-card.borderTop[data-v-16bad2a4]{border-top:1px solid rgba(0,0,0,.1);border-top:var(--KCardBorder,1px solid var(--black-10,rgba(0,0,0,.1)))}.kong-card.hover[data-v-16bad2a4]:hover,.kong-card.kcard-shadow[data-v-16bad2a4]{box-shadow:0 4px 8px rgba(0,0,0,.1);box-shadow:var(--KCardShadow,0 4px 8px var(--black-10,rgba(0,0,0,.1)))}.kong-card .k-card-header[data-v-16bad2a4]{align-items:center;min-height:38px}.kong-card .k-card-header.has-status[data-v-16bad2a4]{align-items:flex-start}.kong-card .k-card-header .k-button[data-v-16bad2a4]{min-height:38px}.kong-card .k-card-status-hat[data-v-16bad2a4]{font-size:var(--type-xs);color:var(--grey-600);display:flex;align-items:center}.kong-card .k-card-title h4[data-v-16bad2a4]{margin:0;font-size:20px;font-size:var(--KCardTitleFontSize,20px);font-weight:500;color:var(--black-500);color:var(--KCardTitleColor,var(--black-500))}.kong-card .k-card-actions[data-v-16bad2a4]{margin-left:auto}.kong-card .k-card-body[data-v-16bad2a4]{font-size:13px;line-height:20px;color:var(--grey-600);width:100%}.kong-card .k-card-notifications[data-v-16bad2a4]{margin-left:auto;margin-top:auto}", ""]); | ||
@@ -770,3 +1444,14 @@ // exports | ||
/***/ "d0d7": | ||
/***/ "9014": | ||
/***/ (function(module, __webpack_exports__, __webpack_require__) { | ||
"use strict"; | ||
/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_16bad2a4_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("f4dd"); | ||
/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_16bad2a4_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_16bad2a4_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__); | ||
/* unused harmony reexport * */ | ||
/* unused harmony default export */ var _unused_webpack_default_export = (_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KCard_vue_vue_type_style_index_0_id_16bad2a4_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a); | ||
/***/ }), | ||
/***/ "f4dd": | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -777,3 +1462,3 @@ | ||
// load the styles | ||
var content = __webpack_require__("6e11"); | ||
var content = __webpack_require__("70b4"); | ||
if(typeof content === 'string') content = [[module.i, content, '']]; | ||
@@ -783,3 +1468,3 @@ if(content.locals) module.exports = content.locals; | ||
var add = __webpack_require__("0ed3").default | ||
var update = add("beb02050", content, true, {"sourceMap":false,"shadowMode":false}); | ||
var update = add("b5850cb8", content, true, {"sourceMap":false,"shadowMode":false}); | ||
@@ -786,0 +1471,0 @@ /***/ }) |
@@ -1,2 +0,2 @@ | ||
(function(e,t){"object"===typeof exports&&"object"===typeof module?module.exports=t():"function"===typeof define&&define.amd?define([],t):"object"===typeof exports?exports["KCard"]=t():e["KCard"]=t()})("undefined"!==typeof self?self:this,(function(){return function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s="1c25")}({"0ed3":function(e,t,r){"use strict";function n(e,t){for(var r=[],n={},o=0;o<t.length;o++){var a=t[o],i=a[0],d=a[1],s=a[2],c=a[3],u={id:e+":"+o,css:d,media:s,sourceMap:c};n[i]?n[i].parts.push(u):r.push(n[i]={id:i,parts:[u]})}return r}r.r(t),r.d(t,"default",(function(){return v}));var o="undefined"!==typeof document;if("undefined"!==typeof DEBUG&&DEBUG&&!o)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var a={},i=o&&(document.head||document.getElementsByTagName("head")[0]),d=null,s=0,c=!1,u=function(){},l=null,f="data-vue-ssr-id",p="undefined"!==typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function v(e,t,r,o){c=r,l=o||{};var i=n(e,t);return h(i),function(t){for(var r=[],o=0;o<i.length;o++){var d=i[o],s=a[d.id];s.refs--,r.push(s)}t?(i=n(e,t),h(i)):i=[];for(o=0;o<r.length;o++){s=r[o];if(0===s.refs){for(var c=0;c<s.parts.length;c++)s.parts[c]();delete a[s.id]}}}}function h(e){for(var t=0;t<e.length;t++){var r=e[t],n=a[r.id];if(n){n.refs++;for(var o=0;o<n.parts.length;o++)n.parts[o](r.parts[o]);for(;o<r.parts.length;o++)n.parts.push(g(r.parts[o]));n.parts.length>r.parts.length&&(n.parts.length=r.parts.length)}else{var i=[];for(o=0;o<r.parts.length;o++)i.push(g(r.parts[o]));a[r.id]={id:r.id,refs:1,parts:i}}}}function b(){var e=document.createElement("style");return e.type="text/css",i.appendChild(e),e}function g(e){var t,r,n=document.querySelector("style["+f+'~="'+e.id+'"]');if(n){if(c)return u;n.parentNode.removeChild(n)}if(p){var o=s++;n=d||(d=b()),t=y.bind(null,n,o,!1),r=y.bind(null,n,o,!0)}else n=b(),t=x.bind(null,n),r=function(){n.parentNode.removeChild(n)};return t(e),function(n){if(n){if(n.css===e.css&&n.media===e.media&&n.sourceMap===e.sourceMap)return;t(e=n)}else r()}}var m=function(){var e=[];return function(t,r){return e[t]=r,e.filter(Boolean).join("\n")}}();function y(e,t,r,n){var o=r?"":n.css;if(e.styleSheet)e.styleSheet.cssText=m(t,o);else{var a=document.createTextNode(o),i=e.childNodes;i[t]&&e.removeChild(i[t]),i.length?e.insertBefore(a,i[t]):e.appendChild(a)}}function x(e,t){var r=t.css,n=t.media,o=t.sourceMap;if(n&&e.setAttribute("media",n),l.ssrId&&e.setAttribute(f,t.id),o&&(r+="\n/*# sourceURL="+o.sources[0]+" */",r+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(o))))+" */"),e.styleSheet)e.styleSheet.cssText=r;else{while(e.firstChild)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(r))}}},"1c25":function(e,t,r){"use strict";var n;(r.r(t),"undefined"!==typeof window)&&(r("4141"),(n=window.document.currentScript)&&(n=n.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))&&(r.p=n[1]));var o=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",{staticClass:"kong-card",class:[e.borderVariant,{hover:e.hasHover,"kcard-shadow":e.hasShadow}]},[e.title||e.$scopedSlots.title||e.$scopedSlots.actions||e.$slots.title?r("div",{staticClass:"k-card-header",class:e.helpText||void 0!==e.$scopedSlots.helpText?"mb-0":"mb-4"},[r("div",{staticClass:"k-card-title"},[r("h4",[e._t("title",[e._v(e._s(e.title))])],2)]),r("div",{staticClass:"k-card-actions"},[e._t("actions")],2)]):e._e(),e.helpText||e.$scopedSlots.helpText?r("div",{staticClass:"k-card-help-text mb-5"},[e._t("helpText",[r("span",[e._v(e._s(e.helpText))])])],2):e._e(),r("div",{staticClass:"k-card-body"},[e._t("body",[e._v(e._s(e.body))])],2)])},a=[],i={name:"KCard",props:{title:{type:String,default:""},body:{type:String,default:""},borderVariant:{type:String,default:"border"},hasHover:{type:Boolean,default:!1},hasShadow:{type:Boolean,default:!1},helpText:{type:String,default:""}}},d=i;r("3845");function s(e,t,r,n,o,a,i,d){var s,c="function"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=r,c._compiled=!0),n&&(c.functional=!0),a&&(c._scopeId="data-v-"+a),i?(s=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),o&&o.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(i)},c._ssrRegister=s):o&&(s=d?function(){o.call(this,this.$root.$options.shadowRoot)}:o),s)if(c.functional){c._injectStyles=s;var u=c.render;c.render=function(e,t){return s.call(t),u(e,t)}}else{var l=c.beforeCreate;c.beforeCreate=l?[].concat(l,s):[s]}return{exports:e,options:c}}var c=s(d,o,a,!1,null,"0029352b",null),u=c.exports;t["default"]=u},3845:function(e,t,r){"use strict";var n=r("d0d7"),o=r.n(n);o.a},4141:function(e,t){(function(e){var t="currentScript",r=e.getElementsByTagName("script");t in e||Object.defineProperty(e,t,{get:function(){try{throw new Error}catch(n){var e,t=(/.*at [^\(]*\((.*):.+:.+\)$/gi.exec(n.stack)||[!1])[1];for(e in r)if(r[e].src==t||"interactive"==r[e].readyState)return r[e];return null}}})})(document)},"443a":function(e,t){function r(e,t){var r=e[1]||"",o=e[3];if(!o)return r;if(t&&"function"===typeof btoa){var a=n(o),i=o.sources.map((function(e){return"/*# sourceURL="+o.sourceRoot+e+" */"}));return[r].concat(i).concat([a]).join("\n")}return[r].join("\n")}function n(e){var t=btoa(unescape(encodeURIComponent(JSON.stringify(e)))),r="sourceMappingURL=data:application/json;charset=utf-8;base64,"+t;return"/*# "+r+" */"}e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=r(t,e);return t[2]?"@media "+t[2]+"{"+n+"}":n})).join("")},t.i=function(e,r){"string"===typeof e&&(e=[[null,e,""]]);for(var n={},o=0;o<this.length;o++){var a=this[o][0];"number"===typeof a&&(n[a]=!0)}for(o=0;o<e.length;o++){var i=e[o];"number"===typeof i[0]&&n[i[0]]||(r&&!i[2]?i[2]=r:r&&(i[2]="("+i[2]+") and ("+r+")"),t.push(i))}},t}},"6e11":function(e,t,r){t=e.exports=r("443a")(!1),t.push([e.i,".kong-card[data-v-0029352b]{padding:1rem 1rem;padding:var(--KCardPaddingY,1rem) var(--KCardPaddingX,1rem);border-radius:3px;border-radius:var(--KCardBorderRadius,3px);background-color:#fff;background-color:var(--KCardBackground,var(--white,#fff))}.kong-card.noBorder[data-v-0029352b]{border:none}.kong-card.border[data-v-0029352b]{border:1px solid rgba(0,0,0,.1);border:var(--KCardBorder,1px solid var(--black-10,rgba(0,0,0,.1)));box-shadow:none}.kong-card.borderTop[data-v-0029352b]{border-top:1px solid rgba(0,0,0,.1);border-top:var(--KCardBorder,1px solid var(--black-10,rgba(0,0,0,.1)))}.kong-card.hover[data-v-0029352b]:hover,.kong-card.kcard-shadow[data-v-0029352b]{box-shadow:0 4px 8px rgba(0,0,0,.1);box-shadow:var(--KCardShadow,0 4px 8px var(--black-10,rgba(0,0,0,.1)))}.kong-card .k-card-header[data-v-0029352b]{display:flex;align-items:center;margin-bottom:1rem;min-height:38px}.kong-card .k-card-header .k-button[data-v-0029352b]{min-height:38px}.kong-card .k-card-title h4[data-v-0029352b]{margin:0;font-size:18px;font-size:var(--KCardTitleFontSize,var(--type-lg,18px));font-weight:500;color:rgba(0,0,0,.85);color:var(--KCardTitleColor,var(--black-85,rgba(0,0,0,.85)))}.kong-card .k-card-actions[data-v-0029352b]{margin-left:auto}.kong-card .k-card-help-text[data-v-0029352b]{color:var(--black-45)}",""])},d0d7:function(e,t,r){var n=r("6e11");"string"===typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var o=r("0ed3").default;o("beb02050",n,!0,{sourceMap:!1,shadowMode:!1})}})["default"]})); | ||
(function(t,e){"object"===typeof exports&&"object"===typeof module?module.exports=e():"function"===typeof define&&define.amd?define([],e):"object"===typeof exports?exports["KCard"]=e():t["KCard"]=e()})("undefined"!==typeof self?self:this,(function(){return function(t){var e={};function r(n){if(e[n])return e[n].exports;var a=e[n]={i:n,l:!1,exports:{}};return t[n].call(a.exports,a,a.exports,r),a.l=!0,a.exports}return r.m=t,r.c=e,r.d=function(t,e,n){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},r.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var a in t)r.d(n,a,function(e){return t[e]}.bind(null,a));return n},r.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s="1c25")}({"0ed3":function(t,e,r){"use strict";function n(t,e){for(var r=[],n={},a=0;a<e.length;a++){var o=e[a],i=o[0],s=o[1],d=o[2],c=o[3],u={id:t+":"+a,css:s,media:d,sourceMap:c};n[i]?n[i].parts.push(u):r.push(n[i]={id:i,parts:[u]})}return r}r.r(e),r.d(e,"default",(function(){return v}));var a="undefined"!==typeof document;if("undefined"!==typeof DEBUG&&DEBUG&&!a)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},i=a&&(document.head||document.getElementsByTagName("head")[0]),s=null,d=0,c=!1,u=function(){},l=null,f="data-vue-ssr-id",p="undefined"!==typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function v(t,e,r,a){c=r,l=a||{};var i=n(t,e);return h(i),function(e){for(var r=[],a=0;a<i.length;a++){var s=i[a],d=o[s.id];d.refs--,r.push(d)}e?(i=n(t,e),h(i)):i=[];for(a=0;a<r.length;a++){d=r[a];if(0===d.refs){for(var c=0;c<d.parts.length;c++)d.parts[c]();delete o[d.id]}}}}function h(t){for(var e=0;e<t.length;e++){var r=t[e],n=o[r.id];if(n){n.refs++;for(var a=0;a<n.parts.length;a++)n.parts[a](r.parts[a]);for(;a<r.parts.length;a++)n.parts.push(b(r.parts[a]));n.parts.length>r.parts.length&&(n.parts.length=r.parts.length)}else{var i=[];for(a=0;a<r.parts.length;a++)i.push(b(r.parts[a]));o[r.id]={id:r.id,refs:1,parts:i}}}}function g(){var t=document.createElement("style");return t.type="text/css",i.appendChild(t),t}function b(t){var e,r,n=document.querySelector("style["+f+'~="'+t.id+'"]');if(n){if(c)return u;n.parentNode.removeChild(n)}if(p){var a=d++;n=s||(s=g()),e=m.bind(null,n,a,!1),r=m.bind(null,n,a,!0)}else n=g(),e=C.bind(null,n),r=function(){n.parentNode.removeChild(n)};return e(t),function(n){if(n){if(n.css===t.css&&n.media===t.media&&n.sourceMap===t.sourceMap)return;e(t=n)}else r()}}var y=function(){var t=[];return function(e,r){return t[e]=r,t.filter(Boolean).join("\n")}}();function m(t,e,r,n){var a=r?"":n.css;if(t.styleSheet)t.styleSheet.cssText=y(e,a);else{var o=document.createTextNode(a),i=t.childNodes;i[e]&&t.removeChild(i[e]),i.length?t.insertBefore(o,i[e]):t.appendChild(o)}}function C(t,e){var r=e.css,n=e.media,a=e.sourceMap;if(n&&t.setAttribute("media",n),l.ssrId&&t.setAttribute(f,e.id),a&&(r+="\n/*# sourceURL="+a.sources[0]+" */",r+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(a))))+" */"),t.styleSheet)t.styleSheet.cssText=r;else{while(t.firstChild)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(r))}}},"1c25":function(t,e,r){"use strict";var n;(r.r(e),"undefined"!==typeof window)&&(r("4141"),(n=window.document.currentScript)&&(n=n.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))&&(r.p=n[1]));var a,o=function(){var t=this,e=t.$createElement,r=t._self._c||e;return r("section",{staticClass:"kong-card",class:[t.borderVariant,{hover:t.hasHover,"kcard-shadow":t.hasShadow}],attrs:{"aria-label":t.title?t.title:null,"aria-labelledby":t.title||!t.$scopedSlots.title&&!t.$slots.title?null:t.titleId,"aria-describedby":t.contentId}},[t.title||t.$scopedSlots.title||t.$slots.title||t.$scopedSlots.actions||t.status||t.$scopedSlots.statusHat?r("div",{staticClass:"k-card-header d-flex mb-4",class:{"has-status":t.status||t.$scopedSlots.statusHat}},[r("div",[t.status||t.$scopedSlots.statusHat?r("div",{staticClass:"k-card-status-hat mb-4"},[t._t("statusHat",[t._v(t._s(t.status))])],2):t._e(),r("div",{staticClass:"k-card-title",attrs:{id:t.title?null:t.titleId}},[r("h4",[t._t("title",[t._v(t._s(t.title))])],2)])]),r("div",{staticClass:"k-card-actions"},[t._t("actions")],2)]):t._e(),r("div",{staticClass:"k-card-content d-flex"},[r("div",{staticClass:"k-card-body",attrs:{id:t.contentId}},[t._t("body",[t._v(t._s(t.body))])],2),t.$scopedSlots.notifications?r("div",{staticClass:"k-card-notifications ml-3"},[t._t("notifications")],2):t._e()])])},i=[],s=new Uint8Array(16);function d(){if(!a&&(a="undefined"!==typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!==typeof msCrypto&&"function"===typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto),!a))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return a(s)}var c=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function u(t){return"string"===typeof t&&c.test(t)}for(var l=u,f=[],p=0;p<256;++p)f.push((p+256).toString(16).substr(1));function v(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=(f[t[e+0]]+f[t[e+1]]+f[t[e+2]]+f[t[e+3]]+"-"+f[t[e+4]]+f[t[e+5]]+"-"+f[t[e+6]]+f[t[e+7]]+"-"+f[t[e+8]]+f[t[e+9]]+"-"+f[t[e+10]]+f[t[e+11]]+f[t[e+12]]+f[t[e+13]]+f[t[e+14]]+f[t[e+15]]).toLowerCase();if(!l(r))throw TypeError("Stringified UUID is invalid");return r}var h,g,b=v,y=0,m=0;function C(t,e,r){var n=e&&r||0,a=e||new Array(16);t=t||{};var o=t.node||h,i=void 0!==t.clockseq?t.clockseq:g;if(null==o||null==i){var s=t.random||(t.rng||d)();null==o&&(o=h=[1|s[0],s[1],s[2],s[3],s[4],s[5]]),null==i&&(i=g=16383&(s[6]<<8|s[7]))}var c=void 0!==t.msecs?t.msecs:Date.now(),u=void 0!==t.nsecs?t.nsecs:m+1,l=c-y+(u-m)/1e4;if(l<0&&void 0===t.clockseq&&(i=i+1&16383),(l<0||c>y)&&void 0===t.nsecs&&(u=0),u>=1e4)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");y=c,m=u,g=i,c+=122192928e5;var f=(1e4*(268435455&c)+u)%4294967296;a[n++]=f>>>24&255,a[n++]=f>>>16&255,a[n++]=f>>>8&255,a[n++]=255&f;var p=c/4294967296*1e4&268435455;a[n++]=p>>>8&255,a[n++]=255&p,a[n++]=p>>>24&15|16,a[n++]=p>>>16&255,a[n++]=i>>>8|128,a[n++]=255&i;for(var v=0;v<6;++v)a[n+v]=o[v];return e||b(a)}var k=C;function x(t){if(!l(t))throw TypeError("Invalid UUID");var e,r=new Uint8Array(16);return r[0]=(e=parseInt(t.slice(0,8),16))>>>24,r[1]=e>>>16&255,r[2]=e>>>8&255,r[3]=255&e,r[4]=(e=parseInt(t.slice(9,13),16))>>>8,r[5]=255&e,r[6]=(e=parseInt(t.slice(14,18),16))>>>8,r[7]=255&e,r[8]=(e=parseInt(t.slice(19,23),16))>>>8,r[9]=255&e,r[10]=(e=parseInt(t.slice(24,36),16))/1099511627776&255,r[11]=e/4294967296&255,r[12]=e>>>24&255,r[13]=e>>>16&255,r[14]=e>>>8&255,r[15]=255&e,r}var w=x;function S(t){t=unescape(encodeURIComponent(t));for(var e=[],r=0;r<t.length;++r)e.push(t.charCodeAt(r));return e}var _="6ba7b810-9dad-11d1-80b4-00c04fd430c8",U="6ba7b811-9dad-11d1-80b4-00c04fd430c8",I=function(t,e,r){function n(t,n,a,o){if("string"===typeof t&&(t=S(t)),"string"===typeof n&&(n=w(n)),16!==n.length)throw TypeError("Namespace must be array-like (16 iterable integer values, 0-255)");var i=new Uint8Array(16+t.length);if(i.set(n),i.set(t,n.length),i=r(i),i[6]=15&i[6]|e,i[8]=63&i[8]|128,a){o=o||0;for(var s=0;s<16;++s)a[o+s]=i[s];return a}return b(i)}try{n.name=t}catch(a){}return n.DNS=_,n.URL=U,n};function R(t){if("string"===typeof t){var e=unescape(encodeURIComponent(t));t=new Uint8Array(e.length);for(var r=0;r<e.length;++r)t[r]=e.charCodeAt(r)}return j(M($(t),8*t.length))}function j(t){for(var e=[],r=32*t.length,n="0123456789abcdef",a=0;a<r;a+=8){var o=t[a>>5]>>>a%32&255,i=parseInt(n.charAt(o>>>4&15)+n.charAt(15&o),16);e.push(i)}return e}function A(t){return 14+(t+64>>>9<<4)+1}function M(t,e){t[e>>5]|=128<<e%32,t[A(e)-1]=e;for(var r=1732584193,n=-271733879,a=-1732584194,o=271733878,i=0;i<t.length;i+=16){var s=r,d=n,c=a,u=o;r=N(r,n,a,o,t[i],7,-680876936),o=N(o,r,n,a,t[i+1],12,-389564586),a=N(a,o,r,n,t[i+2],17,606105819),n=N(n,a,o,r,t[i+3],22,-1044525330),r=N(r,n,a,o,t[i+4],7,-176418897),o=N(o,r,n,a,t[i+5],12,1200080426),a=N(a,o,r,n,t[i+6],17,-1473231341),n=N(n,a,o,r,t[i+7],22,-45705983),r=N(r,n,a,o,t[i+8],7,1770035416),o=N(o,r,n,a,t[i+9],12,-1958414417),a=N(a,o,r,n,t[i+10],17,-42063),n=N(n,a,o,r,t[i+11],22,-1990404162),r=N(r,n,a,o,t[i+12],7,1804603682),o=N(o,r,n,a,t[i+13],12,-40341101),a=N(a,o,r,n,t[i+14],17,-1502002290),n=N(n,a,o,r,t[i+15],22,1236535329),r=K(r,n,a,o,t[i+1],5,-165796510),o=K(o,r,n,a,t[i+6],9,-1069501632),a=K(a,o,r,n,t[i+11],14,643717713),n=K(n,a,o,r,t[i],20,-373897302),r=K(r,n,a,o,t[i+5],5,-701558691),o=K(o,r,n,a,t[i+10],9,38016083),a=K(a,o,r,n,t[i+15],14,-660478335),n=K(n,a,o,r,t[i+4],20,-405537848),r=K(r,n,a,o,t[i+9],5,568446438),o=K(o,r,n,a,t[i+14],9,-1019803690),a=K(a,o,r,n,t[i+3],14,-187363961),n=K(n,a,o,r,t[i+8],20,1163531501),r=K(r,n,a,o,t[i+13],5,-1444681467),o=K(o,r,n,a,t[i+2],9,-51403784),a=K(a,o,r,n,t[i+7],14,1735328473),n=K(n,a,o,r,t[i+12],20,-1926607734),r=O(r,n,a,o,t[i+5],4,-378558),o=O(o,r,n,a,t[i+8],11,-2022574463),a=O(a,o,r,n,t[i+11],16,1839030562),n=O(n,a,o,r,t[i+14],23,-35309556),r=O(r,n,a,o,t[i+1],4,-1530992060),o=O(o,r,n,a,t[i+4],11,1272893353),a=O(a,o,r,n,t[i+7],16,-155497632),n=O(n,a,o,r,t[i+10],23,-1094730640),r=O(r,n,a,o,t[i+13],4,681279174),o=O(o,r,n,a,t[i],11,-358537222),a=O(a,o,r,n,t[i+3],16,-722521979),n=O(n,a,o,r,t[i+6],23,76029189),r=O(r,n,a,o,t[i+9],4,-640364487),o=O(o,r,n,a,t[i+12],11,-421815835),a=O(a,o,r,n,t[i+15],16,530742520),n=O(n,a,o,r,t[i+2],23,-995338651),r=V(r,n,a,o,t[i],6,-198630844),o=V(o,r,n,a,t[i+7],10,1126891415),a=V(a,o,r,n,t[i+14],15,-1416354905),n=V(n,a,o,r,t[i+5],21,-57434055),r=V(r,n,a,o,t[i+12],6,1700485571),o=V(o,r,n,a,t[i+3],10,-1894986606),a=V(a,o,r,n,t[i+10],15,-1051523),n=V(n,a,o,r,t[i+1],21,-2054922799),r=V(r,n,a,o,t[i+8],6,1873313359),o=V(o,r,n,a,t[i+15],10,-30611744),a=V(a,o,r,n,t[i+6],15,-1560198380),n=V(n,a,o,r,t[i+13],21,1309151649),r=V(r,n,a,o,t[i+4],6,-145523070),o=V(o,r,n,a,t[i+11],10,-1120210379),a=V(a,o,r,n,t[i+2],15,718787259),n=V(n,a,o,r,t[i+9],21,-343485551),r=T(r,s),n=T(n,d),a=T(a,c),o=T(o,u)}return[r,n,a,o]}function $(t){if(0===t.length)return[];for(var e=8*t.length,r=new Uint32Array(A(e)),n=0;n<e;n+=8)r[n>>5]|=(255&t[n/8])<<n%32;return r}function T(t,e){var r=(65535&t)+(65535&e),n=(t>>16)+(e>>16)+(r>>16);return n<<16|65535&r}function E(t,e){return t<<e|t>>>32-e}function B(t,e,r,n,a,o){return T(E(T(T(e,t),T(n,o)),a),r)}function N(t,e,r,n,a,o,i){return B(e&r|~e&n,t,e,a,o,i)}function K(t,e,r,n,a,o,i){return B(e&n|r&~n,t,e,a,o,i)}function O(t,e,r,n,a,o,i){return B(e^r^n,t,e,a,o,i)}function V(t,e,r,n,a,o,i){return B(r^(e|~n),t,e,a,o,i)}var P=R,L=I("v3",48,P),D=L;function H(t,e,r){t=t||{};var n=t.random||(t.rng||d)();if(n[6]=15&n[6]|64,n[8]=63&n[8]|128,e){r=r||0;for(var a=0;a<16;++a)e[r+a]=n[a];return e}return b(n)}var z=H;function q(t,e,r,n){switch(t){case 0:return e&r^~e&n;case 1:return e^r^n;case 2:return e&r^e&n^r&n;case 3:return e^r^n}}function X(t,e){return t<<e|t>>>32-e}function F(t){var e=[1518500249,1859775393,2400959708,3395469782],r=[1732584193,4023233417,2562383102,271733878,3285377520];if("string"===typeof t){var n=unescape(encodeURIComponent(t));t=[];for(var a=0;a<n.length;++a)t.push(n.charCodeAt(a))}else Array.isArray(t)||(t=Array.prototype.slice.call(t));t.push(128);for(var o=t.length/4+2,i=Math.ceil(o/16),s=new Array(i),d=0;d<i;++d){for(var c=new Uint32Array(16),u=0;u<16;++u)c[u]=t[64*d+4*u]<<24|t[64*d+4*u+1]<<16|t[64*d+4*u+2]<<8|t[64*d+4*u+3];s[d]=c}s[i-1][14]=8*(t.length-1)/Math.pow(2,32),s[i-1][14]=Math.floor(s[i-1][14]),s[i-1][15]=8*(t.length-1)&4294967295;for(var l=0;l<i;++l){for(var f=new Uint32Array(80),p=0;p<16;++p)f[p]=s[l][p];for(var v=16;v<80;++v)f[v]=X(f[v-3]^f[v-8]^f[v-14]^f[v-16],1);for(var h=r[0],g=r[1],b=r[2],y=r[3],m=r[4],C=0;C<80;++C){var k=Math.floor(C/20),x=X(h,5)+q(k,g,b,y)+m+e[k]+f[C]>>>0;m=y,y=b,b=X(g,30)>>>0,g=h,h=x}r[0]=r[0]+h>>>0,r[1]=r[1]+g>>>0,r[2]=r[2]+b>>>0,r[3]=r[3]+y>>>0,r[4]=r[4]+m>>>0}return[r[0]>>24&255,r[0]>>16&255,r[0]>>8&255,255&r[0],r[1]>>24&255,r[1]>>16&255,r[1]>>8&255,255&r[1],r[2]>>24&255,r[2]>>16&255,r[2]>>8&255,255&r[2],r[3]>>24&255,r[3]>>16&255,r[3]>>8&255,255&r[3],r[4]>>24&255,r[4]>>16&255,r[4]>>8&255,255&r[4]]}var G=F,J=I("v5",80,G),W=J,Y={v1:k,v3:D,v4:z,v5:W};var Q={name:"KCard",props:{title:{type:String,default:""},body:{type:String,default:""},borderVariant:{type:String,default:"border"},hasHover:{type:Boolean,default:!1},hasShadow:{type:Boolean,default:!1},status:{type:String,default:""},testMode:{type:Boolean,default:!1}},data(){return{titleId:this.testMode?"test-title-id-1234":Y.v1(),contentId:this.testMode?"test-content-id-1234":Y.v1()}}},Z=Q;r("9014");function tt(t,e,r,n,a,o,i,s){var d,c="function"===typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=r,c._compiled=!0),n&&(c.functional=!0),o&&(c._scopeId="data-v-"+o),i?(d=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),a&&a.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(i)},c._ssrRegister=d):a&&(d=s?function(){a.call(this,this.$root.$options.shadowRoot)}:a),d)if(c.functional){c._injectStyles=d;var u=c.render;c.render=function(t,e){return d.call(e),u(t,e)}}else{var l=c.beforeCreate;c.beforeCreate=l?[].concat(l,d):[d]}return{exports:t,options:c}}var et=tt(Z,o,i,!1,null,"16bad2a4",null),rt=et.exports;e["default"]=rt},4141:function(t,e){(function(t){var e="currentScript",r=t.getElementsByTagName("script");e in t||Object.defineProperty(t,e,{get:function(){try{throw new Error}catch(n){var t,e=(/.*at [^\(]*\((.*):.+:.+\)$/gi.exec(n.stack)||[!1])[1];for(t in r)if(r[t].src==e||"interactive"==r[t].readyState)return r[t];return null}}})})(document)},"443a":function(t,e){function r(t,e){var r=t[1]||"",a=t[3];if(!a)return r;if(e&&"function"===typeof btoa){var o=n(a),i=a.sources.map((function(t){return"/*# sourceURL="+a.sourceRoot+t+" */"}));return[r].concat(i).concat([o]).join("\n")}return[r].join("\n")}function n(t){var e=btoa(unescape(encodeURIComponent(JSON.stringify(t)))),r="sourceMappingURL=data:application/json;charset=utf-8;base64,"+e;return"/*# "+r+" */"}t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var n=r(e,t);return e[2]?"@media "+e[2]+"{"+n+"}":n})).join("")},e.i=function(t,r){"string"===typeof t&&(t=[[null,t,""]]);for(var n={},a=0;a<this.length;a++){var o=this[a][0];"number"===typeof o&&(n[o]=!0)}for(a=0;a<t.length;a++){var i=t[a];"number"===typeof i[0]&&n[i[0]]||(r&&!i[2]?i[2]=r:r&&(i[2]="("+i[2]+") and ("+r+")"),e.push(i))}},e}},"70b4":function(t,e,r){e=t.exports=r("443a")(!1),e.push([t.i,".kong-card[data-v-16bad2a4]{padding:var(--spacing-lg) var(--spacing-lg);padding:var(--KCardPaddingY,var(--spacing-lg)) var(--KCardPaddingX,var(--spacing-lg));border-radius:3px;border-radius:var(--KCardBorderRadius,3px);background-color:#fff;background-color:var(--KCardBackground,var(--white,#fff))}.kong-card.noBorder[data-v-16bad2a4]{border:none}.kong-card.border[data-v-16bad2a4]{border:1px solid rgba(0,0,0,.1);border:var(--KCardBorder,1px solid var(--black-10,rgba(0,0,0,.1)));box-shadow:none}.kong-card.borderTop[data-v-16bad2a4]{border-top:1px solid rgba(0,0,0,.1);border-top:var(--KCardBorder,1px solid var(--black-10,rgba(0,0,0,.1)))}.kong-card.hover[data-v-16bad2a4]:hover,.kong-card.kcard-shadow[data-v-16bad2a4]{box-shadow:0 4px 8px rgba(0,0,0,.1);box-shadow:var(--KCardShadow,0 4px 8px var(--black-10,rgba(0,0,0,.1)))}.kong-card .k-card-header[data-v-16bad2a4]{align-items:center;min-height:38px}.kong-card .k-card-header.has-status[data-v-16bad2a4]{align-items:flex-start}.kong-card .k-card-header .k-button[data-v-16bad2a4]{min-height:38px}.kong-card .k-card-status-hat[data-v-16bad2a4]{font-size:var(--type-xs);color:var(--grey-600);display:flex;align-items:center}.kong-card .k-card-title h4[data-v-16bad2a4]{margin:0;font-size:20px;font-size:var(--KCardTitleFontSize,20px);font-weight:500;color:var(--black-500);color:var(--KCardTitleColor,var(--black-500))}.kong-card .k-card-actions[data-v-16bad2a4]{margin-left:auto}.kong-card .k-card-body[data-v-16bad2a4]{font-size:13px;line-height:20px;color:var(--grey-600);width:100%}.kong-card .k-card-notifications[data-v-16bad2a4]{margin-left:auto;margin-top:auto}",""])},9014:function(t,e,r){"use strict";var n=r("f4dd"),a=r.n(n);a.a},f4dd:function(t,e,r){var n=r("70b4");"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var a=r("0ed3").default;a("b5850cb8",n,!0,{sourceMap:!1,shadowMode:!1})}})["default"]})); | ||
//# sourceMappingURL=KCard.umd.min.js.map |
{ | ||
"name": "@kongponents/kcard", | ||
"version": "6.0.0-beta.0+44b849e", | ||
"version": "6.0.1-alpha.0+4ed6893", | ||
"description": "Card component", | ||
@@ -25,3 +25,3 @@ "main": "dist/KCard.umd.min.js", | ||
}, | ||
"gitHead": "44b849eaf8cca5a0e734dacb33f42ed9d7846c6b" | ||
"gitHead": "4ed6893d52e7771461ccc24bba389e5e5434fdce" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
329121
2508