Socket
Socket
Sign inDemoInstall

@kongponents/kicon

Package Overview
Dependencies
Maintainers
4
Versions
313
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kongponents/kicon - npm Package Compare versions

Comparing version 0.3.3 to 0.3.4

LICENSE

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [0.3.4](https://github.com/Kong/kongponents/compare/@kongponents/kicon@0.3.3...@kongponents/kicon@0.3.4) (2019-11-11)
**Note:** Version bump only for package @kongponents/kicon
## [0.3.3](https://github.com/Kong/kongponents/compare/@kongponents/kicon@0.3.2...@kongponents/kicon@0.3.3) (2019-11-08)

@@ -8,0 +16,0 @@

463

dist/KIcon.common.js

@@ -91,12 +91,275 @@ module.exports =

/***/ "0a69":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-external-link.51a59a8b.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\">\n <path fill=\"#000\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M8.24308 1.5C7.83269 1.5 7.5 1.16710138 7.5.75c0-.41421356.33823-.75.74308-.75h3.00568C11.6666 0 12 .336341 12 .75123866v3.00567786C12 4.1673102 11.6671 4.5 11.25 4.5c-.41421 0-.75-.3382314-.75-.74308348V2.625L6.53246 6.59254c-.28982.2898217-.76955.2953689-1.06202.0029022l-.06588-.0658844c-.29098-.2909742-.29117-.7679483.0029-1.0620178L9.375 1.5H8.24308zm-6.74753 0C.67089 1.5 0 2.1695784 0 2.99554521v7.50890959C0 11.3291147.66958 12 1.49555 12h7.5089C9.82911 12 10.5 11.3304216 10.5 10.5044548V6.75H9v3.75H1.5V3h3.75V1.5H1.49555z\"/>\n</svg>\n"
/***/ }),
/***/ "0ed3":
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-style-loader/lib/listToStyles.js
/**
* Translates the list format produced by css-loader into something
* easier to manipulate.
*/
function listToStyles (parentId, list) {
var styles = []
var newStyles = {}
for (var i = 0; i < list.length; i++) {
var item = list[i]
var id = item[0]
var css = item[1]
var media = item[2]
var sourceMap = item[3]
var part = {
id: parentId + ':' + i,
css: css,
media: media,
sourceMap: sourceMap
}
if (!newStyles[id]) {
styles.push(newStyles[id] = { id: id, parts: [part] })
} else {
newStyles[id].parts.push(part)
}
}
return styles
}
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-style-loader/lib/addStylesClient.js
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return addStylesClient; });
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
Modified by Evan You @yyx990803
*/
var hasDocument = typeof document !== 'undefined'
if (typeof DEBUG !== 'undefined' && DEBUG) {
if (!hasDocument) {
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."
) }
}
/*
type StyleObject = {
id: number;
parts: Array<StyleObjectPart>
}
type StyleObjectPart = {
css: string;
media: string;
sourceMap: ?string
}
*/
var stylesInDom = {/*
[id: number]: {
id: number,
refs: number,
parts: Array<(obj?: StyleObjectPart) => void>
}
*/}
var head = hasDocument && (document.head || document.getElementsByTagName('head')[0])
var singletonElement = null
var singletonCounter = 0
var isProduction = false
var noop = function () {}
var options = null
var ssrIdKey = 'data-vue-ssr-id'
// Force single-tag solution on IE6-9, which has a hard limit on the # of <style>
// tags it will allow on a page
var isOldIE = typeof navigator !== 'undefined' && /msie [6-9]\b/.test(navigator.userAgent.toLowerCase())
function addStylesClient (parentId, list, _isProduction, _options) {
isProduction = _isProduction
options = _options || {}
var styles = listToStyles(parentId, list)
addStylesToDom(styles)
return function update (newList) {
var mayRemove = []
for (var i = 0; i < styles.length; i++) {
var item = styles[i]
var domStyle = stylesInDom[item.id]
domStyle.refs--
mayRemove.push(domStyle)
}
if (newList) {
styles = listToStyles(parentId, newList)
addStylesToDom(styles)
} else {
styles = []
}
for (var i = 0; i < mayRemove.length; i++) {
var domStyle = mayRemove[i]
if (domStyle.refs === 0) {
for (var j = 0; j < domStyle.parts.length; j++) {
domStyle.parts[j]()
}
delete stylesInDom[domStyle.id]
}
}
}
}
function addStylesToDom (styles /* Array<StyleObject> */) {
for (var i = 0; i < styles.length; i++) {
var item = styles[i]
var domStyle = stylesInDom[item.id]
if (domStyle) {
domStyle.refs++
for (var j = 0; j < domStyle.parts.length; j++) {
domStyle.parts[j](item.parts[j])
}
for (; j < item.parts.length; j++) {
domStyle.parts.push(addStyle(item.parts[j]))
}
if (domStyle.parts.length > item.parts.length) {
domStyle.parts.length = item.parts.length
}
} else {
var parts = []
for (var j = 0; j < item.parts.length; j++) {
parts.push(addStyle(item.parts[j]))
}
stylesInDom[item.id] = { id: item.id, refs: 1, parts: parts }
}
}
}
function createStyleElement () {
var styleElement = document.createElement('style')
styleElement.type = 'text/css'
head.appendChild(styleElement)
return styleElement
}
function addStyle (obj /* StyleObjectPart */) {
var update, remove
var styleElement = document.querySelector('style[' + ssrIdKey + '~="' + obj.id + '"]')
if (styleElement) {
if (isProduction) {
// has SSR styles and in production mode.
// simply do nothing.
return noop
} else {
// has SSR styles but in dev mode.
// for some reason Chrome can't handle source map in server-rendered
// style tags - source maps in <style> only works if the style tag is
// created and inserted dynamically. So we remove the server rendered
// styles and inject new ones.
styleElement.parentNode.removeChild(styleElement)
}
}
if (isOldIE) {
// use singleton mode for IE9.
var styleIndex = singletonCounter++
styleElement = singletonElement || (singletonElement = createStyleElement())
update = applyToSingletonTag.bind(null, styleElement, styleIndex, false)
remove = applyToSingletonTag.bind(null, styleElement, styleIndex, true)
} else {
// use multi-style-tag mode in all other cases
styleElement = createStyleElement()
update = applyToTag.bind(null, styleElement)
remove = function () {
styleElement.parentNode.removeChild(styleElement)
}
}
update(obj)
return function updateStyle (newObj /* StyleObjectPart */) {
if (newObj) {
if (newObj.css === obj.css &&
newObj.media === obj.media &&
newObj.sourceMap === obj.sourceMap) {
return
}
update(obj = newObj)
} else {
remove()
}
}
}
var replaceText = (function () {
var textStore = []
return function (index, replacement) {
textStore[index] = replacement
return textStore.filter(Boolean).join('\n')
}
})()
function applyToSingletonTag (styleElement, index, remove, obj) {
var css = remove ? '' : obj.css
if (styleElement.styleSheet) {
styleElement.styleSheet.cssText = replaceText(index, css)
} else {
var cssNode = document.createTextNode(css)
var childNodes = styleElement.childNodes
if (childNodes[index]) styleElement.removeChild(childNodes[index])
if (childNodes.length) {
styleElement.insertBefore(cssNode, childNodes[index])
} else {
styleElement.appendChild(cssNode)
}
}
}
function applyToTag (styleElement, obj) {
var css = obj.css
var media = obj.media
var sourceMap = obj.sourceMap
if (media) {
styleElement.setAttribute('media', media)
}
if (options.ssrId) {
styleElement.setAttribute(ssrIdKey, obj.id)
}
if (sourceMap) {
// https://developer.chrome.com/devtools/docs/javascript-debugging
// this makes source maps inside style tags work properly in Chrome
css += '\n/*# sourceURL=' + sourceMap.sources[0] + ' */'
// http://stackoverflow.com/a/26603875
css += '\n/*# sourceMappingURL=data:application/json;base64,' + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + ' */'
}
if (styleElement.styleSheet) {
styleElement.styleSheet.cssText = css
} else {
while (styleElement.firstChild) {
styleElement.removeChild(styleElement.firstChild)
}
styleElement.appendChild(document.createTextNode(css))
}
}
/***/ }),
/***/ "1000":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-danger-circle.8810965d.svg";
module.exports = "<svg width=\"16\" height=\"16\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"#BFBFBF\" d=\"M0,8a8,8 0 1,0 16,0a8,8 0 1,0 -16,0\" /><path id=\"preserveColor\" d=\"M9 11v2H7v-2h2zm0-8v6.5H7V3h2z\" fill=\"#FFF\"/></svg>"

@@ -106,5 +369,5 @@ /***/ }),

/***/ "14d0":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-warning.092722a3.svg";
module.exports = "<svg width=\"16\" height=\"16\" xmlns=\"http://www.w3.org/2000/svg\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M7.926.621a1.24 1.24 0 0 1 2.148 0l7.763 13.535A1.235 1.235 0 0 1 16.763 16H1.237a1.23 1.23 0 0 1-1.074-1.844L7.926.621z\" fill=\"#BFBFBF\"/><path id=\"preserveColor\" d=\"M10 11v2H8v-2h2zm0-7v5.5H8V4h2z\" fill-opacity=\".9\" fill=\"#000\"/></g></svg>"

@@ -114,5 +377,5 @@ /***/ }),

/***/ "163a":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-trash.ccd3a38d.svg";
module.exports = "<svg width=\"14\" height=\"16\" viewBox=\"0 0 14 16\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M3 3V2c0-1.1045695.8954305-2 2-2h4c1.1045695 0 2 .8954305 2 2v1h2c.5522847 0 1 .4477153 1 1v1H0V4c0-.5522847.4477152-1 1-1h2zm2 0V2h4v1H5zM1 6h2v8h8V6h2v8c0 1.1045695-.8954305 2-2 2H3c-1.1045695 0-2-.8954305-2-2V6zm5 0v7c-.5522847 0-1-.4477153-1-1V7c0-.5522847.4477153-1 1-1zm2 0c.5522847 0 1 .4477153 1 1v5c0 .5522847-.4477153 1-1 1V6z\" fill=\"#BFBFBF\" fill-rule=\"evenodd\"/>\n</svg>\n"

@@ -144,3 +407,3 @@ /***/ }),

// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"66dbeb93-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!./KIcon.vue?vue&type=template&id=1fc417ac&scoped=true&
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3928de52-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!./KIcon.vue?vue&type=template&id=1fc417ac&scoped=true&
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.isSSR)?_c('svg',{staticClass:"kong-icon",class:("kong-icon-" + _vm.icon),attrs:{"height":_vm.setSize || _vm.height,"width":_vm.setSize || _vm.width,"viewBox":_vm.viewbox,"role":"img"}},[_c('title',[_vm._v(_vm._s(_vm.icon))]),_c('g',_vm._l((_vm.paths),function(path,idx){return _c('path',_vm._b({key:path.d},'path',_vm.attributes[idx],false))}),0)]):_vm._e()}

@@ -541,6 +804,21 @@ var staticRenderFns = []

/***/ "26c6":
/***/ (function(module, exports) {
module.exports = "<svg width=\"32\" height=\"32\" viewBox=\"-4 -4 32 32\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zm0 2v6h6V2H2zm0 10h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2zm0 2v6h6v-6H2zM14 0h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-6a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zm0 2v6h6V2h-6zm1 10l5 5-5 5V12z\" fill=\"#A3BBCC\" fill-rule=\"evenodd\"/>\n</svg>\n"
/***/ }),
/***/ "30a7":
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__.p + "img/icn-collapse-workspaces.b7552183.svg";
exports = module.exports = __webpack_require__("443a")(false);
// imports
// module
exports.push([module.i, ".kong-icon.kong-icon-spinner g[data-v-1fc417ac]{transform-box:fill-box;transform-origin:50% 50%;animation:spin-data-v-1fc417ac 1.2s linear infinite}@keyframes spin-data-v-1fc417ac{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}", ""]);
// exports
/***/ }),

@@ -591,13 +869,89 @@

/***/ "43f6":
/***/ (function(module, exports, __webpack_require__) {
/***/ "443a":
/***/ (function(module, exports) {
// extracted by mini-css-extract-plugin
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
// css base code, injected by the css-loader
module.exports = function(useSourceMap) {
var list = [];
// return the list of modules as css string
list.toString = function toString() {
return this.map(function (item) {
var content = cssWithMappingToString(item, useSourceMap);
if(item[2]) {
return "@media " + item[2] + "{" + content + "}";
} else {
return content;
}
}).join("");
};
// import a list of modules into the list
list.i = function(modules, mediaQuery) {
if(typeof modules === "string")
modules = [[null, modules, ""]];
var alreadyImportedModules = {};
for(var i = 0; i < this.length; i++) {
var id = this[i][0];
if(typeof id === "number")
alreadyImportedModules[id] = true;
}
for(i = 0; i < modules.length; i++) {
var item = modules[i];
// skip already imported module
// this implementation is not 100% perfect for weird media query combinations
// when a module is imported multiple times with different media queries.
// I hope this will never occur (Hey this way we have smaller bundles)
if(typeof item[0] !== "number" || !alreadyImportedModules[item[0]]) {
if(mediaQuery && !item[2]) {
item[2] = mediaQuery;
} else if(mediaQuery) {
item[2] = "(" + item[2] + ") and (" + mediaQuery + ")";
}
list.push(item);
}
}
};
return list;
};
function cssWithMappingToString(item, useSourceMap) {
var content = item[1] || '';
var cssMapping = item[3];
if (!cssMapping) {
return content;
}
if (useSourceMap && typeof btoa === 'function') {
var sourceMapping = toComment(cssMapping);
var sourceURLs = cssMapping.sources.map(function (source) {
return '/*# sourceURL=' + cssMapping.sourceRoot + source + ' */'
});
return [content].concat(sourceURLs).concat([sourceMapping]).join('\n');
}
return [content].join('\n');
}
// Adapted from convert-source-map (MIT)
function toComment(sourceMap) {
// eslint-disable-next-line no-undef
var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));
var data = 'sourceMappingURL=data:application/json;charset=utf-8;base64,' + base64;
return '/*# ' + data + ' */';
}
/***/ }),
/***/ "4c9a":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-lock.b455c04e.svg";
module.exports = "<svg width=\"12\" height=\"16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6 0c2.76142375 0 5 2.23857625 5 5v3h.5c.2761424 0 .5.22385763.5.5v7c0 .2761424-.2238576.5-.5.5H.5c-.27614237 0-.5-.2238576-.5-.5v-7c0-.27614237.22385763-.5.5-.5H1V5c0-2.76142375 2.23857625-5 5-5zm.5 11h-1c-.27614237 0-.5.2238576-.5.5v1c0 .2761424.22385763.5.5.5h1c.27614237 0 .5-.2238576.5-.5v-1c0-.2761424-.22385763-.5-.5-.5zM6 2C4.34314575 2 3 3.34314575 3 5v3h6V5c0-1.65685425-1.34314575-3-3-3z\" fill=\"#000\" fill-rule=\"evenodd\" fill-opacity=\".45\"/></svg>\n"

@@ -610,6 +964,6 @@ /***/ }),

"use strict";
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_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_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("43f6");
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_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_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_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_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);
/* 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_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("9986");
/* 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_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_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_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);
/* unused harmony reexport * */
/* unused harmony default export */ var _unused_webpack_default_export = (_node_modules_mini_css_extract_plugin_dist_loader_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_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a);
/* 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_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a);

@@ -619,5 +973,5 @@ /***/ }),

/***/ "58de":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-feature-request.49c50717.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"14\">\n <path fill=\"#BFBFBF\" fill-rule=\"nonzero\" d=\"M7 11l-3 3v-3H2c-1.1045695 0-2-.895431-2-2V2C0 .895431.8954305 0 2 0h12c1.1045695 0 2 .895431 2 2v7c0 1.104569-.8954305 2-2 2H7zM2 2v7h12V2H2z\"/>\n</svg>\n"

@@ -627,5 +981,5 @@ /***/ }),

/***/ "5b0a":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-back.f9780075.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"8\">\n <path fill=\"#000\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M16 5H5v3L0 4l3.371-2.697L5 0v3h11z\"/>\n</svg>\n"

@@ -635,5 +989,5 @@ /***/ }),

/***/ "5b1f":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-security.6542c60b.svg";
module.exports = "<svg width=\"32\" height=\"32\" viewBox=\"-6 -4 32 32\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M10 24C5.39 22.156.994 19.54.147 14h2.02c.643 3.577 3.15 5.847 7.832 7.837 4.576-1.955 7.15-4.307 7.822-7.837h2.026c-.869 5.45-5.3 8.181-9.847 10zM20 8h-2V5.862c-2.704-.373-5.375-1.501-8-3.359-2.625 1.858-5.296 2.986-8 3.36V8H0V4c3.333 0 6.667-1.333 10-4 3.333 2.667 6.667 4 10 4v4zM0 10h20v2H0v-2z\" fill=\"#A3BBCC\" fill-rule=\"nonzero\"/>\n</svg>\n"

@@ -643,5 +997,5 @@ /***/ }),

/***/ "721d":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-close.821ef9ef.svg";
module.exports = "<svg width=\"12\" height=\"12\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"#000\" d=\"M0 1l1-1h.5L6 4.49993896 10.5 0h.5l1 1v.5L7.5 6l4.5 4.5v.5l-1 1h-.5L6 7.5 1.5 12H1l-1-1v-.5L4.5 6 0 1.5z\" fill-rule=\"evenodd\" fill-opacity=\".25\" /></svg>\n"

@@ -651,5 +1005,5 @@ /***/ }),

/***/ "81e7":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-search.ee0e8d3f.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"14\" height=\"14\">\n <path fill=\"#B9BABB\" fill-rule=\"evenodd\" d=\"M9.1237341 11.1237341C8.2138377 11.6796483 7.1443299 12 6 12c-3.3137085 0-6-2.6862915-6-6s2.6862915-6 6-6 6 2.6862915 6 6c0 1.1443299-.3203517 2.2138377-.8762659 3.1237341L13.5 11.5c.577204.577204.5829926 1.4170074 0 2-.5781647.5781647-1.4256897.5743103-2 0l-2.3762659-2.3762659zM6 10c2.209139 0 4-1.790861 4-4S8.209139 2 6 2 2 3.790861 2 6s1.790861 4 4 4z\"/>\n</svg>\n"

@@ -659,5 +1013,5 @@ /***/ }),

/***/ "83a6":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-collapse-expand.ac1c5e1d.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16px\" height=\"16px\" viewBox=\"0 0 16 16\">\n <path fill=\"#A3BBCC\" fill-rule=\"evenodd\" d=\"M0 0h2v16H0V0zm16 7v2H9v3L4 8l5-4v3h7z\"/>\n</svg>\n"

@@ -667,5 +1021,5 @@ /***/ }),

/***/ "8780":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-workspaces.fa24cf20.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16px\" height=\"16px\" viewBox=\"0 0 16 16\">\n <path fill=\"#A3BBCC\" fill-rule=\"evenodd\" d=\"M1 0h5c.55228 0 1 .44772 1 1v5c0 .55228-.44772 1-1 1H1c-.55228 0-1-.44772-1-1V1c0-.55228.44772-1 1-1zm1 2v3h3V2H2zM1 9h5c.55228 0 1 .44772 1 1v5c0 .55228-.44772 1-1 1H1c-.55228 0-1-.44772-1-1v-5c0-.55228.44772-1 1-1zm1 2v3h3v-3H2zm8-11h5c.55228 0 1 .44772 1 1v5c0 .55228-.44772 1-1 1h-5c-.55228 0-1-.44772-1-1V1c0-.55228.44772-1 1-1zm1 2v3h3V2h-3zm-1 7h5c.55228 0 1 .44772 1 1v5c0 .55228-.44772 1-1 1h-5c-.55228 0-1-.44772-1-1v-5c0-.55228.44772-1 1-1zm1 2v3h3v-3h-3z\"/>\n</svg>\n"

@@ -675,12 +1029,27 @@ /***/ }),

/***/ "8ee5":
/***/ (function(module, exports) {
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\">\n <g fill=\"#FFF\" fill-rule=\"evenodd\">\n <path fill=\"#fff\" d=\"M13.3154759 4.60336552c.6394482-.63889655.6394482-1.67503449 0-2.31393104-.6388966-.63889655-1.6744828-.63889655-2.3133793 0-.6394483.63889655-.6394483 1.67503449 0 2.31393104.6388965.63889655 1.6744827.63889655 2.3133793 0\" opacity=\".1\"/>\n <path fill=\"#fff\" d=\"M13.9609931 6.17246897c-.9037241 0-1.6364138.73268965-1.6364138 1.63641379 0 .90317241.7326897 1.63586207 1.6364138 1.63586207.9037241 0 1.6358621-.73268966 1.6358621-1.63586207 0-.90372414-.732138-1.63641379-1.6358621-1.63641379\" opacity=\".25\"/>\n <path fill=\"#fff\" d=\"M10.9938207 11.0105379c-.6388966.6388966-.6388966 1.6750345 0 2.3139311.6388965.6388965 1.6750345.6388965 2.313931 0 .6388966-.6388966.6388966-1.6750345 0-2.3139311-.6388965-.6388965-1.6750345-.6388965-2.313931 0\" opacity=\".35\"/>\n <path fill=\"#fff\" d=\"M7.79988966 12.3247448c-.90372414 0-1.63586207.7326897-1.63586207 1.6364138 0 .9031724.73213793 1.6358621 1.63586207 1.6358621.90372413 0 1.63641379-.7326897 1.63641379-1.6358621 0-.9037241-.73268966-1.6364138-1.63641379-1.6364138\" opacity=\".5\"/>\n <path fill=\"#fff\" d=\"M2.28706207 11.004469c-.63889655.6388965-.63889655 1.6750344 0 2.313931.63889655.6388966 1.67503448.6388966 2.31393103 0 .63889656-.6388966.63889656-1.6750345 0-2.313931-.63889655-.6388966-1.67503448-.6388966-2.31393103 0\" opacity=\".65\"/>\n <path fill=\"#fff\" d=\"M3.27244138 7.80888276c0-.90372414-.73268966-1.63641379-1.63641379-1.63641379-.90372414 0-1.63586207.73268965-1.63586207 1.63641379 0 .90317241.73213793 1.63586207 1.63586207 1.63586207.90372413 0 1.63641379-.73268966 1.63641379-1.63586207\" opacity=\".75\"/>\n <path fill=\"#fff\" d=\"M4.59271724 4.60943448c.63889655-.63889655.63889655-1.67503448 0-2.31393103-.63889655-.63889655-1.67503448-.63889655-2.31393103 0-.63889655.63889655-.63889655 1.67503448 0 2.31393103.63889655.63889655 1.67503448.63889655 2.31393103 0\" opacity=\".85\"/>\n <path fill=\"#fff\" d=\"M6.16402759 1.6361931c0 .90372414.73213793 1.6364138 1.63586207 1.6364138.90372413 0 1.63641379-.73268966 1.63641379-1.6364138 0-.90372413-.73268966-1.63641379-1.63641379-1.63641379-.90372414 0-1.63586207.73268966-1.63586207 1.63641379z\" opacity=\".95\"/>\n </g>\n</svg>\n"
/***/ }),
/***/ "9986":
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__.p + "img/icn-spinner.d1674df1.svg";
// style-loader: Adds some css to the DOM by adding a <style> tag
// load the styles
var content = __webpack_require__("30a7");
if(typeof content === 'string') content = [[module.i, content, '']];
if(content.locals) module.exports = content.locals;
// add the styles to the DOM
var add = __webpack_require__("0ed3").default
var update = add("3fbed258", content, true, {"sourceMap":false,"shadowMode":false});
/***/ }),
/***/ "9fef":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-gateway.8ff6c611.svg";
module.exports = "<svg width=\"32\" height=\"32\" viewBox=\"-4 -4 32 32\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M14 0h-4a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 2v20h-4V2h4zm6 0v2h-3v2h3v2l4-3-4-3zm0 14v2h-3v2h3v2l4-3-4-3zM7 11H4V9l-4 3 4 3v-2h3v-2zm0-7H3v2h4V4zm0 14H3v2h4v-2zm-5 0H0v2h2v-2zm19-7h-4v2h4v-2zm3 0h-2v2h2v-2zM2 4H0v2h2V4z\" fill=\"#A3BBCC\" fill-rule=\"evenodd\"/>\n</svg>\n"

@@ -690,5 +1059,5 @@ /***/ }),

/***/ "b111":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-gear.befbcd1b.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\">\n <path fill=\"#000\" fill-opacity=\".55\" fill-rule=\"evenodd\" d=\"M11.4765344 3.1092521l1.4732131-1.4732131 1.4142135 1.4142135-1.4732131 1.4732131c.514815.7229326.8733467 1.5648778 1.0262937 2.4765344H16v2h-2.0829584c-.152947.9116566-.5114787 1.7536018-1.0262937 2.4765344l1.4732131 1.4732131-1.4142135 1.4142135-1.4732131-1.4732131c-.7229326.514815-1.5648778.8733467-2.4765344 1.0262937V16H7v-2.0829584c-.9116566-.152947-1.7536018-.5114787-2.4765344-1.0262937L3.0502525 14.363961 1.636039 12.9497475l1.4732131-1.4732131C2.5944371 10.7536018 2.2359054 9.9116566 2.0829584 9H0V7h2.0829584c.152947-.9116566.5114787-1.7536018 1.0262937-2.4765344L1.636039 3.0502525 3.0502525 1.636039l1.4732131 1.4732131C5.2463982 2.5944371 6.0883434 2.2359054 7 2.0829584V0h2v2.0829584c.9116566.152947 1.7536018.5114787 2.4765344 1.0262937zM8 12c2.209139 0 4-1.790861 4-4s-1.790861-4-4-4-4 1.790861-4 4 1.790861 4 4 4z\" opacity=\".5\"/>\n</svg>\n"

@@ -698,5 +1067,5 @@ /***/ }),

/***/ "b17e":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-dashboard.54ac56fa.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"21\">\n <path fill=\"#A4BBCB\" fill-rule=\"nonzero\" d=\"M13 10l3-3c.6902336-.73713266 1.4429032-1.26058218 2-1 .2605822.55709682-.2628673 1.30976636-1 2l-3 3c.1531248.4707586.1875961.6844547 0 1 .1875961 1.0625747-.7498292 2-2 2-1.0625747 0-2-.9374253-2-2 0-1.2501708.9374253-2.1875961 2-2 .3155453-.1875961.5292414-.1531248 1 0zm8 10c-.08276.0634515-.7131836.1223062-1 0-.5634515-.58276-.6223062-1.2131836 0-2 1.1963422-1.4063656 2-3.6213758 2-6 0-5.5228475-4.4771525-10-10-10S2 6.4771525 2 12c0 2.3848064.80099865 4.5939865 2 6 .62209487.7857069.56386353 1.4161884 0 2-.28570688.1220949-.91618845.0638635-1 0-2.03512593-2.4863139-3-5.1474677-3-8C0 5.372583 5.372583 0 12 0s12 5.372583 12 12c0 2.8461786-.967377 5.5124254-3 8zM9 16h6c.5522847 0 1 .4477153 1 1s-.4477153 1-1 1H9c-.55228475 0-1-.4477153-1-1s.44771525-1 1-1z\"/>\n</svg>\n"

@@ -706,5 +1075,5 @@ /***/ }),

/***/ "b569":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-vitals.f38cf7e4.svg";
module.exports = "<svg width=\"32\" height=\"32\" viewBox=\"-4 -4 32 32\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M19.593 5.493l-2.842 2.842A6.002 6.002 0 0 1 13 17.917l-.001 4.034c5.053-.502 9-4.766 9-9.951a9.96 9.96 0 0 0-2.407-6.507zM18.146 4.11A9.95 9.95 0 0 0 13 2.05v4.034c.83.14 1.604.45 2.281.893l2.865-2.865zM2.05 13A10.003 10.003 0 0 0 11 21.95v-4.033A6.005 6.005 0 0 1 6.083 13H2.049zm0-2h4.034A6.005 6.005 0 0 1 11 6.083V2.049A10.003 10.003 0 0 0 2.05 11zM12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12zm0-8a4 4 0 1 0 0-8 4 4 0 0 0 0 8z\" fill=\"#A3BBCC\" fill-rule=\"evenodd\"/>\n</svg>\n"

@@ -714,5 +1083,5 @@ /***/ }),

/***/ "c9fa":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-support.e0aa6f3b.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\">\n <path fill=\"#BFBFBF\" fill-rule=\"evenodd\" d=\"M3 12v1c0 .5522847.4477153 1 1 1h4c.5522847 0 1 .4477153 1 1s-.4477153 1-1 1H4c-1.6568542 0-3-1.3431458-3-3v-1c-.5522847 0-1-.4477153-1-1V7c0-.5522847.4477153-1 1-1h.0708889C1.5561185 2.6077059 4.4735281 0 8 0s6.4438815 2.6077059 6.9291111 6H15c.5522847 0 1 .4477153 1 1v4c0 .5522847-.4477153 1-1 1h-2c-.5522847 0-1-.4477153-1-1V7c0-.5188639.3951689-.9454312.9009623-.9951576C12.439565 3.7201899 10.4206685 2 8 2 5.5793315 2 3.560435 3.7201899 3.0990377 6.0048424 3.6048311 6.0545688 4 6.4811361 4 7v4c0 .5522847-.4477153 1-1 1z\"/>\n</svg>\n"

@@ -722,5 +1091,5 @@ /***/ }),

/***/ "ee98":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-dev-portal.7ebc94e9.svg";
module.exports = "<svg width=\"32\" height=\"32\" viewBox=\"-5 -4 32 32\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 24h18a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2zm0-2V2h18v20H2zm3-7h12v-2H5v2zm0-4h5V9H5v2zm7 0h5V9h-5v2zM5 7h12V5H5v2zm0 12h5v-2H5v2zm7 0h5v-2h-5v2z\" fill=\"#A3BBCC\" fill-rule=\"evenodd\"/>\n</svg>\n"

@@ -730,5 +1099,5 @@ /***/ }),

/***/ "f31f":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-info.0b2980e7.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\">\n <path fill=\"#FFF\" fill-rule=\"evenodd\" d=\"M16 8c0-4.418278-3.58172-8-8-8S0 3.581722 0 8s3.58172 8 8 8 8-3.581722 8-8zm-1.5 0c0 3.5898509-2.91015 6.5-6.5 6.5S1.5 11.5898509 1.5 8 4.41015 1.5 8 1.5s6.5 2.9101491 6.5 6.5zM6 12h4v-1H9V7H6v1h1v3H6v1zm1-6.5046844C7 5.7740451 7.21404 6 7.50468 6h.99064C8.77405 6 9 5.785965 9 5.4953156v-.9906312C9 4.2259549 8.78596 4 8.49532 4h-.99064C7.22595 4 7 4.214035 7 4.5046844v.9906312z\" opacity=\".60000002\"/>\n</svg>\n"

@@ -735,0 +1104,0 @@ /***/ })

@@ -100,12 +100,275 @@ (function webpackUniversalModuleDefinition(root, factory) {

/***/ "0a69":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-external-link.51a59a8b.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\">\n <path fill=\"#000\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M8.24308 1.5C7.83269 1.5 7.5 1.16710138 7.5.75c0-.41421356.33823-.75.74308-.75h3.00568C11.6666 0 12 .336341 12 .75123866v3.00567786C12 4.1673102 11.6671 4.5 11.25 4.5c-.41421 0-.75-.3382314-.75-.74308348V2.625L6.53246 6.59254c-.28982.2898217-.76955.2953689-1.06202.0029022l-.06588-.0658844c-.29098-.2909742-.29117-.7679483.0029-1.0620178L9.375 1.5H8.24308zm-6.74753 0C.67089 1.5 0 2.1695784 0 2.99554521v7.50890959C0 11.3291147.66958 12 1.49555 12h7.5089C9.82911 12 10.5 11.3304216 10.5 10.5044548V6.75H9v3.75H1.5V3h3.75V1.5H1.49555z\"/>\n</svg>\n"
/***/ }),
/***/ "0ed3":
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-style-loader/lib/listToStyles.js
/**
* Translates the list format produced by css-loader into something
* easier to manipulate.
*/
function listToStyles (parentId, list) {
var styles = []
var newStyles = {}
for (var i = 0; i < list.length; i++) {
var item = list[i]
var id = item[0]
var css = item[1]
var media = item[2]
var sourceMap = item[3]
var part = {
id: parentId + ':' + i,
css: css,
media: media,
sourceMap: sourceMap
}
if (!newStyles[id]) {
styles.push(newStyles[id] = { id: id, parts: [part] })
} else {
newStyles[id].parts.push(part)
}
}
return styles
}
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/vue-style-loader/lib/addStylesClient.js
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return addStylesClient; });
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
Modified by Evan You @yyx990803
*/
var hasDocument = typeof document !== 'undefined'
if (typeof DEBUG !== 'undefined' && DEBUG) {
if (!hasDocument) {
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."
) }
}
/*
type StyleObject = {
id: number;
parts: Array<StyleObjectPart>
}
type StyleObjectPart = {
css: string;
media: string;
sourceMap: ?string
}
*/
var stylesInDom = {/*
[id: number]: {
id: number,
refs: number,
parts: Array<(obj?: StyleObjectPart) => void>
}
*/}
var head = hasDocument && (document.head || document.getElementsByTagName('head')[0])
var singletonElement = null
var singletonCounter = 0
var isProduction = false
var noop = function () {}
var options = null
var ssrIdKey = 'data-vue-ssr-id'
// Force single-tag solution on IE6-9, which has a hard limit on the # of <style>
// tags it will allow on a page
var isOldIE = typeof navigator !== 'undefined' && /msie [6-9]\b/.test(navigator.userAgent.toLowerCase())
function addStylesClient (parentId, list, _isProduction, _options) {
isProduction = _isProduction
options = _options || {}
var styles = listToStyles(parentId, list)
addStylesToDom(styles)
return function update (newList) {
var mayRemove = []
for (var i = 0; i < styles.length; i++) {
var item = styles[i]
var domStyle = stylesInDom[item.id]
domStyle.refs--
mayRemove.push(domStyle)
}
if (newList) {
styles = listToStyles(parentId, newList)
addStylesToDom(styles)
} else {
styles = []
}
for (var i = 0; i < mayRemove.length; i++) {
var domStyle = mayRemove[i]
if (domStyle.refs === 0) {
for (var j = 0; j < domStyle.parts.length; j++) {
domStyle.parts[j]()
}
delete stylesInDom[domStyle.id]
}
}
}
}
function addStylesToDom (styles /* Array<StyleObject> */) {
for (var i = 0; i < styles.length; i++) {
var item = styles[i]
var domStyle = stylesInDom[item.id]
if (domStyle) {
domStyle.refs++
for (var j = 0; j < domStyle.parts.length; j++) {
domStyle.parts[j](item.parts[j])
}
for (; j < item.parts.length; j++) {
domStyle.parts.push(addStyle(item.parts[j]))
}
if (domStyle.parts.length > item.parts.length) {
domStyle.parts.length = item.parts.length
}
} else {
var parts = []
for (var j = 0; j < item.parts.length; j++) {
parts.push(addStyle(item.parts[j]))
}
stylesInDom[item.id] = { id: item.id, refs: 1, parts: parts }
}
}
}
function createStyleElement () {
var styleElement = document.createElement('style')
styleElement.type = 'text/css'
head.appendChild(styleElement)
return styleElement
}
function addStyle (obj /* StyleObjectPart */) {
var update, remove
var styleElement = document.querySelector('style[' + ssrIdKey + '~="' + obj.id + '"]')
if (styleElement) {
if (isProduction) {
// has SSR styles and in production mode.
// simply do nothing.
return noop
} else {
// has SSR styles but in dev mode.
// for some reason Chrome can't handle source map in server-rendered
// style tags - source maps in <style> only works if the style tag is
// created and inserted dynamically. So we remove the server rendered
// styles and inject new ones.
styleElement.parentNode.removeChild(styleElement)
}
}
if (isOldIE) {
// use singleton mode for IE9.
var styleIndex = singletonCounter++
styleElement = singletonElement || (singletonElement = createStyleElement())
update = applyToSingletonTag.bind(null, styleElement, styleIndex, false)
remove = applyToSingletonTag.bind(null, styleElement, styleIndex, true)
} else {
// use multi-style-tag mode in all other cases
styleElement = createStyleElement()
update = applyToTag.bind(null, styleElement)
remove = function () {
styleElement.parentNode.removeChild(styleElement)
}
}
update(obj)
return function updateStyle (newObj /* StyleObjectPart */) {
if (newObj) {
if (newObj.css === obj.css &&
newObj.media === obj.media &&
newObj.sourceMap === obj.sourceMap) {
return
}
update(obj = newObj)
} else {
remove()
}
}
}
var replaceText = (function () {
var textStore = []
return function (index, replacement) {
textStore[index] = replacement
return textStore.filter(Boolean).join('\n')
}
})()
function applyToSingletonTag (styleElement, index, remove, obj) {
var css = remove ? '' : obj.css
if (styleElement.styleSheet) {
styleElement.styleSheet.cssText = replaceText(index, css)
} else {
var cssNode = document.createTextNode(css)
var childNodes = styleElement.childNodes
if (childNodes[index]) styleElement.removeChild(childNodes[index])
if (childNodes.length) {
styleElement.insertBefore(cssNode, childNodes[index])
} else {
styleElement.appendChild(cssNode)
}
}
}
function applyToTag (styleElement, obj) {
var css = obj.css
var media = obj.media
var sourceMap = obj.sourceMap
if (media) {
styleElement.setAttribute('media', media)
}
if (options.ssrId) {
styleElement.setAttribute(ssrIdKey, obj.id)
}
if (sourceMap) {
// https://developer.chrome.com/devtools/docs/javascript-debugging
// this makes source maps inside style tags work properly in Chrome
css += '\n/*# sourceURL=' + sourceMap.sources[0] + ' */'
// http://stackoverflow.com/a/26603875
css += '\n/*# sourceMappingURL=data:application/json;base64,' + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + ' */'
}
if (styleElement.styleSheet) {
styleElement.styleSheet.cssText = css
} else {
while (styleElement.firstChild) {
styleElement.removeChild(styleElement.firstChild)
}
styleElement.appendChild(document.createTextNode(css))
}
}
/***/ }),
/***/ "1000":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-danger-circle.8810965d.svg";
module.exports = "<svg width=\"16\" height=\"16\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"#BFBFBF\" d=\"M0,8a8,8 0 1,0 16,0a8,8 0 1,0 -16,0\" /><path id=\"preserveColor\" d=\"M9 11v2H7v-2h2zm0-8v6.5H7V3h2z\" fill=\"#FFF\"/></svg>"

@@ -115,5 +378,5 @@ /***/ }),

/***/ "14d0":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-warning.092722a3.svg";
module.exports = "<svg width=\"16\" height=\"16\" xmlns=\"http://www.w3.org/2000/svg\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M7.926.621a1.24 1.24 0 0 1 2.148 0l7.763 13.535A1.235 1.235 0 0 1 16.763 16H1.237a1.23 1.23 0 0 1-1.074-1.844L7.926.621z\" fill=\"#BFBFBF\"/><path id=\"preserveColor\" d=\"M10 11v2H8v-2h2zm0-7v5.5H8V4h2z\" fill-opacity=\".9\" fill=\"#000\"/></g></svg>"

@@ -123,5 +386,5 @@ /***/ }),

/***/ "163a":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-trash.ccd3a38d.svg";
module.exports = "<svg width=\"14\" height=\"16\" viewBox=\"0 0 14 16\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M3 3V2c0-1.1045695.8954305-2 2-2h4c1.1045695 0 2 .8954305 2 2v1h2c.5522847 0 1 .4477153 1 1v1H0V4c0-.5522847.4477152-1 1-1h2zm2 0V2h4v1H5zM1 6h2v8h8V6h2v8c0 1.1045695-.8954305 2-2 2H3c-1.1045695 0-2-.8954305-2-2V6zm5 0v7c-.5522847 0-1-.4477153-1-1V7c0-.5522847.4477153-1 1-1zm2 0c.5522847 0 1 .4477153 1 1v5c0 .5522847-.4477153 1-1 1V6z\" fill=\"#BFBFBF\" fill-rule=\"evenodd\"/>\n</svg>\n"

@@ -153,3 +416,3 @@ /***/ }),

// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"66dbeb93-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!./KIcon.vue?vue&type=template&id=1fc417ac&scoped=true&
// CONCATENATED MODULE: /home/runner/work/kongponents/kongponents/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3928de52-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!./KIcon.vue?vue&type=template&id=1fc417ac&scoped=true&
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.isSSR)?_c('svg',{staticClass:"kong-icon",class:("kong-icon-" + _vm.icon),attrs:{"height":_vm.setSize || _vm.height,"width":_vm.setSize || _vm.width,"viewBox":_vm.viewbox,"role":"img"}},[_c('title',[_vm._v(_vm._s(_vm.icon))]),_c('g',_vm._l((_vm.paths),function(path,idx){return _c('path',_vm._b({key:path.d},'path',_vm.attributes[idx],false))}),0)]):_vm._e()}

@@ -550,6 +813,21 @@ var staticRenderFns = []

/***/ "26c6":
/***/ (function(module, exports) {
module.exports = "<svg width=\"32\" height=\"32\" viewBox=\"-4 -4 32 32\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zm0 2v6h6V2H2zm0 10h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2zm0 2v6h6v-6H2zM14 0h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-6a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zm0 2v6h6V2h-6zm1 10l5 5-5 5V12z\" fill=\"#A3BBCC\" fill-rule=\"evenodd\"/>\n</svg>\n"
/***/ }),
/***/ "30a7":
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__.p + "img/icn-collapse-workspaces.b7552183.svg";
exports = module.exports = __webpack_require__("443a")(false);
// imports
// module
exports.push([module.i, ".kong-icon.kong-icon-spinner g[data-v-1fc417ac]{transform-box:fill-box;transform-origin:50% 50%;animation:spin-data-v-1fc417ac 1.2s linear infinite}@keyframes spin-data-v-1fc417ac{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}", ""]);
// exports
/***/ }),

@@ -600,13 +878,89 @@

/***/ "43f6":
/***/ (function(module, exports, __webpack_require__) {
/***/ "443a":
/***/ (function(module, exports) {
// extracted by mini-css-extract-plugin
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
// css base code, injected by the css-loader
module.exports = function(useSourceMap) {
var list = [];
// return the list of modules as css string
list.toString = function toString() {
return this.map(function (item) {
var content = cssWithMappingToString(item, useSourceMap);
if(item[2]) {
return "@media " + item[2] + "{" + content + "}";
} else {
return content;
}
}).join("");
};
// import a list of modules into the list
list.i = function(modules, mediaQuery) {
if(typeof modules === "string")
modules = [[null, modules, ""]];
var alreadyImportedModules = {};
for(var i = 0; i < this.length; i++) {
var id = this[i][0];
if(typeof id === "number")
alreadyImportedModules[id] = true;
}
for(i = 0; i < modules.length; i++) {
var item = modules[i];
// skip already imported module
// this implementation is not 100% perfect for weird media query combinations
// when a module is imported multiple times with different media queries.
// I hope this will never occur (Hey this way we have smaller bundles)
if(typeof item[0] !== "number" || !alreadyImportedModules[item[0]]) {
if(mediaQuery && !item[2]) {
item[2] = mediaQuery;
} else if(mediaQuery) {
item[2] = "(" + item[2] + ") and (" + mediaQuery + ")";
}
list.push(item);
}
}
};
return list;
};
function cssWithMappingToString(item, useSourceMap) {
var content = item[1] || '';
var cssMapping = item[3];
if (!cssMapping) {
return content;
}
if (useSourceMap && typeof btoa === 'function') {
var sourceMapping = toComment(cssMapping);
var sourceURLs = cssMapping.sources.map(function (source) {
return '/*# sourceURL=' + cssMapping.sourceRoot + source + ' */'
});
return [content].concat(sourceURLs).concat([sourceMapping]).join('\n');
}
return [content].join('\n');
}
// Adapted from convert-source-map (MIT)
function toComment(sourceMap) {
// eslint-disable-next-line no-undef
var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));
var data = 'sourceMappingURL=data:application/json;charset=utf-8;base64,' + base64;
return '/*# ' + data + ' */';
}
/***/ }),
/***/ "4c9a":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-lock.b455c04e.svg";
module.exports = "<svg width=\"12\" height=\"16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6 0c2.76142375 0 5 2.23857625 5 5v3h.5c.2761424 0 .5.22385763.5.5v7c0 .2761424-.2238576.5-.5.5H.5c-.27614237 0-.5-.2238576-.5-.5v-7c0-.27614237.22385763-.5.5-.5H1V5c0-2.76142375 2.23857625-5 5-5zm.5 11h-1c-.27614237 0-.5.2238576-.5.5v1c0 .2761424.22385763.5.5.5h1c.27614237 0 .5-.2238576.5-.5v-1c0-.2761424-.22385763-.5-.5-.5zM6 2C4.34314575 2 3 3.34314575 3 5v3h6V5c0-1.65685425-1.34314575-3-3-3z\" fill=\"#000\" fill-rule=\"evenodd\" fill-opacity=\".45\"/></svg>\n"

@@ -619,6 +973,6 @@ /***/ }),

"use strict";
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_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_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("43f6");
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_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_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_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_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);
/* 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_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("9986");
/* 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_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_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_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);
/* unused harmony reexport * */
/* unused harmony default export */ var _unused_webpack_default_export = (_node_modules_mini_css_extract_plugin_dist_loader_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_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a);
/* 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_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_KIcon_vue_vue_type_style_index_0_id_1fc417ac_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a);

@@ -628,5 +982,5 @@ /***/ }),

/***/ "58de":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-feature-request.49c50717.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"14\">\n <path fill=\"#BFBFBF\" fill-rule=\"nonzero\" d=\"M7 11l-3 3v-3H2c-1.1045695 0-2-.895431-2-2V2C0 .895431.8954305 0 2 0h12c1.1045695 0 2 .895431 2 2v7c0 1.104569-.8954305 2-2 2H7zM2 2v7h12V2H2z\"/>\n</svg>\n"

@@ -636,5 +990,5 @@ /***/ }),

/***/ "5b0a":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-back.f9780075.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"8\">\n <path fill=\"#000\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M16 5H5v3L0 4l3.371-2.697L5 0v3h11z\"/>\n</svg>\n"

@@ -644,5 +998,5 @@ /***/ }),

/***/ "5b1f":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-security.6542c60b.svg";
module.exports = "<svg width=\"32\" height=\"32\" viewBox=\"-6 -4 32 32\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M10 24C5.39 22.156.994 19.54.147 14h2.02c.643 3.577 3.15 5.847 7.832 7.837 4.576-1.955 7.15-4.307 7.822-7.837h2.026c-.869 5.45-5.3 8.181-9.847 10zM20 8h-2V5.862c-2.704-.373-5.375-1.501-8-3.359-2.625 1.858-5.296 2.986-8 3.36V8H0V4c3.333 0 6.667-1.333 10-4 3.333 2.667 6.667 4 10 4v4zM0 10h20v2H0v-2z\" fill=\"#A3BBCC\" fill-rule=\"nonzero\"/>\n</svg>\n"

@@ -652,5 +1006,5 @@ /***/ }),

/***/ "721d":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-close.821ef9ef.svg";
module.exports = "<svg width=\"12\" height=\"12\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"#000\" d=\"M0 1l1-1h.5L6 4.49993896 10.5 0h.5l1 1v.5L7.5 6l4.5 4.5v.5l-1 1h-.5L6 7.5 1.5 12H1l-1-1v-.5L4.5 6 0 1.5z\" fill-rule=\"evenodd\" fill-opacity=\".25\" /></svg>\n"

@@ -660,5 +1014,5 @@ /***/ }),

/***/ "81e7":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-search.ee0e8d3f.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"14\" height=\"14\">\n <path fill=\"#B9BABB\" fill-rule=\"evenodd\" d=\"M9.1237341 11.1237341C8.2138377 11.6796483 7.1443299 12 6 12c-3.3137085 0-6-2.6862915-6-6s2.6862915-6 6-6 6 2.6862915 6 6c0 1.1443299-.3203517 2.2138377-.8762659 3.1237341L13.5 11.5c.577204.577204.5829926 1.4170074 0 2-.5781647.5781647-1.4256897.5743103-2 0l-2.3762659-2.3762659zM6 10c2.209139 0 4-1.790861 4-4S8.209139 2 6 2 2 3.790861 2 6s1.790861 4 4 4z\"/>\n</svg>\n"

@@ -668,5 +1022,5 @@ /***/ }),

/***/ "83a6":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-collapse-expand.ac1c5e1d.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16px\" height=\"16px\" viewBox=\"0 0 16 16\">\n <path fill=\"#A3BBCC\" fill-rule=\"evenodd\" d=\"M0 0h2v16H0V0zm16 7v2H9v3L4 8l5-4v3h7z\"/>\n</svg>\n"

@@ -676,5 +1030,5 @@ /***/ }),

/***/ "8780":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-workspaces.fa24cf20.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16px\" height=\"16px\" viewBox=\"0 0 16 16\">\n <path fill=\"#A3BBCC\" fill-rule=\"evenodd\" d=\"M1 0h5c.55228 0 1 .44772 1 1v5c0 .55228-.44772 1-1 1H1c-.55228 0-1-.44772-1-1V1c0-.55228.44772-1 1-1zm1 2v3h3V2H2zM1 9h5c.55228 0 1 .44772 1 1v5c0 .55228-.44772 1-1 1H1c-.55228 0-1-.44772-1-1v-5c0-.55228.44772-1 1-1zm1 2v3h3v-3H2zm8-11h5c.55228 0 1 .44772 1 1v5c0 .55228-.44772 1-1 1h-5c-.55228 0-1-.44772-1-1V1c0-.55228.44772-1 1-1zm1 2v3h3V2h-3zm-1 7h5c.55228 0 1 .44772 1 1v5c0 .55228-.44772 1-1 1h-5c-.55228 0-1-.44772-1-1v-5c0-.55228.44772-1 1-1zm1 2v3h3v-3h-3z\"/>\n</svg>\n"

@@ -684,12 +1038,27 @@ /***/ }),

/***/ "8ee5":
/***/ (function(module, exports) {
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\">\n <g fill=\"#FFF\" fill-rule=\"evenodd\">\n <path fill=\"#fff\" d=\"M13.3154759 4.60336552c.6394482-.63889655.6394482-1.67503449 0-2.31393104-.6388966-.63889655-1.6744828-.63889655-2.3133793 0-.6394483.63889655-.6394483 1.67503449 0 2.31393104.6388965.63889655 1.6744827.63889655 2.3133793 0\" opacity=\".1\"/>\n <path fill=\"#fff\" d=\"M13.9609931 6.17246897c-.9037241 0-1.6364138.73268965-1.6364138 1.63641379 0 .90317241.7326897 1.63586207 1.6364138 1.63586207.9037241 0 1.6358621-.73268966 1.6358621-1.63586207 0-.90372414-.732138-1.63641379-1.6358621-1.63641379\" opacity=\".25\"/>\n <path fill=\"#fff\" d=\"M10.9938207 11.0105379c-.6388966.6388966-.6388966 1.6750345 0 2.3139311.6388965.6388965 1.6750345.6388965 2.313931 0 .6388966-.6388966.6388966-1.6750345 0-2.3139311-.6388965-.6388965-1.6750345-.6388965-2.313931 0\" opacity=\".35\"/>\n <path fill=\"#fff\" d=\"M7.79988966 12.3247448c-.90372414 0-1.63586207.7326897-1.63586207 1.6364138 0 .9031724.73213793 1.6358621 1.63586207 1.6358621.90372413 0 1.63641379-.7326897 1.63641379-1.6358621 0-.9037241-.73268966-1.6364138-1.63641379-1.6364138\" opacity=\".5\"/>\n <path fill=\"#fff\" d=\"M2.28706207 11.004469c-.63889655.6388965-.63889655 1.6750344 0 2.313931.63889655.6388966 1.67503448.6388966 2.31393103 0 .63889656-.6388966.63889656-1.6750345 0-2.313931-.63889655-.6388966-1.67503448-.6388966-2.31393103 0\" opacity=\".65\"/>\n <path fill=\"#fff\" d=\"M3.27244138 7.80888276c0-.90372414-.73268966-1.63641379-1.63641379-1.63641379-.90372414 0-1.63586207.73268965-1.63586207 1.63641379 0 .90317241.73213793 1.63586207 1.63586207 1.63586207.90372413 0 1.63641379-.73268966 1.63641379-1.63586207\" opacity=\".75\"/>\n <path fill=\"#fff\" d=\"M4.59271724 4.60943448c.63889655-.63889655.63889655-1.67503448 0-2.31393103-.63889655-.63889655-1.67503448-.63889655-2.31393103 0-.63889655.63889655-.63889655 1.67503448 0 2.31393103.63889655.63889655 1.67503448.63889655 2.31393103 0\" opacity=\".85\"/>\n <path fill=\"#fff\" d=\"M6.16402759 1.6361931c0 .90372414.73213793 1.6364138 1.63586207 1.6364138.90372413 0 1.63641379-.73268966 1.63641379-1.6364138 0-.90372413-.73268966-1.63641379-1.63641379-1.63641379-.90372414 0-1.63586207.73268966-1.63586207 1.63641379z\" opacity=\".95\"/>\n </g>\n</svg>\n"
/***/ }),
/***/ "9986":
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__.p + "img/icn-spinner.d1674df1.svg";
// style-loader: Adds some css to the DOM by adding a <style> tag
// load the styles
var content = __webpack_require__("30a7");
if(typeof content === 'string') content = [[module.i, content, '']];
if(content.locals) module.exports = content.locals;
// add the styles to the DOM
var add = __webpack_require__("0ed3").default
var update = add("3fbed258", content, true, {"sourceMap":false,"shadowMode":false});
/***/ }),
/***/ "9fef":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-gateway.8ff6c611.svg";
module.exports = "<svg width=\"32\" height=\"32\" viewBox=\"-4 -4 32 32\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M14 0h-4a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 2v20h-4V2h4zm6 0v2h-3v2h3v2l4-3-4-3zm0 14v2h-3v2h3v2l4-3-4-3zM7 11H4V9l-4 3 4 3v-2h3v-2zm0-7H3v2h4V4zm0 14H3v2h4v-2zm-5 0H0v2h2v-2zm19-7h-4v2h4v-2zm3 0h-2v2h2v-2zM2 4H0v2h2V4z\" fill=\"#A3BBCC\" fill-rule=\"evenodd\"/>\n</svg>\n"

@@ -699,5 +1068,5 @@ /***/ }),

/***/ "b111":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-gear.befbcd1b.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\">\n <path fill=\"#000\" fill-opacity=\".55\" fill-rule=\"evenodd\" d=\"M11.4765344 3.1092521l1.4732131-1.4732131 1.4142135 1.4142135-1.4732131 1.4732131c.514815.7229326.8733467 1.5648778 1.0262937 2.4765344H16v2h-2.0829584c-.152947.9116566-.5114787 1.7536018-1.0262937 2.4765344l1.4732131 1.4732131-1.4142135 1.4142135-1.4732131-1.4732131c-.7229326.514815-1.5648778.8733467-2.4765344 1.0262937V16H7v-2.0829584c-.9116566-.152947-1.7536018-.5114787-2.4765344-1.0262937L3.0502525 14.363961 1.636039 12.9497475l1.4732131-1.4732131C2.5944371 10.7536018 2.2359054 9.9116566 2.0829584 9H0V7h2.0829584c.152947-.9116566.5114787-1.7536018 1.0262937-2.4765344L1.636039 3.0502525 3.0502525 1.636039l1.4732131 1.4732131C5.2463982 2.5944371 6.0883434 2.2359054 7 2.0829584V0h2v2.0829584c.9116566.152947 1.7536018.5114787 2.4765344 1.0262937zM8 12c2.209139 0 4-1.790861 4-4s-1.790861-4-4-4-4 1.790861-4 4 1.790861 4 4 4z\" opacity=\".5\"/>\n</svg>\n"

@@ -707,5 +1076,5 @@ /***/ }),

/***/ "b17e":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-dashboard.54ac56fa.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"21\">\n <path fill=\"#A4BBCB\" fill-rule=\"nonzero\" d=\"M13 10l3-3c.6902336-.73713266 1.4429032-1.26058218 2-1 .2605822.55709682-.2628673 1.30976636-1 2l-3 3c.1531248.4707586.1875961.6844547 0 1 .1875961 1.0625747-.7498292 2-2 2-1.0625747 0-2-.9374253-2-2 0-1.2501708.9374253-2.1875961 2-2 .3155453-.1875961.5292414-.1531248 1 0zm8 10c-.08276.0634515-.7131836.1223062-1 0-.5634515-.58276-.6223062-1.2131836 0-2 1.1963422-1.4063656 2-3.6213758 2-6 0-5.5228475-4.4771525-10-10-10S2 6.4771525 2 12c0 2.3848064.80099865 4.5939865 2 6 .62209487.7857069.56386353 1.4161884 0 2-.28570688.1220949-.91618845.0638635-1 0-2.03512593-2.4863139-3-5.1474677-3-8C0 5.372583 5.372583 0 12 0s12 5.372583 12 12c0 2.8461786-.967377 5.5124254-3 8zM9 16h6c.5522847 0 1 .4477153 1 1s-.4477153 1-1 1H9c-.55228475 0-1-.4477153-1-1s.44771525-1 1-1z\"/>\n</svg>\n"

@@ -715,5 +1084,5 @@ /***/ }),

/***/ "b569":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-vitals.f38cf7e4.svg";
module.exports = "<svg width=\"32\" height=\"32\" viewBox=\"-4 -4 32 32\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M19.593 5.493l-2.842 2.842A6.002 6.002 0 0 1 13 17.917l-.001 4.034c5.053-.502 9-4.766 9-9.951a9.96 9.96 0 0 0-2.407-6.507zM18.146 4.11A9.95 9.95 0 0 0 13 2.05v4.034c.83.14 1.604.45 2.281.893l2.865-2.865zM2.05 13A10.003 10.003 0 0 0 11 21.95v-4.033A6.005 6.005 0 0 1 6.083 13H2.049zm0-2h4.034A6.005 6.005 0 0 1 11 6.083V2.049A10.003 10.003 0 0 0 2.05 11zM12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12zm0-8a4 4 0 1 0 0-8 4 4 0 0 0 0 8z\" fill=\"#A3BBCC\" fill-rule=\"evenodd\"/>\n</svg>\n"

@@ -723,5 +1092,5 @@ /***/ }),

/***/ "c9fa":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-support.e0aa6f3b.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\">\n <path fill=\"#BFBFBF\" fill-rule=\"evenodd\" d=\"M3 12v1c0 .5522847.4477153 1 1 1h4c.5522847 0 1 .4477153 1 1s-.4477153 1-1 1H4c-1.6568542 0-3-1.3431458-3-3v-1c-.5522847 0-1-.4477153-1-1V7c0-.5522847.4477153-1 1-1h.0708889C1.5561185 2.6077059 4.4735281 0 8 0s6.4438815 2.6077059 6.9291111 6H15c.5522847 0 1 .4477153 1 1v4c0 .5522847-.4477153 1-1 1h-2c-.5522847 0-1-.4477153-1-1V7c0-.5188639.3951689-.9454312.9009623-.9951576C12.439565 3.7201899 10.4206685 2 8 2 5.5793315 2 3.560435 3.7201899 3.0990377 6.0048424 3.6048311 6.0545688 4 6.4811361 4 7v4c0 .5522847-.4477153 1-1 1z\"/>\n</svg>\n"

@@ -731,5 +1100,5 @@ /***/ }),

/***/ "ee98":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-dev-portal.7ebc94e9.svg";
module.exports = "<svg width=\"32\" height=\"32\" viewBox=\"-5 -4 32 32\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 24h18a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2zm0-2V2h18v20H2zm3-7h12v-2H5v2zm0-4h5V9H5v2zm7 0h5V9h-5v2zM5 7h12V5H5v2zm0 12h5v-2H5v2zm7 0h5v-2h-5v2z\" fill=\"#A3BBCC\" fill-rule=\"evenodd\"/>\n</svg>\n"

@@ -739,5 +1108,5 @@ /***/ }),

/***/ "f31f":
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {
module.exports = __webpack_require__.p + "img/icn-info.0b2980e7.svg";
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\">\n <path fill=\"#FFF\" fill-rule=\"evenodd\" d=\"M16 8c0-4.418278-3.58172-8-8-8S0 3.581722 0 8s3.58172 8 8 8 8-3.581722 8-8zm-1.5 0c0 3.5898509-2.91015 6.5-6.5 6.5S1.5 11.5898509 1.5 8 4.41015 1.5 8 1.5s6.5 2.9101491 6.5 6.5zM6 12h4v-1H9V7H6v1h1v3H6v1zm1-6.5046844C7 5.7740451 7.21404 6 7.50468 6h.99064C8.77405 6 9 5.785965 9 5.4953156v-.9906312C9 4.2259549 8.78596 4 8.49532 4h-.99064C7.22595 4 7 4.214035 7 4.5046844v.9906312z\" opacity=\".60000002\"/>\n</svg>\n"

@@ -744,0 +1113,0 @@ /***/ })

2

dist/KIcon.umd.min.js

@@ -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["KIcon"]=t():e["KIcon"]=t()})("undefined"!==typeof self?self:this,(function(){return function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s="1c25")}({"0a69":function(e,t,n){e.exports=n.p+"img/icn-external-link.51a59a8b.svg"},1e3:function(e,t,n){e.exports=n.p+"img/icn-danger-circle.8810965d.svg"},"14d0":function(e,t,n){e.exports=n.p+"img/icn-warning.092722a3.svg"},"163a":function(e,t,n){e.exports=n.p+"img/icn-trash.ccd3a38d.svg"},"1c25":function(e,t,n){"use strict";var r;(n.r(t),"undefined"!==typeof window)&&(n("4141"),(r=window.document.currentScript)&&(r=r.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))&&(n.p=r[1]));var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.isSSR?n("svg",{staticClass:"kong-icon",class:"kong-icon-"+e.icon,attrs:{height:e.setSize||e.height,width:e.setSize||e.width,viewBox:e.viewbox,role:"img"}},[n("title",[e._v(e._s(e.icon))]),n("g",e._l(e.paths,(function(t,r){return n("path",e._b({key:t.d},"path",e.attributes[r],!1))})),0)]):e._e()},o=[],s=n("83a6"),c=n.n(s),a=n("9fef"),f=n.n(a),u=n("b111"),p=n.n(u),l=n("f31f"),d=n.n(l),g=n("ee98"),v=n.n(g),h=n("5b1f"),b=n.n(h),m=n("8780"),x=n.n(m),y=n("26c6"),S=n.n(y),_=n("b569"),w=n.n(_),k=n("5b0a"),j=n.n(k),O=n("81e7"),C=n.n(O),E=n("163a"),R=n.n(E),$=n("b17e"),A=n.n($),P=n("c9fa"),T=n.n(P),B=n("58de"),M=n.n(B),V=n("0a69"),q=n.n(V),z=n("8ee5"),I=n.n(z),N=n("1000"),K=n.n(N),G=n("14d0"),F=n.n(G),U=n("4c9a"),X=n.n(U),D=n("721d"),L=n.n(D),W={back:j.a,close:L.a,collapseExpand:c.a,dashboard:A.a,externalLink:q.a,featureRequest:M.a,gateway:f.a,gear:p.a,info:d.a,lock:X.a,portal:v.a,search:C.a,security:b.a,spinner:I.a,support:T.a,trash:R.a,warning:F.a,dangerCircle:K.a,workspaces:x.a,workspacesCollapsed:S.a,vitals:w.a};const H=Object.keys(W);var J={name:"KIcon",props:{icon:{type:String,default:"",validator:function(e){return-1!==H.indexOf(e)},required:!0},size:{type:String,default:"24"},color:{type:String,default:null},viewBox:{type:String,default:"0 0 24 24"}},data(){return{isSSR:!1}},computed:{iconSVG(){return W[this.icon]},doc(){return(new DOMParser).parseFromString(this.iconSVG,"image/svg+xml")},svg(){return this.doc.getElementsByTagName("svg")[0]},paths(){return this.doc.querySelectorAll("path").length?Array.from(this.doc.querySelectorAll("path")):console.warn("(KIcon) Warning: SVG Path not found")},attributes(){if(this.paths){let e=[];return this.paths.forEach(t=>{let n={},r=Array.from(t.attributes);r.forEach(e=>{const{value:t,name:i}=e,o=r.find(e=>"id"===e.nodeName&&"preserveColor"===e.nodeValue);"fill"===i&&this.color&&!o?n[i]=this.color:n[i]=t}),e.push(n)}),e}},width(){return this.svg.getAttribute("width")},height(){return this.svg.getAttribute("height")},setSize(){return this.size||this.svg.getAttribute("width")},viewbox(){return this.viewBox||this.svg.getAttribute("viewBox")}},beforeMount(){this.isSSR=!0}},Q=J;n("5580");function Y(e,t,n,r,i,o,s,c){var a,f="function"===typeof e?e.options:e;if(t&&(f.render=t,f.staticRenderFns=n,f._compiled=!0),r&&(f.functional=!0),o&&(f._scopeId="data-v-"+o),s?(a=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__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(s)},f._ssrRegister=a):i&&(a=c?function(){i.call(this,this.$root.$options.shadowRoot)}:i),a)if(f.functional){f._injectStyles=a;var u=f.render;f.render=function(e,t){return a.call(t),u(e,t)}}else{var p=f.beforeCreate;f.beforeCreate=p?[].concat(p,a):[a]}return{exports:e,options:f}}var Z=Y(Q,i,o,!1,null,"1fc417ac",null),ee=Z.exports;t["default"]=ee},"26c6":function(e,t,n){e.exports=n.p+"img/icn-collapse-workspaces.b7552183.svg"},4141:function(e,t){(function(e){var t="currentScript",n=e.getElementsByTagName("script");t in e||Object.defineProperty(e,t,{get:function(){try{throw new Error}catch(r){var e,t=(/.*at [^\(]*\((.*):.+:.+\)$/gi.exec(r.stack)||[!1])[1];for(e in n)if(n[e].src==t||"interactive"==n[e].readyState)return n[e];return null}}})})(document)},"43f6":function(e,t,n){},"4c9a":function(e,t,n){e.exports=n.p+"img/icn-lock.b455c04e.svg"},5580:function(e,t,n){"use strict";var r=n("43f6"),i=n.n(r);i.a},"58de":function(e,t,n){e.exports=n.p+"img/icn-feature-request.49c50717.svg"},"5b0a":function(e,t,n){e.exports=n.p+"img/icn-back.f9780075.svg"},"5b1f":function(e,t,n){e.exports=n.p+"img/icn-security.6542c60b.svg"},"721d":function(e,t,n){e.exports=n.p+"img/icn-close.821ef9ef.svg"},"81e7":function(e,t,n){e.exports=n.p+"img/icn-search.ee0e8d3f.svg"},"83a6":function(e,t,n){e.exports=n.p+"img/icn-collapse-expand.ac1c5e1d.svg"},8780:function(e,t,n){e.exports=n.p+"img/icn-workspaces.fa24cf20.svg"},"8ee5":function(e,t,n){e.exports=n.p+"img/icn-spinner.d1674df1.svg"},"9fef":function(e,t,n){e.exports=n.p+"img/icn-gateway.8ff6c611.svg"},b111:function(e,t,n){e.exports=n.p+"img/icn-gear.befbcd1b.svg"},b17e:function(e,t,n){e.exports=n.p+"img/icn-dashboard.54ac56fa.svg"},b569:function(e,t,n){e.exports=n.p+"img/icn-vitals.f38cf7e4.svg"},c9fa:function(e,t,n){e.exports=n.p+"img/icn-support.e0aa6f3b.svg"},ee98:function(e,t,n){e.exports=n.p+"img/icn-dev-portal.7ebc94e9.svg"},f31f:function(e,t,n){e.exports=n.p+"img/icn-info.0b2980e7.svg"}})["default"]}));
(function(t,e){"object"===typeof exports&&"object"===typeof module?module.exports=e():"function"===typeof define&&define.amd?define([],e):"object"===typeof exports?exports["KIcon"]=e():t["KIcon"]=e()})("undefined"!==typeof self?self:this,(function(){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var i=e[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)n.d(r,i,function(e){return t[e]}.bind(null,i));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s="1c25")}({"0a69":function(t,e){t.exports='<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12">\n <path fill="#000" fill-opacity=".25" fill-rule="evenodd" d="M8.24308 1.5C7.83269 1.5 7.5 1.16710138 7.5.75c0-.41421356.33823-.75.74308-.75h3.00568C11.6666 0 12 .336341 12 .75123866v3.00567786C12 4.1673102 11.6671 4.5 11.25 4.5c-.41421 0-.75-.3382314-.75-.74308348V2.625L6.53246 6.59254c-.28982.2898217-.76955.2953689-1.06202.0029022l-.06588-.0658844c-.29098-.2909742-.29117-.7679483.0029-1.0620178L9.375 1.5H8.24308zm-6.74753 0C.67089 1.5 0 2.1695784 0 2.99554521v7.50890959C0 11.3291147.66958 12 1.49555 12h7.5089C9.82911 12 10.5 11.3304216 10.5 10.5044548V6.75H9v3.75H1.5V3h3.75V1.5H1.49555z"/>\n</svg>\n'},"0ed3":function(t,e,n){"use strict";function r(t,e){for(var n=[],r={},i=0;i<e.length;i++){var o=e[i],s=o[0],a=o[1],l=o[2],c=o[3],h={id:t+":"+i,css:a,media:l,sourceMap:c};r[s]?r[s].parts.push(h):n.push(r[s]={id:s,parts:[h]})}return n}n.r(e),n.d(e,"default",(function(){return u}));var i="undefined"!==typeof document;if("undefined"!==typeof DEBUG&&DEBUG&&!i)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={},s=i&&(document.head||document.getElementsByTagName("head")[0]),a=null,l=0,c=!1,h=function(){},f=null,v="data-vue-ssr-id",d="undefined"!==typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function u(t,e,n,i){c=n,f=i||{};var s=r(t,e);return p(s),function(e){for(var n=[],i=0;i<s.length;i++){var a=s[i],l=o[a.id];l.refs--,n.push(l)}e?(s=r(t,e),p(s)):s=[];for(i=0;i<n.length;i++){l=n[i];if(0===l.refs){for(var c=0;c<l.parts.length;c++)l.parts[c]();delete o[l.id]}}}}function p(t){for(var e=0;e<t.length;e++){var n=t[e],r=o[n.id];if(r){r.refs++;for(var i=0;i<r.parts.length;i++)r.parts[i](n.parts[i]);for(;i<n.parts.length;i++)r.parts.push(w(n.parts[i]));r.parts.length>n.parts.length&&(r.parts.length=n.parts.length)}else{var s=[];for(i=0;i<n.parts.length;i++)s.push(w(n.parts[i]));o[n.id]={id:n.id,refs:1,parts:s}}}}function g(){var t=document.createElement("style");return t.type="text/css",s.appendChild(t),t}function w(t){var e,n,r=document.querySelector("style["+v+'~="'+t.id+'"]');if(r){if(c)return h;r.parentNode.removeChild(r)}if(d){var i=l++;r=a||(a=g()),e=x.bind(null,r,i,!1),n=x.bind(null,r,i,!0)}else r=g(),e=z.bind(null,r),n=function(){r.parentNode.removeChild(r)};return e(t),function(r){if(r){if(r.css===t.css&&r.media===t.media&&r.sourceMap===t.sourceMap)return;e(t=r)}else n()}}var m=function(){var t=[];return function(e,n){return t[e]=n,t.filter(Boolean).join("\n")}}();function x(t,e,n,r){var i=n?"":r.css;if(t.styleSheet)t.styleSheet.cssText=m(e,i);else{var o=document.createTextNode(i),s=t.childNodes;s[e]&&t.removeChild(s[e]),s.length?t.insertBefore(o,s[e]):t.appendChild(o)}}function z(t,e){var n=e.css,r=e.media,i=e.sourceMap;if(r&&t.setAttribute("media",r),f.ssrId&&t.setAttribute(v,e.id),i&&(n+="\n/*# sourceURL="+i.sources[0]+" */",n+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(i))))+" */"),t.styleSheet)t.styleSheet.cssText=n;else{while(t.firstChild)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}},1e3:function(t,e){t.exports='<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><path fill="#BFBFBF" d="M0,8a8,8 0 1,0 16,0a8,8 0 1,0 -16,0" /><path id="preserveColor" d="M9 11v2H7v-2h2zm0-8v6.5H7V3h2z" fill="#FFF"/></svg>'},"14d0":function(t,e){t.exports='<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M7.926.621a1.24 1.24 0 0 1 2.148 0l7.763 13.535A1.235 1.235 0 0 1 16.763 16H1.237a1.23 1.23 0 0 1-1.074-1.844L7.926.621z" fill="#BFBFBF"/><path id="preserveColor" d="M10 11v2H8v-2h2zm0-7v5.5H8V4h2z" fill-opacity=".9" fill="#000"/></g></svg>'},"163a":function(t,e){t.exports='<svg width="14" height="16" viewBox="0 0 14 16" xmlns="http://www.w3.org/2000/svg">\n <path d="M3 3V2c0-1.1045695.8954305-2 2-2h4c1.1045695 0 2 .8954305 2 2v1h2c.5522847 0 1 .4477153 1 1v1H0V4c0-.5522847.4477152-1 1-1h2zm2 0V2h4v1H5zM1 6h2v8h8V6h2v8c0 1.1045695-.8954305 2-2 2H3c-1.1045695 0-2-.8954305-2-2V6zm5 0v7c-.5522847 0-1-.4477153-1-1V7c0-.5522847.4477153-1 1-1zm2 0c.5522847 0 1 .4477153 1 1v5c0 .5522847-.4477153 1-1 1V6z" fill="#BFBFBF" fill-rule="evenodd"/>\n</svg>\n'},"1c25":function(t,e,n){"use strict";var r;(n.r(e),"undefined"!==typeof window)&&(n("4141"),(r=window.document.currentScript)&&(r=r.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))&&(n.p=r[1]));var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isSSR?n("svg",{staticClass:"kong-icon",class:"kong-icon-"+t.icon,attrs:{height:t.setSize||t.height,width:t.setSize||t.width,viewBox:t.viewbox,role:"img"}},[n("title",[t._v(t._s(t.icon))]),n("g",t._l(t.paths,(function(e,r){return n("path",t._b({key:e.d},"path",t.attributes[r],!1))})),0)]):t._e()},o=[],s=n("83a6"),a=n.n(s),l=n("9fef"),c=n.n(l),h=n("b111"),f=n.n(h),v=n("f31f"),d=n.n(v),u=n("ee98"),p=n.n(u),g=n("5b1f"),w=n.n(g),m=n("8780"),x=n.n(m),z=n("26c6"),y=n.n(z),b=n("b569"),C=n.n(b),M=n("5b0a"),B=n.n(M),V=n("81e7"),H=n.n(V),S=n("163a"),_=n.n(S),A=n("b17e"),F=n.n(A),j=n("c9fa"),L=n.n(j),E=n("58de"),R=n.n(E),O=n("0a69"),k=n.n(O),N=n("8ee5"),T=n.n(N),U=n("1000"),$=n.n(U),I=n("14d0"),P=n.n(I),q=n("4c9a"),G=n.n(q),K=n("721d"),D=n.n(K),J={back:B.a,close:D.a,collapseExpand:a.a,dashboard:F.a,externalLink:k.a,featureRequest:R.a,gateway:c.a,gear:f.a,info:d.a,lock:G.a,portal:p.a,search:H.a,security:w.a,spinner:T.a,support:L.a,trash:_.a,warning:P.a,dangerCircle:$.a,workspaces:x.a,workspacesCollapsed:y.a,vitals:C.a};const W=Object.keys(J);var X={name:"KIcon",props:{icon:{type:String,default:"",validator:function(t){return-1!==W.indexOf(t)},required:!0},size:{type:String,default:"24"},color:{type:String,default:null},viewBox:{type:String,default:"0 0 24 24"}},data(){return{isSSR:!1}},computed:{iconSVG(){return J[this.icon]},doc(){return(new DOMParser).parseFromString(this.iconSVG,"image/svg+xml")},svg(){return this.doc.getElementsByTagName("svg")[0]},paths(){return this.doc.querySelectorAll("path").length?Array.from(this.doc.querySelectorAll("path")):console.warn("(KIcon) Warning: SVG Path not found")},attributes(){if(this.paths){let t=[];return this.paths.forEach(e=>{let n={},r=Array.from(e.attributes);r.forEach(t=>{const{value:e,name:i}=t,o=r.find(t=>"id"===t.nodeName&&"preserveColor"===t.nodeValue);"fill"===i&&this.color&&!o?n[i]=this.color:n[i]=e}),t.push(n)}),t}},width(){return this.svg.getAttribute("width")},height(){return this.svg.getAttribute("height")},setSize(){return this.size||this.svg.getAttribute("width")},viewbox(){return this.viewBox||this.svg.getAttribute("viewBox")}},beforeMount(){this.isSSR=!0}},Q=X;n("5580");function Y(t,e,n,r,i,o,s,a){var l,c="function"===typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),r&&(c.functional=!0),o&&(c._scopeId="data-v-"+o),s?(l=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__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(s)},c._ssrRegister=l):i&&(l=a?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(c.functional){c._injectStyles=l;var h=c.render;c.render=function(t,e){return l.call(e),h(t,e)}}else{var f=c.beforeCreate;c.beforeCreate=f?[].concat(f,l):[l]}return{exports:t,options:c}}var Z=Y(Q,i,o,!1,null,"1fc417ac",null),tt=Z.exports;e["default"]=tt},"26c6":function(t,e){t.exports='<svg width="32" height="32" viewBox="-4 -4 32 32" xmlns="http://www.w3.org/2000/svg">\n <path d="M2 0h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zm0 2v6h6V2H2zm0 10h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2zm0 2v6h6v-6H2zM14 0h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-6a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zm0 2v6h6V2h-6zm1 10l5 5-5 5V12z" fill="#A3BBCC" fill-rule="evenodd"/>\n</svg>\n'},"30a7":function(t,e,n){e=t.exports=n("443a")(!1),e.push([t.i,".kong-icon.kong-icon-spinner g[data-v-1fc417ac]{transform-box:fill-box;transform-origin:50% 50%;animation:spin-data-v-1fc417ac 1.2s linear infinite}@keyframes spin-data-v-1fc417ac{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}",""])},4141:function(t,e){(function(t){var e="currentScript",n=t.getElementsByTagName("script");e in t||Object.defineProperty(t,e,{get:function(){try{throw new Error}catch(r){var t,e=(/.*at [^\(]*\((.*):.+:.+\)$/gi.exec(r.stack)||[!1])[1];for(t in n)if(n[t].src==e||"interactive"==n[t].readyState)return n[t];return null}}})})(document)},"443a":function(t,e){function n(t,e){var n=t[1]||"",i=t[3];if(!i)return n;if(e&&"function"===typeof btoa){var o=r(i),s=i.sources.map((function(t){return"/*# sourceURL="+i.sourceRoot+t+" */"}));return[n].concat(s).concat([o]).join("\n")}return[n].join("\n")}function r(t){var e=btoa(unescape(encodeURIComponent(JSON.stringify(t)))),n="sourceMappingURL=data:application/json;charset=utf-8;base64,"+e;return"/*# "+n+" */"}t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var r=n(e,t);return e[2]?"@media "+e[2]+"{"+r+"}":r})).join("")},e.i=function(t,n){"string"===typeof t&&(t=[[null,t,""]]);for(var r={},i=0;i<this.length;i++){var o=this[i][0];"number"===typeof o&&(r[o]=!0)}for(i=0;i<t.length;i++){var s=t[i];"number"===typeof s[0]&&r[s[0]]||(n&&!s[2]?s[2]=n:n&&(s[2]="("+s[2]+") and ("+n+")"),e.push(s))}},e}},"4c9a":function(t,e){t.exports='<svg width="12" height="16" xmlns="http://www.w3.org/2000/svg"><path d="M6 0c2.76142375 0 5 2.23857625 5 5v3h.5c.2761424 0 .5.22385763.5.5v7c0 .2761424-.2238576.5-.5.5H.5c-.27614237 0-.5-.2238576-.5-.5v-7c0-.27614237.22385763-.5.5-.5H1V5c0-2.76142375 2.23857625-5 5-5zm.5 11h-1c-.27614237 0-.5.2238576-.5.5v1c0 .2761424.22385763.5.5.5h1c.27614237 0 .5-.2238576.5-.5v-1c0-.2761424-.22385763-.5-.5-.5zM6 2C4.34314575 2 3 3.34314575 3 5v3h6V5c0-1.65685425-1.34314575-3-3-3z" fill="#000" fill-rule="evenodd" fill-opacity=".45"/></svg>\n'},5580:function(t,e,n){"use strict";var r=n("9986"),i=n.n(r);i.a},"58de":function(t,e){t.exports='<svg xmlns="http://www.w3.org/2000/svg" width="16" height="14">\n <path fill="#BFBFBF" fill-rule="nonzero" d="M7 11l-3 3v-3H2c-1.1045695 0-2-.895431-2-2V2C0 .895431.8954305 0 2 0h12c1.1045695 0 2 .895431 2 2v7c0 1.104569-.8954305 2-2 2H7zM2 2v7h12V2H2z"/>\n</svg>\n'},"5b0a":function(t,e){t.exports='<svg xmlns="http://www.w3.org/2000/svg" width="16" height="8">\n <path fill="#000" fill-opacity=".25" fill-rule="evenodd" d="M16 5H5v3L0 4l3.371-2.697L5 0v3h11z"/>\n</svg>\n'},"5b1f":function(t,e){t.exports='<svg width="32" height="32" viewBox="-6 -4 32 32" xmlns="http://www.w3.org/2000/svg">\n <path d="M10 24C5.39 22.156.994 19.54.147 14h2.02c.643 3.577 3.15 5.847 7.832 7.837 4.576-1.955 7.15-4.307 7.822-7.837h2.026c-.869 5.45-5.3 8.181-9.847 10zM20 8h-2V5.862c-2.704-.373-5.375-1.501-8-3.359-2.625 1.858-5.296 2.986-8 3.36V8H0V4c3.333 0 6.667-1.333 10-4 3.333 2.667 6.667 4 10 4v4zM0 10h20v2H0v-2z" fill="#A3BBCC" fill-rule="nonzero"/>\n</svg>\n'},"721d":function(t,e){t.exports='<svg width="12" height="12" xmlns="http://www.w3.org/2000/svg"><path fill="#000" d="M0 1l1-1h.5L6 4.49993896 10.5 0h.5l1 1v.5L7.5 6l4.5 4.5v.5l-1 1h-.5L6 7.5 1.5 12H1l-1-1v-.5L4.5 6 0 1.5z" fill-rule="evenodd" fill-opacity=".25" /></svg>\n'},"81e7":function(t,e){t.exports='<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14">\n <path fill="#B9BABB" fill-rule="evenodd" d="M9.1237341 11.1237341C8.2138377 11.6796483 7.1443299 12 6 12c-3.3137085 0-6-2.6862915-6-6s2.6862915-6 6-6 6 2.6862915 6 6c0 1.1443299-.3203517 2.2138377-.8762659 3.1237341L13.5 11.5c.577204.577204.5829926 1.4170074 0 2-.5781647.5781647-1.4256897.5743103-2 0l-2.3762659-2.3762659zM6 10c2.209139 0 4-1.790861 4-4S8.209139 2 6 2 2 3.790861 2 6s1.790861 4 4 4z"/>\n</svg>\n'},"83a6":function(t,e){t.exports='<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 16 16">\n <path fill="#A3BBCC" fill-rule="evenodd" d="M0 0h2v16H0V0zm16 7v2H9v3L4 8l5-4v3h7z"/>\n</svg>\n'},8780:function(t,e){t.exports='<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 16 16">\n <path fill="#A3BBCC" fill-rule="evenodd" d="M1 0h5c.55228 0 1 .44772 1 1v5c0 .55228-.44772 1-1 1H1c-.55228 0-1-.44772-1-1V1c0-.55228.44772-1 1-1zm1 2v3h3V2H2zM1 9h5c.55228 0 1 .44772 1 1v5c0 .55228-.44772 1-1 1H1c-.55228 0-1-.44772-1-1v-5c0-.55228.44772-1 1-1zm1 2v3h3v-3H2zm8-11h5c.55228 0 1 .44772 1 1v5c0 .55228-.44772 1-1 1h-5c-.55228 0-1-.44772-1-1V1c0-.55228.44772-1 1-1zm1 2v3h3V2h-3zm-1 7h5c.55228 0 1 .44772 1 1v5c0 .55228-.44772 1-1 1h-5c-.55228 0-1-.44772-1-1v-5c0-.55228.44772-1 1-1zm1 2v3h3v-3h-3z"/>\n</svg>\n'},"8ee5":function(t,e){t.exports='<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">\n <g fill="#FFF" fill-rule="evenodd">\n <path fill="#fff" d="M13.3154759 4.60336552c.6394482-.63889655.6394482-1.67503449 0-2.31393104-.6388966-.63889655-1.6744828-.63889655-2.3133793 0-.6394483.63889655-.6394483 1.67503449 0 2.31393104.6388965.63889655 1.6744827.63889655 2.3133793 0" opacity=".1"/>\n <path fill="#fff" d="M13.9609931 6.17246897c-.9037241 0-1.6364138.73268965-1.6364138 1.63641379 0 .90317241.7326897 1.63586207 1.6364138 1.63586207.9037241 0 1.6358621-.73268966 1.6358621-1.63586207 0-.90372414-.732138-1.63641379-1.6358621-1.63641379" opacity=".25"/>\n <path fill="#fff" d="M10.9938207 11.0105379c-.6388966.6388966-.6388966 1.6750345 0 2.3139311.6388965.6388965 1.6750345.6388965 2.313931 0 .6388966-.6388966.6388966-1.6750345 0-2.3139311-.6388965-.6388965-1.6750345-.6388965-2.313931 0" opacity=".35"/>\n <path fill="#fff" d="M7.79988966 12.3247448c-.90372414 0-1.63586207.7326897-1.63586207 1.6364138 0 .9031724.73213793 1.6358621 1.63586207 1.6358621.90372413 0 1.63641379-.7326897 1.63641379-1.6358621 0-.9037241-.73268966-1.6364138-1.63641379-1.6364138" opacity=".5"/>\n <path fill="#fff" d="M2.28706207 11.004469c-.63889655.6388965-.63889655 1.6750344 0 2.313931.63889655.6388966 1.67503448.6388966 2.31393103 0 .63889656-.6388966.63889656-1.6750345 0-2.313931-.63889655-.6388966-1.67503448-.6388966-2.31393103 0" opacity=".65"/>\n <path fill="#fff" d="M3.27244138 7.80888276c0-.90372414-.73268966-1.63641379-1.63641379-1.63641379-.90372414 0-1.63586207.73268965-1.63586207 1.63641379 0 .90317241.73213793 1.63586207 1.63586207 1.63586207.90372413 0 1.63641379-.73268966 1.63641379-1.63586207" opacity=".75"/>\n <path fill="#fff" d="M4.59271724 4.60943448c.63889655-.63889655.63889655-1.67503448 0-2.31393103-.63889655-.63889655-1.67503448-.63889655-2.31393103 0-.63889655.63889655-.63889655 1.67503448 0 2.31393103.63889655.63889655 1.67503448.63889655 2.31393103 0" opacity=".85"/>\n <path fill="#fff" d="M6.16402759 1.6361931c0 .90372414.73213793 1.6364138 1.63586207 1.6364138.90372413 0 1.63641379-.73268966 1.63641379-1.6364138 0-.90372413-.73268966-1.63641379-1.63641379-1.63641379-.90372414 0-1.63586207.73268966-1.63586207 1.63641379z" opacity=".95"/>\n </g>\n</svg>\n'},9986:function(t,e,n){var r=n("30a7");"string"===typeof r&&(r=[[t.i,r,""]]),r.locals&&(t.exports=r.locals);var i=n("0ed3").default;i("3fbed258",r,!0,{sourceMap:!1,shadowMode:!1})},"9fef":function(t,e){t.exports='<svg width="32" height="32" viewBox="-4 -4 32 32" xmlns="http://www.w3.org/2000/svg">\n <path d="M14 0h-4a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 2v20h-4V2h4zm6 0v2h-3v2h3v2l4-3-4-3zm0 14v2h-3v2h3v2l4-3-4-3zM7 11H4V9l-4 3 4 3v-2h3v-2zm0-7H3v2h4V4zm0 14H3v2h4v-2zm-5 0H0v2h2v-2zm19-7h-4v2h4v-2zm3 0h-2v2h2v-2zM2 4H0v2h2V4z" fill="#A3BBCC" fill-rule="evenodd"/>\n</svg>\n'},b111:function(t,e){t.exports='<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">\n <path fill="#000" fill-opacity=".55" fill-rule="evenodd" d="M11.4765344 3.1092521l1.4732131-1.4732131 1.4142135 1.4142135-1.4732131 1.4732131c.514815.7229326.8733467 1.5648778 1.0262937 2.4765344H16v2h-2.0829584c-.152947.9116566-.5114787 1.7536018-1.0262937 2.4765344l1.4732131 1.4732131-1.4142135 1.4142135-1.4732131-1.4732131c-.7229326.514815-1.5648778.8733467-2.4765344 1.0262937V16H7v-2.0829584c-.9116566-.152947-1.7536018-.5114787-2.4765344-1.0262937L3.0502525 14.363961 1.636039 12.9497475l1.4732131-1.4732131C2.5944371 10.7536018 2.2359054 9.9116566 2.0829584 9H0V7h2.0829584c.152947-.9116566.5114787-1.7536018 1.0262937-2.4765344L1.636039 3.0502525 3.0502525 1.636039l1.4732131 1.4732131C5.2463982 2.5944371 6.0883434 2.2359054 7 2.0829584V0h2v2.0829584c.9116566.152947 1.7536018.5114787 2.4765344 1.0262937zM8 12c2.209139 0 4-1.790861 4-4s-1.790861-4-4-4-4 1.790861-4 4 1.790861 4 4 4z" opacity=".5"/>\n</svg>\n'},b17e:function(t,e){t.exports='<svg xmlns="http://www.w3.org/2000/svg" width="24" height="21">\n <path fill="#A4BBCB" fill-rule="nonzero" d="M13 10l3-3c.6902336-.73713266 1.4429032-1.26058218 2-1 .2605822.55709682-.2628673 1.30976636-1 2l-3 3c.1531248.4707586.1875961.6844547 0 1 .1875961 1.0625747-.7498292 2-2 2-1.0625747 0-2-.9374253-2-2 0-1.2501708.9374253-2.1875961 2-2 .3155453-.1875961.5292414-.1531248 1 0zm8 10c-.08276.0634515-.7131836.1223062-1 0-.5634515-.58276-.6223062-1.2131836 0-2 1.1963422-1.4063656 2-3.6213758 2-6 0-5.5228475-4.4771525-10-10-10S2 6.4771525 2 12c0 2.3848064.80099865 4.5939865 2 6 .62209487.7857069.56386353 1.4161884 0 2-.28570688.1220949-.91618845.0638635-1 0-2.03512593-2.4863139-3-5.1474677-3-8C0 5.372583 5.372583 0 12 0s12 5.372583 12 12c0 2.8461786-.967377 5.5124254-3 8zM9 16h6c.5522847 0 1 .4477153 1 1s-.4477153 1-1 1H9c-.55228475 0-1-.4477153-1-1s.44771525-1 1-1z"/>\n</svg>\n'},b569:function(t,e){t.exports='<svg width="32" height="32" viewBox="-4 -4 32 32" xmlns="http://www.w3.org/2000/svg">\n <path d="M19.593 5.493l-2.842 2.842A6.002 6.002 0 0 1 13 17.917l-.001 4.034c5.053-.502 9-4.766 9-9.951a9.96 9.96 0 0 0-2.407-6.507zM18.146 4.11A9.95 9.95 0 0 0 13 2.05v4.034c.83.14 1.604.45 2.281.893l2.865-2.865zM2.05 13A10.003 10.003 0 0 0 11 21.95v-4.033A6.005 6.005 0 0 1 6.083 13H2.049zm0-2h4.034A6.005 6.005 0 0 1 11 6.083V2.049A10.003 10.003 0 0 0 2.05 11zM12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12zm0-8a4 4 0 1 0 0-8 4 4 0 0 0 0 8z" fill="#A3BBCC" fill-rule="evenodd"/>\n</svg>\n'},c9fa:function(t,e){t.exports='<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">\n <path fill="#BFBFBF" fill-rule="evenodd" d="M3 12v1c0 .5522847.4477153 1 1 1h4c.5522847 0 1 .4477153 1 1s-.4477153 1-1 1H4c-1.6568542 0-3-1.3431458-3-3v-1c-.5522847 0-1-.4477153-1-1V7c0-.5522847.4477153-1 1-1h.0708889C1.5561185 2.6077059 4.4735281 0 8 0s6.4438815 2.6077059 6.9291111 6H15c.5522847 0 1 .4477153 1 1v4c0 .5522847-.4477153 1-1 1h-2c-.5522847 0-1-.4477153-1-1V7c0-.5188639.3951689-.9454312.9009623-.9951576C12.439565 3.7201899 10.4206685 2 8 2 5.5793315 2 3.560435 3.7201899 3.0990377 6.0048424 3.6048311 6.0545688 4 6.4811361 4 7v4c0 .5522847-.4477153 1-1 1z"/>\n</svg>\n'},ee98:function(t,e){t.exports='<svg width="32" height="32" viewBox="-5 -4 32 32" xmlns="http://www.w3.org/2000/svg">\n <path d="M2 24h18a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2zm0-2V2h18v20H2zm3-7h12v-2H5v2zm0-4h5V9H5v2zm7 0h5V9h-5v2zM5 7h12V5H5v2zm0 12h5v-2H5v2zm7 0h5v-2h-5v2z" fill="#A3BBCC" fill-rule="evenodd"/>\n</svg>\n'},f31f:function(t,e){t.exports='<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">\n <path fill="#FFF" fill-rule="evenodd" d="M16 8c0-4.418278-3.58172-8-8-8S0 3.581722 0 8s3.58172 8 8 8 8-3.581722 8-8zm-1.5 0c0 3.5898509-2.91015 6.5-6.5 6.5S1.5 11.5898509 1.5 8 4.41015 1.5 8 1.5s6.5 2.9101491 6.5 6.5zM6 12h4v-1H9V7H6v1h1v3H6v1zm1-6.5046844C7 5.7740451 7.21404 6 7.50468 6h.99064C8.77405 6 9 5.785965 9 5.4953156v-.9906312C9 4.2259549 8.78596 4 8.49532 4h-.99064C7.22595 4 7 4.214035 7 4.5046844v.9906312z" opacity=".60000002"/>\n</svg>\n'}})["default"]}));
//# sourceMappingURL=KIcon.umd.min.js.map
{
"name": "@kongponents/kicon",
"version": "0.3.3",
"description": "Icon component.",
"version": "0.3.4",
"description": "Icon component",
"main": "dist/KIcon.umd.min.js",

@@ -22,3 +22,3 @@ "componentName": "KIcon",

"homepage": "https://github.com/Kong/kongponents#readme",
"gitHead": "eb5fdda46d287e93fb32d9eb5d86f88d023a719a"
"gitHead": "05e0727243c55d9ec16bddf9cc0f48a20e0f15b5"
}

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc