@oliasoft-open-source/react-ui-library 3.11.1-beta-4 → 3.11.1-beta-6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ var __publicField = (obj, key2, value) => {
5
5
  return value;
6
6
  };
7
7
  import * as React$4 from "react";
8
- import React__default, { useContext, isValidElement, useState, useRef, useEffect, useCallback as useCallback$1, createElement, forwardRef, useMemo as useMemo$1, useLayoutEffect as useLayoutEffect$1, createContext, useReducer, useDebugValue, Fragment as Fragment$1, Component as Component$1, PureComponent, useImperativeHandle, memo, cloneElement as cloneElement$1 } from "react";
8
+ import React__default, { useState, useRef, useEffect, useCallback as useCallback$1, createElement, forwardRef, useContext, useMemo as useMemo$1, useLayoutEffect as useLayoutEffect$1, createContext, isValidElement, useReducer, useDebugValue, Fragment as Fragment$1, Component as Component$1, PureComponent, useImperativeHandle, memo, cloneElement as cloneElement$1 } from "react";
9
9
  import ReactDOM, { createPortal, unstable_batchedUpdates, render } from "react-dom";
10
10
  import { validateNumber, cleanNumStr } from "@oliasoft-open-source/units";
11
11
  const global$2 = "";
@@ -1925,641 +1925,6 @@ var classnames = { exports: {} };
1925
1925
  })();
1926
1926
  })(classnames);
1927
1927
  const cx$2 = classnames.exports;
1928
- const chevron = "_chevron_ckxkd_341";
1929
- const expanded$2 = "_expanded_ckxkd_347";
1930
- const styles$T = {
1931
- chevron,
1932
- expanded: expanded$2
1933
- };
1934
- function _objectWithoutPropertiesLoose$7(source, excluded) {
1935
- if (source == null)
1936
- return {};
1937
- var target = {};
1938
- var sourceKeys = Object.keys(source);
1939
- var key2, i;
1940
- for (i = 0; i < sourceKeys.length; i++) {
1941
- key2 = sourceKeys[i];
1942
- if (excluded.indexOf(key2) >= 0)
1943
- continue;
1944
- target[key2] = source[key2];
1945
- }
1946
- return target;
1947
- }
1948
- function _extends$9() {
1949
- _extends$9 = Object.assign ? Object.assign.bind() : function(target) {
1950
- for (var i = 1; i < arguments.length; i++) {
1951
- var source = arguments[i];
1952
- for (var key2 in source) {
1953
- if (Object.prototype.hasOwnProperty.call(source, key2)) {
1954
- target[key2] = source[key2];
1955
- }
1956
- }
1957
- }
1958
- return target;
1959
- };
1960
- return _extends$9.apply(this, arguments);
1961
- }
1962
- function _setPrototypeOf$6(o, p) {
1963
- _setPrototypeOf$6 = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
1964
- o2.__proto__ = p2;
1965
- return o2;
1966
- };
1967
- return _setPrototypeOf$6(o, p);
1968
- }
1969
- function _inheritsLoose$5(subClass, superClass) {
1970
- subClass.prototype = Object.create(superClass.prototype);
1971
- subClass.prototype.constructor = subClass;
1972
- _setPrototypeOf$6(subClass, superClass);
1973
- }
1974
- function __spreadArray$2(to2, from2, pack) {
1975
- if (pack || arguments.length === 2)
1976
- for (var i = 0, l = from2.length, ar2; i < l; i++) {
1977
- if (ar2 || !(i in from2)) {
1978
- if (!ar2)
1979
- ar2 = Array.prototype.slice.call(from2, 0, i);
1980
- ar2[i] = from2[i];
1981
- }
1982
- }
1983
- return to2.concat(ar2 || Array.prototype.slice.call(from2));
1984
- }
1985
- typeof SuppressedError === "function" ? SuppressedError : function(error2, suppressed, message2) {
1986
- var e2 = new Error(message2);
1987
- return e2.name = "SuppressedError", e2.error = error2, e2.suppressed = suppressed, e2;
1988
- };
1989
- /*!
1990
- * content-type
1991
- * Copyright(c) 2015 Douglas Christopher Wilson
1992
- * MIT Licensed
1993
- */
1994
- var PARAM_REGEXP = /; *([!#$%&'*+.^_`|~0-9A-Za-z-]+) *= *("(?:[\u000b\u0020\u0021\u0023-\u005b\u005d-\u007e\u0080-\u00ff]|\\[\u000b\u0020-\u00ff])*"|[!#$%&'*+.^_`|~0-9A-Za-z-]+) */g;
1995
- var QESC_REGEXP = /\\([\u000b\u0020-\u00ff])/g;
1996
- var TYPE_REGEXP = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+\/[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;
1997
- var parse_1$1 = parse$3;
1998
- function parse$3(string) {
1999
- if (!string) {
2000
- throw new TypeError("argument string is required");
2001
- }
2002
- var header2 = typeof string === "object" ? getcontenttype(string) : string;
2003
- if (typeof header2 !== "string") {
2004
- throw new TypeError("argument string is required to be a string");
2005
- }
2006
- var index2 = header2.indexOf(";");
2007
- var type = index2 !== -1 ? header2.slice(0, index2).trim() : header2.trim();
2008
- if (!TYPE_REGEXP.test(type)) {
2009
- throw new TypeError("invalid media type");
2010
- }
2011
- var obj = new ContentType(type.toLowerCase());
2012
- if (index2 !== -1) {
2013
- var key2;
2014
- var match2;
2015
- var value;
2016
- PARAM_REGEXP.lastIndex = index2;
2017
- while (match2 = PARAM_REGEXP.exec(header2)) {
2018
- if (match2.index !== index2) {
2019
- throw new TypeError("invalid parameter format");
2020
- }
2021
- index2 += match2[0].length;
2022
- key2 = match2[1].toLowerCase();
2023
- value = match2[2];
2024
- if (value.charCodeAt(0) === 34) {
2025
- value = value.slice(1, -1);
2026
- if (value.indexOf("\\") !== -1) {
2027
- value = value.replace(QESC_REGEXP, "$1");
2028
- }
2029
- }
2030
- obj.parameters[key2] = value;
2031
- }
2032
- if (index2 !== header2.length) {
2033
- throw new TypeError("invalid parameter format");
2034
- }
2035
- }
2036
- return obj;
2037
- }
2038
- function getcontenttype(obj) {
2039
- var header2;
2040
- if (typeof obj.getHeader === "function") {
2041
- header2 = obj.getHeader("content-type");
2042
- } else if (typeof obj.headers === "object") {
2043
- header2 = obj.headers && obj.headers["content-type"];
2044
- }
2045
- if (typeof header2 !== "string") {
2046
- throw new TypeError("content-type header is missing from object");
2047
- }
2048
- return header2;
2049
- }
2050
- function ContentType(type) {
2051
- this.parameters = /* @__PURE__ */ Object.create(null);
2052
- this.type = type;
2053
- }
2054
- var cache$1 = /* @__PURE__ */ new Map();
2055
- var cloneSvg = function cloneSvg2(sourceSvg) {
2056
- return sourceSvg.cloneNode(true);
2057
- };
2058
- var isLocal = function isLocal2() {
2059
- return window.location.protocol === "file:";
2060
- };
2061
- var makeAjaxRequest = function makeAjaxRequest2(url, httpRequestWithCredentials, callback) {
2062
- var httpRequest = new XMLHttpRequest();
2063
- httpRequest.onreadystatechange = function() {
2064
- try {
2065
- if (!/\.svg/i.test(url) && httpRequest.readyState === 2) {
2066
- var contentType = httpRequest.getResponseHeader("Content-Type");
2067
- if (!contentType) {
2068
- throw new Error("Content type not found");
2069
- }
2070
- var type = parse_1$1(contentType).type;
2071
- if (!(type === "image/svg+xml" || type === "text/plain")) {
2072
- throw new Error("Invalid content type: ".concat(type));
2073
- }
2074
- }
2075
- if (httpRequest.readyState === 4) {
2076
- if (httpRequest.status === 404 || httpRequest.responseXML === null) {
2077
- throw new Error(isLocal() ? "Note: SVG injection ajax calls do not work locally without adjusting security settings in your browser. Or consider using a local webserver." : "Unable to load SVG file: " + url);
2078
- }
2079
- if (httpRequest.status === 200 || isLocal() && httpRequest.status === 0) {
2080
- callback(null, httpRequest);
2081
- } else {
2082
- throw new Error("There was a problem injecting the SVG: " + httpRequest.status + " " + httpRequest.statusText);
2083
- }
2084
- }
2085
- } catch (error2) {
2086
- httpRequest.abort();
2087
- if (error2 instanceof Error) {
2088
- callback(error2, httpRequest);
2089
- } else {
2090
- throw error2;
2091
- }
2092
- }
2093
- };
2094
- httpRequest.open("GET", url);
2095
- httpRequest.withCredentials = httpRequestWithCredentials;
2096
- if (httpRequest.overrideMimeType) {
2097
- httpRequest.overrideMimeType("text/xml");
2098
- }
2099
- httpRequest.send();
2100
- };
2101
- var requestQueue = {};
2102
- var queueRequest = function queueRequest2(url, callback) {
2103
- requestQueue[url] = requestQueue[url] || [];
2104
- requestQueue[url].push(callback);
2105
- };
2106
- var processRequestQueue = function processRequestQueue2(url) {
2107
- var _loop_1 = function _loop_12(i2, len2) {
2108
- setTimeout(function() {
2109
- if (Array.isArray(requestQueue[url])) {
2110
- var cacheValue = cache$1.get(url);
2111
- var callback = requestQueue[url][i2];
2112
- if (cacheValue instanceof SVGSVGElement) {
2113
- callback(null, cloneSvg(cacheValue));
2114
- }
2115
- if (cacheValue instanceof Error) {
2116
- callback(cacheValue);
2117
- }
2118
- if (i2 === requestQueue[url].length - 1) {
2119
- delete requestQueue[url];
2120
- }
2121
- }
2122
- }, 0);
2123
- };
2124
- for (var i = 0, len = requestQueue[url].length; i < len; i++) {
2125
- _loop_1(i);
2126
- }
2127
- };
2128
- var loadSvgCached = function loadSvgCached2(url, httpRequestWithCredentials, callback) {
2129
- if (cache$1.has(url)) {
2130
- var cacheValue = cache$1.get(url);
2131
- if (cacheValue === void 0) {
2132
- queueRequest(url, callback);
2133
- return;
2134
- }
2135
- if (cacheValue instanceof SVGSVGElement) {
2136
- callback(null, cloneSvg(cacheValue));
2137
- return;
2138
- }
2139
- }
2140
- cache$1.set(url, void 0);
2141
- queueRequest(url, callback);
2142
- makeAjaxRequest(url, httpRequestWithCredentials, function(error2, httpRequest) {
2143
- var _a;
2144
- if (error2) {
2145
- cache$1.set(url, error2);
2146
- } else if (((_a = httpRequest.responseXML) === null || _a === void 0 ? void 0 : _a.documentElement) instanceof SVGSVGElement) {
2147
- cache$1.set(url, httpRequest.responseXML.documentElement);
2148
- }
2149
- processRequestQueue(url);
2150
- });
2151
- };
2152
- var loadSvgUncached = function loadSvgUncached2(url, httpRequestWithCredentials, callback) {
2153
- makeAjaxRequest(url, httpRequestWithCredentials, function(error2, httpRequest) {
2154
- var _a;
2155
- if (error2) {
2156
- callback(error2);
2157
- } else if (((_a = httpRequest.responseXML) === null || _a === void 0 ? void 0 : _a.documentElement) instanceof SVGSVGElement) {
2158
- callback(null, httpRequest.responseXML.documentElement);
2159
- }
2160
- });
2161
- };
2162
- var idCounter = 0;
2163
- var uniqueId$1 = function uniqueId() {
2164
- return ++idCounter;
2165
- };
2166
- var injectedElements = [];
2167
- var ranScripts = {};
2168
- var svgNamespace$1 = "http://www.w3.org/2000/svg";
2169
- var xlinkNamespace$1 = "http://www.w3.org/1999/xlink";
2170
- var injectElement = function injectElement2(el2, evalScripts, renumerateIRIElements, cacheRequests, httpRequestWithCredentials, beforeEach, callback) {
2171
- var elUrl = el2.getAttribute("data-src") || el2.getAttribute("src");
2172
- if (!elUrl) {
2173
- callback(new Error("Invalid data-src or src attribute"));
2174
- return;
2175
- }
2176
- if (injectedElements.indexOf(el2) !== -1) {
2177
- injectedElements.splice(injectedElements.indexOf(el2), 1);
2178
- el2 = null;
2179
- return;
2180
- }
2181
- injectedElements.push(el2);
2182
- el2.setAttribute("src", "");
2183
- var loadSvg = cacheRequests ? loadSvgCached : loadSvgUncached;
2184
- loadSvg(elUrl, httpRequestWithCredentials, function(error2, svg) {
2185
- if (!svg) {
2186
- injectedElements.splice(injectedElements.indexOf(el2), 1);
2187
- el2 = null;
2188
- callback(error2);
2189
- return;
2190
- }
2191
- var elId = el2.getAttribute("id");
2192
- if (elId) {
2193
- svg.setAttribute("id", elId);
2194
- }
2195
- var elTitle = el2.getAttribute("title");
2196
- if (elTitle) {
2197
- svg.setAttribute("title", elTitle);
2198
- }
2199
- var elWidth = el2.getAttribute("width");
2200
- if (elWidth) {
2201
- svg.setAttribute("width", elWidth);
2202
- }
2203
- var elHeight = el2.getAttribute("height");
2204
- if (elHeight) {
2205
- svg.setAttribute("height", elHeight);
2206
- }
2207
- var mergedClasses = Array.from(new Set(__spreadArray$2(__spreadArray$2(__spreadArray$2([], (svg.getAttribute("class") || "").split(" "), true), ["injected-svg"], false), (el2.getAttribute("class") || "").split(" "), true))).join(" ").trim();
2208
- svg.setAttribute("class", mergedClasses);
2209
- var elStyle = el2.getAttribute("style");
2210
- if (elStyle) {
2211
- svg.setAttribute("style", elStyle);
2212
- }
2213
- svg.setAttribute("data-src", elUrl);
2214
- var elData = [].filter.call(el2.attributes, function(at) {
2215
- return /^data-\w[\w-]*$/.test(at.name);
2216
- });
2217
- Array.prototype.forEach.call(elData, function(dataAttr) {
2218
- if (dataAttr.name && dataAttr.value) {
2219
- svg.setAttribute(dataAttr.name, dataAttr.value);
2220
- }
2221
- });
2222
- if (renumerateIRIElements) {
2223
- var iriElementsAndProperties_1 = {
2224
- clipPath: ["clip-path"],
2225
- "color-profile": ["color-profile"],
2226
- cursor: ["cursor"],
2227
- filter: ["filter"],
2228
- linearGradient: ["fill", "stroke"],
2229
- marker: ["marker", "marker-start", "marker-mid", "marker-end"],
2230
- mask: ["mask"],
2231
- path: [],
2232
- pattern: ["fill", "stroke"],
2233
- radialGradient: ["fill", "stroke"]
2234
- };
2235
- var element_1;
2236
- var elements_1;
2237
- var properties_1;
2238
- var currentId_1;
2239
- var newId_1;
2240
- Object.keys(iriElementsAndProperties_1).forEach(function(key2) {
2241
- element_1 = key2;
2242
- properties_1 = iriElementsAndProperties_1[key2];
2243
- elements_1 = svg.querySelectorAll(element_1 + "[id]");
2244
- var _loop_1 = function _loop_12(a3, elementsLen2) {
2245
- currentId_1 = elements_1[a3].id;
2246
- newId_1 = currentId_1 + "-" + uniqueId$1();
2247
- var referencingElements;
2248
- Array.prototype.forEach.call(properties_1, function(property) {
2249
- referencingElements = svg.querySelectorAll("[" + property + '*="' + currentId_1 + '"]');
2250
- for (var b2 = 0, referencingElementLen = referencingElements.length; b2 < referencingElementLen; b2++) {
2251
- var attrValue = referencingElements[b2].getAttribute(property);
2252
- if (attrValue && !attrValue.match(new RegExp('url\\("?#' + currentId_1 + '"?\\)'))) {
2253
- continue;
2254
- }
2255
- referencingElements[b2].setAttribute(property, "url(#" + newId_1 + ")");
2256
- }
2257
- });
2258
- var allLinks = svg.querySelectorAll("[*|href]");
2259
- var links = [];
2260
- for (var c2 = 0, allLinksLen = allLinks.length; c2 < allLinksLen; c2++) {
2261
- var href = allLinks[c2].getAttributeNS(xlinkNamespace$1, "href");
2262
- if (href && href.toString() === "#" + elements_1[a3].id) {
2263
- links.push(allLinks[c2]);
2264
- }
2265
- }
2266
- for (var d2 = 0, linksLen = links.length; d2 < linksLen; d2++) {
2267
- links[d2].setAttributeNS(xlinkNamespace$1, "href", "#" + newId_1);
2268
- }
2269
- elements_1[a3].id = newId_1;
2270
- };
2271
- for (var a2 = 0, elementsLen = elements_1.length; a2 < elementsLen; a2++) {
2272
- _loop_1(a2);
2273
- }
2274
- });
2275
- }
2276
- svg.removeAttribute("xmlns:a");
2277
- var scripts = svg.querySelectorAll("script");
2278
- var scriptsToEval = [];
2279
- var script;
2280
- var scriptType;
2281
- for (var i = 0, scriptsLen = scripts.length; i < scriptsLen; i++) {
2282
- scriptType = scripts[i].getAttribute("type");
2283
- if (!scriptType || scriptType === "application/ecmascript" || scriptType === "application/javascript" || scriptType === "text/javascript") {
2284
- script = scripts[i].innerText || scripts[i].textContent;
2285
- if (script) {
2286
- scriptsToEval.push(script);
2287
- }
2288
- svg.removeChild(scripts[i]);
2289
- }
2290
- }
2291
- if (scriptsToEval.length > 0 && (evalScripts === "always" || evalScripts === "once" && !ranScripts[elUrl])) {
2292
- for (var l = 0, scriptsToEvalLen = scriptsToEval.length; l < scriptsToEvalLen; l++) {
2293
- new Function(scriptsToEval[l])(window);
2294
- }
2295
- ranScripts[elUrl] = true;
2296
- }
2297
- var styleTags = svg.querySelectorAll("style");
2298
- Array.prototype.forEach.call(styleTags, function(styleTag) {
2299
- styleTag.textContent += "";
2300
- });
2301
- svg.setAttribute("xmlns", svgNamespace$1);
2302
- svg.setAttribute("xmlns:xlink", xlinkNamespace$1);
2303
- beforeEach(svg);
2304
- if (!el2.parentNode) {
2305
- injectedElements.splice(injectedElements.indexOf(el2), 1);
2306
- el2 = null;
2307
- callback(new Error("Parent node is null"));
2308
- return;
2309
- }
2310
- el2.parentNode.replaceChild(svg, el2);
2311
- injectedElements.splice(injectedElements.indexOf(el2), 1);
2312
- el2 = null;
2313
- callback(null, svg);
2314
- });
2315
- };
2316
- var SVGInjector = function SVGInjector2(elements, _a) {
2317
- var _b = _a === void 0 ? {} : _a, _c = _b.afterAll, afterAll = _c === void 0 ? function() {
2318
- return void 0;
2319
- } : _c, _d = _b.afterEach, afterEach = _d === void 0 ? function() {
2320
- return void 0;
2321
- } : _d, _e2 = _b.beforeEach, beforeEach = _e2 === void 0 ? function() {
2322
- return void 0;
2323
- } : _e2, _f = _b.cacheRequests, cacheRequests = _f === void 0 ? true : _f, _g = _b.evalScripts, evalScripts = _g === void 0 ? "never" : _g, _h = _b.httpRequestWithCredentials, httpRequestWithCredentials = _h === void 0 ? false : _h, _j = _b.renumerateIRIElements, renumerateIRIElements = _j === void 0 ? true : _j;
2324
- if (elements && "length" in elements) {
2325
- var elementsLoaded_1 = 0;
2326
- for (var i = 0, j2 = elements.length; i < j2; i++) {
2327
- injectElement(elements[i], evalScripts, renumerateIRIElements, cacheRequests, httpRequestWithCredentials, beforeEach, function(error2, svg) {
2328
- afterEach(error2, svg);
2329
- if (elements && "length" in elements && elements.length === ++elementsLoaded_1) {
2330
- afterAll(elementsLoaded_1);
2331
- }
2332
- });
2333
- }
2334
- } else if (elements) {
2335
- injectElement(elements, evalScripts, renumerateIRIElements, cacheRequests, httpRequestWithCredentials, beforeEach, function(error2, svg) {
2336
- afterEach(error2, svg);
2337
- afterAll(1);
2338
- elements = null;
2339
- });
2340
- } else {
2341
- afterAll(0);
2342
- }
2343
- };
2344
- var ownerWindow = function ownerWindow2(node) {
2345
- var doc2 = (node == null ? void 0 : node.ownerDocument) || document;
2346
- return doc2.defaultView || window;
2347
- };
2348
- var shallowDiffers = function shallowDiffers2(a2, b2) {
2349
- for (var i in a2) {
2350
- if (!(i in b2)) {
2351
- return true;
2352
- }
2353
- }
2354
- for (var _i in b2) {
2355
- if (a2[_i] !== b2[_i]) {
2356
- return true;
2357
- }
2358
- }
2359
- return false;
2360
- };
2361
- var _excluded$b = ["afterInjection", "beforeInjection", "desc", "evalScripts", "fallback", "httpRequestWithCredentials", "loading", "renumerateIRIElements", "src", "title", "useRequestCache", "wrapper"];
2362
- var svgNamespace = "http://www.w3.org/2000/svg";
2363
- var xlinkNamespace = "http://www.w3.org/1999/xlink";
2364
- var ReactSVG = /* @__PURE__ */ function(_React$Component) {
2365
- _inheritsLoose$5(ReactSVG2, _React$Component);
2366
- function ReactSVG2() {
2367
- var _this;
2368
- for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
2369
- args[_key] = arguments[_key];
2370
- }
2371
- _this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;
2372
- _this.initialState = {
2373
- hasError: false,
2374
- isLoading: true
2375
- };
2376
- _this.state = _this.initialState;
2377
- _this._isMounted = false;
2378
- _this.reactWrapper = void 0;
2379
- _this.nonReactWrapper = void 0;
2380
- _this.refCallback = function(reactWrapper) {
2381
- _this.reactWrapper = reactWrapper;
2382
- };
2383
- return _this;
2384
- }
2385
- var _proto = ReactSVG2.prototype;
2386
- _proto.renderSVG = function renderSVG2() {
2387
- var _this2 = this;
2388
- if (this.reactWrapper instanceof ownerWindow(this.reactWrapper).Node) {
2389
- var _this$props = this.props, desc = _this$props.desc, evalScripts = _this$props.evalScripts, httpRequestWithCredentials = _this$props.httpRequestWithCredentials, renumerateIRIElements = _this$props.renumerateIRIElements, src = _this$props.src, title2 = _this$props.title, useRequestCache = _this$props.useRequestCache;
2390
- var onError3 = this.props.onError;
2391
- var beforeInjection2 = this.props.beforeInjection;
2392
- var afterInjection2 = this.props.afterInjection;
2393
- var wrapper2 = this.props.wrapper;
2394
- var nonReactWrapper;
2395
- var nonReactTarget;
2396
- if (wrapper2 === "svg") {
2397
- nonReactWrapper = document.createElementNS(svgNamespace, wrapper2);
2398
- nonReactWrapper.setAttribute("xmlns", svgNamespace);
2399
- nonReactWrapper.setAttribute("xmlns:xlink", xlinkNamespace);
2400
- nonReactTarget = document.createElementNS(svgNamespace, wrapper2);
2401
- } else {
2402
- nonReactWrapper = document.createElement(wrapper2);
2403
- nonReactTarget = document.createElement(wrapper2);
2404
- }
2405
- nonReactWrapper.appendChild(nonReactTarget);
2406
- nonReactTarget.dataset.src = src;
2407
- this.nonReactWrapper = this.reactWrapper.appendChild(nonReactWrapper);
2408
- var handleError = function handleError2(error2) {
2409
- _this2.removeSVG();
2410
- if (!_this2._isMounted) {
2411
- onError3(error2);
2412
- return;
2413
- }
2414
- _this2.setState(function() {
2415
- return {
2416
- hasError: true,
2417
- isLoading: false
2418
- };
2419
- }, function() {
2420
- onError3(error2);
2421
- });
2422
- };
2423
- var afterEach = function afterEach2(error2, svg) {
2424
- if (error2) {
2425
- handleError(error2);
2426
- return;
2427
- }
2428
- if (_this2._isMounted) {
2429
- _this2.setState(function() {
2430
- return {
2431
- isLoading: false
2432
- };
2433
- }, function() {
2434
- try {
2435
- afterInjection2(svg);
2436
- } catch (afterInjectionError) {
2437
- handleError(afterInjectionError);
2438
- }
2439
- });
2440
- }
2441
- };
2442
- var beforeEach = function beforeEach2(svg) {
2443
- svg.setAttribute("role", "img");
2444
- if (desc) {
2445
- var originalDesc = svg.querySelector(":scope > desc");
2446
- if (originalDesc) {
2447
- svg.removeChild(originalDesc);
2448
- }
2449
- var newDesc = document.createElement("desc");
2450
- newDesc.innerHTML = desc;
2451
- svg.prepend(newDesc);
2452
- }
2453
- if (title2) {
2454
- var originalTitle = svg.querySelector(":scope > title");
2455
- if (originalTitle) {
2456
- svg.removeChild(originalTitle);
2457
- }
2458
- var newTitle = document.createElement("title");
2459
- newTitle.innerHTML = title2;
2460
- svg.prepend(newTitle);
2461
- }
2462
- try {
2463
- beforeInjection2(svg);
2464
- } catch (error2) {
2465
- handleError(error2);
2466
- }
2467
- };
2468
- SVGInjector(nonReactTarget, {
2469
- afterEach,
2470
- beforeEach,
2471
- cacheRequests: useRequestCache,
2472
- evalScripts,
2473
- httpRequestWithCredentials,
2474
- renumerateIRIElements
2475
- });
2476
- }
2477
- };
2478
- _proto.removeSVG = function removeSVG() {
2479
- var _this$nonReactWrapper;
2480
- if ((_this$nonReactWrapper = this.nonReactWrapper) != null && _this$nonReactWrapper.parentNode) {
2481
- this.nonReactWrapper.parentNode.removeChild(this.nonReactWrapper);
2482
- this.nonReactWrapper = null;
2483
- }
2484
- };
2485
- _proto.componentDidMount = function componentDidMount() {
2486
- this._isMounted = true;
2487
- this.renderSVG();
2488
- };
2489
- _proto.componentDidUpdate = function componentDidUpdate(prevProps) {
2490
- var _this3 = this;
2491
- if (shallowDiffers(_extends$9({}, prevProps), this.props)) {
2492
- this.setState(function() {
2493
- return _this3.initialState;
2494
- }, function() {
2495
- _this3.removeSVG();
2496
- _this3.renderSVG();
2497
- });
2498
- }
2499
- };
2500
- _proto.componentWillUnmount = function componentWillUnmount() {
2501
- this._isMounted = false;
2502
- this.removeSVG();
2503
- };
2504
- _proto.render = function render2() {
2505
- var _this$props2 = this.props;
2506
- _this$props2.afterInjection;
2507
- _this$props2.beforeInjection;
2508
- _this$props2.desc;
2509
- _this$props2.evalScripts;
2510
- var Fallback = _this$props2.fallback;
2511
- _this$props2.httpRequestWithCredentials;
2512
- var Loading = _this$props2.loading;
2513
- _this$props2.renumerateIRIElements;
2514
- _this$props2.src;
2515
- _this$props2.title;
2516
- _this$props2.useRequestCache;
2517
- var wrapper2 = _this$props2.wrapper, rest = _objectWithoutPropertiesLoose$7(_this$props2, _excluded$b);
2518
- var Wrapper2 = wrapper2;
2519
- return /* @__PURE__ */ React$4.createElement(Wrapper2, _extends$9({}, rest, {
2520
- ref: this.refCallback
2521
- }, wrapper2 === "svg" ? {
2522
- xmlns: svgNamespace,
2523
- xmlnsXlink: xlinkNamespace
2524
- } : {}), this.state.isLoading && Loading && /* @__PURE__ */ React$4.createElement(Loading, null), this.state.hasError && Fallback && /* @__PURE__ */ React$4.createElement(Fallback, null));
2525
- };
2526
- return ReactSVG2;
2527
- }(React$4.Component);
2528
- ReactSVG.defaultProps = {
2529
- afterInjection: function afterInjection() {
2530
- return void 0;
2531
- },
2532
- beforeInjection: function beforeInjection() {
2533
- return void 0;
2534
- },
2535
- desc: "",
2536
- evalScripts: "never",
2537
- fallback: null,
2538
- httpRequestWithCredentials: false,
2539
- loading: null,
2540
- onError: function onError() {
2541
- return void 0;
2542
- },
2543
- renumerateIRIElements: true,
2544
- title: "",
2545
- useRequestCache: true,
2546
- wrapper: "div"
2547
- };
2548
- ReactSVG.propTypes = {
2549
- afterInjection: propTypes$1.exports.func,
2550
- beforeInjection: propTypes$1.exports.func,
2551
- desc: propTypes$1.exports.string,
2552
- evalScripts: propTypes$1.exports.oneOf(["always", "once", "never"]),
2553
- fallback: propTypes$1.exports.oneOfType([propTypes$1.exports.func, propTypes$1.exports.object, propTypes$1.exports.string]),
2554
- httpRequestWithCredentials: propTypes$1.exports.bool,
2555
- loading: propTypes$1.exports.oneOfType([propTypes$1.exports.func, propTypes$1.exports.object, propTypes$1.exports.string]),
2556
- onError: propTypes$1.exports.func,
2557
- renumerateIRIElements: propTypes$1.exports.bool,
2558
- src: propTypes$1.exports.string.isRequired,
2559
- title: propTypes$1.exports.string,
2560
- useRequestCache: propTypes$1.exports.bool,
2561
- wrapper: propTypes$1.exports.oneOf(["div", "span", "svg"])
2562
- };
2563
1928
  var DefaultContext = {
2564
1929
  color: void 0,
2565
1930
  size: void 0,
@@ -2648,9 +2013,6 @@ function FaAngleLeft(props) {
2648
2013
  function FaAngleRight(props) {
2649
2014
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 256 512" }, "child": [{ "tag": "path", "attr": { "d": "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" } }] })(props);
2650
2015
  }
2651
- function FaAngleUp(props) {
2652
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 320 512" }, "child": [{ "tag": "path", "attr": { "d": "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z" } }] })(props);
2653
- }
2654
2016
  function FaArrowDown(props) {
2655
2017
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z" } }] })(props);
2656
2018
  }
@@ -2663,23 +2025,11 @@ function FaArrowRight(props) {
2663
2025
  function FaArrowUp(props) {
2664
2026
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z" } }] })(props);
2665
2027
  }
2666
- function FaArrowsAlt(props) {
2667
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z" } }] })(props);
2668
- }
2669
- function FaBalanceScale(props) {
2670
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 640 512" }, "child": [{ "tag": "path", "attr": { "d": "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" } }] })(props);
2671
- }
2672
- function FaBell(props) {
2673
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64zm215.39-149.71c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71z" } }] })(props);
2674
- }
2675
2028
  function FaBook(props) {
2676
2029
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z" } }] })(props);
2677
2030
  }
2678
- function FaBuilding(props) {
2679
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z" } }] })(props);
2680
- }
2681
- function FaCamera(props) {
2682
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z" } }] })(props);
2031
+ function FaChartLine(props) {
2032
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M496 384H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM464 96H345.94c-21.38 0-32.09 25.85-16.97 40.97l32.4 32.4L288 242.75l-73.37-73.37c-12.5-12.5-32.76-12.5-45.25 0l-68.69 68.69c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0L192 237.25l73.37 73.37c12.5 12.5 32.76 12.5 45.25 0l96-96 32.4 32.4c15.12 15.12 40.97 4.41 40.97-16.97V112c.01-8.84-7.15-16-15.99-16z" } }] })(props);
2683
2033
  }
2684
2034
  function FaCheckCircle(props) {
2685
2035
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z" } }] })(props);
@@ -2687,30 +2037,33 @@ function FaCheckCircle(props) {
2687
2037
  function FaCheck(props) {
2688
2038
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" } }] })(props);
2689
2039
  }
2040
+ function FaChevronDown(props) {
2041
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" } }] })(props);
2042
+ }
2043
+ function FaChevronLeft(props) {
2044
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 320 512" }, "child": [{ "tag": "path", "attr": { "d": "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z" } }] })(props);
2045
+ }
2046
+ function FaChevronRight(props) {
2047
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 320 512" }, "child": [{ "tag": "path", "attr": { "d": "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z" } }] })(props);
2048
+ }
2049
+ function FaChevronUp(props) {
2050
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z" } }] })(props);
2051
+ }
2690
2052
  function FaClone(props) {
2691
2053
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z" } }] })(props);
2692
2054
  }
2693
- function FaCog(props) {
2694
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" } }] })(props);
2695
- }
2696
- function FaCompressArrowsAlt(props) {
2697
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M200 288H88c-21.4 0-32.1 25.8-17 41l32.9 31-99.2 99.3c-6.2 6.2-6.2 16.4 0 22.6l25.4 25.4c6.2 6.2 16.4 6.2 22.6 0L152 408l31.1 33c15.1 15.1 40.9 4.4 40.9-17V312c0-13.3-10.7-24-24-24zm112-64h112c21.4 0 32.1-25.9 17-41l-33-31 99.3-99.3c6.2-6.2 6.2-16.4 0-22.6L481.9 4.7c-6.2-6.2-16.4-6.2-22.6 0L360 104l-31.1-33C313.8 55.9 288 66.6 288 88v112c0 13.3 10.7 24 24 24zm96 136l33-31.1c15.1-15.1 4.4-40.9-17-40.9H312c-13.3 0-24 10.7-24 24v112c0 21.4 25.9 32.1 41 17l31-32.9 99.3 99.3c6.2 6.2 16.4 6.2 22.6 0l25.4-25.4c6.2-6.2 6.2-16.4 0-22.6L408 360zM183 71.1L152 104 52.7 4.7c-6.2-6.2-16.4-6.2-22.6 0L4.7 30.1c-6.2 6.2-6.2 16.4 0 22.6L104 152l-33 31.1C55.9 198.2 66.6 224 88 224h112c13.3 0 24-10.7 24-24V88c0-21.3-25.9-32-41-16.9z" } }] })(props);
2055
+ function FaEdit(props) {
2056
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 576 512" }, "child": [{ "tag": "path", "attr": { "d": "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z" } }] })(props);
2698
2057
  }
2699
2058
  function FaEllipsisV(props) {
2700
2059
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 192 512" }, "child": [{ "tag": "path", "attr": { "d": "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" } }] })(props);
2701
2060
  }
2061
+ function FaExclamationCircle(props) {
2062
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" } }] })(props);
2063
+ }
2702
2064
  function FaExclamationTriangle(props) {
2703
2065
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 576 512" }, "child": [{ "tag": "path", "attr": { "d": "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" } }] })(props);
2704
2066
  }
2705
- function FaExclamation(props) {
2706
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 192 512" }, "child": [{ "tag": "path", "attr": { "d": "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z" } }] })(props);
2707
- }
2708
- function FaExpandAlt(props) {
2709
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M212.686 315.314L120 408l32.922 31.029c15.12 15.12 4.412 40.971-16.97 40.971h-112C10.697 480 0 469.255 0 456V344c0-21.382 25.803-32.09 40.922-16.971L72 360l92.686-92.686c6.248-6.248 16.379-6.248 22.627 0l25.373 25.373c6.249 6.248 6.249 16.378 0 22.627zm22.628-118.628L328 104l-32.922-31.029C279.958 57.851 290.666 32 312.048 32h112C437.303 32 448 42.745 448 56v112c0 21.382-25.803 32.09-40.922 16.971L376 152l-92.686 92.686c-6.248 6.248-16.379 6.248-22.627 0l-25.373-25.373c-6.249-6.248-6.249-16.378 0-22.627z" } }] })(props);
2710
- }
2711
- function FaExpandArrowsAlt(props) {
2712
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M448 344v112a23.94 23.94 0 0 1-24 24H312c-21.39 0-32.09-25.9-17-41l36.2-36.2L224 295.6 116.77 402.9 153 439c15.09 15.1 4.39 41-17 41H24a23.94 23.94 0 0 1-24-24V344c0-21.4 25.89-32.1 41-17l36.19 36.2L184.46 256 77.18 148.7 41 185c-15.1 15.1-41 4.4-41-17V56a23.94 23.94 0 0 1 24-24h112c21.39 0 32.09 25.9 17 41l-36.2 36.2L224 216.4l107.23-107.3L295 73c-15.09-15.1-4.39-41 17-41h112a23.94 23.94 0 0 1 24 24v112c0 21.4-25.89 32.1-41 17l-36.19-36.2L263.54 256l107.28 107.3L407 327.1c15.1-15.2 41-4.5 41 16.9z" } }] })(props);
2713
- }
2714
2067
  function FaEyeSlash(props) {
2715
2068
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 640 512" }, "child": [{ "tag": "path", "attr": { "d": "M320 400c-75.85 0-137.25-58.71-142.9-133.11L72.2 185.82c-13.79 17.3-26.48 35.59-36.72 55.59a32.35 32.35 0 0 0 0 29.19C89.71 376.41 197.07 448 320 448c26.91 0 52.87-4 77.89-10.46L346 397.39a144.13 144.13 0 0 1-26 2.61zm313.82 58.1l-110.55-85.44a331.25 331.25 0 0 0 81.25-102.07 32.35 32.35 0 0 0 0-29.19C550.29 135.59 442.93 64 320 64a308.15 308.15 0 0 0-147.32 37.7L45.46 3.37A16 16 0 0 0 23 6.18L3.37 31.45A16 16 0 0 0 6.18 53.9l588.36 454.73a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zm-183.72-142l-39.3-30.38A94.75 94.75 0 0 0 416 256a94.76 94.76 0 0 0-121.31-92.21A47.65 47.65 0 0 1 304 192a46.64 46.64 0 0 1-1.54 10l-73.61-56.89A142.31 142.31 0 0 1 320 112a143.92 143.92 0 0 1 144 144c0 21.63-5.29 41.79-13.9 60.11z" } }] })(props);
2716
2069
  }
@@ -2723,45 +2076,21 @@ function FaFastBackward(props) {
2723
2076
  function FaFastForward(props) {
2724
2077
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z" } }] })(props);
2725
2078
  }
2726
- function FaFileAlt(props) {
2727
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 384 512" }, "child": [{ "tag": "path", "attr": { "d": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" } }] })(props);
2728
- }
2729
- function FaFileExport(props) {
2730
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 576 512" }, "child": [{ "tag": "path", "attr": { "d": "M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128zM571 308l-95.7-96.4c-10.1-10.1-27.4-3-27.4 11.3V288h-64v64h64v65.2c0 14.3 17.3 21.4 27.4 11.3L571 332c6.6-6.6 6.6-17.4 0-24zm-379 28v-32c0-8.8 7.2-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.8 0-16-7.2-16-16z" } }] })(props);
2731
- }
2732
2079
  function FaFileImport(props) {
2733
2080
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M16 288c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h112v-64zm489-183L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H152c-13.3 0-24 10.7-24 24v264h128v-65.2c0-14.3 17.3-21.4 27.4-11.3L379 308c6.6 6.7 6.6 17.4 0 24l-95.7 96.4c-10.1 10.1-27.4 3-27.4-11.3V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24z" } }] })(props);
2734
2081
  }
2735
- function FaFolder(props) {
2736
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z" } }] })(props);
2737
- }
2738
2082
  function FaGripLinesVertical(props) {
2739
2083
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 256 512" }, "child": [{ "tag": "path", "attr": { "d": "M96 496V16c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zm128 0V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16z" } }] })(props);
2740
2084
  }
2741
2085
  function FaInfoCircle(props) {
2742
2086
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z" } }] })(props);
2743
2087
  }
2744
- function FaKey(props) {
2745
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z" } }] })(props);
2746
- }
2747
2088
  function FaMinus(props) {
2748
2089
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" } }] })(props);
2749
2090
  }
2750
- function FaMoon(props) {
2751
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z" } }] })(props);
2752
- }
2753
- function FaPaste(props) {
2754
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z" } }] })(props);
2755
- }
2756
- function FaPause(props) {
2757
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z" } }] })(props);
2758
- }
2759
2091
  function FaPencilAlt(props) {
2760
2092
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z" } }] })(props);
2761
2093
  }
2762
- function FaPlay(props) {
2763
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z" } }] })(props);
2764
- }
2765
2094
  function FaPlus(props) {
2766
2095
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" } }] })(props);
2767
2096
  }
@@ -2771,41 +2100,20 @@ function FaQuestionCircle(props) {
2771
2100
  function FaQuestion(props) {
2772
2101
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 384 512" }, "child": [{ "tag": "path", "attr": { "d": "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z" } }] })(props);
2773
2102
  }
2774
- function FaRedo(props) {
2775
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M500.33 0h-47.41a12 12 0 0 0-12 12.57l4 82.76A247.42 247.42 0 0 0 256 8C119.34 8 7.9 119.53 8 256.19 8.1 393.07 119.1 504 256 504a247.1 247.1 0 0 0 166.18-63.91 12 12 0 0 0 .48-17.43l-34-34a12 12 0 0 0-16.38-.55A176 176 0 1 1 402.1 157.8l-101.53-4.87a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12h200.33a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12z" } }] })(props);
2776
- }
2777
- function FaRulerVertical(props) {
2778
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 256 512" }, "child": [{ "tag": "path", "attr": { "d": "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z" } }] })(props);
2779
- }
2780
- function FaSave(props) {
2781
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z" } }] })(props);
2782
- }
2783
- function FaSearch(props) {
2784
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" } }] })(props);
2103
+ function FaSortAmountDown(props) {
2104
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M304 416h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-128-64h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.37 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm256-192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-64 128H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM496 32H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z" } }] })(props);
2785
2105
  }
2786
- function FaSpinner(props) {
2787
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z" } }] })(props);
2106
+ function FaSortAmountUp(props) {
2107
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M304 416h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.77 160 16 160zm416 0H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-64 128H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM496 32H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z" } }] })(props);
2788
2108
  }
2789
2109
  function FaStar(props) {
2790
2110
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 576 512" }, "child": [{ "tag": "path", "attr": { "d": "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" } }] })(props);
2791
2111
  }
2792
- function FaStepBackward(props) {
2793
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z" } }] })(props);
2794
- }
2795
- function FaStepForward(props) {
2796
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z" } }] })(props);
2797
- }
2798
- function FaStopCircle(props) {
2799
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z" } }] })(props);
2800
- }
2801
- function FaSun(props) {
2802
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z" } }] })(props);
2803
- }
2804
2112
  function FaSync(props) {
2805
2113
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M440.65 12.57l4 82.77A247.16 247.16 0 0 0 255.83 8C134.73 8 33.91 94.92 12.29 209.82A12 12 0 0 0 24.09 224h49.05a12 12 0 0 0 11.67-9.26 175.91 175.91 0 0 1 317-56.94l-101.46-4.86a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12H500a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12h-47.37a12 12 0 0 0-11.98 12.57zM255.83 432a175.61 175.61 0 0 1-146-77.8l101.8 4.87a12 12 0 0 0 12.57-12v-47.4a12 12 0 0 0-12-12H12a12 12 0 0 0-12 12V500a12 12 0 0 0 12 12h47.35a12 12 0 0 0 12-12.6l-4.15-82.57A247.17 247.17 0 0 0 255.83 504c121.11 0 221.93-86.92 243.55-201.82a12 12 0 0 0-11.8-14.18h-49.05a12 12 0 0 0-11.67 9.26A175.86 175.86 0 0 1 255.83 432z" } }] })(props);
2806
2114
  }
2807
- function FaTimesCircle(props) {
2808
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" } }] })(props);
2115
+ function FaTable(props) {
2116
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z" } }] })(props);
2809
2117
  }
2810
2118
  function FaTimes(props) {
2811
2119
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 352 512" }, "child": [{ "tag": "path", "attr": { "d": "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" } }] })(props);
@@ -2816,489 +2124,39 @@ function FaTrash(props) {
2816
2124
  function FaUndo(props) {
2817
2125
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z" } }] })(props);
2818
2126
  }
2819
- function FaUser(props) {
2820
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" } }] })(props);
2821
- }
2822
- function FaUsers(props) {
2823
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 640 512" }, "child": [{ "tag": "path", "attr": { "d": "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z" } }] })(props);
2824
- }
2825
2127
  function FaRegCircle(props) {
2826
2128
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z" } }] })(props);
2827
2129
  }
2828
- function FaRegClock(props) {
2829
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z" } }] })(props);
2830
- }
2831
2130
  function FaRegCopy(props) {
2832
2131
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 448 512" }, "child": [{ "tag": "path", "attr": { "d": "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z" } }] })(props);
2833
2132
  }
2834
- function HiLockClosed(props) {
2835
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 20 20", "fill": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M5 9V7a5 5 0 0110 0v2a2 2 0 012 2v5a2 2 0 01-2 2H5a2 2 0 01-2-2v-5a2 2 0 012-2zm8-2v2H7V7a3 3 0 016 0z", "clipRule": "evenodd" } }] })(props);
2836
- }
2837
- function HiLockOpen(props) {
2838
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 20 20", "fill": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "d": "M10 2a5 5 0 00-5 5v2a2 2 0 00-2 2v5a2 2 0 002 2h10a2 2 0 002-2v-5a2 2 0 00-2-2H7V7a3 3 0 015.905-.75 1 1 0 001.937-.5A5.002 5.002 0 0010 2z" } }] })(props);
2839
- }
2840
- function HiServer(props) {
2841
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 20 20", "fill": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M2 5a2 2 0 012-2h12a2 2 0 012 2v2a2 2 0 01-2 2H4a2 2 0 01-2-2V5zm14 1a1 1 0 11-2 0 1 1 0 012 0zM2 13a2 2 0 012-2h12a2 2 0 012 2v2a2 2 0 01-2 2H4a2 2 0 01-2-2v-2zm14 1a1 1 0 11-2 0 1 1 0 012 0z", "clipRule": "evenodd" } }] })(props);
2842
- }
2843
- function GrDrag(props) {
2844
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "stroke": "#000", "strokeWidth": "2", "d": "M15,5 L17,5 L17,3 L15,3 L15,5 Z M7,5 L9,5 L9,3 L7,3 L7,5 Z M15,13 L17,13 L17,11 L15,11 L15,13 Z M7,13 L9,13 L9,11 L7,11 L7,13 Z M15,21 L17,21 L17,19 L15,19 L15,21 Z M7,21 L9,21 L9,19 L7,19 L7,21 Z" } }] })(props);
2845
- }
2846
- function BsFillChatFill(props) {
2847
- return GenIcon({ "tag": "svg", "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M8 15c4.418 0 8-3.134 8-7s-3.582-7-8-7-8 3.134-8 7c0 1.76.743 3.37 1.97 4.6-.097 1.016-.417 2.13-.771 2.966-.079.186.074.394.273.362 2.256-.37 3.597-.938 4.18-1.234A9.06 9.06 0 0 0 8 15z" } }] })(props);
2848
- }
2849
- function BsArrowReturnRight(props) {
2850
- return GenIcon({ "tag": "svg", "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M1.5 1.5A.5.5 0 0 0 1 2v4.8a2.5 2.5 0 0 0 2.5 2.5h9.793l-3.347 3.346a.5.5 0 0 0 .708.708l4.2-4.2a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708.708L13.293 8.3H3.5A1.5 1.5 0 0 1 2 6.8V2a.5.5 0 0 0-.5-.5z" } }] })(props);
2851
- }
2852
- function BsLaptop(props) {
2853
- return GenIcon({ "tag": "svg", "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M13.5 3a.5.5 0 0 1 .5.5V11H2V3.5a.5.5 0 0 1 .5-.5h11zm-11-1A1.5 1.5 0 0 0 1 3.5V12h14V3.5A1.5 1.5 0 0 0 13.5 2h-11zM0 12.5h16a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 12.5z" } }] })(props);
2854
- }
2855
- function BsLightningCharge(props) {
2856
- return GenIcon({ "tag": "svg", "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "d": "M11.251.068a.5.5 0 0 1 .227.58L9.677 6.5H13a.5.5 0 0 1 .364.843l-8 8.5a.5.5 0 0 1-.842-.49L6.323 9.5H3a.5.5 0 0 1-.364-.843l8-8.5a.5.5 0 0 1 .615-.09zM4.157 8.5H7a.5.5 0 0 1 .478.647L6.11 13.59l5.732-6.09H9a.5.5 0 0 1-.478-.647L9.89 2.41 4.157 8.5z" } }] })(props);
2857
- }
2858
- function TbArrowsSplit(props) {
2859
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M21 17h-8l-3.5 -5h-6.5" } }, { "tag": "path", "attr": { "d": "M21 7h-8l-3.495 5" } }, { "tag": "path", "attr": { "d": "M18 10l3 -3l-3 -3" } }, { "tag": "path", "attr": { "d": "M18 20l3 -3l-3 -3" } }] })(props);
2860
- }
2861
- function TbBold(props) {
2862
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M7 5h6a3.5 3.5 0 0 1 0 7h-6z" } }, { "tag": "path", "attr": { "d": "M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7" } }] })(props);
2863
- }
2864
- function TbCode(props) {
2865
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M7 8l-4 4l4 4" } }, { "tag": "path", "attr": { "d": "M17 8l4 4l-4 4" } }, { "tag": "path", "attr": { "d": "M14 4l-4 16" } }] })(props);
2866
- }
2867
- function TbFocusCentered(props) {
2868
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" } }, { "tag": "path", "attr": { "d": "M4 8v-2a2 2 0 0 1 2 -2h2" } }, { "tag": "path", "attr": { "d": "M4 16v2a2 2 0 0 0 2 2h2" } }, { "tag": "path", "attr": { "d": "M16 4h2a2 2 0 0 1 2 2v2" } }, { "tag": "path", "attr": { "d": "M16 20h2a2 2 0 0 0 2 -2v-2" } }] })(props);
2869
- }
2870
- function TbGauge(props) {
2871
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" } }, { "tag": "path", "attr": { "d": "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" } }, { "tag": "path", "attr": { "d": "M13.41 10.59l2.59 -2.59" } }, { "tag": "path", "attr": { "d": "M7 12a5 5 0 0 1 5 -5" } }] })(props);
2872
- }
2873
- function TbItalic(props) {
2874
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M11 5l6 0" } }, { "tag": "path", "attr": { "d": "M7 19l6 0" } }, { "tag": "path", "attr": { "d": "M14 5l-4 14" } }] })(props);
2875
- }
2876
- function TbListNumbers(props) {
2877
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M11 6h9" } }, { "tag": "path", "attr": { "d": "M11 12h9" } }, { "tag": "path", "attr": { "d": "M12 18h8" } }, { "tag": "path", "attr": { "d": "M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4" } }, { "tag": "path", "attr": { "d": "M6 10v-6l-2 2" } }] })(props);
2878
- }
2879
- function TbList(props) {
2880
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M9 6l11 0" } }, { "tag": "path", "attr": { "d": "M9 12l11 0" } }, { "tag": "path", "attr": { "d": "M9 18l11 0" } }, { "tag": "path", "attr": { "d": "M5 6l0 .01" } }, { "tag": "path", "attr": { "d": "M5 12l0 .01" } }, { "tag": "path", "attr": { "d": "M5 18l0 .01" } }] })(props);
2881
- }
2882
- function TbMapPin(props) {
2883
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" } }, { "tag": "path", "attr": { "d": "M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z" } }] })(props);
2884
- }
2885
- function TbNote(props) {
2886
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M13 20l7 -7" } }, { "tag": "path", "attr": { "d": "M13 20v-6a1 1 0 0 1 1 -1h6v-7a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7" } }] })(props);
2887
- }
2888
- function TbTarget(props) {
2889
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" } }, { "tag": "path", "attr": { "d": "M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0" } }, { "tag": "path", "attr": { "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" } }] })(props);
2890
- }
2891
- function CgSortAz(props) {
2892
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none" }, "child": [{ "tag": "path", "attr": { "d": "M6 8C6 7.44772 6.44772 7 7 7H17C17.5523 7 18 7.44772 18 8C18 8.55228 17.5523 9 17 9H7C6.44772 9 6 8.55228 6 8Z", "fill": "currentColor" } }, { "tag": "path", "attr": { "d": "M8 12C8 11.4477 8.44772 11 9 11H15C15.5523 11 16 11.4477 16 12C16 12.5523 15.5523 13 15 13H9C8.44772 13 8 12.5523 8 12Z", "fill": "currentColor" } }, { "tag": "path", "attr": { "d": "M11 15C10.4477 15 10 15.4477 10 16C10 16.5523 10.4477 17 11 17H13C13.5523 17 14 16.5523 14 16C14 15.4477 13.5523 15 13 15H11Z", "fill": "currentColor" } }] })(props);
2893
- }
2894
- function CgSortZa(props) {
2895
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none" }, "child": [{ "tag": "path", "attr": { "d": "M6 16C6 16.5523 6.44772 17 7 17H17C17.5523 17 18 16.5523 18 16C18 15.4477 17.5523 15 17 15H7C6.44772 15 6 15.4477 6 16Z", "fill": "currentColor" } }, { "tag": "path", "attr": { "d": "M8 12C8 12.5523 8.44772 13 9 13H15C15.5523 13 16 12.5523 16 12C16 11.4477 15.5523 11 15 11H9C8.44772 11 8 11.4477 8 12Z", "fill": "currentColor" } }, { "tag": "path", "attr": { "d": "M11 9C10.4477 9 10 8.55229 10 8C10 7.44771 10.4477 7 11 7H13C13.5523 7 14 7.44771 14 8C14 8.55229 13.5523 9 13 9H11Z", "fill": "currentColor" } }] })(props);
2896
- }
2897
- function RiBarChartFill(props) {
2898
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M3 12H7V21H3V12ZM17 8H21V21H17V8ZM10 2H14V21H10V2Z" } }] })(props);
2899
- }
2900
- function RiLineChartFill(props) {
2901
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M5 3V19H21V21H3V3H5ZM19.9393 5.93934L22.0607 8.06066L16 14.1213L13 11.121L9.06066 15.0607L6.93934 12.9393L13 6.87868L16 9.879L19.9393 5.93934Z" } }] })(props);
2902
- }
2903
- function RiPieChartFill(props) {
2904
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M11 2.04932V12.9999H21.9506C21.4489 18.0533 17.1853 21.9999 12 21.9999C6.47715 21.9999 2 17.5228 2 11.9999C2 6.81459 5.94668 2.55104 11 2.04932ZM13 2.04932C17.7244 2.51839 21.4816 6.27552 21.9506 10.9999H13V2.04932Z" } }] })(props);
2905
- }
2906
- function RiLayoutColumnLine(props) {
2907
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M11 5H5V19H11V5ZM13 5V19H19V5H13ZM4 3H20C20.5523 3 21 3.44772 21 4V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3Z" } }] })(props);
2908
- }
2909
- function RiLayoutGridLine(props) {
2910
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M21 3C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H21ZM11 13H4V19H11V13ZM20 13H13V19H20V13ZM11 5H4V11H11V5ZM20 5H13V11H20V5Z" } }] })(props);
2911
- }
2912
- function RiLayoutRowLine(props) {
2913
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M19 11V5H5V11H19ZM19 13H5V19H19V13ZM4 3H20C20.5523 3 21 3.44772 21 4V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3Z" } }] })(props);
2914
- }
2915
- function RiSquareLine(props) {
2916
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M4 3H20C20.5523 3 21 3.44772 21 4V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3ZM5 5V19H19V5H5Z" } }] })(props);
2917
- }
2918
- function RiTableLine(props) {
2919
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M4 8H20V5H4V8ZM14 19V10H10V19H14ZM16 19H20V10H16V19ZM8 19V10H4V19H8ZM3 3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3Z" } }] })(props);
2920
- }
2921
- function RiFilterFill(props) {
2922
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M21 4V6H20L14 15V22H10V15L4 6H3V4H21Z" } }] })(props);
2923
- }
2924
- function RiFilterOffFill(props) {
2925
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M6.92893 0.514648L21.0711 14.6568L19.6569 16.071L15.834 12.2486L14 14.9999V21.9999H10V14.9999L4 5.99993H3V3.99993L7.585 3.99965L5.51472 1.92886L6.92893 0.514648ZM21 3.99993V5.99993H20L18.085 8.87193L13.213 3.99993H21Z" } }] })(props);
2926
- }
2927
- function BiLinkExternal(props) {
2928
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "m13 3 3.293 3.293-7 7 1.414 1.414 7-7L21 11V3z" } }, { "tag": "path", "attr": { "d": "M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z" } }] })(props);
2929
- }
2930
- function BiLink(props) {
2931
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M8.465 11.293c1.133-1.133 3.109-1.133 4.242 0l.707.707 1.414-1.414-.707-.707c-.943-.944-2.199-1.465-3.535-1.465s-2.592.521-3.535 1.465L4.929 12a5.008 5.008 0 0 0 0 7.071 4.983 4.983 0 0 0 3.535 1.462A4.982 4.982 0 0 0 12 19.071l.707-.707-1.414-1.414-.707.707a3.007 3.007 0 0 1-4.243 0 3.005 3.005 0 0 1 0-4.243l2.122-2.121z" } }, { "tag": "path", "attr": { "d": "m12 4.929-.707.707 1.414 1.414.707-.707a3.007 3.007 0 0 1 4.243 0 3.005 3.005 0 0 1 0 4.243l-2.122 2.121c-1.133 1.133-3.109 1.133-4.242 0L10.586 12l-1.414 1.414.707.707c.943.944 2.199 1.465 3.535 1.465s2.592-.521 3.535-1.465L19.071 12a5.008 5.008 0 0 0 0-7.071 5.006 5.006 0 0 0-7.071 0z" } }] })(props);
2932
- }
2933
- function BiUnlink(props) {
2934
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M16.949 14.121 19.071 12a5.008 5.008 0 0 0 0-7.071 5.006 5.006 0 0 0-7.071 0l-.707.707 1.414 1.414.707-.707a3.007 3.007 0 0 1 4.243 0 3.005 3.005 0 0 1 0 4.243l-2.122 2.121a2.723 2.723 0 0 1-.844.57L13.414 12l1.414-1.414-.707-.707a4.965 4.965 0 0 0-3.535-1.465c-.235 0-.464.032-.691.066L3.707 2.293 2.293 3.707l18 18 1.414-1.414-5.536-5.536c.277-.184.538-.396.778-.636zm-6.363 3.536a3.007 3.007 0 0 1-4.243 0 3.005 3.005 0 0 1 0-4.243l1.476-1.475-1.414-1.414L4.929 12a5.008 5.008 0 0 0 0 7.071 4.983 4.983 0 0 0 3.535 1.462A4.982 4.982 0 0 0 12 19.071l.707-.707-1.414-1.414-.707.707z" } }] })(props);
2935
- }
2936
- function BiVideo(props) {
2937
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "d": "M18 7c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-3.333L22 17V7l-4 3.333V7zm-1.998 10H4V7h12l.001 4.999L16 12l.001.001.001 4.999z" } }] })(props);
2938
- }
2939
- function AiOutlineInsertRowAbove(props) {
2940
- return GenIcon({ "tag": "svg", "attr": { "t": "1569683507961", "viewBox": "0 0 1024 1024", "version": "1.1" }, "child": [{ "tag": "defs", "attr": {}, "child": [] }, { "tag": "path", "attr": { "d": "M878.7 336H145.3c-18.4 0-33.3 14.3-33.3 32v464c0 17.7 14.9 32 33.3 32h733.3c18.4 0 33.3-14.3 33.3-32V368c0.1-17.7-14.8-32-33.2-32zM360 792H184V632h176v160z m0-224H184V408h176v160z m240 224H424V632h176v160z m0-224H424V408h176v160z m240 224H664V632h176v160z m0-224H664V408h176v160zM904 160H120c-4.4 0-8 3.6-8 8v80c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-80c0-4.4-3.6-8-8-8z" } }] })(props);
2941
- }
2942
- function AiOutlineInsertRowBelow(props) {
2943
- return GenIcon({ "tag": "svg", "attr": { "t": "1569683503597", "viewBox": "0 0 1024 1024", "version": "1.1" }, "child": [{ "tag": "defs", "attr": {}, "child": [] }, { "tag": "path", "attr": { "d": "M904 768H120c-4.4 0-8 3.6-8 8v80c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-80c0-4.4-3.6-8-8-8zM878.7 160H145.3c-18.4 0-33.3 14.3-33.3 32v464c0 17.7 14.9 32 33.3 32h733.3c18.4 0 33.3-14.3 33.3-32V192c0.1-17.7-14.8-32-33.2-32zM360 616H184V456h176v160z m0-224H184V232h176v160z m240 224H424V456h176v160z m0-224H424V232h176v160z m240 224H664V456h176v160z m0-224H664V232h176v160z" } }] })(props);
2944
- }
2945
- function AiOutlineMinusSquare(props) {
2946
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 1024 1024" }, "child": [{ "tag": "path", "attr": { "d": "M328 544h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H328c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8z" } }, { "tag": "path", "attr": { "d": "M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32zm-40 728H184V184h656v656z" } }] })(props);
2947
- }
2948
- function AiOutlinePlusSquare(props) {
2949
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 1024 1024" }, "child": [{ "tag": "path", "attr": { "d": "M328 544h152v152c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V544h152c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H544V328c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v152H328c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8z" } }, { "tag": "path", "attr": { "d": "M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32zm-40 728H184V184h656v656z" } }] })(props);
2950
- }
2951
- function IoWater(props) {
2952
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "d": "M265.12 60.12a12 12 0 00-18.23 0C215.23 97.15 112 225.17 112 320c0 88.37 55.64 144 144 144s144-55.63 144-144c0-94.83-103.23-222.85-134.88-259.88zM272 412a12 12 0 01-11.34-16 11.89 11.89 0 0111.41-8A60.06 60.06 0 00332 328.07a11.89 11.89 0 018-11.41A12 12 0 01356 328a84.09 84.09 0 01-84 84z" } }] })(props);
2953
- }
2954
- function VscCollapseAll(props) {
2955
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 16 16", "fill": "currentColor" }, "child": [{ "tag": "path", "attr": { "d": "M9 9H4v1h5V9z" } }, { "tag": "path", "attr": { "fillRule": "evenodd", "clipRule": "evenodd", "d": "M5 3l1-1h7l1 1v7l-1 1h-2v2l-1 1H3l-1-1V6l1-1h2V3zm1 2h4l1 1v4h2V3H6v2zm4 1H3v7h7V6z" } }] })(props);
2956
- }
2957
- function VscExpandAll(props) {
2958
- return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 16 16", "fill": "currentColor" }, "child": [{ "tag": "path", "attr": { "d": "M9 9H4v1h5V9z" } }, { "tag": "path", "attr": { "d": "M7 12V7H6v5h1z" } }, { "tag": "path", "attr": { "fillRule": "evenodd", "clipRule": "evenodd", "d": "M5 3l1-1h7l1 1v7l-1 1h-2v2l-1 1H3l-1-1V6l1-1h2V3zm1 2h4l1 1v4h2V3H6v2zm4 1H3v7h7V6z" } }] })(props);
2959
- }
2960
- const DeprecatedIcon = ({ icon: icon2 }) => {
2961
- switch (icon2) {
2962
- case "add":
2963
- case "plus":
2964
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaPlus, {});
2965
- case "add above":
2966
- return /* @__PURE__ */ jsxRuntime.exports.jsx(AiOutlineInsertRowAbove, {});
2967
- case "add below":
2968
- return /* @__PURE__ */ jsxRuntime.exports.jsx(AiOutlineInsertRowBelow, {});
2969
- case "arrow down":
2970
- case "down":
2971
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowDown, {});
2972
- case "arrow left":
2973
- case "left":
2974
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowLeft, {});
2975
- case "arrow right":
2976
- case "right":
2977
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowRight, {});
2978
- case "arrow up":
2979
- case "up":
2980
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowUp, {});
2981
- case "bold":
2982
- return /* @__PURE__ */ jsxRuntime.exports.jsx(TbBold, {});
2983
- case "book":
2984
- case "library":
2985
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaBook, {});
2986
- case "camera":
2987
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaCamera, {});
2988
- case "close":
2989
- case "times":
2990
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaTimes, {});
2991
- case "chart":
2992
- case "chart line":
2993
- return /* @__PURE__ */ jsxRuntime.exports.jsx(RiLineChartFill, {});
2994
- case "chart bar":
2995
- return /* @__PURE__ */ jsxRuntime.exports.jsx(RiBarChartFill, {});
2996
- case "chart pie":
2997
- return /* @__PURE__ */ jsxRuntime.exports.jsx(RiPieChartFill, {});
2998
- case "chat":
2999
- return /* @__PURE__ */ jsxRuntime.exports.jsx(BsFillChatFill, {});
3000
- case "check":
3001
- case "checkmark":
3002
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaCheck, {});
3003
- case "chevron up":
3004
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleUp, {});
3005
- case "chevron down":
3006
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleDown, {});
3007
- case "chevron left":
3008
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleLeft, {});
3009
- case "chevron right":
3010
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleRight, {});
3011
- case "chevron double left":
3012
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleDoubleLeft, {});
3013
- case "chevron double right":
3014
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleDoubleRight, {});
3015
- case "clock":
3016
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaRegClock, {});
3017
- case "clone":
3018
- case "duplicate":
3019
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaClone, {});
3020
- case "code":
3021
- return /* @__PURE__ */ jsxRuntime.exports.jsx(TbCode, {});
3022
- case "collapse":
3023
- return /* @__PURE__ */ jsxRuntime.exports.jsx(AiOutlineMinusSquare, {});
3024
- case "collapse all":
3025
- return /* @__PURE__ */ jsxRuntime.exports.jsx(VscCollapseAll, {});
3026
- case "company":
3027
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaBuilding, {});
3028
- case "compare":
3029
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaBalanceScale, {});
3030
- case "copy":
3031
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaRegCopy, {});
3032
- case "delete":
3033
- case "trash":
3034
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaTrash, {});
3035
- case "depth":
3036
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaRulerVertical, {});
3037
- case "download":
3038
- case "export":
3039
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaFileExport, {});
3040
- case "drag":
3041
- return /* @__PURE__ */ jsxRuntime.exports.jsx(GrDrag, {});
3042
- case "drag horizontal":
3043
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaGripLinesVertical, {});
3044
- case "edit":
3045
- case "pencil":
3046
- case "rename":
3047
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaPencilAlt, {});
3048
- case "electricity":
3049
- return /* @__PURE__ */ jsxRuntime.exports.jsx(BsLightningCharge, {});
3050
- case "error":
3051
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaTimesCircle, {});
3052
- case "exclamation":
3053
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaExclamation, {});
3054
- case "expand":
3055
- return /* @__PURE__ */ jsxRuntime.exports.jsx(AiOutlinePlusSquare, {});
3056
- case "expand all":
3057
- return /* @__PURE__ */ jsxRuntime.exports.jsx(VscExpandAll, {});
3058
- case "external":
3059
- return /* @__PURE__ */ jsxRuntime.exports.jsx(BiLinkExternal, {});
3060
- case "fast forward":
3061
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaFastForward, {});
3062
- case "fast backward":
3063
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaFastBackward, {});
3064
- case "file":
3065
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaFileAlt, {});
3066
- case "filter":
3067
- return /* @__PURE__ */ jsxRuntime.exports.jsx(RiFilterFill, {});
3068
- case "focus":
3069
- return /* @__PURE__ */ jsxRuntime.exports.jsx(TbFocusCentered, {});
3070
- case "folder":
3071
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaFolder, {});
3072
- case "gauge":
3073
- return /* @__PURE__ */ jsxRuntime.exports.jsx(TbGauge, {});
3074
- case "help":
3075
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaQuestionCircle, {});
3076
- case "hide":
3077
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaEyeSlash, {});
3078
- case "indent":
3079
- return /* @__PURE__ */ jsxRuntime.exports.jsx(BsArrowReturnRight, {});
3080
- case "info":
3081
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaInfoCircle, {});
3082
- case "italic":
3083
- return /* @__PURE__ */ jsxRuntime.exports.jsx(TbItalic, {});
3084
- case "key":
3085
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaKey, {});
3086
- case "laptop":
3087
- return /* @__PURE__ */ jsxRuntime.exports.jsx(BsLaptop, {});
3088
- case "layout columns":
3089
- case "columns":
3090
- return /* @__PURE__ */ jsxRuntime.exports.jsx(RiLayoutColumnLine, {});
3091
- case "layout grid":
3092
- case "grid":
3093
- return /* @__PURE__ */ jsxRuntime.exports.jsx(RiLayoutGridLine, {});
3094
- case "layout rows":
3095
- case "rows":
3096
- return /* @__PURE__ */ jsxRuntime.exports.jsx(RiLayoutRowLine, {});
3097
- case "layout single":
3098
- case "square":
3099
- return /* @__PURE__ */ jsxRuntime.exports.jsx(RiSquareLine, {});
3100
- case "link":
3101
- return /* @__PURE__ */ jsxRuntime.exports.jsx(BiLink, {});
3102
- case "list":
3103
- case "legend":
3104
- case "ul":
3105
- return /* @__PURE__ */ jsxRuntime.exports.jsx(TbList, {});
3106
- case "list numbers":
3107
- case "ol":
3108
- return /* @__PURE__ */ jsxRuntime.exports.jsx(TbListNumbers, {});
3109
- case "location":
3110
- return /* @__PURE__ */ jsxRuntime.exports.jsx(TbMapPin, {});
3111
- case "lock":
3112
- return /* @__PURE__ */ jsxRuntime.exports.jsx(HiLockClosed, {});
3113
- case "maximize":
3114
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaExpandArrowsAlt, {});
3115
- case "menu":
3116
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaEllipsisV, {});
3117
- case "minimize":
3118
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaCompressArrowsAlt, {});
3119
- case "minus":
3120
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaMinus, {});
3121
- case "moon":
3122
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaMoon, {});
3123
- case "move":
3124
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowsAlt, {});
3125
- case "note":
3126
- return /* @__PURE__ */ jsxRuntime.exports.jsx(TbNote, {});
3127
- case "notification":
3128
- case "bell":
3129
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaBell, {});
3130
- case "paste":
3131
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaPaste, {});
3132
- case "pause":
3133
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaPause, {});
3134
- case "play":
3135
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaPlay, {});
3136
- case "question":
3137
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaQuestion, {});
3138
- case "redo":
3139
- case "rotate":
3140
- case "rotate right":
3141
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaRedo, {});
3142
- case "refresh":
3143
- case "sync":
3144
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaSync, {});
3145
- case "save":
3146
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaSave, {});
3147
- case "scale":
3148
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaExpandAlt, {});
3149
- case "search":
3150
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaSearch, {});
3151
- case "server":
3152
- return /* @__PURE__ */ jsxRuntime.exports.jsx(HiServer, {});
3153
- case "settings":
3154
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaCog, {});
3155
- case "show":
3156
- case "eye":
3157
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaEye, {});
3158
- case "sort":
3159
- case "sort descending":
3160
- case "sort down":
3161
- case "sort amount down":
3162
- return /* @__PURE__ */ jsxRuntime.exports.jsx(CgSortAz, {});
3163
- case "sort ascending":
3164
- case "sort up":
3165
- case "sort amount up":
3166
- return /* @__PURE__ */ jsxRuntime.exports.jsx(CgSortZa, {});
3167
- case "spinner":
3168
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaSpinner, {});
3169
- case "split":
3170
- return /* @__PURE__ */ jsxRuntime.exports.jsx(TbArrowsSplit, {});
3171
- case "star":
3172
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaStar, {});
3173
- case "step backward":
3174
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaStepBackward, {});
3175
- case "step forward":
3176
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaStepForward, {});
3177
- case "stop":
3178
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaStopCircle, {});
3179
- case "success":
3180
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaCheckCircle, {});
3181
- case "sun":
3182
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaSun, {});
3183
- case "table":
3184
- return /* @__PURE__ */ jsxRuntime.exports.jsx(RiTableLine, {});
3185
- case "target":
3186
- return /* @__PURE__ */ jsxRuntime.exports.jsx(TbTarget, {});
3187
- case "undo":
3188
- case "rotate left":
3189
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaUndo, {});
3190
- case "unfilter":
3191
- return /* @__PURE__ */ jsxRuntime.exports.jsx(RiFilterOffFill, {});
3192
- case "unlink":
3193
- return /* @__PURE__ */ jsxRuntime.exports.jsx(BiUnlink, {});
3194
- case "unlock":
3195
- return /* @__PURE__ */ jsxRuntime.exports.jsx(HiLockOpen, {});
3196
- case "upload":
3197
- case "import":
3198
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaFileImport, {});
3199
- case "user":
3200
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaUser, {});
3201
- case "users":
3202
- case "group":
3203
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaUsers, {});
3204
- case "video":
3205
- return /* @__PURE__ */ jsxRuntime.exports.jsx(BiVideo, {});
3206
- case "warning":
3207
- case "alert":
3208
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaExclamationTriangle, {});
3209
- case "water":
3210
- case "droplet":
3211
- return /* @__PURE__ */ jsxRuntime.exports.jsx(IoWater, {});
3212
- case "":
3213
- return null;
3214
- default:
3215
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaRegCircle, {});
3216
- }
3217
- };
3218
- const wrapper$5 = "_wrapper_6kkc6_341";
3219
- const customSvg = "_customSvg_6kkc6_348";
3220
- const customPng = "_customPng_6kkc6_351";
3221
- const clickable$2 = "_clickable_6kkc6_356";
3222
- const styles$S = {
3223
- wrapper: wrapper$5,
3224
- customSvg,
3225
- customPng,
3226
- clickable: clickable$2
3227
- };
3228
- const DisabledContext = React__default.createContext(false);
3229
- DisabledContext.Provider.propTypes = {
3230
- value: propTypes$1.exports.bool
3231
- };
3232
- const Icon = ({ icon: icon2, onClick, clickable: clickable2, color: color2, size: size2, testId }) => {
3233
- const disabledContext = useContext(DisabledContext);
3234
- return /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
3235
- className: cx$2(
3236
- styles$S.wrapper,
3237
- (clickable2 || onClick) && !disabledContext ? styles$S.clickable : ""
3238
- ),
3239
- style: {
3240
- color: color2,
3241
- fill: color2,
3242
- fontSize: size2 || "inherit",
3243
- width: size2 || "auto",
3244
- height: size2 || "auto"
3245
- },
3246
- onClick: (evt) => onClick && !disabledContext ? onClick(evt) : {},
3247
- "data-testid": testId,
3248
- children: isValidElement(icon2) ? icon2 : typeof icon2 === "string" && (icon2.includes(".svg") || icon2.includes("image/svg")) ? /* @__PURE__ */ jsxRuntime.exports.jsx(ReactSVG, {
3249
- className: styles$S.customSvg,
3250
- beforeInjection: (svg) => {
3251
- if (size2) {
3252
- svg.setAttribute("width", size2);
3253
- svg.setAttribute("height", size2);
3254
- }
3255
- },
3256
- src: icon2
3257
- }) : typeof icon2 === "string" && (icon2.includes(".png") || icon2.includes("image/png")) ? /* @__PURE__ */ jsxRuntime.exports.jsx("img", {
3258
- alt: "icon",
3259
- className: styles$S.customPng,
3260
- src: icon2
3261
- }) : typeof icon2 === "string" ? /* @__PURE__ */ jsxRuntime.exports.jsx(DeprecatedIcon, {
3262
- icon: icon2
3263
- }) : null
3264
- });
3265
- };
3266
- Icon.defaultProps = {
3267
- clickable: false,
3268
- onClick: null,
3269
- testId: null
3270
- };
3271
- Icon.propTypes = {
3272
- icon: propTypes$1.exports.oneOfType([
3273
- propTypes$1.exports.node,
3274
- propTypes$1.exports.string
3275
- ]).isRequired,
3276
- onClick: propTypes$1.exports.func,
3277
- clickable: propTypes$1.exports.bool,
3278
- testId: propTypes$1.exports.string
2133
+ const chevron = "_chevron_ckxkd_341";
2134
+ const expanded$2 = "_expanded_ckxkd_347";
2135
+ const styles$T = {
2136
+ chevron,
2137
+ expanded: expanded$2
3279
2138
  };
3280
2139
  const Chevron = ({ expanded: expanded2 }) => {
3281
- return /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
3282
- className: cx$2(styles$T.chevron, expanded2 ? styles$T.expanded : ""),
3283
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
3284
- icon: "chevron right"
3285
- })
2140
+ return expanded2 ? /* @__PURE__ */ jsxRuntime.exports.jsx(FaChevronRight, {
2141
+ className: cx$2(styles$T.chevron, styles$T.expanded)
2142
+ }) : /* @__PURE__ */ jsxRuntime.exports.jsx(FaChevronRight, {
2143
+ className: cx$2(styles$T.chevron)
3286
2144
  });
3287
2145
  };
3288
2146
  const accordion = "_accordion_11e4r_341";
3289
2147
  const accordionHeader = "_accordionHeader_11e4r_345";
3290
2148
  const heading$6 = "_heading_11e4r_349";
3291
- const clickable$1 = "_clickable_11e4r_352";
2149
+ const clickable$2 = "_clickable_11e4r_352";
3292
2150
  const bordered$4 = "_bordered_11e4r_358";
3293
2151
  const accordionContent = "_accordionContent_11e4r_358";
3294
2152
  const expanded$1 = "_expanded_11e4r_371";
3295
2153
  const padding$3 = "_padding_11e4r_380";
3296
2154
  const squareBottom = "_squareBottom_11e4r_383";
3297
- const styles$R = {
2155
+ const styles$S = {
3298
2156
  accordion,
3299
2157
  accordionHeader,
3300
2158
  heading: heading$6,
3301
- clickable: clickable$1,
2159
+ clickable: clickable$2,
3302
2160
  bordered: bordered$4,
3303
2161
  accordionContent,
3304
2162
  expanded: expanded$1,
@@ -3340,14 +2198,14 @@ const AccordionBase = ({
3340
2198
  }) => {
3341
2199
  return /* @__PURE__ */ jsxRuntime.exports.jsxs("div", {
3342
2200
  className: cx$2(
3343
- styles$R.accordion,
3344
- bordered2 ? styles$R.bordered : "",
3345
- expanded2 ? styles$R.expanded : "",
3346
- squareBottom2 ? styles$R.squareBottom : ""
2201
+ styles$S.accordion,
2202
+ bordered2 ? styles$S.bordered : "",
2203
+ expanded2 ? styles$S.expanded : "",
2204
+ squareBottom2 ? styles$S.squareBottom : ""
3347
2205
  ),
3348
2206
  children: [
3349
2207
  /* @__PURE__ */ jsxRuntime.exports.jsxs("div", {
3350
- className: cx$2(styles$R.accordionHeader, onClick ? styles$R.clickable : ""),
2208
+ className: cx$2(styles$S.accordionHeader, onClick ? styles$S.clickable : ""),
3351
2209
  onClick,
3352
2210
  "data-testid": testId,
3353
2211
  children: [
@@ -3355,15 +2213,15 @@ const AccordionBase = ({
3355
2213
  expanded: expanded2
3356
2214
  }),
3357
2215
  /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
3358
- className: styles$R.heading,
2216
+ className: styles$S.heading,
3359
2217
  children: heading2
3360
2218
  })
3361
2219
  ]
3362
2220
  }),
3363
2221
  expanded2 && children && /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
3364
2222
  className: cx$2(
3365
- styles$R.accordionContent,
3366
- bordered2 && padding2 ? styles$R.padding : ""
2223
+ styles$S.accordionContent,
2224
+ bordered2 && padding2 ? styles$S.padding : ""
3367
2225
  ),
3368
2226
  children
3369
2227
  })
@@ -3418,14 +2276,14 @@ Accordion.propTypes = {
3418
2276
  squareBottom: propTypes$1.exports.bool,
3419
2277
  testId: propTypes$1.exports.string
3420
2278
  };
3421
- const checkbox = "_checkbox_gaiiv_341";
3422
- const noLabel = "_noLabel_gaiiv_356";
3423
- const small$e = "_small_gaiiv_359";
3424
- const checkmark = "_checkmark_gaiiv_384";
3425
- const disabled$9 = "_disabled_gaiiv_408";
3426
- const noMargin$2 = "_noMargin_gaiiv_422";
3427
- const isInTable$4 = "_isInTable_gaiiv_425";
3428
- const styles$Q = {
2279
+ const checkbox = "_checkbox_1r0b6_341";
2280
+ const noLabel = "_noLabel_1r0b6_356";
2281
+ const small$e = "_small_1r0b6_359";
2282
+ const checkmark = "_checkmark_1r0b6_384";
2283
+ const disabled$9 = "_disabled_1r0b6_405";
2284
+ const noMargin$2 = "_noMargin_1r0b6_419";
2285
+ const isInTable$4 = "_isInTable_1r0b6_422";
2286
+ const styles$R = {
3429
2287
  checkbox,
3430
2288
  noLabel,
3431
2289
  small: small$e,
@@ -3434,6 +2292,10 @@ const styles$Q = {
3434
2292
  noMargin: noMargin$2,
3435
2293
  isInTable: isInTable$4
3436
2294
  };
2295
+ const DisabledContext = React__default.createContext(false);
2296
+ DisabledContext.Provider.propTypes = {
2297
+ value: propTypes$1.exports.bool
2298
+ };
3437
2299
  var MapShim = function() {
3438
2300
  if (typeof Map !== "undefined") {
3439
2301
  return Map;
@@ -3938,8 +2800,8 @@ function _createClass$1(Constructor, protoProps, staticProps) {
3938
2800
  _defineProperties$1(Constructor, staticProps);
3939
2801
  return Constructor;
3940
2802
  }
3941
- function _extends$8() {
3942
- _extends$8 = Object.assign || function(target) {
2803
+ function _extends$9() {
2804
+ _extends$9 = Object.assign || function(target) {
3943
2805
  for (var i = 1; i < arguments.length; i++) {
3944
2806
  var source = arguments[i];
3945
2807
  for (var key2 in source) {
@@ -3950,21 +2812,21 @@ function _extends$8() {
3950
2812
  }
3951
2813
  return target;
3952
2814
  };
3953
- return _extends$8.apply(this, arguments);
2815
+ return _extends$9.apply(this, arguments);
3954
2816
  }
3955
- function _inheritsLoose$4(subClass, superClass) {
2817
+ function _inheritsLoose$5(subClass, superClass) {
3956
2818
  subClass.prototype = Object.create(superClass.prototype);
3957
2819
  subClass.prototype.constructor = subClass;
3958
- _setPrototypeOf$5(subClass, superClass);
2820
+ _setPrototypeOf$6(subClass, superClass);
3959
2821
  }
3960
- function _setPrototypeOf$5(o, p) {
3961
- _setPrototypeOf$5 = Object.setPrototypeOf || function _setPrototypeOf2(o2, p2) {
2822
+ function _setPrototypeOf$6(o, p) {
2823
+ _setPrototypeOf$6 = Object.setPrototypeOf || function _setPrototypeOf2(o2, p2) {
3962
2824
  o2.__proto__ = p2;
3963
2825
  return o2;
3964
2826
  };
3965
- return _setPrototypeOf$5(o, p);
2827
+ return _setPrototypeOf$6(o, p);
3966
2828
  }
3967
- function _objectWithoutPropertiesLoose$6(source, excluded) {
2829
+ function _objectWithoutPropertiesLoose$7(source, excluded) {
3968
2830
  if (source == null)
3969
2831
  return {};
3970
2832
  var target = {};
@@ -4288,7 +3150,7 @@ function useTrackElements(_ref) {
4288
3150
  var layerRef = useTrackRef(useCallback$1(function(layer2) {
4289
3151
  var _get3 = get4(), previousLayer = _get3.layer;
4290
3152
  set(function(state) {
4291
- return _extends$8({}, state, {
3153
+ return _extends$9({}, state, {
4292
3154
  layer: layer2
4293
3155
  });
4294
3156
  });
@@ -4311,7 +3173,7 @@ function useTrackElements(_ref) {
4311
3173
  var scrollContainers = getScrollContainers(trigger2);
4312
3174
  var _get4 = get4(), previousTrigger = _get4.trigger;
4313
3175
  set(function(state) {
4314
- return _extends$8({}, state, {
3176
+ return _extends$9({}, state, {
4315
3177
  trigger: trigger2,
4316
3178
  scrollContainers
4317
3179
  });
@@ -4324,7 +3186,7 @@ function useTrackElements(_ref) {
4324
3186
  return;
4325
3187
  }
4326
3188
  set(function(state) {
4327
- return _extends$8({}, state, {
3189
+ return _extends$9({}, state, {
4328
3190
  scrollContainers: getScrollContainers(triggerOptionParent)
4329
3191
  });
4330
3192
  });
@@ -4491,7 +3353,7 @@ var BoundSide = {
4491
3353
  left: /* @__PURE__ */ createSide("left"),
4492
3354
  right: /* @__PURE__ */ createSide("right")
4493
3355
  };
4494
- var Side = /* @__PURE__ */ _extends$8({}, BoundSide, {
3356
+ var Side = /* @__PURE__ */ _extends$9({}, BoundSide, {
4495
3357
  center: /* @__PURE__ */ createSide("center")
4496
3358
  });
4497
3359
  var SIDES = ["top", "left", "bottom", "right"];
@@ -4583,7 +3445,7 @@ var Bounds = /* @__PURE__ */ function() {
4583
3445
  var _environment$getCompu = environment2.getComputedStyle(element), width = _environment$getCompu.width, height = _environment$getCompu.height, boxSizing = _environment$getCompu.boxSizing, borderLeft = _environment$getCompu.borderLeft, borderRight = _environment$getCompu.borderRight, borderTop = _environment$getCompu.borderTop, borderBottom = _environment$getCompu.borderBottom, paddingLeft = _environment$getCompu.paddingLeft, paddingRight = _environment$getCompu.paddingRight, paddingTop = _environment$getCompu.paddingTop, paddingBottom = _environment$getCompu.paddingBottom;
4584
3446
  var boxWidth = boxSizing === "border-box" ? getPixelValue(width) : sumOfPropertyValues(width, borderLeft, borderRight, paddingLeft, paddingRight);
4585
3447
  var boxHeight = boxSizing === "border-box" ? getPixelValue(height) : sumOfPropertyValues(height, borderTop, borderBottom, paddingTop, paddingBottom);
4586
- bounds = new Bounds2(_extends$8({}, bounds, {
3448
+ bounds = new Bounds2(_extends$9({}, bounds, {
4587
3449
  width: boxWidth,
4588
3450
  height: boxHeight
4589
3451
  }));
@@ -4630,7 +3492,7 @@ var Bounds = /* @__PURE__ */ function() {
4630
3492
  };
4631
3493
  _proto.merge = function merge(partialBoundsOrMergeFn) {
4632
3494
  var current = this.toObject();
4633
- return new Bounds2(_extends$8({}, current, typeof partialBoundsOrMergeFn === "function" ? partialBoundsOrMergeFn(current) : partialBoundsOrMergeFn));
3495
+ return new Bounds2(_extends$9({}, current, typeof partialBoundsOrMergeFn === "function" ? partialBoundsOrMergeFn(current) : partialBoundsOrMergeFn));
4634
3496
  };
4635
3497
  _proto.substract = function substract(bounds) {
4636
3498
  var result = this.toObject();
@@ -4693,7 +3555,7 @@ var Placement = /* @__PURE__ */ function() {
4693
3555
  }
4694
3556
  var dimensions = typeof layerDimensions === "function" ? layerDimensions(this.primary.prop) : layerDimensions;
4695
3557
  this.subjectsBounds = subjectBounds.merge({
4696
- layer: _extends$8({}, subjectBounds.layer, dimensions)
3558
+ layer: _extends$9({}, subjectBounds.layer, dimensions)
4697
3559
  });
4698
3560
  };
4699
3561
  _proto.getLayerBounds = function getLayerBounds(secondaryOffset) {
@@ -4811,7 +3673,7 @@ var Placement = /* @__PURE__ */ function() {
4811
3673
  return Placement2;
4812
3674
  }();
4813
3675
  var PlacementCenter = /* @__PURE__ */ function(_Placement) {
4814
- _inheritsLoose$4(PlacementCenter2, _Placement);
3676
+ _inheritsLoose$5(PlacementCenter2, _Placement);
4815
3677
  function PlacementCenter2() {
4816
3678
  return _Placement.apply(this, arguments) || this;
4817
3679
  }
@@ -4859,7 +3721,7 @@ function getArrowStyle(subjectsBounds, placement, arrowOffset) {
4859
3721
  var primarySide = placement.primary.prop;
4860
3722
  var secondarySide = placement.primary.oppositeCssProp;
4861
3723
  var secondaryValue = triggerIsBigger ? layer2[sizeProperty] / 2 + negativeOffset : trigger2[secondarySide] + trigger2[sizeProperty] / 2 - layer2[secondarySide];
4862
- return _extends$8({}, STYLE_BASE, (_extends22 = {}, _extends22[primarySide] = "100%", _extends22[secondarySide] = limit(secondaryValue, min, max), _extends22));
3724
+ return _extends$9({}, STYLE_BASE, (_extends22 = {}, _extends22[primarySide] = "100%", _extends22[secondarySide] = limit(secondaryValue, min, max), _extends22));
4863
3725
  }
4864
3726
  var Placements = /* @__PURE__ */ function() {
4865
3727
  function Placements2(placements, config2, subjectsBounds) {
@@ -4988,11 +3850,11 @@ var Placements = /* @__PURE__ */ function() {
4988
3850
  var arrow2 = getArrowStyle(this.subjectsBounds.merge({
4989
3851
  layer: layerBounds
4990
3852
  }), placement, this.config.arrowOffset);
4991
- var layer2 = this.config.overflowContainer ? _extends$8({}, layerStyleBase, {
3853
+ var layer2 = this.config.overflowContainer ? _extends$9({}, layerStyleBase, {
4992
3854
  position: "fixed",
4993
3855
  top: layerBounds.top,
4994
3856
  left: layerBounds.left
4995
- }) : _extends$8({}, layerStyleBase, {
3857
+ }) : _extends$9({}, layerStyleBase, {
4996
3858
  position: "absolute",
4997
3859
  top: layerBounds.top - this.subjectsBounds.parent.top + scrollOffsets.top - borderOffsets.top,
4998
3860
  left: layerBounds.left - this.subjectsBounds.parent.left + scrollOffsets.left - borderOffsets.left
@@ -5067,7 +3929,7 @@ var SubjectsBounds = /* @__PURE__ */ function() {
5067
3929
  };
5068
3930
  var _proto = SubjectsBounds2.prototype;
5069
3931
  _proto.merge = function merge(subjectsBounds) {
5070
- return new SubjectsBounds2(_extends$8({}, this, subjectsBounds), this.overflowContainer);
3932
+ return new SubjectsBounds2(_extends$9({}, this, subjectsBounds), this.overflowContainer);
5071
3933
  };
5072
3934
  _proto.offsetsToScrollContainers = function offsetsToScrollContainers(subject, allContainers) {
5073
3935
  if (allContainers === void 0) {
@@ -5258,7 +4120,7 @@ function getContainerElement(container2) {
5258
4120
  }
5259
4121
  return element;
5260
4122
  }
5261
- var _excluded$a = ["size", "angle", "borderWidth", "borderColor", "roundness", "backgroundColor", "layerSide", "style"];
4123
+ var _excluded$b = ["size", "angle", "borderWidth", "borderColor", "roundness", "backgroundColor", "layerSide", "style"];
5262
4124
  var LEFT = "left";
5263
4125
  var TOP = "top";
5264
4126
  var BOTTOM = "bottom";
@@ -5294,7 +4156,7 @@ function getBorderMaskPath(sizeA, sizeB, borderWidth, side, angle) {
5294
4156
  return ["M", borderWidth, A2, "H", sizeB - borderWidth, "L", sizeB - borderWidth - borderOffset, B2, "H", borderOffset + borderWidth, "Z"].join(" ");
5295
4157
  }
5296
4158
  var Arrow = /* @__PURE__ */ forwardRef(function Arrow2(_ref2, ref2) {
5297
- var _ref2$size = _ref2.size, size2 = _ref2$size === void 0 ? 8 : _ref2$size, _ref2$angle = _ref2.angle, angle = _ref2$angle === void 0 ? 45 : _ref2$angle, _ref2$borderWidth = _ref2.borderWidth, borderWidth = _ref2$borderWidth === void 0 ? 0 : _ref2$borderWidth, _ref2$borderColor = _ref2.borderColor, borderColor = _ref2$borderColor === void 0 ? "black" : _ref2$borderColor, _ref2$roundness = _ref2.roundness, roundness = _ref2$roundness === void 0 ? 0 : _ref2$roundness, _ref2$backgroundColor = _ref2.backgroundColor, backgroundColor = _ref2$backgroundColor === void 0 ? "white" : _ref2$backgroundColor, _ref2$layerSide = _ref2.layerSide, layerSide = _ref2$layerSide === void 0 ? "top" : _ref2$layerSide, _ref2$style = _ref2.style, style2 = _ref2$style === void 0 ? {} : _ref2$style, rest = _objectWithoutPropertiesLoose$6(_ref2, _excluded$a);
4159
+ var _ref2$size = _ref2.size, size2 = _ref2$size === void 0 ? 8 : _ref2$size, _ref2$angle = _ref2.angle, angle = _ref2$angle === void 0 ? 45 : _ref2$angle, _ref2$borderWidth = _ref2.borderWidth, borderWidth = _ref2$borderWidth === void 0 ? 0 : _ref2$borderWidth, _ref2$borderColor = _ref2.borderColor, borderColor = _ref2$borderColor === void 0 ? "black" : _ref2$borderColor, _ref2$roundness = _ref2.roundness, roundness = _ref2$roundness === void 0 ? 0 : _ref2$roundness, _ref2$backgroundColor = _ref2.backgroundColor, backgroundColor = _ref2$backgroundColor === void 0 ? "white" : _ref2$backgroundColor, _ref2$layerSide = _ref2.layerSide, layerSide = _ref2$layerSide === void 0 ? "top" : _ref2$layerSide, _ref2$style = _ref2.style, style2 = _ref2$style === void 0 ? {} : _ref2$style, rest = _objectWithoutPropertiesLoose$7(_ref2, _excluded$b);
5298
4160
  if (layerSide === "center") {
5299
4161
  return null;
5300
4162
  }
@@ -5302,10 +4164,10 @@ var Arrow = /* @__PURE__ */ forwardRef(function Arrow2(_ref2, ref2) {
5302
4164
  var sizeA = size2;
5303
4165
  var sizeB = getWidthBasedOnAngle(angle, size2) * 2;
5304
4166
  var maxSize = Math.max(sizeA, sizeB);
5305
- return createElement("svg", _extends$8({
4167
+ return createElement("svg", _extends$9({
5306
4168
  ref: ref2
5307
4169
  }, rest, {
5308
- style: _extends$8({}, style2, {
4170
+ style: _extends$9({}, style2, {
5309
4171
  transform: "translate" + (side.isHorizontal ? "Y" : "X") + "(-50%)"
5310
4172
  }),
5311
4173
  width: maxSize,
@@ -5411,7 +4273,7 @@ function useHover(_temp) {
5411
4273
  const tooltip = "_tooltip_bsjxl_341";
5412
4274
  const error$9 = "_error_bsjxl_355";
5413
4275
  const warning$d = "_warning_bsjxl_359";
5414
- const styles$P = {
4276
+ const styles$Q = {
5415
4277
  tooltip,
5416
4278
  error: error$9,
5417
4279
  warning: warning$d
@@ -5428,8 +4290,8 @@ const TooltipLayer = ({
5428
4290
  }) => {
5429
4291
  return /* @__PURE__ */ jsxRuntime.exports.jsxs("div", {
5430
4292
  className: cx$2(
5431
- styles$P.tooltip,
5432
- error2 ? styles$P.error : warning2 ? styles$P.warning : ""
4293
+ styles$Q.tooltip,
4294
+ error2 ? styles$Q.error : warning2 ? styles$Q.warning : ""
5433
4295
  ),
5434
4296
  ...layerProps,
5435
4297
  children: [
@@ -5578,11 +4440,11 @@ Tooltip.propTypes = {
5578
4440
  };
5579
4441
  const helpIcon = "_helpIcon_1yokl_1";
5580
4442
  const active$9 = "_active_1yokl_7";
5581
- const clickable = "_clickable_1yokl_10";
5582
- const styles$O = {
4443
+ const clickable$1 = "_clickable_1yokl_10";
4444
+ const styles$P = {
5583
4445
  helpIcon,
5584
4446
  active: active$9,
5585
- clickable
4447
+ clickable: clickable$1
5586
4448
  };
5587
4449
  const HelpIconTooltip = ({ children, text: text2, maxWidth }) => {
5588
4450
  const show = !!text2;
@@ -5596,7 +4458,7 @@ const HelpIconTooltip = ({ children, text: text2, maxWidth }) => {
5596
4458
  const HelpIcon = ({
5597
4459
  text: text2,
5598
4460
  onClick,
5599
- icon: icon2 = "help",
4461
+ icon: icon2 = /* @__PURE__ */ jsxRuntime.exports.jsx(FaQuestionCircle, {}),
5600
4462
  active: active2,
5601
4463
  maxWidth,
5602
4464
  testId
@@ -5609,24 +4471,22 @@ const HelpIcon = ({
5609
4471
  };
5610
4472
  return /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
5611
4473
  className: cx$2(
5612
- styles$O.helpIcon,
5613
- onClick ? styles$O.clickable : "",
5614
- active2 ? styles$O.active : ""
4474
+ styles$P.helpIcon,
4475
+ onClick ? styles$P.clickable : "",
4476
+ active2 ? styles$P.active : ""
5615
4477
  ),
5616
4478
  onClick: onClickHelpIcon,
5617
4479
  "data-testid": testId,
5618
4480
  children: /* @__PURE__ */ jsxRuntime.exports.jsx(HelpIconTooltip, {
5619
4481
  text: text2,
5620
4482
  maxWidth,
5621
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
5622
- icon: icon2
5623
- })
4483
+ children: icon2
5624
4484
  })
5625
4485
  });
5626
4486
  };
5627
4487
  HelpIcon.defaultProps = {
5628
4488
  active: false,
5629
- icon: "help",
4489
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaQuestionCircle, {}),
5630
4490
  maxWidth: "300px",
5631
4491
  onClick: null,
5632
4492
  text: null,
@@ -5661,12 +4521,12 @@ const CheckBox = ({
5661
4521
  const showHelp = helpText || onClickHelp;
5662
4522
  return /* @__PURE__ */ jsxRuntime.exports.jsxs("div", {
5663
4523
  className: cx$2(
5664
- styles$Q.checkbox,
5665
- noMargin2 ? styles$Q.noMargin : null,
5666
- isInTable2 ? styles$Q.isInTable : null,
5667
- disabled2 || disabledContext ? styles$Q.disabled : null,
5668
- small2 ? styles$Q.small : null,
5669
- !label2 ? styles$Q.noLabel : null
4524
+ styles$R.checkbox,
4525
+ noMargin2 ? styles$R.noMargin : null,
4526
+ isInTable2 ? styles$R.isInTable : null,
4527
+ disabled2 || disabledContext ? styles$R.disabled : null,
4528
+ small2 ? styles$R.small : null,
4529
+ !label2 ? styles$R.noLabel : null
5670
4530
  ),
5671
4531
  "data-ix": dataix,
5672
4532
  onClick: (evt) => {
@@ -5690,11 +4550,8 @@ const CheckBox = ({
5690
4550
  /* @__PURE__ */ jsxRuntime.exports.jsxs("label", {
5691
4551
  htmlFor: name2,
5692
4552
  children: [
5693
- /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
5694
- className: styles$Q.checkmark,
5695
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
5696
- icon: "check"
5697
- })
4553
+ /* @__PURE__ */ jsxRuntime.exports.jsx(FaCheck, {
4554
+ className: styles$R.checkmark
5698
4555
  }),
5699
4556
  label2
5700
4557
  ]
@@ -5745,7 +4602,7 @@ const bordered$3 = "_bordered_8hv0o_341";
5745
4602
  const checkboxWrapper = "_checkboxWrapper_8hv0o_347";
5746
4603
  const padding$2 = "_padding_8hv0o_353";
5747
4604
  const contentWrapper = "_contentWrapper_8hv0o_356";
5748
- const styles$N = {
4605
+ const styles$O = {
5749
4606
  bordered: bordered$3,
5750
4607
  checkboxWrapper,
5751
4608
  padding: padding$2,
@@ -5797,7 +4654,7 @@ const AccordionWithDefaultToggle = ({
5797
4654
  const content2 = /* @__PURE__ */ jsxRuntime.exports.jsxs(jsxRuntime.exports.Fragment, {
5798
4655
  children: [
5799
4656
  /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
5800
- className: styles$N.checkboxWrapper,
4657
+ className: styles$O.checkboxWrapper,
5801
4658
  children: /* @__PURE__ */ jsxRuntime.exports.jsx(CheckBox, {
5802
4659
  label: toggleLabel,
5803
4660
  onChange: (evt) => {
@@ -5810,7 +4667,7 @@ const AccordionWithDefaultToggle = ({
5810
4667
  })
5811
4668
  }),
5812
4669
  state.accordionExpanded && /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
5813
- className: styles$N.contentWrapper,
4670
+ className: styles$O.contentWrapper,
5814
4671
  children
5815
4672
  })
5816
4673
  ]
@@ -5825,7 +4682,7 @@ const AccordionWithDefaultToggle = ({
5825
4682
  onClick: () => dispatch({ type: "TOGGLE_ACCORDION" })
5826
4683
  }),
5827
4684
  /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
5828
- className: cx$2(styles$N.bordered, padding2 ? styles$N.padding : ""),
4685
+ className: cx$2(styles$O.bordered, padding2 ? styles$O.padding : ""),
5829
4686
  children: content2
5830
4687
  })
5831
4688
  ]
@@ -11160,130 +10017,883 @@ var lodash = { exports: {} };
11160
10017
  return this.__filtered__ ? new LazyWrapper(this) : this[dropName](1);
11161
10018
  };
11162
10019
  });
11163
- LazyWrapper.prototype.compact = function() {
11164
- return this.filter(identity);
11165
- };
11166
- LazyWrapper.prototype.find = function(predicate) {
11167
- return this.filter(predicate).head();
11168
- };
11169
- LazyWrapper.prototype.findLast = function(predicate) {
11170
- return this.reverse().find(predicate);
11171
- };
11172
- LazyWrapper.prototype.invokeMap = baseRest(function(path, args) {
11173
- if (typeof path == "function") {
11174
- return new LazyWrapper(this);
10020
+ LazyWrapper.prototype.compact = function() {
10021
+ return this.filter(identity);
10022
+ };
10023
+ LazyWrapper.prototype.find = function(predicate) {
10024
+ return this.filter(predicate).head();
10025
+ };
10026
+ LazyWrapper.prototype.findLast = function(predicate) {
10027
+ return this.reverse().find(predicate);
10028
+ };
10029
+ LazyWrapper.prototype.invokeMap = baseRest(function(path, args) {
10030
+ if (typeof path == "function") {
10031
+ return new LazyWrapper(this);
10032
+ }
10033
+ return this.map(function(value) {
10034
+ return baseInvoke(value, path, args);
10035
+ });
10036
+ });
10037
+ LazyWrapper.prototype.reject = function(predicate) {
10038
+ return this.filter(negate3(getIteratee(predicate)));
10039
+ };
10040
+ LazyWrapper.prototype.slice = function(start3, end2) {
10041
+ start3 = toInteger(start3);
10042
+ var result2 = this;
10043
+ if (result2.__filtered__ && (start3 > 0 || end2 < 0)) {
10044
+ return new LazyWrapper(result2);
10045
+ }
10046
+ if (start3 < 0) {
10047
+ result2 = result2.takeRight(-start3);
10048
+ } else if (start3) {
10049
+ result2 = result2.drop(start3);
10050
+ }
10051
+ if (end2 !== undefined$1) {
10052
+ end2 = toInteger(end2);
10053
+ result2 = end2 < 0 ? result2.dropRight(-end2) : result2.take(end2 - start3);
10054
+ }
10055
+ return result2;
10056
+ };
10057
+ LazyWrapper.prototype.takeRightWhile = function(predicate) {
10058
+ return this.reverse().takeWhile(predicate).reverse();
10059
+ };
10060
+ LazyWrapper.prototype.toArray = function() {
10061
+ return this.take(MAX_ARRAY_LENGTH);
10062
+ };
10063
+ baseForOwn(LazyWrapper.prototype, function(func, methodName) {
10064
+ var checkIteratee = /^(?:filter|find|map|reject)|While$/.test(methodName), isTaker = /^(?:head|last)$/.test(methodName), lodashFunc = lodash2[isTaker ? "take" + (methodName == "last" ? "Right" : "") : methodName], retUnwrapped = isTaker || /^find/.test(methodName);
10065
+ if (!lodashFunc) {
10066
+ return;
10067
+ }
10068
+ lodash2.prototype[methodName] = function() {
10069
+ var value = this.__wrapped__, args = isTaker ? [1] : arguments, isLazy = value instanceof LazyWrapper, iteratee2 = args[0], useLazy = isLazy || isArray2(value);
10070
+ var interceptor = function(value2) {
10071
+ var result3 = lodashFunc.apply(lodash2, arrayPush([value2], args));
10072
+ return isTaker && chainAll ? result3[0] : result3;
10073
+ };
10074
+ if (useLazy && checkIteratee && typeof iteratee2 == "function" && iteratee2.length != 1) {
10075
+ isLazy = useLazy = false;
10076
+ }
10077
+ var chainAll = this.__chain__, isHybrid = !!this.__actions__.length, isUnwrapped = retUnwrapped && !chainAll, onlyLazy = isLazy && !isHybrid;
10078
+ if (!retUnwrapped && useLazy) {
10079
+ value = onlyLazy ? value : new LazyWrapper(this);
10080
+ var result2 = func.apply(value, args);
10081
+ result2.__actions__.push({ "func": thru, "args": [interceptor], "thisArg": undefined$1 });
10082
+ return new LodashWrapper(result2, chainAll);
10083
+ }
10084
+ if (isUnwrapped && onlyLazy) {
10085
+ return func.apply(this, args);
10086
+ }
10087
+ result2 = this.thru(interceptor);
10088
+ return isUnwrapped ? isTaker ? result2.value()[0] : result2.value() : result2;
10089
+ };
10090
+ });
10091
+ arrayEach(["pop", "push", "shift", "sort", "splice", "unshift"], function(methodName) {
10092
+ var func = arrayProto[methodName], chainName = /^(?:push|sort|unshift)$/.test(methodName) ? "tap" : "thru", retUnwrapped = /^(?:pop|shift)$/.test(methodName);
10093
+ lodash2.prototype[methodName] = function() {
10094
+ var args = arguments;
10095
+ if (retUnwrapped && !this.__chain__) {
10096
+ var value = this.value();
10097
+ return func.apply(isArray2(value) ? value : [], args);
10098
+ }
10099
+ return this[chainName](function(value2) {
10100
+ return func.apply(isArray2(value2) ? value2 : [], args);
10101
+ });
10102
+ };
10103
+ });
10104
+ baseForOwn(LazyWrapper.prototype, function(func, methodName) {
10105
+ var lodashFunc = lodash2[methodName];
10106
+ if (lodashFunc) {
10107
+ var key2 = lodashFunc.name + "";
10108
+ if (!hasOwnProperty.call(realNames, key2)) {
10109
+ realNames[key2] = [];
10110
+ }
10111
+ realNames[key2].push({ "name": methodName, "func": lodashFunc });
10112
+ }
10113
+ });
10114
+ realNames[createHybrid(undefined$1, WRAP_BIND_KEY_FLAG).name] = [{
10115
+ "name": "wrapper",
10116
+ "func": undefined$1
10117
+ }];
10118
+ LazyWrapper.prototype.clone = lazyClone;
10119
+ LazyWrapper.prototype.reverse = lazyReverse;
10120
+ LazyWrapper.prototype.value = lazyValue;
10121
+ lodash2.prototype.at = wrapperAt;
10122
+ lodash2.prototype.chain = wrapperChain;
10123
+ lodash2.prototype.commit = wrapperCommit;
10124
+ lodash2.prototype.next = wrapperNext;
10125
+ lodash2.prototype.plant = wrapperPlant;
10126
+ lodash2.prototype.reverse = wrapperReverse;
10127
+ lodash2.prototype.toJSON = lodash2.prototype.valueOf = lodash2.prototype.value = wrapperValue;
10128
+ lodash2.prototype.first = lodash2.prototype.head;
10129
+ if (symIterator) {
10130
+ lodash2.prototype[symIterator] = wrapperToIterator;
10131
+ }
10132
+ return lodash2;
10133
+ };
10134
+ var _2 = runInContext();
10135
+ if (freeModule) {
10136
+ (freeModule.exports = _2)._ = _2;
10137
+ freeExports._ = _2;
10138
+ } else {
10139
+ root2._ = _2;
10140
+ }
10141
+ }).call(commonjsGlobal);
10142
+ })(lodash, lodash.exports);
10143
+ const _$1 = lodash.exports;
10144
+ function _objectWithoutPropertiesLoose$6(source, excluded) {
10145
+ if (source == null)
10146
+ return {};
10147
+ var target = {};
10148
+ var sourceKeys = Object.keys(source);
10149
+ var key2, i;
10150
+ for (i = 0; i < sourceKeys.length; i++) {
10151
+ key2 = sourceKeys[i];
10152
+ if (excluded.indexOf(key2) >= 0)
10153
+ continue;
10154
+ target[key2] = source[key2];
10155
+ }
10156
+ return target;
10157
+ }
10158
+ function _extends$8() {
10159
+ _extends$8 = Object.assign ? Object.assign.bind() : function(target) {
10160
+ for (var i = 1; i < arguments.length; i++) {
10161
+ var source = arguments[i];
10162
+ for (var key2 in source) {
10163
+ if (Object.prototype.hasOwnProperty.call(source, key2)) {
10164
+ target[key2] = source[key2];
10165
+ }
10166
+ }
10167
+ }
10168
+ return target;
10169
+ };
10170
+ return _extends$8.apply(this, arguments);
10171
+ }
10172
+ function _setPrototypeOf$5(o, p) {
10173
+ _setPrototypeOf$5 = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
10174
+ o2.__proto__ = p2;
10175
+ return o2;
10176
+ };
10177
+ return _setPrototypeOf$5(o, p);
10178
+ }
10179
+ function _inheritsLoose$4(subClass, superClass) {
10180
+ subClass.prototype = Object.create(superClass.prototype);
10181
+ subClass.prototype.constructor = subClass;
10182
+ _setPrototypeOf$5(subClass, superClass);
10183
+ }
10184
+ function __spreadArray$2(to2, from2, pack) {
10185
+ if (pack || arguments.length === 2)
10186
+ for (var i = 0, l = from2.length, ar2; i < l; i++) {
10187
+ if (ar2 || !(i in from2)) {
10188
+ if (!ar2)
10189
+ ar2 = Array.prototype.slice.call(from2, 0, i);
10190
+ ar2[i] = from2[i];
10191
+ }
10192
+ }
10193
+ return to2.concat(ar2 || Array.prototype.slice.call(from2));
10194
+ }
10195
+ typeof SuppressedError === "function" ? SuppressedError : function(error2, suppressed, message2) {
10196
+ var e2 = new Error(message2);
10197
+ return e2.name = "SuppressedError", e2.error = error2, e2.suppressed = suppressed, e2;
10198
+ };
10199
+ /*!
10200
+ * content-type
10201
+ * Copyright(c) 2015 Douglas Christopher Wilson
10202
+ * MIT Licensed
10203
+ */
10204
+ var PARAM_REGEXP = /; *([!#$%&'*+.^_`|~0-9A-Za-z-]+) *= *("(?:[\u000b\u0020\u0021\u0023-\u005b\u005d-\u007e\u0080-\u00ff]|\\[\u000b\u0020-\u00ff])*"|[!#$%&'*+.^_`|~0-9A-Za-z-]+) */g;
10205
+ var QESC_REGEXP = /\\([\u000b\u0020-\u00ff])/g;
10206
+ var TYPE_REGEXP = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+\/[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;
10207
+ var parse_1$1 = parse$3;
10208
+ function parse$3(string) {
10209
+ if (!string) {
10210
+ throw new TypeError("argument string is required");
10211
+ }
10212
+ var header2 = typeof string === "object" ? getcontenttype(string) : string;
10213
+ if (typeof header2 !== "string") {
10214
+ throw new TypeError("argument string is required to be a string");
10215
+ }
10216
+ var index2 = header2.indexOf(";");
10217
+ var type = index2 !== -1 ? header2.slice(0, index2).trim() : header2.trim();
10218
+ if (!TYPE_REGEXP.test(type)) {
10219
+ throw new TypeError("invalid media type");
10220
+ }
10221
+ var obj = new ContentType(type.toLowerCase());
10222
+ if (index2 !== -1) {
10223
+ var key2;
10224
+ var match2;
10225
+ var value;
10226
+ PARAM_REGEXP.lastIndex = index2;
10227
+ while (match2 = PARAM_REGEXP.exec(header2)) {
10228
+ if (match2.index !== index2) {
10229
+ throw new TypeError("invalid parameter format");
10230
+ }
10231
+ index2 += match2[0].length;
10232
+ key2 = match2[1].toLowerCase();
10233
+ value = match2[2];
10234
+ if (value.charCodeAt(0) === 34) {
10235
+ value = value.slice(1, -1);
10236
+ if (value.indexOf("\\") !== -1) {
10237
+ value = value.replace(QESC_REGEXP, "$1");
10238
+ }
10239
+ }
10240
+ obj.parameters[key2] = value;
10241
+ }
10242
+ if (index2 !== header2.length) {
10243
+ throw new TypeError("invalid parameter format");
10244
+ }
10245
+ }
10246
+ return obj;
10247
+ }
10248
+ function getcontenttype(obj) {
10249
+ var header2;
10250
+ if (typeof obj.getHeader === "function") {
10251
+ header2 = obj.getHeader("content-type");
10252
+ } else if (typeof obj.headers === "object") {
10253
+ header2 = obj.headers && obj.headers["content-type"];
10254
+ }
10255
+ if (typeof header2 !== "string") {
10256
+ throw new TypeError("content-type header is missing from object");
10257
+ }
10258
+ return header2;
10259
+ }
10260
+ function ContentType(type) {
10261
+ this.parameters = /* @__PURE__ */ Object.create(null);
10262
+ this.type = type;
10263
+ }
10264
+ var cache$1 = /* @__PURE__ */ new Map();
10265
+ var cloneSvg = function cloneSvg2(sourceSvg) {
10266
+ return sourceSvg.cloneNode(true);
10267
+ };
10268
+ var isLocal = function isLocal2() {
10269
+ return window.location.protocol === "file:";
10270
+ };
10271
+ var makeAjaxRequest = function makeAjaxRequest2(url, httpRequestWithCredentials, callback) {
10272
+ var httpRequest = new XMLHttpRequest();
10273
+ httpRequest.onreadystatechange = function() {
10274
+ try {
10275
+ if (!/\.svg/i.test(url) && httpRequest.readyState === 2) {
10276
+ var contentType = httpRequest.getResponseHeader("Content-Type");
10277
+ if (!contentType) {
10278
+ throw new Error("Content type not found");
10279
+ }
10280
+ var type = parse_1$1(contentType).type;
10281
+ if (!(type === "image/svg+xml" || type === "text/plain")) {
10282
+ throw new Error("Invalid content type: ".concat(type));
10283
+ }
10284
+ }
10285
+ if (httpRequest.readyState === 4) {
10286
+ if (httpRequest.status === 404 || httpRequest.responseXML === null) {
10287
+ throw new Error(isLocal() ? "Note: SVG injection ajax calls do not work locally without adjusting security settings in your browser. Or consider using a local webserver." : "Unable to load SVG file: " + url);
10288
+ }
10289
+ if (httpRequest.status === 200 || isLocal() && httpRequest.status === 0) {
10290
+ callback(null, httpRequest);
10291
+ } else {
10292
+ throw new Error("There was a problem injecting the SVG: " + httpRequest.status + " " + httpRequest.statusText);
10293
+ }
10294
+ }
10295
+ } catch (error2) {
10296
+ httpRequest.abort();
10297
+ if (error2 instanceof Error) {
10298
+ callback(error2, httpRequest);
10299
+ } else {
10300
+ throw error2;
10301
+ }
10302
+ }
10303
+ };
10304
+ httpRequest.open("GET", url);
10305
+ httpRequest.withCredentials = httpRequestWithCredentials;
10306
+ if (httpRequest.overrideMimeType) {
10307
+ httpRequest.overrideMimeType("text/xml");
10308
+ }
10309
+ httpRequest.send();
10310
+ };
10311
+ var requestQueue = {};
10312
+ var queueRequest = function queueRequest2(url, callback) {
10313
+ requestQueue[url] = requestQueue[url] || [];
10314
+ requestQueue[url].push(callback);
10315
+ };
10316
+ var processRequestQueue = function processRequestQueue2(url) {
10317
+ var _loop_1 = function _loop_12(i2, len2) {
10318
+ setTimeout(function() {
10319
+ if (Array.isArray(requestQueue[url])) {
10320
+ var cacheValue = cache$1.get(url);
10321
+ var callback = requestQueue[url][i2];
10322
+ if (cacheValue instanceof SVGSVGElement) {
10323
+ callback(null, cloneSvg(cacheValue));
10324
+ }
10325
+ if (cacheValue instanceof Error) {
10326
+ callback(cacheValue);
10327
+ }
10328
+ if (i2 === requestQueue[url].length - 1) {
10329
+ delete requestQueue[url];
10330
+ }
10331
+ }
10332
+ }, 0);
10333
+ };
10334
+ for (var i = 0, len = requestQueue[url].length; i < len; i++) {
10335
+ _loop_1(i);
10336
+ }
10337
+ };
10338
+ var loadSvgCached = function loadSvgCached2(url, httpRequestWithCredentials, callback) {
10339
+ if (cache$1.has(url)) {
10340
+ var cacheValue = cache$1.get(url);
10341
+ if (cacheValue === void 0) {
10342
+ queueRequest(url, callback);
10343
+ return;
10344
+ }
10345
+ if (cacheValue instanceof SVGSVGElement) {
10346
+ callback(null, cloneSvg(cacheValue));
10347
+ return;
10348
+ }
10349
+ }
10350
+ cache$1.set(url, void 0);
10351
+ queueRequest(url, callback);
10352
+ makeAjaxRequest(url, httpRequestWithCredentials, function(error2, httpRequest) {
10353
+ var _a;
10354
+ if (error2) {
10355
+ cache$1.set(url, error2);
10356
+ } else if (((_a = httpRequest.responseXML) === null || _a === void 0 ? void 0 : _a.documentElement) instanceof SVGSVGElement) {
10357
+ cache$1.set(url, httpRequest.responseXML.documentElement);
10358
+ }
10359
+ processRequestQueue(url);
10360
+ });
10361
+ };
10362
+ var loadSvgUncached = function loadSvgUncached2(url, httpRequestWithCredentials, callback) {
10363
+ makeAjaxRequest(url, httpRequestWithCredentials, function(error2, httpRequest) {
10364
+ var _a;
10365
+ if (error2) {
10366
+ callback(error2);
10367
+ } else if (((_a = httpRequest.responseXML) === null || _a === void 0 ? void 0 : _a.documentElement) instanceof SVGSVGElement) {
10368
+ callback(null, httpRequest.responseXML.documentElement);
10369
+ }
10370
+ });
10371
+ };
10372
+ var idCounter = 0;
10373
+ var uniqueId$1 = function uniqueId() {
10374
+ return ++idCounter;
10375
+ };
10376
+ var injectedElements = [];
10377
+ var ranScripts = {};
10378
+ var svgNamespace$1 = "http://www.w3.org/2000/svg";
10379
+ var xlinkNamespace$1 = "http://www.w3.org/1999/xlink";
10380
+ var injectElement = function injectElement2(el2, evalScripts, renumerateIRIElements, cacheRequests, httpRequestWithCredentials, beforeEach, callback) {
10381
+ var elUrl = el2.getAttribute("data-src") || el2.getAttribute("src");
10382
+ if (!elUrl) {
10383
+ callback(new Error("Invalid data-src or src attribute"));
10384
+ return;
10385
+ }
10386
+ if (injectedElements.indexOf(el2) !== -1) {
10387
+ injectedElements.splice(injectedElements.indexOf(el2), 1);
10388
+ el2 = null;
10389
+ return;
10390
+ }
10391
+ injectedElements.push(el2);
10392
+ el2.setAttribute("src", "");
10393
+ var loadSvg = cacheRequests ? loadSvgCached : loadSvgUncached;
10394
+ loadSvg(elUrl, httpRequestWithCredentials, function(error2, svg) {
10395
+ if (!svg) {
10396
+ injectedElements.splice(injectedElements.indexOf(el2), 1);
10397
+ el2 = null;
10398
+ callback(error2);
10399
+ return;
10400
+ }
10401
+ var elId = el2.getAttribute("id");
10402
+ if (elId) {
10403
+ svg.setAttribute("id", elId);
10404
+ }
10405
+ var elTitle = el2.getAttribute("title");
10406
+ if (elTitle) {
10407
+ svg.setAttribute("title", elTitle);
10408
+ }
10409
+ var elWidth = el2.getAttribute("width");
10410
+ if (elWidth) {
10411
+ svg.setAttribute("width", elWidth);
10412
+ }
10413
+ var elHeight = el2.getAttribute("height");
10414
+ if (elHeight) {
10415
+ svg.setAttribute("height", elHeight);
10416
+ }
10417
+ var mergedClasses = Array.from(new Set(__spreadArray$2(__spreadArray$2(__spreadArray$2([], (svg.getAttribute("class") || "").split(" "), true), ["injected-svg"], false), (el2.getAttribute("class") || "").split(" "), true))).join(" ").trim();
10418
+ svg.setAttribute("class", mergedClasses);
10419
+ var elStyle = el2.getAttribute("style");
10420
+ if (elStyle) {
10421
+ svg.setAttribute("style", elStyle);
10422
+ }
10423
+ svg.setAttribute("data-src", elUrl);
10424
+ var elData = [].filter.call(el2.attributes, function(at) {
10425
+ return /^data-\w[\w-]*$/.test(at.name);
10426
+ });
10427
+ Array.prototype.forEach.call(elData, function(dataAttr) {
10428
+ if (dataAttr.name && dataAttr.value) {
10429
+ svg.setAttribute(dataAttr.name, dataAttr.value);
10430
+ }
10431
+ });
10432
+ if (renumerateIRIElements) {
10433
+ var iriElementsAndProperties_1 = {
10434
+ clipPath: ["clip-path"],
10435
+ "color-profile": ["color-profile"],
10436
+ cursor: ["cursor"],
10437
+ filter: ["filter"],
10438
+ linearGradient: ["fill", "stroke"],
10439
+ marker: ["marker", "marker-start", "marker-mid", "marker-end"],
10440
+ mask: ["mask"],
10441
+ path: [],
10442
+ pattern: ["fill", "stroke"],
10443
+ radialGradient: ["fill", "stroke"]
10444
+ };
10445
+ var element_1;
10446
+ var elements_1;
10447
+ var properties_1;
10448
+ var currentId_1;
10449
+ var newId_1;
10450
+ Object.keys(iriElementsAndProperties_1).forEach(function(key2) {
10451
+ element_1 = key2;
10452
+ properties_1 = iriElementsAndProperties_1[key2];
10453
+ elements_1 = svg.querySelectorAll(element_1 + "[id]");
10454
+ var _loop_1 = function _loop_12(a3, elementsLen2) {
10455
+ currentId_1 = elements_1[a3].id;
10456
+ newId_1 = currentId_1 + "-" + uniqueId$1();
10457
+ var referencingElements;
10458
+ Array.prototype.forEach.call(properties_1, function(property) {
10459
+ referencingElements = svg.querySelectorAll("[" + property + '*="' + currentId_1 + '"]');
10460
+ for (var b2 = 0, referencingElementLen = referencingElements.length; b2 < referencingElementLen; b2++) {
10461
+ var attrValue = referencingElements[b2].getAttribute(property);
10462
+ if (attrValue && !attrValue.match(new RegExp('url\\("?#' + currentId_1 + '"?\\)'))) {
10463
+ continue;
10464
+ }
10465
+ referencingElements[b2].setAttribute(property, "url(#" + newId_1 + ")");
10466
+ }
10467
+ });
10468
+ var allLinks = svg.querySelectorAll("[*|href]");
10469
+ var links = [];
10470
+ for (var c2 = 0, allLinksLen = allLinks.length; c2 < allLinksLen; c2++) {
10471
+ var href = allLinks[c2].getAttributeNS(xlinkNamespace$1, "href");
10472
+ if (href && href.toString() === "#" + elements_1[a3].id) {
10473
+ links.push(allLinks[c2]);
10474
+ }
10475
+ }
10476
+ for (var d2 = 0, linksLen = links.length; d2 < linksLen; d2++) {
10477
+ links[d2].setAttributeNS(xlinkNamespace$1, "href", "#" + newId_1);
10478
+ }
10479
+ elements_1[a3].id = newId_1;
10480
+ };
10481
+ for (var a2 = 0, elementsLen = elements_1.length; a2 < elementsLen; a2++) {
10482
+ _loop_1(a2);
10483
+ }
10484
+ });
10485
+ }
10486
+ svg.removeAttribute("xmlns:a");
10487
+ var scripts = svg.querySelectorAll("script");
10488
+ var scriptsToEval = [];
10489
+ var script;
10490
+ var scriptType;
10491
+ for (var i = 0, scriptsLen = scripts.length; i < scriptsLen; i++) {
10492
+ scriptType = scripts[i].getAttribute("type");
10493
+ if (!scriptType || scriptType === "application/ecmascript" || scriptType === "application/javascript" || scriptType === "text/javascript") {
10494
+ script = scripts[i].innerText || scripts[i].textContent;
10495
+ if (script) {
10496
+ scriptsToEval.push(script);
10497
+ }
10498
+ svg.removeChild(scripts[i]);
10499
+ }
10500
+ }
10501
+ if (scriptsToEval.length > 0 && (evalScripts === "always" || evalScripts === "once" && !ranScripts[elUrl])) {
10502
+ for (var l = 0, scriptsToEvalLen = scriptsToEval.length; l < scriptsToEvalLen; l++) {
10503
+ new Function(scriptsToEval[l])(window);
10504
+ }
10505
+ ranScripts[elUrl] = true;
10506
+ }
10507
+ var styleTags = svg.querySelectorAll("style");
10508
+ Array.prototype.forEach.call(styleTags, function(styleTag) {
10509
+ styleTag.textContent += "";
10510
+ });
10511
+ svg.setAttribute("xmlns", svgNamespace$1);
10512
+ svg.setAttribute("xmlns:xlink", xlinkNamespace$1);
10513
+ beforeEach(svg);
10514
+ if (!el2.parentNode) {
10515
+ injectedElements.splice(injectedElements.indexOf(el2), 1);
10516
+ el2 = null;
10517
+ callback(new Error("Parent node is null"));
10518
+ return;
10519
+ }
10520
+ el2.parentNode.replaceChild(svg, el2);
10521
+ injectedElements.splice(injectedElements.indexOf(el2), 1);
10522
+ el2 = null;
10523
+ callback(null, svg);
10524
+ });
10525
+ };
10526
+ var SVGInjector = function SVGInjector2(elements, _a) {
10527
+ var _b = _a === void 0 ? {} : _a, _c = _b.afterAll, afterAll = _c === void 0 ? function() {
10528
+ return void 0;
10529
+ } : _c, _d = _b.afterEach, afterEach = _d === void 0 ? function() {
10530
+ return void 0;
10531
+ } : _d, _e2 = _b.beforeEach, beforeEach = _e2 === void 0 ? function() {
10532
+ return void 0;
10533
+ } : _e2, _f = _b.cacheRequests, cacheRequests = _f === void 0 ? true : _f, _g = _b.evalScripts, evalScripts = _g === void 0 ? "never" : _g, _h = _b.httpRequestWithCredentials, httpRequestWithCredentials = _h === void 0 ? false : _h, _j = _b.renumerateIRIElements, renumerateIRIElements = _j === void 0 ? true : _j;
10534
+ if (elements && "length" in elements) {
10535
+ var elementsLoaded_1 = 0;
10536
+ for (var i = 0, j2 = elements.length; i < j2; i++) {
10537
+ injectElement(elements[i], evalScripts, renumerateIRIElements, cacheRequests, httpRequestWithCredentials, beforeEach, function(error2, svg) {
10538
+ afterEach(error2, svg);
10539
+ if (elements && "length" in elements && elements.length === ++elementsLoaded_1) {
10540
+ afterAll(elementsLoaded_1);
10541
+ }
10542
+ });
10543
+ }
10544
+ } else if (elements) {
10545
+ injectElement(elements, evalScripts, renumerateIRIElements, cacheRequests, httpRequestWithCredentials, beforeEach, function(error2, svg) {
10546
+ afterEach(error2, svg);
10547
+ afterAll(1);
10548
+ elements = null;
10549
+ });
10550
+ } else {
10551
+ afterAll(0);
10552
+ }
10553
+ };
10554
+ var ownerWindow = function ownerWindow2(node) {
10555
+ var doc2 = (node == null ? void 0 : node.ownerDocument) || document;
10556
+ return doc2.defaultView || window;
10557
+ };
10558
+ var shallowDiffers = function shallowDiffers2(a2, b2) {
10559
+ for (var i in a2) {
10560
+ if (!(i in b2)) {
10561
+ return true;
10562
+ }
10563
+ }
10564
+ for (var _i in b2) {
10565
+ if (a2[_i] !== b2[_i]) {
10566
+ return true;
10567
+ }
10568
+ }
10569
+ return false;
10570
+ };
10571
+ var _excluded$a = ["afterInjection", "beforeInjection", "desc", "evalScripts", "fallback", "httpRequestWithCredentials", "loading", "renumerateIRIElements", "src", "title", "useRequestCache", "wrapper"];
10572
+ var svgNamespace = "http://www.w3.org/2000/svg";
10573
+ var xlinkNamespace = "http://www.w3.org/1999/xlink";
10574
+ var ReactSVG = /* @__PURE__ */ function(_React$Component) {
10575
+ _inheritsLoose$4(ReactSVG2, _React$Component);
10576
+ function ReactSVG2() {
10577
+ var _this;
10578
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
10579
+ args[_key] = arguments[_key];
10580
+ }
10581
+ _this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;
10582
+ _this.initialState = {
10583
+ hasError: false,
10584
+ isLoading: true
10585
+ };
10586
+ _this.state = _this.initialState;
10587
+ _this._isMounted = false;
10588
+ _this.reactWrapper = void 0;
10589
+ _this.nonReactWrapper = void 0;
10590
+ _this.refCallback = function(reactWrapper) {
10591
+ _this.reactWrapper = reactWrapper;
10592
+ };
10593
+ return _this;
10594
+ }
10595
+ var _proto = ReactSVG2.prototype;
10596
+ _proto.renderSVG = function renderSVG2() {
10597
+ var _this2 = this;
10598
+ if (this.reactWrapper instanceof ownerWindow(this.reactWrapper).Node) {
10599
+ var _this$props = this.props, desc = _this$props.desc, evalScripts = _this$props.evalScripts, httpRequestWithCredentials = _this$props.httpRequestWithCredentials, renumerateIRIElements = _this$props.renumerateIRIElements, src = _this$props.src, title2 = _this$props.title, useRequestCache = _this$props.useRequestCache;
10600
+ var onError3 = this.props.onError;
10601
+ var beforeInjection2 = this.props.beforeInjection;
10602
+ var afterInjection2 = this.props.afterInjection;
10603
+ var wrapper2 = this.props.wrapper;
10604
+ var nonReactWrapper;
10605
+ var nonReactTarget;
10606
+ if (wrapper2 === "svg") {
10607
+ nonReactWrapper = document.createElementNS(svgNamespace, wrapper2);
10608
+ nonReactWrapper.setAttribute("xmlns", svgNamespace);
10609
+ nonReactWrapper.setAttribute("xmlns:xlink", xlinkNamespace);
10610
+ nonReactTarget = document.createElementNS(svgNamespace, wrapper2);
10611
+ } else {
10612
+ nonReactWrapper = document.createElement(wrapper2);
10613
+ nonReactTarget = document.createElement(wrapper2);
10614
+ }
10615
+ nonReactWrapper.appendChild(nonReactTarget);
10616
+ nonReactTarget.dataset.src = src;
10617
+ this.nonReactWrapper = this.reactWrapper.appendChild(nonReactWrapper);
10618
+ var handleError = function handleError2(error2) {
10619
+ _this2.removeSVG();
10620
+ if (!_this2._isMounted) {
10621
+ onError3(error2);
10622
+ return;
11175
10623
  }
11176
- return this.map(function(value) {
11177
- return baseInvoke(value, path, args);
10624
+ _this2.setState(function() {
10625
+ return {
10626
+ hasError: true,
10627
+ isLoading: false
10628
+ };
10629
+ }, function() {
10630
+ onError3(error2);
11178
10631
  });
11179
- });
11180
- LazyWrapper.prototype.reject = function(predicate) {
11181
- return this.filter(negate3(getIteratee(predicate)));
11182
10632
  };
11183
- LazyWrapper.prototype.slice = function(start3, end2) {
11184
- start3 = toInteger(start3);
11185
- var result2 = this;
11186
- if (result2.__filtered__ && (start3 > 0 || end2 < 0)) {
11187
- return new LazyWrapper(result2);
11188
- }
11189
- if (start3 < 0) {
11190
- result2 = result2.takeRight(-start3);
11191
- } else if (start3) {
11192
- result2 = result2.drop(start3);
10633
+ var afterEach = function afterEach2(error2, svg) {
10634
+ if (error2) {
10635
+ handleError(error2);
10636
+ return;
11193
10637
  }
11194
- if (end2 !== undefined$1) {
11195
- end2 = toInteger(end2);
11196
- result2 = end2 < 0 ? result2.dropRight(-end2) : result2.take(end2 - start3);
10638
+ if (_this2._isMounted) {
10639
+ _this2.setState(function() {
10640
+ return {
10641
+ isLoading: false
10642
+ };
10643
+ }, function() {
10644
+ try {
10645
+ afterInjection2(svg);
10646
+ } catch (afterInjectionError) {
10647
+ handleError(afterInjectionError);
10648
+ }
10649
+ });
11197
10650
  }
11198
- return result2;
11199
- };
11200
- LazyWrapper.prototype.takeRightWhile = function(predicate) {
11201
- return this.reverse().takeWhile(predicate).reverse();
11202
- };
11203
- LazyWrapper.prototype.toArray = function() {
11204
- return this.take(MAX_ARRAY_LENGTH);
11205
10651
  };
11206
- baseForOwn(LazyWrapper.prototype, function(func, methodName) {
11207
- var checkIteratee = /^(?:filter|find|map|reject)|While$/.test(methodName), isTaker = /^(?:head|last)$/.test(methodName), lodashFunc = lodash2[isTaker ? "take" + (methodName == "last" ? "Right" : "") : methodName], retUnwrapped = isTaker || /^find/.test(methodName);
11208
- if (!lodashFunc) {
11209
- return;
11210
- }
11211
- lodash2.prototype[methodName] = function() {
11212
- var value = this.__wrapped__, args = isTaker ? [1] : arguments, isLazy = value instanceof LazyWrapper, iteratee2 = args[0], useLazy = isLazy || isArray2(value);
11213
- var interceptor = function(value2) {
11214
- var result3 = lodashFunc.apply(lodash2, arrayPush([value2], args));
11215
- return isTaker && chainAll ? result3[0] : result3;
11216
- };
11217
- if (useLazy && checkIteratee && typeof iteratee2 == "function" && iteratee2.length != 1) {
11218
- isLazy = useLazy = false;
11219
- }
11220
- var chainAll = this.__chain__, isHybrid = !!this.__actions__.length, isUnwrapped = retUnwrapped && !chainAll, onlyLazy = isLazy && !isHybrid;
11221
- if (!retUnwrapped && useLazy) {
11222
- value = onlyLazy ? value : new LazyWrapper(this);
11223
- var result2 = func.apply(value, args);
11224
- result2.__actions__.push({ "func": thru, "args": [interceptor], "thisArg": undefined$1 });
11225
- return new LodashWrapper(result2, chainAll);
11226
- }
11227
- if (isUnwrapped && onlyLazy) {
11228
- return func.apply(this, args);
11229
- }
11230
- result2 = this.thru(interceptor);
11231
- return isUnwrapped ? isTaker ? result2.value()[0] : result2.value() : result2;
11232
- };
11233
- });
11234
- arrayEach(["pop", "push", "shift", "sort", "splice", "unshift"], function(methodName) {
11235
- var func = arrayProto[methodName], chainName = /^(?:push|sort|unshift)$/.test(methodName) ? "tap" : "thru", retUnwrapped = /^(?:pop|shift)$/.test(methodName);
11236
- lodash2.prototype[methodName] = function() {
11237
- var args = arguments;
11238
- if (retUnwrapped && !this.__chain__) {
11239
- var value = this.value();
11240
- return func.apply(isArray2(value) ? value : [], args);
10652
+ var beforeEach = function beforeEach2(svg) {
10653
+ svg.setAttribute("role", "img");
10654
+ if (desc) {
10655
+ var originalDesc = svg.querySelector(":scope > desc");
10656
+ if (originalDesc) {
10657
+ svg.removeChild(originalDesc);
11241
10658
  }
11242
- return this[chainName](function(value2) {
11243
- return func.apply(isArray2(value2) ? value2 : [], args);
11244
- });
11245
- };
11246
- });
11247
- baseForOwn(LazyWrapper.prototype, function(func, methodName) {
11248
- var lodashFunc = lodash2[methodName];
11249
- if (lodashFunc) {
11250
- var key2 = lodashFunc.name + "";
11251
- if (!hasOwnProperty.call(realNames, key2)) {
11252
- realNames[key2] = [];
10659
+ var newDesc = document.createElement("desc");
10660
+ newDesc.innerHTML = desc;
10661
+ svg.prepend(newDesc);
10662
+ }
10663
+ if (title2) {
10664
+ var originalTitle = svg.querySelector(":scope > title");
10665
+ if (originalTitle) {
10666
+ svg.removeChild(originalTitle);
11253
10667
  }
11254
- realNames[key2].push({ "name": methodName, "func": lodashFunc });
10668
+ var newTitle = document.createElement("title");
10669
+ newTitle.innerHTML = title2;
10670
+ svg.prepend(newTitle);
10671
+ }
10672
+ try {
10673
+ beforeInjection2(svg);
10674
+ } catch (error2) {
10675
+ handleError(error2);
11255
10676
  }
10677
+ };
10678
+ SVGInjector(nonReactTarget, {
10679
+ afterEach,
10680
+ beforeEach,
10681
+ cacheRequests: useRequestCache,
10682
+ evalScripts,
10683
+ httpRequestWithCredentials,
10684
+ renumerateIRIElements
11256
10685
  });
11257
- realNames[createHybrid(undefined$1, WRAP_BIND_KEY_FLAG).name] = [{
11258
- "name": "wrapper",
11259
- "func": undefined$1
11260
- }];
11261
- LazyWrapper.prototype.clone = lazyClone;
11262
- LazyWrapper.prototype.reverse = lazyReverse;
11263
- LazyWrapper.prototype.value = lazyValue;
11264
- lodash2.prototype.at = wrapperAt;
11265
- lodash2.prototype.chain = wrapperChain;
11266
- lodash2.prototype.commit = wrapperCommit;
11267
- lodash2.prototype.next = wrapperNext;
11268
- lodash2.prototype.plant = wrapperPlant;
11269
- lodash2.prototype.reverse = wrapperReverse;
11270
- lodash2.prototype.toJSON = lodash2.prototype.valueOf = lodash2.prototype.value = wrapperValue;
11271
- lodash2.prototype.first = lodash2.prototype.head;
11272
- if (symIterator) {
11273
- lodash2.prototype[symIterator] = wrapperToIterator;
11274
- }
11275
- return lodash2;
11276
- };
11277
- var _2 = runInContext();
11278
- if (freeModule) {
11279
- (freeModule.exports = _2)._ = _2;
11280
- freeExports._ = _2;
11281
- } else {
11282
- root2._ = _2;
11283
10686
  }
11284
- }).call(commonjsGlobal);
11285
- })(lodash, lodash.exports);
11286
- const _$1 = lodash.exports;
10687
+ };
10688
+ _proto.removeSVG = function removeSVG() {
10689
+ var _this$nonReactWrapper;
10690
+ if ((_this$nonReactWrapper = this.nonReactWrapper) != null && _this$nonReactWrapper.parentNode) {
10691
+ this.nonReactWrapper.parentNode.removeChild(this.nonReactWrapper);
10692
+ this.nonReactWrapper = null;
10693
+ }
10694
+ };
10695
+ _proto.componentDidMount = function componentDidMount() {
10696
+ this._isMounted = true;
10697
+ this.renderSVG();
10698
+ };
10699
+ _proto.componentDidUpdate = function componentDidUpdate(prevProps) {
10700
+ var _this3 = this;
10701
+ if (shallowDiffers(_extends$8({}, prevProps), this.props)) {
10702
+ this.setState(function() {
10703
+ return _this3.initialState;
10704
+ }, function() {
10705
+ _this3.removeSVG();
10706
+ _this3.renderSVG();
10707
+ });
10708
+ }
10709
+ };
10710
+ _proto.componentWillUnmount = function componentWillUnmount() {
10711
+ this._isMounted = false;
10712
+ this.removeSVG();
10713
+ };
10714
+ _proto.render = function render2() {
10715
+ var _this$props2 = this.props;
10716
+ _this$props2.afterInjection;
10717
+ _this$props2.beforeInjection;
10718
+ _this$props2.desc;
10719
+ _this$props2.evalScripts;
10720
+ var Fallback = _this$props2.fallback;
10721
+ _this$props2.httpRequestWithCredentials;
10722
+ var Loading = _this$props2.loading;
10723
+ _this$props2.renumerateIRIElements;
10724
+ _this$props2.src;
10725
+ _this$props2.title;
10726
+ _this$props2.useRequestCache;
10727
+ var wrapper2 = _this$props2.wrapper, rest = _objectWithoutPropertiesLoose$6(_this$props2, _excluded$a);
10728
+ var Wrapper2 = wrapper2;
10729
+ return /* @__PURE__ */ React$4.createElement(Wrapper2, _extends$8({}, rest, {
10730
+ ref: this.refCallback
10731
+ }, wrapper2 === "svg" ? {
10732
+ xmlns: svgNamespace,
10733
+ xmlnsXlink: xlinkNamespace
10734
+ } : {}), this.state.isLoading && Loading && /* @__PURE__ */ React$4.createElement(Loading, null), this.state.hasError && Fallback && /* @__PURE__ */ React$4.createElement(Fallback, null));
10735
+ };
10736
+ return ReactSVG2;
10737
+ }(React$4.Component);
10738
+ ReactSVG.defaultProps = {
10739
+ afterInjection: function afterInjection() {
10740
+ return void 0;
10741
+ },
10742
+ beforeInjection: function beforeInjection() {
10743
+ return void 0;
10744
+ },
10745
+ desc: "",
10746
+ evalScripts: "never",
10747
+ fallback: null,
10748
+ httpRequestWithCredentials: false,
10749
+ loading: null,
10750
+ onError: function onError() {
10751
+ return void 0;
10752
+ },
10753
+ renumerateIRIElements: true,
10754
+ title: "",
10755
+ useRequestCache: true,
10756
+ wrapper: "div"
10757
+ };
10758
+ ReactSVG.propTypes = {
10759
+ afterInjection: propTypes$1.exports.func,
10760
+ beforeInjection: propTypes$1.exports.func,
10761
+ desc: propTypes$1.exports.string,
10762
+ evalScripts: propTypes$1.exports.oneOf(["always", "once", "never"]),
10763
+ fallback: propTypes$1.exports.oneOfType([propTypes$1.exports.func, propTypes$1.exports.object, propTypes$1.exports.string]),
10764
+ httpRequestWithCredentials: propTypes$1.exports.bool,
10765
+ loading: propTypes$1.exports.oneOfType([propTypes$1.exports.func, propTypes$1.exports.object, propTypes$1.exports.string]),
10766
+ onError: propTypes$1.exports.func,
10767
+ renumerateIRIElements: propTypes$1.exports.bool,
10768
+ src: propTypes$1.exports.string.isRequired,
10769
+ title: propTypes$1.exports.string,
10770
+ useRequestCache: propTypes$1.exports.bool,
10771
+ wrapper: propTypes$1.exports.oneOf(["div", "span", "svg"])
10772
+ };
10773
+ const DeprecatedIcon = ({ icon: icon2 }) => {
10774
+ switch (icon2) {
10775
+ case "arrow down":
10776
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowDown, {});
10777
+ case "arrow left":
10778
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowLeft, {});
10779
+ case "arrow right":
10780
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowRight, {});
10781
+ case "arrow up":
10782
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowUp, {});
10783
+ case "chart line":
10784
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaChartLine, {});
10785
+ case "check":
10786
+ case "checkmark":
10787
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaCheck, {});
10788
+ case "close":
10789
+ case "times":
10790
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaTimes, {});
10791
+ case "question":
10792
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaQuestion, {});
10793
+ case "sort amount down":
10794
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaSortAmountDown, {});
10795
+ case "table":
10796
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaTable, {});
10797
+ case "trash":
10798
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaTrash, {});
10799
+ case "minus":
10800
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaMinus, {});
10801
+ case "add":
10802
+ case "plus":
10803
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaPlus, {});
10804
+ case "pencil":
10805
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaPencilAlt, {});
10806
+ case "edit":
10807
+ case "edit outline":
10808
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaEdit, {});
10809
+ case "chevron up":
10810
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaChevronUp, {});
10811
+ case "chevron down":
10812
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaChevronDown, {});
10813
+ case "undo":
10814
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaUndo, {});
10815
+ case "eye":
10816
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaEye, {});
10817
+ case "eye slash":
10818
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaEyeSlash, {});
10819
+ case "star":
10820
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaStar, {});
10821
+ case "clone":
10822
+ case "orange clone":
10823
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaClone, {});
10824
+ case "sort amount up":
10825
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaSortAmountUp, {});
10826
+ case "copy":
10827
+ case "copy outline":
10828
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaRegCopy, {});
10829
+ case "vertically flipped reply":
10830
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaFileImport, {});
10831
+ case "refresh":
10832
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaSync, {});
10833
+ case "":
10834
+ return null;
10835
+ default:
10836
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaRegCircle, {});
10837
+ }
10838
+ };
10839
+ const wrapper$5 = "_wrapper_6kkc6_341";
10840
+ const customSvg = "_customSvg_6kkc6_348";
10841
+ const customPng = "_customPng_6kkc6_351";
10842
+ const clickable = "_clickable_6kkc6_356";
10843
+ const styles$N = {
10844
+ wrapper: wrapper$5,
10845
+ customSvg,
10846
+ customPng,
10847
+ clickable
10848
+ };
10849
+ const Icon = ({ icon: icon2, onClick, clickable: clickable2, color: color2, size: size2, testId }) => {
10850
+ const disabledContext = useContext(DisabledContext);
10851
+ return /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
10852
+ className: cx$2(
10853
+ styles$N.wrapper,
10854
+ (clickable2 || onClick) && !disabledContext ? styles$N.clickable : ""
10855
+ ),
10856
+ style: {
10857
+ color: color2,
10858
+ fill: color2,
10859
+ fontSize: size2 || "inherit",
10860
+ width: size2 || "auto",
10861
+ height: size2 || "auto"
10862
+ },
10863
+ onClick: (evt) => onClick && !disabledContext ? onClick(evt) : {},
10864
+ "data-testid": testId,
10865
+ children: isValidElement(icon2) ? icon2 : typeof icon2 === "string" && (icon2.includes(".svg") || icon2.includes("image/svg")) ? /* @__PURE__ */ jsxRuntime.exports.jsx(ReactSVG, {
10866
+ className: styles$N.customSvg,
10867
+ beforeInjection: (svg) => {
10868
+ if (size2) {
10869
+ svg.setAttribute("width", size2);
10870
+ svg.setAttribute("height", size2);
10871
+ }
10872
+ },
10873
+ src: icon2
10874
+ }) : typeof icon2 === "string" && (icon2.includes(".png") || icon2.includes("image/png")) ? /* @__PURE__ */ jsxRuntime.exports.jsx("img", {
10875
+ alt: "icon",
10876
+ className: styles$N.customPng,
10877
+ src: icon2
10878
+ }) : typeof icon2 === "string" ? /* @__PURE__ */ jsxRuntime.exports.jsx(DeprecatedIcon, {
10879
+ icon: icon2
10880
+ }) : null
10881
+ });
10882
+ };
10883
+ Icon.defaultProps = {
10884
+ clickable: false,
10885
+ onClick: null,
10886
+ testId: null
10887
+ };
10888
+ Icon.propTypes = {
10889
+ icon: propTypes$1.exports.oneOfType([
10890
+ propTypes$1.exports.node,
10891
+ propTypes$1.exports.string
10892
+ ]).isRequired,
10893
+ onClick: propTypes$1.exports.func,
10894
+ clickable: propTypes$1.exports.bool,
10895
+ testId: propTypes$1.exports.string
10896
+ };
11287
10897
  const wrapper$4 = "_wrapper_t0nkm_341";
11288
10898
  const layer$1 = "_layer_t0nkm_345";
11289
10899
  const layerContainer$1 = "_layerContainer_t0nkm_348";
@@ -11887,11 +11497,8 @@ const Button = ({
11887
11497
  className: styles$M.buttonLabel,
11888
11498
  children: label2
11889
11499
  }),
11890
- /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
11891
- className: styles$M.buttonCaret,
11892
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
11893
- icon: "chevron down"
11894
- })
11500
+ /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleDown, {
11501
+ className: styles$M.buttonCaret
11895
11502
  })
11896
11503
  ]
11897
11504
  }) : null;
@@ -11929,16 +11536,10 @@ const Text$1 = ({ label: label2, title: title2, carat, disabled: disabled2, isOp
11929
11536
  title: title2 || label2,
11930
11537
  children: label2
11931
11538
  }),
11932
- carat && carat === "right" ? /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
11933
- className: styles$M.arrow,
11934
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
11935
- icon: "chevron right"
11936
- })
11937
- }) : carat && carat === "down" ? /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
11938
- className: styles$M.arrow,
11939
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
11940
- icon: "chevron down"
11941
- })
11539
+ carat && carat === "right" ? /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleRight, {
11540
+ className: styles$M.arrow
11541
+ }) : carat && carat === "down" ? /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleDown, {
11542
+ className: styles$M.arrow
11942
11543
  }) : null
11943
11544
  ]
11944
11545
  });
@@ -12387,7 +11988,9 @@ const SubmenuActions = (props) => {
12387
11988
  basic: !primary2,
12388
11989
  round: true,
12389
11990
  small: true,
12390
- icon: subMenuIcon != null ? subMenuIcon : "menu",
11991
+ icon: subMenuIcon ? /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
11992
+ icon: subMenuIcon
11993
+ }) : /* @__PURE__ */ jsxRuntime.exports.jsx(FaEllipsisV, {}),
12391
11994
  testId
12392
11995
  });
12393
11996
  if (actions2.length) {
@@ -12446,7 +12049,9 @@ const Actions = (props) => {
12446
12049
  disabled: action2.disabled,
12447
12050
  small: true,
12448
12051
  name: action2.label,
12449
- icon: action2.icon,
12052
+ icon: action2.icon ? /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
12053
+ icon: action2.icon
12054
+ }) : null,
12450
12055
  onClick: (evt) => {
12451
12056
  if (closeLayer) {
12452
12057
  closeLayer();
@@ -14161,7 +13766,7 @@ const Heading$2 = ({
14161
13766
  libraryIcon && /* @__PURE__ */ jsxRuntime.exports.jsx(HelpIcon, {
14162
13767
  text: (_a = libraryIcon == null ? void 0 : libraryIcon.tooltip) != null ? _a : "",
14163
13768
  onClick: libraryIcon.onClick,
14164
- icon: "library"
13769
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaBook, {})
14165
13770
  })
14166
13771
  ]
14167
13772
  })
@@ -14253,8 +13858,7 @@ const Dialog = ({ dialog: dialog2 }) => {
14253
13858
  }),
14254
13859
  onClose ? /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
14255
13860
  className: styles$C.dismiss,
14256
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
14257
- icon: "close",
13861
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(FaTimes, {
14258
13862
  onClick: onClose
14259
13863
  })
14260
13864
  }) : null
@@ -14294,30 +13898,30 @@ const dialogShape = propTypes$1.exports.shape({
14294
13898
  Dialog.propTypes = {
14295
13899
  dialog: dialogShape.isRequired
14296
13900
  };
14297
- const inputInTable$a = "_inputInTable_iomrv_341";
14298
- const inputHover$a = "_inputHover_iomrv_350";
14299
- const inputFocus$a = "_inputFocus_iomrv_355";
14300
- const inputError$a = "_inputError_iomrv_362";
14301
- const inputWarning$a = "_inputWarning_iomrv_363";
14302
- const inputDisabled$a = "_inputDisabled_iomrv_398";
14303
- const hideScrollbars$a = "_hideScrollbars_iomrv_403";
14304
- const inline$2 = "_inline_iomrv_425";
14305
- const left$2 = "_left_iomrv_428";
14306
- const right$6 = "_right_iomrv_431";
14307
- const fixed$1 = "_fixed_iomrv_434";
14308
- const border$1 = "_border_iomrv_446";
14309
- const shadow = "_shadow_iomrv_452";
14310
- const drawerContent = "_drawerContent_iomrv_455";
14311
- const isResizing = "_isResizing_iomrv_467";
14312
- const toggleButton = "_toggleButton_iomrv_478";
14313
- const top = "_top_iomrv_491";
14314
- const bottom = "_bottom_iomrv_494";
14315
- const toggleButtonOpen = "_toggleButtonOpen_iomrv_497";
14316
- const tabs$1 = "_tabs_iomrv_500";
14317
- const tab$1 = "_tab_iomrv_500";
14318
- const active$4 = "_active_iomrv_532";
14319
- const tabsContent = "_tabsContent_iomrv_554";
14320
- const resizeHandle = "_resizeHandle_iomrv_560";
13901
+ const inputInTable$a = "_inputInTable_1jk6o_341";
13902
+ const inputHover$a = "_inputHover_1jk6o_350";
13903
+ const inputFocus$a = "_inputFocus_1jk6o_355";
13904
+ const inputError$a = "_inputError_1jk6o_362";
13905
+ const inputWarning$a = "_inputWarning_1jk6o_363";
13906
+ const inputDisabled$a = "_inputDisabled_1jk6o_398";
13907
+ const hideScrollbars$a = "_hideScrollbars_1jk6o_403";
13908
+ const inline$2 = "_inline_1jk6o_425";
13909
+ const left$2 = "_left_1jk6o_428";
13910
+ const right$6 = "_right_1jk6o_431";
13911
+ const fixed$1 = "_fixed_1jk6o_434";
13912
+ const border$1 = "_border_1jk6o_446";
13913
+ const shadow = "_shadow_1jk6o_452";
13914
+ const drawerContent = "_drawerContent_1jk6o_455";
13915
+ const isResizing = "_isResizing_1jk6o_467";
13916
+ const toggleButton = "_toggleButton_1jk6o_478";
13917
+ const top = "_top_1jk6o_491";
13918
+ const bottom = "_bottom_1jk6o_494";
13919
+ const toggleButtonOpen = "_toggleButtonOpen_1jk6o_497";
13920
+ const tabs$1 = "_tabs_1jk6o_500";
13921
+ const tab$1 = "_tab_1jk6o_500";
13922
+ const active$4 = "_active_1jk6o_531";
13923
+ const tabsContent = "_tabsContent_1jk6o_553";
13924
+ const resizeHandle = "_resizeHandle_1jk6o_559";
14321
13925
  const styles$B = {
14322
13926
  inputInTable: inputInTable$a,
14323
13927
  inputHover: inputHover$a,
@@ -16443,9 +16047,7 @@ const ResizeHandle = React__default.forwardRef((props, ref2) => {
16443
16047
  ref: ref2,
16444
16048
  className: styles$B.resizeHandle,
16445
16049
  ...rest,
16446
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
16447
- icon: "drag horizontal"
16448
- })
16050
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(FaGripLinesVertical, {})
16449
16051
  });
16450
16052
  });
16451
16053
  const DrawerResizeWrapper = ({
@@ -16588,7 +16190,7 @@ const Drawer = ({
16588
16190
  children: isCustomButton ? button2 : /* @__PURE__ */ jsxRuntime.exports.jsx(Button$1, {
16589
16191
  onClick: setOpen ? () => setOpen(!open) : null,
16590
16192
  round: true,
16591
- icon: right2 ? "chevron right" : "chevron left"
16193
+ icon: right2 ? /* @__PURE__ */ jsxRuntime.exports.jsx(FaChevronRight, {}) : /* @__PURE__ */ jsxRuntime.exports.jsx(FaChevronLeft, {})
16592
16194
  })
16593
16195
  })
16594
16196
  ]
@@ -17036,6 +16638,12 @@ FileInput.propTypes = {
17036
16638
  onChange: propTypes$1.exports.func,
17037
16639
  testId: propTypes$1.exports.string
17038
16640
  };
16641
+ function HiLockClosed(props) {
16642
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 20 20", "fill": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M5 9V7a5 5 0 0110 0v2a2 2 0 012 2v5a2 2 0 01-2 2H5a2 2 0 01-2-2v-5a2 2 0 012-2zm8-2v2H7V7a3 3 0 016 0z", "clipRule": "evenodd" } }] })(props);
16643
+ }
16644
+ function HiLockOpen(props) {
16645
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 20 20", "fill": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "d": "M10 2a5 5 0 00-5 5v2a2 2 0 00-2 2v5a2 2 0 002 2h10a2 2 0 002-2v-5a2 2 0 00-2-2H7V7a3 3 0 015.905-.75 1 1 0 001.937-.5A5.002 5.002 0 0010 2z" } }] })(props);
16646
+ }
17039
16647
  const label$7 = "_label_12snn_341";
17040
16648
  const labelLeft$1 = "_labelLeft_12snn_345";
17041
16649
  const icons$1 = "_icons_12snn_353";
@@ -17072,18 +16680,18 @@ const Label$2 = ({
17072
16680
  }),
17073
16681
  info2 && /* @__PURE__ */ jsxRuntime.exports.jsx(HelpIcon, {
17074
16682
  text: info2,
17075
- icon: "info"
16683
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaInfoCircle, {})
17076
16684
  }),
17077
16685
  lock && lock.visible && lock.onClick && /* @__PURE__ */ jsxRuntime.exports.jsx(HelpIcon, {
17078
16686
  onClick: lock.onClick,
17079
- icon: lock.active ? "lock" : "unlock",
16687
+ icon: lock.active ? /* @__PURE__ */ jsxRuntime.exports.jsx(HiLockClosed, {}) : /* @__PURE__ */ jsxRuntime.exports.jsx(HiLockOpen, {}),
17080
16688
  active: lock.active,
17081
16689
  testId: lock.testId
17082
16690
  }),
17083
16691
  libraryIcon && /* @__PURE__ */ jsxRuntime.exports.jsx(HelpIcon, {
17084
16692
  text: (_a = libraryIcon == null ? void 0 : libraryIcon.tooltip) != null ? _a : "",
17085
16693
  onClick: libraryIcon.onClick,
17086
- icon: "library"
16694
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaBook, {})
17087
16695
  })
17088
16696
  ]
17089
16697
  })
@@ -26297,42 +25905,42 @@ var InfiniteScroll = function(_super) {
26297
25905
  };
26298
25906
  return InfiniteScroll2;
26299
25907
  }(Component$1);
26300
- const inputInTable$8 = "_inputInTable_1udco_341";
26301
- const inputHover$8 = "_inputHover_1udco_350";
26302
- const inputFocus$8 = "_inputFocus_1udco_355";
26303
- const inputError$8 = "_inputError_1udco_362";
26304
- const inputWarning$8 = "_inputWarning_1udco_363";
26305
- const inputDisabled$8 = "_inputDisabled_1udco_398";
26306
- const hideScrollbars$8 = "_hideScrollbars_1udco_403";
26307
- const header$1 = "_header_1udco_413";
26308
- const headerTitle = "_headerTitle_1udco_413";
26309
- const heading$3 = "_heading_1udco_414";
26310
- const itemHeader = "_itemHeader_1udco_414";
26311
- const narrow = "_narrow_1udco_417";
26312
- const stickyHeader = "_stickyHeader_1udco_421";
26313
- const title$3 = "_title_1udco_432";
26314
- const name = "_name_1udco_438";
26315
- const iconTooltipMargin = "_iconTooltipMargin_1udco_441";
26316
- const bold = "_bold_1udco_444";
26317
- const toggleNarrow = "_toggleNarrow_1udco_453";
26318
- const drag$1 = "_drag_1udco_471";
26319
- const list$1 = "_list_1udco_491";
26320
- const bordered$1 = "_bordered_1udco_495";
26321
- const item$4 = "_item_1udco_414";
26322
- const action = "_action_1udco_528";
26323
- const active$3 = "_active_1udco_531";
26324
- const disabled$5 = "_disabled_1udco_546";
26325
- const label$6 = "_label_1udco_557";
26326
- const details$2 = "_details_1udco_564";
26327
- const metadata = "_metadata_1udco_565";
26328
- const itemContent = "_itemContent_1udco_574";
26329
- const indentIcon = "_indentIcon_1udco_581";
26330
- const expandIcon = "_expandIcon_1udco_586";
26331
- const expanded = "_expanded_1udco_592";
26332
- const right$4 = "_right_1udco_595";
26333
- const actions = "_actions_1udco_602";
26334
- const scrollableList = "_scrollableList_1udco_607";
26335
- const hideScrollbar = "_hideScrollbar_1udco_403";
25908
+ const inputInTable$8 = "_inputInTable_1vyw1_341";
25909
+ const inputHover$8 = "_inputHover_1vyw1_350";
25910
+ const inputFocus$8 = "_inputFocus_1vyw1_355";
25911
+ const inputError$8 = "_inputError_1vyw1_362";
25912
+ const inputWarning$8 = "_inputWarning_1vyw1_363";
25913
+ const inputDisabled$8 = "_inputDisabled_1vyw1_398";
25914
+ const hideScrollbars$8 = "_hideScrollbars_1vyw1_403";
25915
+ const header$1 = "_header_1vyw1_413";
25916
+ const headerTitle = "_headerTitle_1vyw1_413";
25917
+ const heading$3 = "_heading_1vyw1_414";
25918
+ const itemHeader = "_itemHeader_1vyw1_414";
25919
+ const narrow = "_narrow_1vyw1_417";
25920
+ const stickyHeader = "_stickyHeader_1vyw1_421";
25921
+ const title$3 = "_title_1vyw1_432";
25922
+ const name = "_name_1vyw1_438";
25923
+ const iconTooltipMargin = "_iconTooltipMargin_1vyw1_441";
25924
+ const bold = "_bold_1vyw1_444";
25925
+ const toggleNarrow = "_toggleNarrow_1vyw1_453";
25926
+ const drag$1 = "_drag_1vyw1_471";
25927
+ const list$1 = "_list_1vyw1_491";
25928
+ const bordered$1 = "_bordered_1vyw1_495";
25929
+ const item$4 = "_item_1vyw1_414";
25930
+ const action = "_action_1vyw1_528";
25931
+ const active$3 = "_active_1vyw1_531";
25932
+ const disabled$5 = "_disabled_1vyw1_546";
25933
+ const label$6 = "_label_1vyw1_557";
25934
+ const details$2 = "_details_1vyw1_564";
25935
+ const metadata = "_metadata_1vyw1_565";
25936
+ const itemContent = "_itemContent_1vyw1_574";
25937
+ const indentIcon = "_indentIcon_1vyw1_581";
25938
+ const expandIcon = "_expandIcon_1vyw1_585";
25939
+ const expanded = "_expanded_1vyw1_591";
25940
+ const right$4 = "_right_1vyw1_594";
25941
+ const actions = "_actions_1vyw1_601";
25942
+ const scrollableList = "_scrollableList_1vyw1_606";
25943
+ const hideScrollbar = "_hideScrollbar_1vyw1_403";
26336
25944
  const listStyles = {
26337
25945
  inputInTable: inputInTable$8,
26338
25946
  inputHover: inputHover$8,
@@ -26376,7 +25984,7 @@ const ToggleNarrow = ({ toggleNarrow: toggleNarrow2, onClickToggleNarrow }) => {
26376
25984
  className: listStyles.toggleNarrow,
26377
25985
  onClick: onClickToggleNarrow,
26378
25986
  children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
26379
- icon: "chevron left"
25987
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaChevronLeft, {})
26380
25988
  })
26381
25989
  }) : null;
26382
25990
  };
@@ -26428,6 +26036,12 @@ ListHeading.propTypes = {
26428
26036
  toggleNarrow: propTypes$1.exports.bool,
26429
26037
  onToggleNarrow: propTypes$1.exports.func
26430
26038
  };
26039
+ function GrDrag(props) {
26040
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "stroke": "#000", "strokeWidth": "2", "d": "M15,5 L17,5 L17,3 L15,3 L15,5 Z M7,5 L9,5 L9,3 L7,3 L7,5 Z M15,13 L17,13 L17,11 L15,11 L15,13 Z M7,13 L9,13 L9,11 L7,11 L7,13 Z M15,21 L17,21 L17,19 L15,19 L15,21 Z M7,21 L9,21 L9,19 L7,19 L7,21 Z" } }] })(props);
26041
+ }
26042
+ function BsArrowReturnRight(props) {
26043
+ return GenIcon({ "tag": "svg", "attr": { "fill": "currentColor", "viewBox": "0 0 16 16" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M1.5 1.5A.5.5 0 0 0 1 2v4.8a2.5 2.5 0 0 0 2.5 2.5h9.793l-3.347 3.346a.5.5 0 0 0 .708.708l4.2-4.2a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708.708L13.293 8.3H3.5A1.5 1.5 0 0 1 2 6.8V2a.5.5 0 0 0-.5-.5z" } }] })(props);
26044
+ }
26431
26045
  const Label$1 = ({ label: label2 }) => {
26432
26046
  return label2 ? /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
26433
26047
  className: listStyles.label,
@@ -26555,7 +26169,8 @@ const ListSubheading = forwardRef(({ item: item2, index: index2 }, listRowRefs)
26555
26169
  typeof expanded2 === "boolean" && /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
26556
26170
  className: cx$2(listStyles.expandIcon, expanded2 && listStyles.expanded),
26557
26171
  children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
26558
- icon: "chevron right"
26172
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleRight, {}),
26173
+ color: "#777"
26559
26174
  })
26560
26175
  }),
26561
26176
  /* @__PURE__ */ jsxRuntime.exports.jsx(Name, {
@@ -26647,13 +26262,14 @@ const ListRow = forwardRef(
26647
26262
  className: listStyles.drag,
26648
26263
  ...provided2.dragHandleProps,
26649
26264
  children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
26650
- icon: "drag"
26265
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(GrDrag, {})
26651
26266
  })
26652
26267
  }),
26653
26268
  item2.level && item2.level > 0 ? /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
26654
26269
  className: listStyles.indentIcon,
26655
26270
  children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
26656
- icon: "indent"
26271
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(BsArrowReturnRight, {}),
26272
+ color: "#777"
26657
26273
  })
26658
26274
  }) : null,
26659
26275
  /* @__PURE__ */ jsxRuntime.exports.jsx(Label$1, {
@@ -27069,8 +26685,7 @@ const Dismiss = ({ type, onClose, isInToast }) => {
27069
26685
  isInToast ? styles$r.absolute : "",
27070
26686
  type === "Info" ? styles$r.info : type === "Success" ? styles$r.success : type === "Warning" ? styles$r.warning : type === "Error" ? styles$r.error : null
27071
26687
  ),
27072
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
27073
- icon: "close",
26688
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(FaTimes, {
27074
26689
  onClick: onClose
27075
26690
  })
27076
26691
  });
@@ -27109,23 +26724,19 @@ const DialogIcon = ({ type }) => {
27109
26724
  const size2 = 16;
27110
26725
  switch (type) {
27111
26726
  case "Success":
27112
- return /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
27113
- icon: "success",
26727
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaCheckCircle, {
27114
26728
  size: size2
27115
26729
  });
27116
26730
  case "Warning":
27117
- return /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
27118
- icon: "warning",
26731
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaExclamationCircle, {
27119
26732
  size: size2
27120
26733
  });
27121
26734
  case "Error":
27122
- return /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
27123
- icon: "error",
26735
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaExclamationTriangle, {
27124
26736
  size: size2
27125
26737
  });
27126
26738
  default:
27127
- return /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
27128
- icon: "info",
26739
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaInfoCircle, {
27129
26740
  size: size2
27130
26741
  });
27131
26742
  }
@@ -28515,9 +28126,7 @@ const Option = ({
28515
28126
  }),
28516
28127
  /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
28517
28128
  className: styles$m.check,
28518
- children: selected2 ? /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
28519
- icon: "check"
28520
- }) : null
28129
+ children: selected2 ? /* @__PURE__ */ jsxRuntime.exports.jsx(FaCheck, {}) : null
28521
28130
  })
28522
28131
  ]
28523
28132
  });
@@ -28919,8 +28528,8 @@ const Trigger = ({
28919
28528
  evt.stopPropagation();
28920
28529
  onClickClear(evt);
28921
28530
  },
28922
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
28923
- icon: "close"
28531
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(FaTimes, {
28532
+ className: cx$2(styles$l.iconClear)
28924
28533
  })
28925
28534
  }) : /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
28926
28535
  className: cx$2(styles$l.iconOpen)
@@ -29807,7 +29416,7 @@ const Pagination = ({ pagination }) => {
29807
29416
  small: small2,
29808
29417
  round: true,
29809
29418
  basic: true,
29810
- icon: "chevron double left",
29419
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleDoubleLeft, {}),
29811
29420
  onClick: () => setSelectedPage(String(1)),
29812
29421
  disabled: showAll || selectedPage === 1
29813
29422
  }),
@@ -29815,7 +29424,7 @@ const Pagination = ({ pagination }) => {
29815
29424
  small: small2,
29816
29425
  round: true,
29817
29426
  basic: true,
29818
- icon: "chevron left",
29427
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleLeft, {}),
29819
29428
  onClick: () => setSelectedPage(String(selectedPage - 1)),
29820
29429
  disabled: showAll || selectedPage === 1
29821
29430
  }),
@@ -29844,7 +29453,7 @@ const Pagination = ({ pagination }) => {
29844
29453
  small: small2,
29845
29454
  round: true,
29846
29455
  basic: true,
29847
- icon: "chevron right",
29456
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleRight, {}),
29848
29457
  onClick: () => setSelectedPage(String(selectedPage + 1)),
29849
29458
  disabled: showAll || selectedPage === numPages
29850
29459
  }),
@@ -29852,7 +29461,7 @@ const Pagination = ({ pagination }) => {
29852
29461
  small: small2,
29853
29462
  round: true,
29854
29463
  basic: true,
29855
- icon: "chevron double right",
29464
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleDoubleRight, {}),
29856
29465
  onClick: () => setSelectedPage(String(numPages)),
29857
29466
  disabled: showAll || selectedPage === numPages
29858
29467
  })
@@ -29947,7 +29556,7 @@ const Popover = ({
29947
29556
  small: true,
29948
29557
  round: true,
29949
29558
  onClick: () => close2(),
29950
- icon: "close"
29559
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaTimes, {})
29951
29560
  })
29952
29561
  })
29953
29562
  ]
@@ -56718,6 +56327,21 @@ function Remirror(props) {
56718
56327
  return /* @__PURE__ */ React__default.createElement(I18nProvider, { i18n: i18n2, locale, supportedLocales }, /* @__PURE__ */ React__default.createElement(RemirrorContext.Provider, { value: context2 }, /* @__PURE__ */ React__default.createElement(RemirrorPortals, { portals }), hooks.map((hook, index2) => /* @__PURE__ */ React__default.createElement(HookComponent, { hook, key: index2 })), autoRenderAtStart && /* @__PURE__ */ React__default.createElement(EditorComponent, null), children, autoRenderAtEnd && /* @__PURE__ */ React__default.createElement(EditorComponent, null)));
56719
56328
  }
56720
56329
  const all = "";
56330
+ function TbBold(props) {
56331
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M7 5h6a3.5 3.5 0 0 1 0 7h-6z" } }, { "tag": "path", "attr": { "d": "M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7" } }] })(props);
56332
+ }
56333
+ function TbCode(props) {
56334
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M7 8l-4 4l4 4" } }, { "tag": "path", "attr": { "d": "M17 8l4 4l-4 4" } }, { "tag": "path", "attr": { "d": "M14 4l-4 16" } }] })(props);
56335
+ }
56336
+ function TbItalic(props) {
56337
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M11 5l6 0" } }, { "tag": "path", "attr": { "d": "M7 19l6 0" } }, { "tag": "path", "attr": { "d": "M14 5l-4 14" } }] })(props);
56338
+ }
56339
+ function TbListNumbers(props) {
56340
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M11 6h9" } }, { "tag": "path", "attr": { "d": "M11 12h9" } }, { "tag": "path", "attr": { "d": "M12 18h8" } }, { "tag": "path", "attr": { "d": "M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4" } }, { "tag": "path", "attr": { "d": "M6 10v-6l-2 2" } }] })(props);
56341
+ }
56342
+ function TbList(props) {
56343
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M9 6l11 0" } }, { "tag": "path", "attr": { "d": "M9 12l11 0" } }, { "tag": "path", "attr": { "d": "M9 18l11 0" } }, { "tag": "path", "attr": { "d": "M5 6l0 .01" } }, { "tag": "path", "attr": { "d": "M5 12l0 .01" } }, { "tag": "path", "attr": { "d": "M5 18l0 .01" } }] })(props);
56344
+ }
56721
56345
  const richTextToolbar = "_richTextToolbar_1owpg_1";
56722
56346
  const richTextToolbarContainer = "_richTextToolbarContainer_1owpg_6";
56723
56347
  const styles$f = {
@@ -56736,27 +56360,27 @@ const RichTextToolbar = ({ disabled: disabled2, toolbarComponent }) => {
56736
56360
  const active2 = useActive();
56737
56361
  const items = [
56738
56362
  {
56739
- icon: "bold",
56363
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(TbBold, {}),
56740
56364
  onClick: () => toggleBold(),
56741
56365
  active: active2.bold()
56742
56366
  },
56743
56367
  {
56744
- icon: "italic",
56368
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(TbItalic, {}),
56745
56369
  onClick: () => toggleItalic(),
56746
56370
  active: active2.italic()
56747
56371
  },
56748
56372
  {
56749
- icon: "code",
56373
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(TbCode, {}),
56750
56374
  onClick: () => toggleCode(),
56751
56375
  active: active2.code()
56752
56376
  },
56753
56377
  {
56754
- icon: "ul",
56378
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(TbList, {}),
56755
56379
  onClick: () => toggleBulletList(),
56756
56380
  active: active2.bulletList()
56757
56381
  },
56758
56382
  {
56759
- icon: "ol",
56383
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(TbListNumbers, {}),
56760
56384
  onClick: () => toggleOrderedList(),
56761
56385
  active: active2.orderedList()
56762
56386
  }
@@ -57168,7 +56792,7 @@ const SideBar = memo(
57168
56792
  },
57169
56793
  colored: true,
57170
56794
  round: true,
57171
- icon: "left"
56795
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowLeft, {})
57172
56796
  }),
57173
56797
  children: /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
57174
56798
  className: cx$2(styles$c.sidebar, !isOpen2 ? styles$c.collapsed : ""),
@@ -59323,7 +58947,7 @@ const Slider = ({
59323
58947
  round: true,
59324
58948
  onClick: () => onChangeValue(range2 ? [min, value == null ? void 0 : value[1]] : min),
59325
58949
  disabled: disabled2 || value === min || disabledContext,
59326
- icon: "fast backward"
58950
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaFastBackward, {})
59327
58951
  })
59328
58952
  });
59329
58953
  const ButtonMax = () => /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
@@ -59334,7 +58958,7 @@ const Slider = ({
59334
58958
  round: true,
59335
58959
  onClick: () => onChangeValue(range2 ? [value == null ? void 0 : value[0], max] : max),
59336
58960
  disabled: disabled2 || value === max || disabledContext,
59337
- icon: "fast forward"
58961
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaFastForward, {})
59338
58962
  })
59339
58963
  });
59340
58964
  return /* @__PURE__ */ jsxRuntime.exports.jsxs("div", {
@@ -59609,6 +59233,12 @@ Footer.propTypes = {
59609
59233
  pagination: paginationShape,
59610
59234
  content: propTypes$1.exports.object
59611
59235
  };
59236
+ function CgSortAz(props) {
59237
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none" }, "child": [{ "tag": "path", "attr": { "d": "M6 8C6 7.44772 6.44772 7 7 7H17C17.5523 7 18 7.44772 18 8C18 8.55228 17.5523 9 17 9H7C6.44772 9 6 8.55228 6 8Z", "fill": "currentColor" } }, { "tag": "path", "attr": { "d": "M8 12C8 11.4477 8.44772 11 9 11H15C15.5523 11 16 11.4477 16 12C16 12.5523 15.5523 13 15 13H9C8.44772 13 8 12.5523 8 12Z", "fill": "currentColor" } }, { "tag": "path", "attr": { "d": "M11 15C10.4477 15 10 15.4477 10 16C10 16.5523 10.4477 17 11 17H13C13.5523 17 14 16.5523 14 16C14 15.4477 13.5523 15 13 15H11Z", "fill": "currentColor" } }] })(props);
59238
+ }
59239
+ function CgSortZa(props) {
59240
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none" }, "child": [{ "tag": "path", "attr": { "d": "M6 16C6 16.5523 6.44772 17 7 17H17C17.5523 17 18 16.5523 18 16C18 15.4477 17.5523 15 17 15H7C6.44772 15 6 15.4477 6 16Z", "fill": "currentColor" } }, { "tag": "path", "attr": { "d": "M8 12C8 12.5523 8.44772 13 9 13H15C15.5523 13 16 12.5523 16 12C16 11.4477 15.5523 11 15 11H9C8.44772 11 8 11.4477 8 12Z", "fill": "currentColor" } }, { "tag": "path", "attr": { "d": "M11 9C10.4477 9 10 8.55229 10 8C10 7.44771 10.4477 7 11 7H13C13.5523 7 14 7.44771 14 8C14 8.55229 13.5523 9 13 9H11Z", "fill": "currentColor" } }] })(props);
59241
+ }
59612
59242
  const inputInTable$1 = "_inputInTable_1xd0b_341";
59613
59243
  const inputHover$1 = "_inputHover_1xd0b_350";
59614
59244
  const inputFocus$1 = "_inputFocus_1xd0b_355";
@@ -59715,7 +59345,9 @@ const NumberInput = ({
59715
59345
  const onSetValue = (evt) => {
59716
59346
  const input2 = evt.target;
59717
59347
  const { value: value2 } = input2;
59718
- const inputValue = cleanNumStr(value2.replaceAll(" ", ""));
59348
+ const inputValue = cleanNumStr(
59349
+ value2.replaceAll(" ", "").replaceAll("|", "")
59350
+ );
59719
59351
  const { valid, errors } = validateInputValue(inputValue);
59720
59352
  if (valid) {
59721
59353
  onChange({
@@ -59970,19 +59602,13 @@ const Sort = (props) => {
59970
59602
  children: [
59971
59603
  sort2 === "down" ? /* @__PURE__ */ jsxRuntime.exports.jsx(Text, {
59972
59604
  link: true,
59973
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
59974
- icon: "sort descending"
59975
- })
59605
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(CgSortAz, {})
59976
59606
  }) : sort2 === "up" ? /* @__PURE__ */ jsxRuntime.exports.jsx(Text, {
59977
59607
  link: true,
59978
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
59979
- icon: "sort ascending"
59980
- })
59608
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(CgSortZa, {})
59981
59609
  }) : /* @__PURE__ */ jsxRuntime.exports.jsx(Text, {
59982
59610
  faint: true,
59983
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
59984
- icon: "sort ascending"
59985
- })
59611
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(CgSortZa, {})
59986
59612
  }),
59987
59613
  sortPriority && sort2 ? /* @__PURE__ */ jsxRuntime.exports.jsx("sup", {
59988
59614
  children: sortPriority
@@ -60009,7 +59635,7 @@ const CellLibraryIcon = (props) => {
60009
59635
  children: /* @__PURE__ */ jsxRuntime.exports.jsx(HelpIcon, {
60010
59636
  onClick: libraryIcon.onClick,
60011
59637
  text: libraryIcon.tooltip,
60012
- icon: "library"
59638
+ icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaBook, {})
60013
59639
  })
60014
59640
  }) : null;
60015
59641
  };
@@ -60515,9 +60141,7 @@ const Row = (props) => {
60515
60141
  children: /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
60516
60142
  ...provided.dragHandleProps,
60517
60143
  className: styles$6.dragIcon,
60518
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
60519
- icon: "drag"
60520
- })
60144
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(GrDrag, {})
60521
60145
  })
60522
60146
  });
60523
60147
  };
@@ -74395,6 +74019,12 @@ function TreeInner(props, ref2) {
74395
74019
  );
74396
74020
  }
74397
74021
  var Tree$1 = forwardRef(TreeInner);
74022
+ function AiOutlineMinusSquare(props) {
74023
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 1024 1024" }, "child": [{ "tag": "path", "attr": { "d": "M328 544h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H328c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8z" } }, { "tag": "path", "attr": { "d": "M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32zm-40 728H184V184h656v656z" } }] })(props);
74024
+ }
74025
+ function AiOutlinePlusSquare(props) {
74026
+ return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 1024 1024" }, "child": [{ "tag": "path", "attr": { "d": "M328 544h152v152c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V544h152c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H544V328c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v152H328c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8z" } }, { "tag": "path", "attr": { "d": "M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32zm-40 728H184V184h656v656z" } }] })(props);
74027
+ }
74398
74028
  const tree = "_tree_m71jv_341";
74399
74029
  const toggle = "_toggle_m71jv_344";
74400
74030
  const dropTarget = "_dropTarget_m71jv_348";
@@ -74443,9 +74073,7 @@ const TreeItem = ({
74443
74073
  children: [
74444
74074
  draggable2 && /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
74445
74075
  className: listStyles.drag,
74446
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
74447
- icon: "drag"
74448
- })
74076
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(GrDrag, {})
74449
74077
  }),
74450
74078
  hasChild && /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
74451
74079
  className: styles.toggle,
@@ -74454,7 +74082,7 @@ const TreeItem = ({
74454
74082
  colored: "muted",
74455
74083
  small: true,
74456
74084
  round: true,
74457
- icon: isOpen2 ? "collapse" : "expand",
74085
+ icon: isOpen2 ? /* @__PURE__ */ jsxRuntime.exports.jsx(AiOutlineMinusSquare, {}) : /* @__PURE__ */ jsxRuntime.exports.jsx(AiOutlinePlusSquare, {}),
74458
74086
  onClick: handleToggle
74459
74087
  })
74460
74088
  }),