@luminati-io/uikit 6.3.59 → 6.3.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -57195,9 +57195,9 @@ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r)
|
|
57195
57195
|
function _iterableToArray(r) { if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r); }
|
57196
57196
|
function _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }
|
57197
57197
|
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
57198
|
-
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
57199
57198
|
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
57200
57199
|
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; }
|
57200
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
57201
57201
|
|
57202
57202
|
|
57203
57203
|
|
@@ -57210,17 +57210,21 @@ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t =
|
|
57210
57210
|
|
57211
57211
|
|
57212
57212
|
|
57213
|
-
var Table = function
|
57213
|
+
var Table = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().forwardRef(function _Table(props, ref) {
|
57214
57214
|
var context = (0,_context__WEBPACK_IMPORTED_MODULE_6__.useTableContext)();
|
57215
57215
|
// not under context
|
57216
57216
|
if (context === _context__WEBPACK_IMPORTED_MODULE_6__.defaultContextValue) {
|
57217
|
-
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().createElement(_context__WEBPACK_IMPORTED_MODULE_6__.Provider, props, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().createElement(InnerTable,
|
57217
|
+
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().createElement(_context__WEBPACK_IMPORTED_MODULE_6__.Provider, props, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().createElement(InnerTable, _extends({
|
57218
|
+
ref: ref
|
57219
|
+
}, props)));
|
57218
57220
|
}
|
57219
|
-
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().createElement(InnerTable,
|
57220
|
-
|
57221
|
+
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().createElement(InnerTable, _extends({
|
57222
|
+
ref: ref
|
57223
|
+
}, props));
|
57224
|
+
});
|
57221
57225
|
Table.displayName = 'Table';
|
57222
57226
|
Table.propTypes = lodash_cloneDeep__WEBPACK_IMPORTED_MODULE_1___default()(_context__WEBPACK_IMPORTED_MODULE_6__.Provider.propTypes);
|
57223
|
-
var InnerTable = function
|
57227
|
+
var InnerTable = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().forwardRef(function _InnerTable(props, ref) {
|
57224
57228
|
var _useTableContext = (0,_context__WEBPACK_IMPORTED_MODULE_6__.useTableContext)(),
|
57225
57229
|
getTableProps = _useTableContext.getTableProps,
|
57226
57230
|
context = _objectWithoutProperties(_useTableContext, _excluded);
|
@@ -57237,6 +57241,14 @@ var InnerTable = function InnerTable(props) {
|
|
57237
57241
|
var tableRef = (0,react__WEBPACK_IMPORTED_MODULE_2__.useRef)();
|
57238
57242
|
var headerRef = (0,react__WEBPACK_IMPORTED_MODULE_2__.useRef)();
|
57239
57243
|
var footerRef = (0,react__WEBPACK_IMPORTED_MODULE_2__.useRef)();
|
57244
|
+
(0,react__WEBPACK_IMPORTED_MODULE_2__.useImperativeHandle)(ref, function () {
|
57245
|
+
return {
|
57246
|
+
wrapperRef: wrapperRef,
|
57247
|
+
tableRef: tableRef,
|
57248
|
+
headerRef: headerRef,
|
57249
|
+
footerRef: footerRef
|
57250
|
+
};
|
57251
|
+
}, []);
|
57240
57252
|
var onScroll = scrollable ? function (evt) {
|
57241
57253
|
if (footerRef.current) footerRef.current.scrollLeft = evt.target.scrollLeft;
|
57242
57254
|
if (headerRef.current) headerRef.current.scrollLeft = evt.target.scrollLeft;
|
@@ -57290,7 +57302,7 @@ var InnerTable = function InnerTable(props) {
|
|
57290
57302
|
scrollTarget: scrollTarget,
|
57291
57303
|
wrapperRef: wrapperRef
|
57292
57304
|
})));
|
57293
|
-
};
|
57305
|
+
});
|
57294
57306
|
InnerTable.displayName = 'InnerTable';
|
57295
57307
|
var TableWrapper = styled_components__WEBPACK_IMPORTED_MODULE_3___default().div.withConfig({
|
57296
57308
|
displayName: "TableWrapper",
|
@@ -100861,7 +100873,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
100861
100873
|
"id": "email_and_phone_uikit_icon",
|
100862
100874
|
"use": "email_and_phone_uikit_icon-usage",
|
100863
100875
|
"viewBox": "0 0 20 20",
|
100864
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"email_and_phone_uikit_icon\"><path d=\"M0 0h20v20H0z\" /><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\".5\" d=\"M5.816 3.277c-.05-.256.152-.276.33-.276L17.538 3q.592 0 .798.068c.594.195.986.754.99 1.404q.01 1.18.006 7.767 0 .7-.06.911-.165.573-.714.884-.276.156-.649.157h-1.72c-.126 0-.23-.036-.244-.172-.02-.2.109-.26.274-.26h1.823q.08 0 .171-.036.49-.189.647-.63.057-.161.057-.775l-.001-7.879c0-.145-.053-.367-.133-.5a1.04 1.04 0 0 0-.525-.449q-.159-.06-.683-.06-3.676.004-11.518 0c-.108 0-.217-.034-.24-.
|
100876
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"email_and_phone_uikit_icon\"><path d=\"M0 0h20v20H0z\" /><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\".5\" d=\"M5.816 3.277c-.05-.256.152-.276.33-.276L17.538 3q.592 0 .798.068c.594.195.986.754.99 1.404q.01 1.18.006 7.767 0 .7-.06.911-.165.573-.714.884-.276.156-.649.157h-1.72c-.126 0-.23-.036-.244-.172-.02-.2.109-.26.274-.26h1.823q.08 0 .171-.036.49-.189.647-.63.057-.161.057-.775l-.001-7.879c0-.145-.053-.367-.133-.5a1.04 1.04 0 0 0-.525-.449q-.159-.06-.683-.06-3.676.004-11.518 0c-.108 0-.217-.034-.24-.153ZM6.661 10.793l1.587 1.644q.13.134.308.033.945-.531 1.877-1.041.328-.18.663.025l2.541 1.555q.353.216.418.327.12.203.115.442-.003.104-.14.43a52 52 0 0 0-.695 1.7q-.106.278-.265.434-.15.147-.408.299c-1.208.71-2.788.244-3.944-.334-1.583-.79-3.022-1.953-4.259-3.234-1.236-1.28-2.36-2.77-3.123-4.41C.778 7.467.328 5.832 1.013 4.58a2.2 2.2 0 0 1 .288-.422q.151-.165.42-.274.602-.246 1.642-.72.315-.143.414-.145a.75.75 0 0 1 .428.118q.106.068.315.433L6.022 6.2q.198.346.024.687-.492.964-1.004 1.942-.097.186.032.32zm-1.91 1.98q.493.512.928.905 1.03.932 2.24 1.71.583.373 1.222.664c.998.453 2.18.776 3.202.282.155-.075.28-.177.423-.285a.3.3 0 0 0 .098-.117q.472-1.149.851-2.04.112-.262-.122-.407-2.31-1.425-2.705-1.666-.132-.081-.258-.012-1.034.57-1.634.908-.389.219-.53.226a.66.66 0 0 1-.525-.205A2177 2177 0 0 1 4.785 9.47a.7.7 0 0 1-.198-.544q.007-.146.218-.549.327-.621.877-1.692a.26.26 0 0 0-.012-.267q-.233-.408-1.61-2.801-.138-.243-.392-.127-.86.393-1.97.882a.3.3 0 0 0-.112.102c-.105.149-.204.277-.276.438-.477 1.059-.164 2.282.273 3.315q.28.662.642 1.265.75 1.255 1.65 2.32.381.45.875.962Z\" /><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\".5\" d=\"M10.156 8.576q-.273-.255-2.939-2.779a.43.43 0 0 1-.13-.208c-.036-.141.124-.248.24-.233q.053.006.18.128l4.43 4.21a.044.044 0 0 0 .06 0l5.086-4.828a.187.187 0 0 1 .27.012l.018.02a.205.205 0 0 1-.012.284L13.78 8.579a.02.02 0 0 0-.007.016.02.02 0 0 0 .007.017l3.577 3.407a.2.2 0 0 1 .063.14.2.2 0 0 1-.053.144l-.014.016a.194.194 0 0 1-.278.01L13.49 8.913a.043.043 0 0 0-.06 0q-.603.583-1.183 1.132c-.113.107-.257.275-.413.127q-.707-.669-1.323-1.263a.036.036 0 0 0-.05 0q-1.072 1.023-1.656 1.585c-.114.108-.26.167-.367.004q-.1-.154.036-.282a214 214 0 0 0 1.689-1.615l.002-.009-.002-.009z\" /></symbol>"
|
100865
100877
|
});
|
100866
100878
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
100867
100879
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|
@@ -100889,7 +100901,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
100889
100901
|
"id": "email_phone_uikit_icon",
|
100890
100902
|
"use": "email_phone_uikit_icon-usage",
|
100891
100903
|
"viewBox": "0 0 20 20",
|
100892
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"email_phone_uikit_icon\"><path d=\"M0 0h20v20H0z\" /><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\".5\" d=\"M9.816 3.277c-.05-.256.152-.276.33-.276L17.538 3q.592 0 .798.068c.594.195.986.754.99 1.404q.01 1.18.006 7.767 0 .7-.06.911-.165.573-.714.884c-.377.214-.837.316-.954.132-.104-.166.073-.234.61-.443q.489-.189.646-.63.057-.161.057-.775l-.001-7.879c0-.145-.053-.367-.133-.5a1.04 1.04 0 0 0-.525-.449q-.159-.06-.683-.06c-2.451.002-2.29.003-7.518 0-.108 0-.217-.034-.24-.153Z\" /><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\".5\" d=\"m13.172 8.58 3.911-3.714a.187.187 0 0 1 .27.012l.018.02a.205.205 0 0 1-.012.284l-3.577 3.397a.02.02 0 0 0-.007.016.02.02 0 0 0 .007.017l3.577 3.407a.2.2 0 0 1 .062.14.2.2 0 0 1-.052.144l-.015.016a.194.194 0 0 1-.278.01L13.49 8.913z\" /><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m8.249 12.437-1.587-1.644-1.588-1.644q-.129-.133-.032-.319.512-.978 1.005-1.942a.69.69 0 0 0-.025-.687L4.521 3.569q-.209-.365-.316-.433a.75.75 0 0 0-.428-.118q-.099.002-.414.146-1.04.473-1.642.719a1.15 1.15 0 0 0-.42.274 2.2 2.2 0 0 0-.287.422c-.686 1.252-.236 2.887.322 4.085.764 1.639 1.887 3.13 3.124 4.41 1.236 1.28 2.675 2.443 4.258 3.233 1.157.578 2.736 1.044 3.945.334q.258-.151.407-.299.112-.11.197-.28l-.287-.41-.115.28a.3.3 0 0 1-.098.117l-.062.047c-.119.09-.229.174-.362.238-1.022.494-2.203.17-3.201-.282a9.6 9.6 0 0 1-1.222-.664 17 17 0 0 1-3.17-2.615q-.493-.512-.874-.962-.9-1.066-1.65-2.32-.362-.602-.642-1.265C1.146 7.193.834 5.97 1.31 4.911c.062-.138.143-.252.23-.
|
100904
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"email_phone_uikit_icon\"><path d=\"M0 0h20v20H0z\" /><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\".5\" d=\"M9.816 3.277c-.05-.256.152-.276.33-.276L17.538 3q.592 0 .798.068c.594.195.986.754.99 1.404q.01 1.18.006 7.767 0 .7-.06.911-.165.573-.714.884c-.377.214-.837.316-.954.132-.104-.166.073-.234.61-.443q.489-.189.646-.63.057-.161.057-.775l-.001-7.879c0-.145-.053-.367-.133-.5a1.04 1.04 0 0 0-.525-.449q-.159-.06-.683-.06c-2.451.002-2.29.003-7.518 0-.108 0-.217-.034-.24-.153Z\" /><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\".5\" d=\"m13.172 8.58 3.911-3.714a.187.187 0 0 1 .27.012l.018.02a.205.205 0 0 1-.012.284l-3.577 3.397a.02.02 0 0 0-.007.016.02.02 0 0 0 .007.017l3.577 3.407a.2.2 0 0 1 .062.14.2.2 0 0 1-.052.144l-.015.016a.194.194 0 0 1-.278.01L13.49 8.913z\" /><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m8.249 12.437-1.587-1.644-1.588-1.644q-.129-.133-.032-.319.512-.978 1.005-1.942a.69.69 0 0 0-.025-.687L4.521 3.569q-.209-.365-.316-.433a.75.75 0 0 0-.428-.118q-.099.002-.414.146-1.04.473-1.642.719a1.15 1.15 0 0 0-.42.274 2.2 2.2 0 0 0-.287.422c-.686 1.252-.236 2.887.322 4.085.764 1.639 1.887 3.13 3.124 4.41 1.236 1.28 2.675 2.443 4.258 3.233 1.157.578 2.736 1.044 3.945.334q.258-.151.407-.299.112-.11.197-.28l-.287-.41-.115.28a.3.3 0 0 1-.098.117l-.062.047c-.119.09-.229.174-.362.238-1.022.494-2.203.17-3.201-.282a9.6 9.6 0 0 1-1.222-.664 17 17 0 0 1-3.17-2.615q-.493-.512-.874-.962-.9-1.066-1.65-2.32-.362-.602-.642-1.265C1.146 7.193.834 5.97 1.31 4.911c.062-.138.143-.252.23-.375q.023-.03.046-.063a.3.3 0 0 1 .112-.102q1.11-.489 1.97-.882.254-.116.393.127l1.61 2.8q.078.138.011.268-.55 1.071-.877 1.692-.21.402-.217.55a.7.7 0 0 0 .197.543 1930 1930 0 0 0 3.156 3.267.66.66 0 0 0 .525.205q.143-.007.53-.226.526-.296 1.387-.771l-.246-.352q-.786.431-1.58.878-.18.1-.308-.033\" clip-rule=\"evenodd\" /><path fill=\"currentColor\" d=\"m6.662 10.793.18-.174zm1.587 1.644-.18.173zM5.074 9.149l-.18.174zm-.032-.319.222.117zm1.005-1.942L6.27 7zM6.022 6.2l.218-.124zM4.521 3.569l.217-.124zm-.316-.433.134-.211zm-.428-.118.007.25zm-.414.146.104.227zm-1.642.719-.095-.232zm-.42.274.185.17zm-.287.422.219.12zm.322 4.085.227-.106zm3.124 4.41.18-.175zm4.258 3.233-.111.224zm3.945.334-.127-.216zm.407-.299-.175-.178zm.197-.28.224.113.067-.133-.086-.123zm-.287-.41.205-.143-.262-.374-.174.422zm-.115.28-.232-.095zm-.098.117-.15-.2h-.001zm-.062.047.152.198zm-.362.238-.108-.225zm-3.201-.282-.103.227zm-1.222-.664.135-.21zm-2.24-1.71.168-.185zm-.93-.905.18-.174zm-.874-.962-.19.161zm-1.65-2.32.214-.128zm-.642-1.265.23-.097zM1.31 4.911l-.228-.103zm.23-.375-.203-.145zm.046-.063.204.143h.001zm.112-.102.1.229H1.8zm1.97-.882-.103-.228zm.393.127-.217.124zm1.61 2.8-.218.125zm.011.268-.222-.115zm-.877 1.692-.22-.116h-.001zm-.217.55-.25-.013v.001zm.197.543-.18.173zm1.578 1.634-.18.174zm1.578 1.633-.18.174h.001zm.525.205.013.25zm.53-.226.123.218zm1.387-.771.12.218.244-.134-.16-.228zm-.246-.352.204-.144-.128-.184-.197.109zm-1.58.878-.122-.218zm-2.075-1.504 1.587 1.644.36-.347-1.587-1.644zM4.894 9.323l1.588 1.643.36-.347-1.588-1.644zm-.073-.609a.55.55 0 0 0-.068.314.5.5 0 0 0 .141.295l.36-.348-.006-.007.002.01c.001.008-.003 0 .014-.031zm1.003-1.94q-.492.963-1.003 1.94l.443.232q.512-.98 1.006-1.945zm-.019-.45c.093.163.094.303.02.45l.445.227a.93.93 0 0 0-.03-.924zM4.304 3.693l1.501 2.631.435-.247-1.502-2.632zm-.233-.346c-.006-.004.015.01.065.079q.067.091.168.267l.434-.248a4 4 0 0 0-.198-.314.8.8 0 0 0-.2-.206zm-.287-.08a.5.5 0 0 1 .287.08l.268-.422a1 1 0 0 0-.568-.157zm-.317.124a3 3 0 0 1 .24-.1c.067-.023.086-.024.077-.023l-.013-.5a.8.8 0 0 0-.23.052 4 4 0 0 0-.282.116zm-1.652.723q.61-.249 1.652-.723l-.207-.455q-1.037.472-1.634.715zm-.329.212a.9.9 0 0 1 .33-.212l-.19-.463a1.4 1.4 0 0 0-.508.337zm-.253.373q.138-.25.253-.372l-.368-.339q-.169.186-.324.471zm.33 3.86c-.272-.586-.514-1.269-.606-1.95-.093-.683-.033-1.346.276-1.91l-.439-.24C.418 5.147.36 5.928.461 6.675s.363 1.481.649 2.094zm3.077 4.34c-1.223-1.265-2.328-2.733-3.077-4.34l-.453.21c.778 1.67 1.92 3.184 3.17 4.478zm4.19 3.185c-1.55-.775-2.968-1.918-4.19-3.184l-.36.347c1.25 1.294 2.712 2.478 4.327 3.284zm3.706.341c-.54.317-1.174.38-1.83.284-.654-.095-1.312-.344-1.876-.625l-.223.447c.592.296 1.302.568 2.028.673s1.486.045 2.154-.348zm.359-.26a1.8 1.8 0 0 1-.359.26l.253.431q.276-.16.457-.336zm.15-.215a.8.8 0 0 1-.15.214l.35.356a1.3 1.3 0 0 0 .246-.344zm.427-.03-.287-.411-.41.287.288.41zm-.376.107.115-.28-.462-.19-.116.28zm-.18.221a.54.54 0 0 0 .18-.221l-.463-.19.003-.006-.02.018zm-.06.046.061-.046-.301-.399-.063.048zm-.404.265c.16-.076.289-.176.405-.265l-.304-.397a2 2 0 0 1-.318.212zm-3.413-.28c1.007.457 2.283.827 3.413.28l-.217-.45c-.914.442-2.002.163-2.99-.285zm-1.254-.681q.597.384 1.254.681l.206-.455a9 9 0 0 1-1.19-.647zm-2.273-1.734q1.046.945 2.273 1.734l.27-.42a17 17 0 0 1-2.207-1.685zm-.941-.917q.498.516.941.917l.336-.37q-.428-.389-.918-.895zm-.886-.974q.387.458.886.974l.36-.348a20 20 0 0 1-.864-.95zM2.011 9.619a18 18 0 0 0 1.674 2.353l.382-.322A17.3 17.3 0 0 1 2.44 9.363zm-.658-1.296q.287.68.658 1.297l.429-.257a10 10 0 0 1-.626-1.234zm-.27-3.515c-.524 1.161-.171 2.473.27 3.515l.46-.194c-.432-1.023-.706-2.16-.275-3.116zm.254-.417c-.086.12-.181.253-.255.417l.456.205c.05-.112.117-.206.207-.332zm.045-.062-.045.062.408.29.045-.065zm.216-.187a.53.53 0 0 0-.217.188l.41.285.017-.02-.01.005zm1.967-.88q-.859.392-1.967.88l.201.458q1.11-.489 1.974-.884zm.713.23a.56.56 0 0 0-.307-.267.56.56 0 0 0-.406.036l.208.455c.047-.021.056-.011.043-.015-.012-.004.002-.007.028.04zm1.61 2.8-1.61-2.8-.433.249q1.376 2.392 1.608 2.8zm.017.506a.51.51 0 0 0-.018-.506l-.434.25c.01.017.01.023.01.021l-.003.006zm-.878 1.695q.326-.622.878-1.695L5.46 6.57q-.55 1.07-.876 1.69zm-.19.444q-.001.001.008-.035a1 1 0 0 1 .033-.095q.047-.12.149-.314l-.443-.233a4 4 0 0 0-.17.362 1 1 0 0 0-.076.291zm.129.359a.46.46 0 0 1-.129-.36l-.5-.022a.96.96 0 0 0 .268.728zm1.576 1.634L4.966 9.295l-.36.347 1.577 1.635zm1.579 1.633L6.542 10.93l-.36.347 1.58 1.633zm.333.128a.4.4 0 0 1-.333-.129l-.359.349c.193.199.439.293.717.28zm.42-.194q-.187.105-.302.154a1 1 0 0 1-.09.033q-.034.009-.029.007l.026.5a.9.9 0 0 0 .289-.08q.15-.065.35-.178zm1.388-.772q-.861.475-1.388.773l.245.435q.525-.296 1.385-.77zm.326.075-.247-.352-.41.287.247.352zm-1.909.888q.794-.446 1.578-.877l-.24-.438q-.787.431-1.582.879zm-.61-.078a.48.48 0 0 0 .295.15.53.53 0 0 0 .316-.072l-.246-.436-.024.01q-.004 0 .007.001l.017.005-.006-.005z\" /><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"m6 2 10.28 14.45\" /></symbol>"
|
100893
100905
|
});
|
100894
100906
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
100895
100907
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|
@@ -104781,7 +104793,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
104781
104793
|
"id": "stop_uikit_icon",
|
104782
104794
|
"use": "stop_uikit_icon-usage",
|
104783
104795
|
"viewBox": "0 0 14 14",
|
104784
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 14 14\" id=\"stop_uikit_icon\"><g fill=\"currentColor\"><path d=\"M8.604 5.246H5.396c-.077 0-.14.06-.14.138v3.
|
104796
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 14 14\" id=\"stop_uikit_icon\"><g fill=\"currentColor\"><path d=\"M8.604 5.246H5.396c-.077 0-.14.06-.14.138v3.244c0 .076.062.139.14.139h3.208a.14.14 0 0 0 .14-.14V5.385a.14.14 0 0 0-.14-.138\" /><path d=\"M7 .925a6.075 6.075 0 1 0 0 12.15A6.075 6.075 0 0 0 7 .925M7 12.06A5.06 5.06 0 1 1 7 1.939a5.06 5.06 0 0 1 0 10.12\" /></g></symbol>"
|
104785
104797
|
});
|
104786
104798
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
104787
104799
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|