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

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, { 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";
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";
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,6 +1925,641 @@ 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
+ };
1928
2563
  var DefaultContext = {
1929
2564
  color: void 0,
1930
2565
  size: void 0,
@@ -2013,6 +2648,9 @@ function FaAngleLeft(props) {
2013
2648
  function FaAngleRight(props) {
2014
2649
  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);
2015
2650
  }
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
+ }
2016
2654
  function FaArrowDown(props) {
2017
2655
  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);
2018
2656
  }
@@ -2025,11 +2663,23 @@ function FaArrowRight(props) {
2025
2663
  function FaArrowUp(props) {
2026
2664
  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);
2027
2665
  }
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
+ }
2028
2675
  function FaBook(props) {
2029
2676
  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);
2030
2677
  }
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);
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);
2033
2683
  }
2034
2684
  function FaCheckCircle(props) {
2035
2685
  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);
@@ -2037,33 +2687,30 @@ function FaCheckCircle(props) {
2037
2687
  function FaCheck(props) {
2038
2688
  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);
2039
2689
  }
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
- }
2052
2690
  function FaClone(props) {
2053
2691
  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);
2054
2692
  }
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);
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);
2057
2698
  }
2058
2699
  function FaEllipsisV(props) {
2059
2700
  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);
2060
2701
  }
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
- }
2064
2702
  function FaExclamationTriangle(props) {
2065
2703
  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);
2066
2704
  }
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
+ }
2067
2714
  function FaEyeSlash(props) {
2068
2715
  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);
2069
2716
  }
@@ -2076,21 +2723,45 @@ function FaFastBackward(props) {
2076
2723
  function FaFastForward(props) {
2077
2724
  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);
2078
2725
  }
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
+ }
2079
2732
  function FaFileImport(props) {
2080
2733
  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);
2081
2734
  }
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
+ }
2082
2738
  function FaGripLinesVertical(props) {
2083
2739
  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);
2084
2740
  }
2085
2741
  function FaInfoCircle(props) {
2086
2742
  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);
2087
2743
  }
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
+ }
2088
2747
  function FaMinus(props) {
2089
2748
  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);
2090
2749
  }
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
+ }
2091
2759
  function FaPencilAlt(props) {
2092
2760
  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);
2093
2761
  }
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
+ }
2094
2765
  function FaPlus(props) {
2095
2766
  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);
2096
2767
  }
@@ -2100,20 +2771,41 @@ function FaQuestionCircle(props) {
2100
2771
  function FaQuestion(props) {
2101
2772
  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);
2102
2773
  }
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);
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);
2105
2779
  }
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);
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);
2785
+ }
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);
2108
2788
  }
2109
2789
  function FaStar(props) {
2110
2790
  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);
2111
2791
  }
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
+ }
2112
2804
  function FaSync(props) {
2113
2805
  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);
2114
2806
  }
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);
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);
2117
2809
  }
2118
2810
  function FaTimes(props) {
2119
2811
  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);
@@ -2124,39 +2816,354 @@ function FaTrash(props) {
2124
2816
  function FaUndo(props) {
2125
2817
  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);
2126
2818
  }
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
+ }
2127
2825
  function FaRegCircle(props) {
2128
2826
  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);
2129
2827
  }
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
+ }
2130
2831
  function FaRegCopy(props) {
2131
2832
  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);
2132
2833
  }
2133
- const chevron = "_chevron_ckxkd_341";
2134
- const expanded$2 = "_expanded_ckxkd_347";
2135
- const styles$T = {
2136
- chevron,
2137
- expanded: expanded$2
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 iconMap = {
2961
+ add: /* @__PURE__ */ jsxRuntime.exports.jsx(FaPlus, {}),
2962
+ "add above": /* @__PURE__ */ jsxRuntime.exports.jsx(AiOutlineInsertRowAbove, {}),
2963
+ "add below": /* @__PURE__ */ jsxRuntime.exports.jsx(AiOutlineInsertRowBelow, {}),
2964
+ "arrow down": /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowDown, {}),
2965
+ "arrow left": /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowLeft, {}),
2966
+ "arrow right": /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowRight, {}),
2967
+ "arrow up": /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowUp, {}),
2968
+ bold: /* @__PURE__ */ jsxRuntime.exports.jsx(TbBold, {}),
2969
+ book: /* @__PURE__ */ jsxRuntime.exports.jsx(FaBook, {}),
2970
+ camera: /* @__PURE__ */ jsxRuntime.exports.jsx(FaCamera, {}),
2971
+ chart: /* @__PURE__ */ jsxRuntime.exports.jsx(RiLineChartFill, {}),
2972
+ "chart bar": /* @__PURE__ */ jsxRuntime.exports.jsx(RiBarChartFill, {}),
2973
+ "chart line": /* @__PURE__ */ jsxRuntime.exports.jsx(RiLineChartFill, {}),
2974
+ "chart pie": /* @__PURE__ */ jsxRuntime.exports.jsx(RiPieChartFill, {}),
2975
+ chat: /* @__PURE__ */ jsxRuntime.exports.jsx(BsFillChatFill, {}),
2976
+ check: /* @__PURE__ */ jsxRuntime.exports.jsx(FaCheck, {}),
2977
+ "chevron up": /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleUp, {}),
2978
+ "chevron down": /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleDown, {}),
2979
+ "chevron left": /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleLeft, {}),
2980
+ "chevron right": /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleRight, {}),
2981
+ "chevron double left": /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleDoubleLeft, {}),
2982
+ "chevron double right": /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleDoubleRight, {}),
2983
+ clock: /* @__PURE__ */ jsxRuntime.exports.jsx(FaRegClock, {}),
2984
+ clone: /* @__PURE__ */ jsxRuntime.exports.jsx(FaClone, {}),
2985
+ close: /* @__PURE__ */ jsxRuntime.exports.jsx(FaTimes, {}),
2986
+ code: /* @__PURE__ */ jsxRuntime.exports.jsx(TbCode, {}),
2987
+ collapse: /* @__PURE__ */ jsxRuntime.exports.jsx(AiOutlineMinusSquare, {}),
2988
+ "collapse all": /* @__PURE__ */ jsxRuntime.exports.jsx(VscCollapseAll, {}),
2989
+ company: /* @__PURE__ */ jsxRuntime.exports.jsx(FaBuilding, {}),
2990
+ compare: /* @__PURE__ */ jsxRuntime.exports.jsx(FaBalanceScale, {}),
2991
+ copy: /* @__PURE__ */ jsxRuntime.exports.jsx(FaRegCopy, {}),
2992
+ delete: /* @__PURE__ */ jsxRuntime.exports.jsx(FaTrash, {}),
2993
+ depth: /* @__PURE__ */ jsxRuntime.exports.jsx(FaRulerVertical, {}),
2994
+ down: /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowDown, {}),
2995
+ download: /* @__PURE__ */ jsxRuntime.exports.jsx(FaFileExport, {}),
2996
+ drag: /* @__PURE__ */ jsxRuntime.exports.jsx(GrDrag, {}),
2997
+ "drag horizontal": /* @__PURE__ */ jsxRuntime.exports.jsx(FaGripLinesVertical, {}),
2998
+ edit: /* @__PURE__ */ jsxRuntime.exports.jsx(FaPencilAlt, {}),
2999
+ electricity: /* @__PURE__ */ jsxRuntime.exports.jsx(BsLightningCharge, {}),
3000
+ error: /* @__PURE__ */ jsxRuntime.exports.jsx(FaTimesCircle, {}),
3001
+ exclamation: /* @__PURE__ */ jsxRuntime.exports.jsx(FaExclamation, {}),
3002
+ expand: /* @__PURE__ */ jsxRuntime.exports.jsx(AiOutlinePlusSquare, {}),
3003
+ "expand all": /* @__PURE__ */ jsxRuntime.exports.jsx(VscExpandAll, {}),
3004
+ external: /* @__PURE__ */ jsxRuntime.exports.jsx(BiLinkExternal, {}),
3005
+ "fast forward": /* @__PURE__ */ jsxRuntime.exports.jsx(FaFastForward, {}),
3006
+ "fast backward": /* @__PURE__ */ jsxRuntime.exports.jsx(FaFastBackward, {}),
3007
+ file: /* @__PURE__ */ jsxRuntime.exports.jsx(FaFileAlt, {}),
3008
+ filter: /* @__PURE__ */ jsxRuntime.exports.jsx(RiFilterFill, {}),
3009
+ focus: /* @__PURE__ */ jsxRuntime.exports.jsx(TbFocusCentered, {}),
3010
+ folder: /* @__PURE__ */ jsxRuntime.exports.jsx(FaFolder, {}),
3011
+ gauge: /* @__PURE__ */ jsxRuntime.exports.jsx(TbGauge, {}),
3012
+ help: /* @__PURE__ */ jsxRuntime.exports.jsx(FaQuestionCircle, {}),
3013
+ hide: /* @__PURE__ */ jsxRuntime.exports.jsx(FaEyeSlash, {}),
3014
+ indent: /* @__PURE__ */ jsxRuntime.exports.jsx(BsArrowReturnRight, {}),
3015
+ info: /* @__PURE__ */ jsxRuntime.exports.jsx(FaInfoCircle, {}),
3016
+ italic: /* @__PURE__ */ jsxRuntime.exports.jsx(TbItalic, {}),
3017
+ key: /* @__PURE__ */ jsxRuntime.exports.jsx(FaKey, {}),
3018
+ laptop: /* @__PURE__ */ jsxRuntime.exports.jsx(BsLaptop, {}),
3019
+ "layout columns": /* @__PURE__ */ jsxRuntime.exports.jsx(RiLayoutColumnLine, {}),
3020
+ "layout grid": /* @__PURE__ */ jsxRuntime.exports.jsx(RiLayoutGridLine, {}),
3021
+ "layout rows": /* @__PURE__ */ jsxRuntime.exports.jsx(RiLayoutRowLine, {}),
3022
+ "layout single": /* @__PURE__ */ jsxRuntime.exports.jsx(RiSquareLine, {}),
3023
+ left: /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowLeft, {}),
3024
+ link: /* @__PURE__ */ jsxRuntime.exports.jsx(BiLink, {}),
3025
+ list: /* @__PURE__ */ jsxRuntime.exports.jsx(TbList, {}),
3026
+ "list numbers": /* @__PURE__ */ jsxRuntime.exports.jsx(TbListNumbers, {}),
3027
+ location: /* @__PURE__ */ jsxRuntime.exports.jsx(TbMapPin, {}),
3028
+ lock: /* @__PURE__ */ jsxRuntime.exports.jsx(HiLockClosed, {}),
3029
+ maximize: /* @__PURE__ */ jsxRuntime.exports.jsx(FaExpandArrowsAlt, {}),
3030
+ menu: /* @__PURE__ */ jsxRuntime.exports.jsx(FaEllipsisV, {}),
3031
+ minimize: /* @__PURE__ */ jsxRuntime.exports.jsx(FaCompressArrowsAlt, {}),
3032
+ minus: /* @__PURE__ */ jsxRuntime.exports.jsx(FaMinus, {}),
3033
+ moon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaMoon, {}),
3034
+ move: /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowsAlt, {}),
3035
+ note: /* @__PURE__ */ jsxRuntime.exports.jsx(TbNote, {}),
3036
+ notification: /* @__PURE__ */ jsxRuntime.exports.jsx(FaBell, {}),
3037
+ paste: /* @__PURE__ */ jsxRuntime.exports.jsx(FaPaste, {}),
3038
+ pause: /* @__PURE__ */ jsxRuntime.exports.jsx(FaPause, {}),
3039
+ play: /* @__PURE__ */ jsxRuntime.exports.jsx(FaPlay, {}),
3040
+ plus: /* @__PURE__ */ jsxRuntime.exports.jsx(FaPlus, {}),
3041
+ question: /* @__PURE__ */ jsxRuntime.exports.jsx(FaQuestion, {}),
3042
+ redo: /* @__PURE__ */ jsxRuntime.exports.jsx(FaRedo, {}),
3043
+ refresh: /* @__PURE__ */ jsxRuntime.exports.jsx(FaSync, {}),
3044
+ save: /* @__PURE__ */ jsxRuntime.exports.jsx(FaSave, {}),
3045
+ scale: /* @__PURE__ */ jsxRuntime.exports.jsx(FaExpandAlt, {}),
3046
+ search: /* @__PURE__ */ jsxRuntime.exports.jsx(FaSearch, {}),
3047
+ server: /* @__PURE__ */ jsxRuntime.exports.jsx(HiServer, {}),
3048
+ settings: /* @__PURE__ */ jsxRuntime.exports.jsx(FaCog, {}),
3049
+ show: /* @__PURE__ */ jsxRuntime.exports.jsx(FaEye, {}),
3050
+ sort: /* @__PURE__ */ jsxRuntime.exports.jsx(CgSortAz, {}),
3051
+ "sort descending": /* @__PURE__ */ jsxRuntime.exports.jsx(CgSortAz, {}),
3052
+ "sort ascending": /* @__PURE__ */ jsxRuntime.exports.jsx(CgSortZa, {}),
3053
+ spinner: /* @__PURE__ */ jsxRuntime.exports.jsx(FaSpinner, {}),
3054
+ split: /* @__PURE__ */ jsxRuntime.exports.jsx(TbArrowsSplit, {}),
3055
+ star: /* @__PURE__ */ jsxRuntime.exports.jsx(FaStar, {}),
3056
+ "step backward": /* @__PURE__ */ jsxRuntime.exports.jsx(FaStepBackward, {}),
3057
+ "step forward": /* @__PURE__ */ jsxRuntime.exports.jsx(FaStepForward, {}),
3058
+ stop: /* @__PURE__ */ jsxRuntime.exports.jsx(FaStopCircle, {}),
3059
+ success: /* @__PURE__ */ jsxRuntime.exports.jsx(FaCheckCircle, {}),
3060
+ sun: /* @__PURE__ */ jsxRuntime.exports.jsx(FaSun, {}),
3061
+ table: /* @__PURE__ */ jsxRuntime.exports.jsx(RiTableLine, {}),
3062
+ target: /* @__PURE__ */ jsxRuntime.exports.jsx(TbTarget, {}),
3063
+ times: /* @__PURE__ */ jsxRuntime.exports.jsx(FaTimes, {}),
3064
+ undo: /* @__PURE__ */ jsxRuntime.exports.jsx(FaUndo, {}),
3065
+ unfilter: /* @__PURE__ */ jsxRuntime.exports.jsx(RiFilterOffFill, {}),
3066
+ unlink: /* @__PURE__ */ jsxRuntime.exports.jsx(BiUnlink, {}),
3067
+ unlock: /* @__PURE__ */ jsxRuntime.exports.jsx(HiLockOpen, {}),
3068
+ upload: /* @__PURE__ */ jsxRuntime.exports.jsx(FaFileImport, {}),
3069
+ user: /* @__PURE__ */ jsxRuntime.exports.jsx(FaUser, {}),
3070
+ users: /* @__PURE__ */ jsxRuntime.exports.jsx(FaUsers, {}),
3071
+ video: /* @__PURE__ */ jsxRuntime.exports.jsx(BiVideo, {}),
3072
+ warning: /* @__PURE__ */ jsxRuntime.exports.jsx(FaExclamationTriangle, {}),
3073
+ water: /* @__PURE__ */ jsxRuntime.exports.jsx(IoWater, {})
3074
+ };
3075
+ const NamedIcon = ({ icon: icon2 }) => {
3076
+ const namedIcon = iconMap[icon2];
3077
+ if (!namedIcon) {
3078
+ console.warn("Icon not found: ", icon2);
3079
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(FaRegCircle, {});
3080
+ }
3081
+ return namedIcon;
3082
+ };
3083
+ const wrapper$5 = "_wrapper_6kkc6_341";
3084
+ const customSvg = "_customSvg_6kkc6_348";
3085
+ const customPng = "_customPng_6kkc6_351";
3086
+ const clickable$2 = "_clickable_6kkc6_356";
3087
+ const styles$S = {
3088
+ wrapper: wrapper$5,
3089
+ customSvg,
3090
+ customPng,
3091
+ clickable: clickable$2
3092
+ };
3093
+ const DisabledContext = React__default.createContext(false);
3094
+ DisabledContext.Provider.propTypes = {
3095
+ value: propTypes$1.exports.bool
3096
+ };
3097
+ const Icon = ({ icon: icon2, onClick, clickable: clickable2, color: color2, size: size2, testId }) => {
3098
+ const disabledContext = useContext(DisabledContext);
3099
+ return /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
3100
+ className: cx$2(
3101
+ styles$S.wrapper,
3102
+ (clickable2 || onClick) && !disabledContext ? styles$S.clickable : ""
3103
+ ),
3104
+ style: {
3105
+ color: color2,
3106
+ fill: color2,
3107
+ fontSize: size2 || "inherit",
3108
+ width: size2 || "auto",
3109
+ height: size2 || "auto"
3110
+ },
3111
+ onClick: (evt) => onClick && !disabledContext ? onClick(evt) : {},
3112
+ "data-testid": testId,
3113
+ children: isValidElement(icon2) ? icon2 : typeof icon2 === "string" && (icon2.includes(".svg") || icon2.includes("image/svg")) ? /* @__PURE__ */ jsxRuntime.exports.jsx(ReactSVG, {
3114
+ className: styles$S.customSvg,
3115
+ beforeInjection: (svg) => {
3116
+ if (size2) {
3117
+ svg.setAttribute("width", size2);
3118
+ svg.setAttribute("height", size2);
3119
+ }
3120
+ },
3121
+ src: icon2
3122
+ }) : typeof icon2 === "string" && (icon2.includes(".png") || icon2.includes("image/png")) ? /* @__PURE__ */ jsxRuntime.exports.jsx("img", {
3123
+ alt: "icon",
3124
+ className: styles$S.customPng,
3125
+ src: icon2
3126
+ }) : typeof icon2 === "string" ? /* @__PURE__ */ jsxRuntime.exports.jsx(NamedIcon, {
3127
+ icon: icon2
3128
+ }) : null
3129
+ });
3130
+ };
3131
+ Icon.defaultProps = {
3132
+ clickable: false,
3133
+ onClick: null,
3134
+ testId: null
3135
+ };
3136
+ Icon.propTypes = {
3137
+ icon: propTypes$1.exports.oneOfType([
3138
+ propTypes$1.exports.node,
3139
+ propTypes$1.exports.string
3140
+ ]).isRequired,
3141
+ onClick: propTypes$1.exports.func,
3142
+ clickable: propTypes$1.exports.bool,
3143
+ testId: propTypes$1.exports.string
2138
3144
  };
2139
3145
  const Chevron = ({ expanded: expanded2 }) => {
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)
3146
+ return /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
3147
+ className: cx$2(styles$T.chevron, expanded2 ? styles$T.expanded : ""),
3148
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
3149
+ icon: "chevron right"
3150
+ })
2144
3151
  });
2145
3152
  };
2146
3153
  const accordion = "_accordion_11e4r_341";
2147
3154
  const accordionHeader = "_accordionHeader_11e4r_345";
2148
3155
  const heading$6 = "_heading_11e4r_349";
2149
- const clickable$2 = "_clickable_11e4r_352";
3156
+ const clickable$1 = "_clickable_11e4r_352";
2150
3157
  const bordered$4 = "_bordered_11e4r_358";
2151
3158
  const accordionContent = "_accordionContent_11e4r_358";
2152
3159
  const expanded$1 = "_expanded_11e4r_371";
2153
3160
  const padding$3 = "_padding_11e4r_380";
2154
3161
  const squareBottom = "_squareBottom_11e4r_383";
2155
- const styles$S = {
3162
+ const styles$R = {
2156
3163
  accordion,
2157
3164
  accordionHeader,
2158
3165
  heading: heading$6,
2159
- clickable: clickable$2,
3166
+ clickable: clickable$1,
2160
3167
  bordered: bordered$4,
2161
3168
  accordionContent,
2162
3169
  expanded: expanded$1,
@@ -2198,14 +3205,14 @@ const AccordionBase = ({
2198
3205
  }) => {
2199
3206
  return /* @__PURE__ */ jsxRuntime.exports.jsxs("div", {
2200
3207
  className: cx$2(
2201
- styles$S.accordion,
2202
- bordered2 ? styles$S.bordered : "",
2203
- expanded2 ? styles$S.expanded : "",
2204
- squareBottom2 ? styles$S.squareBottom : ""
3208
+ styles$R.accordion,
3209
+ bordered2 ? styles$R.bordered : "",
3210
+ expanded2 ? styles$R.expanded : "",
3211
+ squareBottom2 ? styles$R.squareBottom : ""
2205
3212
  ),
2206
3213
  children: [
2207
3214
  /* @__PURE__ */ jsxRuntime.exports.jsxs("div", {
2208
- className: cx$2(styles$S.accordionHeader, onClick ? styles$S.clickable : ""),
3215
+ className: cx$2(styles$R.accordionHeader, onClick ? styles$R.clickable : ""),
2209
3216
  onClick,
2210
3217
  "data-testid": testId,
2211
3218
  children: [
@@ -2213,15 +3220,15 @@ const AccordionBase = ({
2213
3220
  expanded: expanded2
2214
3221
  }),
2215
3222
  /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
2216
- className: styles$S.heading,
3223
+ className: styles$R.heading,
2217
3224
  children: heading2
2218
3225
  })
2219
3226
  ]
2220
3227
  }),
2221
3228
  expanded2 && children && /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
2222
3229
  className: cx$2(
2223
- styles$S.accordionContent,
2224
- bordered2 && padding2 ? styles$S.padding : ""
3230
+ styles$R.accordionContent,
3231
+ bordered2 && padding2 ? styles$R.padding : ""
2225
3232
  ),
2226
3233
  children
2227
3234
  })
@@ -2276,14 +3283,14 @@ Accordion.propTypes = {
2276
3283
  squareBottom: propTypes$1.exports.bool,
2277
3284
  testId: propTypes$1.exports.string
2278
3285
  };
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 = {
3286
+ const checkbox = "_checkbox_gaiiv_341";
3287
+ const noLabel = "_noLabel_gaiiv_356";
3288
+ const small$e = "_small_gaiiv_359";
3289
+ const checkmark = "_checkmark_gaiiv_384";
3290
+ const disabled$9 = "_disabled_gaiiv_408";
3291
+ const noMargin$2 = "_noMargin_gaiiv_422";
3292
+ const isInTable$4 = "_isInTable_gaiiv_425";
3293
+ const styles$Q = {
2287
3294
  checkbox,
2288
3295
  noLabel,
2289
3296
  small: small$e,
@@ -2292,10 +3299,6 @@ const styles$R = {
2292
3299
  noMargin: noMargin$2,
2293
3300
  isInTable: isInTable$4
2294
3301
  };
2295
- const DisabledContext = React__default.createContext(false);
2296
- DisabledContext.Provider.propTypes = {
2297
- value: propTypes$1.exports.bool
2298
- };
2299
3302
  var MapShim = function() {
2300
3303
  if (typeof Map !== "undefined") {
2301
3304
  return Map;
@@ -2800,8 +3803,8 @@ function _createClass$1(Constructor, protoProps, staticProps) {
2800
3803
  _defineProperties$1(Constructor, staticProps);
2801
3804
  return Constructor;
2802
3805
  }
2803
- function _extends$9() {
2804
- _extends$9 = Object.assign || function(target) {
3806
+ function _extends$8() {
3807
+ _extends$8 = Object.assign || function(target) {
2805
3808
  for (var i = 1; i < arguments.length; i++) {
2806
3809
  var source = arguments[i];
2807
3810
  for (var key2 in source) {
@@ -2812,21 +3815,21 @@ function _extends$9() {
2812
3815
  }
2813
3816
  return target;
2814
3817
  };
2815
- return _extends$9.apply(this, arguments);
3818
+ return _extends$8.apply(this, arguments);
2816
3819
  }
2817
- function _inheritsLoose$5(subClass, superClass) {
3820
+ function _inheritsLoose$4(subClass, superClass) {
2818
3821
  subClass.prototype = Object.create(superClass.prototype);
2819
3822
  subClass.prototype.constructor = subClass;
2820
- _setPrototypeOf$6(subClass, superClass);
3823
+ _setPrototypeOf$5(subClass, superClass);
2821
3824
  }
2822
- function _setPrototypeOf$6(o, p) {
2823
- _setPrototypeOf$6 = Object.setPrototypeOf || function _setPrototypeOf2(o2, p2) {
3825
+ function _setPrototypeOf$5(o, p) {
3826
+ _setPrototypeOf$5 = Object.setPrototypeOf || function _setPrototypeOf2(o2, p2) {
2824
3827
  o2.__proto__ = p2;
2825
3828
  return o2;
2826
3829
  };
2827
- return _setPrototypeOf$6(o, p);
3830
+ return _setPrototypeOf$5(o, p);
2828
3831
  }
2829
- function _objectWithoutPropertiesLoose$7(source, excluded) {
3832
+ function _objectWithoutPropertiesLoose$6(source, excluded) {
2830
3833
  if (source == null)
2831
3834
  return {};
2832
3835
  var target = {};
@@ -3150,7 +4153,7 @@ function useTrackElements(_ref) {
3150
4153
  var layerRef = useTrackRef(useCallback$1(function(layer2) {
3151
4154
  var _get3 = get4(), previousLayer = _get3.layer;
3152
4155
  set(function(state) {
3153
- return _extends$9({}, state, {
4156
+ return _extends$8({}, state, {
3154
4157
  layer: layer2
3155
4158
  });
3156
4159
  });
@@ -3173,7 +4176,7 @@ function useTrackElements(_ref) {
3173
4176
  var scrollContainers = getScrollContainers(trigger2);
3174
4177
  var _get4 = get4(), previousTrigger = _get4.trigger;
3175
4178
  set(function(state) {
3176
- return _extends$9({}, state, {
4179
+ return _extends$8({}, state, {
3177
4180
  trigger: trigger2,
3178
4181
  scrollContainers
3179
4182
  });
@@ -3186,7 +4189,7 @@ function useTrackElements(_ref) {
3186
4189
  return;
3187
4190
  }
3188
4191
  set(function(state) {
3189
- return _extends$9({}, state, {
4192
+ return _extends$8({}, state, {
3190
4193
  scrollContainers: getScrollContainers(triggerOptionParent)
3191
4194
  });
3192
4195
  });
@@ -3353,7 +4356,7 @@ var BoundSide = {
3353
4356
  left: /* @__PURE__ */ createSide("left"),
3354
4357
  right: /* @__PURE__ */ createSide("right")
3355
4358
  };
3356
- var Side = /* @__PURE__ */ _extends$9({}, BoundSide, {
4359
+ var Side = /* @__PURE__ */ _extends$8({}, BoundSide, {
3357
4360
  center: /* @__PURE__ */ createSide("center")
3358
4361
  });
3359
4362
  var SIDES = ["top", "left", "bottom", "right"];
@@ -3445,7 +4448,7 @@ var Bounds = /* @__PURE__ */ function() {
3445
4448
  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;
3446
4449
  var boxWidth = boxSizing === "border-box" ? getPixelValue(width) : sumOfPropertyValues(width, borderLeft, borderRight, paddingLeft, paddingRight);
3447
4450
  var boxHeight = boxSizing === "border-box" ? getPixelValue(height) : sumOfPropertyValues(height, borderTop, borderBottom, paddingTop, paddingBottom);
3448
- bounds = new Bounds2(_extends$9({}, bounds, {
4451
+ bounds = new Bounds2(_extends$8({}, bounds, {
3449
4452
  width: boxWidth,
3450
4453
  height: boxHeight
3451
4454
  }));
@@ -3492,7 +4495,7 @@ var Bounds = /* @__PURE__ */ function() {
3492
4495
  };
3493
4496
  _proto.merge = function merge(partialBoundsOrMergeFn) {
3494
4497
  var current = this.toObject();
3495
- return new Bounds2(_extends$9({}, current, typeof partialBoundsOrMergeFn === "function" ? partialBoundsOrMergeFn(current) : partialBoundsOrMergeFn));
4498
+ return new Bounds2(_extends$8({}, current, typeof partialBoundsOrMergeFn === "function" ? partialBoundsOrMergeFn(current) : partialBoundsOrMergeFn));
3496
4499
  };
3497
4500
  _proto.substract = function substract(bounds) {
3498
4501
  var result = this.toObject();
@@ -3555,7 +4558,7 @@ var Placement = /* @__PURE__ */ function() {
3555
4558
  }
3556
4559
  var dimensions = typeof layerDimensions === "function" ? layerDimensions(this.primary.prop) : layerDimensions;
3557
4560
  this.subjectsBounds = subjectBounds.merge({
3558
- layer: _extends$9({}, subjectBounds.layer, dimensions)
4561
+ layer: _extends$8({}, subjectBounds.layer, dimensions)
3559
4562
  });
3560
4563
  };
3561
4564
  _proto.getLayerBounds = function getLayerBounds(secondaryOffset) {
@@ -3673,7 +4676,7 @@ var Placement = /* @__PURE__ */ function() {
3673
4676
  return Placement2;
3674
4677
  }();
3675
4678
  var PlacementCenter = /* @__PURE__ */ function(_Placement) {
3676
- _inheritsLoose$5(PlacementCenter2, _Placement);
4679
+ _inheritsLoose$4(PlacementCenter2, _Placement);
3677
4680
  function PlacementCenter2() {
3678
4681
  return _Placement.apply(this, arguments) || this;
3679
4682
  }
@@ -3721,7 +4724,7 @@ function getArrowStyle(subjectsBounds, placement, arrowOffset) {
3721
4724
  var primarySide = placement.primary.prop;
3722
4725
  var secondarySide = placement.primary.oppositeCssProp;
3723
4726
  var secondaryValue = triggerIsBigger ? layer2[sizeProperty] / 2 + negativeOffset : trigger2[secondarySide] + trigger2[sizeProperty] / 2 - layer2[secondarySide];
3724
- return _extends$9({}, STYLE_BASE, (_extends22 = {}, _extends22[primarySide] = "100%", _extends22[secondarySide] = limit(secondaryValue, min, max), _extends22));
4727
+ return _extends$8({}, STYLE_BASE, (_extends22 = {}, _extends22[primarySide] = "100%", _extends22[secondarySide] = limit(secondaryValue, min, max), _extends22));
3725
4728
  }
3726
4729
  var Placements = /* @__PURE__ */ function() {
3727
4730
  function Placements2(placements, config2, subjectsBounds) {
@@ -3850,11 +4853,11 @@ var Placements = /* @__PURE__ */ function() {
3850
4853
  var arrow2 = getArrowStyle(this.subjectsBounds.merge({
3851
4854
  layer: layerBounds
3852
4855
  }), placement, this.config.arrowOffset);
3853
- var layer2 = this.config.overflowContainer ? _extends$9({}, layerStyleBase, {
4856
+ var layer2 = this.config.overflowContainer ? _extends$8({}, layerStyleBase, {
3854
4857
  position: "fixed",
3855
4858
  top: layerBounds.top,
3856
4859
  left: layerBounds.left
3857
- }) : _extends$9({}, layerStyleBase, {
4860
+ }) : _extends$8({}, layerStyleBase, {
3858
4861
  position: "absolute",
3859
4862
  top: layerBounds.top - this.subjectsBounds.parent.top + scrollOffsets.top - borderOffsets.top,
3860
4863
  left: layerBounds.left - this.subjectsBounds.parent.left + scrollOffsets.left - borderOffsets.left
@@ -3929,7 +4932,7 @@ var SubjectsBounds = /* @__PURE__ */ function() {
3929
4932
  };
3930
4933
  var _proto = SubjectsBounds2.prototype;
3931
4934
  _proto.merge = function merge(subjectsBounds) {
3932
- return new SubjectsBounds2(_extends$9({}, this, subjectsBounds), this.overflowContainer);
4935
+ return new SubjectsBounds2(_extends$8({}, this, subjectsBounds), this.overflowContainer);
3933
4936
  };
3934
4937
  _proto.offsetsToScrollContainers = function offsetsToScrollContainers(subject, allContainers) {
3935
4938
  if (allContainers === void 0) {
@@ -4120,7 +5123,7 @@ function getContainerElement(container2) {
4120
5123
  }
4121
5124
  return element;
4122
5125
  }
4123
- var _excluded$b = ["size", "angle", "borderWidth", "borderColor", "roundness", "backgroundColor", "layerSide", "style"];
5126
+ var _excluded$a = ["size", "angle", "borderWidth", "borderColor", "roundness", "backgroundColor", "layerSide", "style"];
4124
5127
  var LEFT = "left";
4125
5128
  var TOP = "top";
4126
5129
  var BOTTOM = "bottom";
@@ -4156,7 +5159,7 @@ function getBorderMaskPath(sizeA, sizeB, borderWidth, side, angle) {
4156
5159
  return ["M", borderWidth, A2, "H", sizeB - borderWidth, "L", sizeB - borderWidth - borderOffset, B2, "H", borderOffset + borderWidth, "Z"].join(" ");
4157
5160
  }
4158
5161
  var Arrow = /* @__PURE__ */ forwardRef(function Arrow2(_ref2, ref2) {
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);
5162
+ 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);
4160
5163
  if (layerSide === "center") {
4161
5164
  return null;
4162
5165
  }
@@ -4164,10 +5167,10 @@ var Arrow = /* @__PURE__ */ forwardRef(function Arrow2(_ref2, ref2) {
4164
5167
  var sizeA = size2;
4165
5168
  var sizeB = getWidthBasedOnAngle(angle, size2) * 2;
4166
5169
  var maxSize = Math.max(sizeA, sizeB);
4167
- return createElement("svg", _extends$9({
5170
+ return createElement("svg", _extends$8({
4168
5171
  ref: ref2
4169
5172
  }, rest, {
4170
- style: _extends$9({}, style2, {
5173
+ style: _extends$8({}, style2, {
4171
5174
  transform: "translate" + (side.isHorizontal ? "Y" : "X") + "(-50%)"
4172
5175
  }),
4173
5176
  width: maxSize,
@@ -4273,7 +5276,7 @@ function useHover(_temp) {
4273
5276
  const tooltip = "_tooltip_bsjxl_341";
4274
5277
  const error$9 = "_error_bsjxl_355";
4275
5278
  const warning$d = "_warning_bsjxl_359";
4276
- const styles$Q = {
5279
+ const styles$P = {
4277
5280
  tooltip,
4278
5281
  error: error$9,
4279
5282
  warning: warning$d
@@ -4290,8 +5293,8 @@ const TooltipLayer = ({
4290
5293
  }) => {
4291
5294
  return /* @__PURE__ */ jsxRuntime.exports.jsxs("div", {
4292
5295
  className: cx$2(
4293
- styles$Q.tooltip,
4294
- error2 ? styles$Q.error : warning2 ? styles$Q.warning : ""
5296
+ styles$P.tooltip,
5297
+ error2 ? styles$P.error : warning2 ? styles$P.warning : ""
4295
5298
  ),
4296
5299
  ...layerProps,
4297
5300
  children: [
@@ -4440,11 +5443,11 @@ Tooltip.propTypes = {
4440
5443
  };
4441
5444
  const helpIcon = "_helpIcon_1yokl_1";
4442
5445
  const active$9 = "_active_1yokl_7";
4443
- const clickable$1 = "_clickable_1yokl_10";
4444
- const styles$P = {
5446
+ const clickable = "_clickable_1yokl_10";
5447
+ const styles$O = {
4445
5448
  helpIcon,
4446
5449
  active: active$9,
4447
- clickable: clickable$1
5450
+ clickable
4448
5451
  };
4449
5452
  const HelpIconTooltip = ({ children, text: text2, maxWidth }) => {
4450
5453
  const show = !!text2;
@@ -4458,7 +5461,7 @@ const HelpIconTooltip = ({ children, text: text2, maxWidth }) => {
4458
5461
  const HelpIcon = ({
4459
5462
  text: text2,
4460
5463
  onClick,
4461
- icon: icon2 = /* @__PURE__ */ jsxRuntime.exports.jsx(FaQuestionCircle, {}),
5464
+ icon: icon2 = "help",
4462
5465
  active: active2,
4463
5466
  maxWidth,
4464
5467
  testId
@@ -4471,22 +5474,24 @@ const HelpIcon = ({
4471
5474
  };
4472
5475
  return /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
4473
5476
  className: cx$2(
4474
- styles$P.helpIcon,
4475
- onClick ? styles$P.clickable : "",
4476
- active2 ? styles$P.active : ""
5477
+ styles$O.helpIcon,
5478
+ onClick ? styles$O.clickable : "",
5479
+ active2 ? styles$O.active : ""
4477
5480
  ),
4478
5481
  onClick: onClickHelpIcon,
4479
5482
  "data-testid": testId,
4480
5483
  children: /* @__PURE__ */ jsxRuntime.exports.jsx(HelpIconTooltip, {
4481
5484
  text: text2,
4482
5485
  maxWidth,
4483
- children: icon2
5486
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
5487
+ icon: icon2
5488
+ })
4484
5489
  })
4485
5490
  });
4486
5491
  };
4487
5492
  HelpIcon.defaultProps = {
4488
5493
  active: false,
4489
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaQuestionCircle, {}),
5494
+ icon: "help",
4490
5495
  maxWidth: "300px",
4491
5496
  onClick: null,
4492
5497
  text: null,
@@ -4521,12 +5526,12 @@ const CheckBox = ({
4521
5526
  const showHelp = helpText || onClickHelp;
4522
5527
  return /* @__PURE__ */ jsxRuntime.exports.jsxs("div", {
4523
5528
  className: cx$2(
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
5529
+ styles$Q.checkbox,
5530
+ noMargin2 ? styles$Q.noMargin : null,
5531
+ isInTable2 ? styles$Q.isInTable : null,
5532
+ disabled2 || disabledContext ? styles$Q.disabled : null,
5533
+ small2 ? styles$Q.small : null,
5534
+ !label2 ? styles$Q.noLabel : null
4530
5535
  ),
4531
5536
  "data-ix": dataix,
4532
5537
  onClick: (evt) => {
@@ -4550,8 +5555,11 @@ const CheckBox = ({
4550
5555
  /* @__PURE__ */ jsxRuntime.exports.jsxs("label", {
4551
5556
  htmlFor: name2,
4552
5557
  children: [
4553
- /* @__PURE__ */ jsxRuntime.exports.jsx(FaCheck, {
4554
- className: styles$R.checkmark
5558
+ /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
5559
+ className: styles$Q.checkmark,
5560
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
5561
+ icon: "check"
5562
+ })
4555
5563
  }),
4556
5564
  label2
4557
5565
  ]
@@ -4602,7 +5610,7 @@ const bordered$3 = "_bordered_8hv0o_341";
4602
5610
  const checkboxWrapper = "_checkboxWrapper_8hv0o_347";
4603
5611
  const padding$2 = "_padding_8hv0o_353";
4604
5612
  const contentWrapper = "_contentWrapper_8hv0o_356";
4605
- const styles$O = {
5613
+ const styles$N = {
4606
5614
  bordered: bordered$3,
4607
5615
  checkboxWrapper,
4608
5616
  padding: padding$2,
@@ -4654,7 +5662,7 @@ const AccordionWithDefaultToggle = ({
4654
5662
  const content2 = /* @__PURE__ */ jsxRuntime.exports.jsxs(jsxRuntime.exports.Fragment, {
4655
5663
  children: [
4656
5664
  /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
4657
- className: styles$O.checkboxWrapper,
5665
+ className: styles$N.checkboxWrapper,
4658
5666
  children: /* @__PURE__ */ jsxRuntime.exports.jsx(CheckBox, {
4659
5667
  label: toggleLabel,
4660
5668
  onChange: (evt) => {
@@ -4667,7 +5675,7 @@ const AccordionWithDefaultToggle = ({
4667
5675
  })
4668
5676
  }),
4669
5677
  state.accordionExpanded && /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
4670
- className: styles$O.contentWrapper,
5678
+ className: styles$N.contentWrapper,
4671
5679
  children
4672
5680
  })
4673
5681
  ]
@@ -4682,7 +5690,7 @@ const AccordionWithDefaultToggle = ({
4682
5690
  onClick: () => dispatch({ type: "TOGGLE_ACCORDION" })
4683
5691
  }),
4684
5692
  /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
4685
- className: cx$2(styles$O.bordered, padding2 ? styles$O.padding : ""),
5693
+ className: cx$2(styles$N.bordered, padding2 ? styles$N.padding : ""),
4686
5694
  children: content2
4687
5695
  })
4688
5696
  ]
@@ -10007,893 +11015,140 @@ var lodash = { exports: {} };
10007
11015
  });
10008
11016
  arrayEach(["head", "last"], function(methodName, index2) {
10009
11017
  var takeName = "take" + (index2 ? "Right" : "");
10010
- LazyWrapper.prototype[methodName] = function() {
10011
- return this[takeName](1).value()[0];
10012
- };
10013
- });
10014
- arrayEach(["initial", "tail"], function(methodName, index2) {
10015
- var dropName = "drop" + (index2 ? "" : "Right");
10016
- LazyWrapper.prototype[methodName] = function() {
10017
- return this.__filtered__ ? new LazyWrapper(this) : this[dropName](1);
10018
- };
10019
- });
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;
11018
+ LazyWrapper.prototype[methodName] = function() {
11019
+ return this[takeName](1).value()[0];
10480
11020
  };
10481
- for (var a2 = 0, elementsLen = elements_1.length; a2 < elementsLen; a2++) {
10482
- _loop_1(a2);
10483
- }
10484
11021
  });
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
- }
11022
+ arrayEach(["initial", "tail"], function(methodName, index2) {
11023
+ var dropName = "drop" + (index2 ? "" : "Right");
11024
+ LazyWrapper.prototype[methodName] = function() {
11025
+ return this.__filtered__ ? new LazyWrapper(this) : this[dropName](1);
11026
+ };
10542
11027
  });
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;
11028
+ LazyWrapper.prototype.compact = function() {
11029
+ return this.filter(identity);
11030
+ };
11031
+ LazyWrapper.prototype.find = function(predicate) {
11032
+ return this.filter(predicate).head();
11033
+ };
11034
+ LazyWrapper.prototype.findLast = function(predicate) {
11035
+ return this.reverse().find(predicate);
11036
+ };
11037
+ LazyWrapper.prototype.invokeMap = baseRest(function(path, args) {
11038
+ if (typeof path == "function") {
11039
+ return new LazyWrapper(this);
10623
11040
  }
10624
- _this2.setState(function() {
10625
- return {
10626
- hasError: true,
10627
- isLoading: false
10628
- };
10629
- }, function() {
10630
- onError3(error2);
11041
+ return this.map(function(value) {
11042
+ return baseInvoke(value, path, args);
10631
11043
  });
11044
+ });
11045
+ LazyWrapper.prototype.reject = function(predicate) {
11046
+ return this.filter(negate3(getIteratee(predicate)));
10632
11047
  };
10633
- var afterEach = function afterEach2(error2, svg) {
10634
- if (error2) {
10635
- handleError(error2);
10636
- return;
11048
+ LazyWrapper.prototype.slice = function(start3, end2) {
11049
+ start3 = toInteger(start3);
11050
+ var result2 = this;
11051
+ if (result2.__filtered__ && (start3 > 0 || end2 < 0)) {
11052
+ return new LazyWrapper(result2);
10637
11053
  }
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
- });
11054
+ if (start3 < 0) {
11055
+ result2 = result2.takeRight(-start3);
11056
+ } else if (start3) {
11057
+ result2 = result2.drop(start3);
11058
+ }
11059
+ if (end2 !== undefined$1) {
11060
+ end2 = toInteger(end2);
11061
+ result2 = end2 < 0 ? result2.dropRight(-end2) : result2.take(end2 - start3);
10650
11062
  }
11063
+ return result2;
10651
11064
  };
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);
10658
- }
10659
- var newDesc = document.createElement("desc");
10660
- newDesc.innerHTML = desc;
10661
- svg.prepend(newDesc);
11065
+ LazyWrapper.prototype.takeRightWhile = function(predicate) {
11066
+ return this.reverse().takeWhile(predicate).reverse();
11067
+ };
11068
+ LazyWrapper.prototype.toArray = function() {
11069
+ return this.take(MAX_ARRAY_LENGTH);
11070
+ };
11071
+ baseForOwn(LazyWrapper.prototype, function(func, methodName) {
11072
+ 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);
11073
+ if (!lodashFunc) {
11074
+ return;
10662
11075
  }
10663
- if (title2) {
10664
- var originalTitle = svg.querySelector(":scope > title");
10665
- if (originalTitle) {
10666
- svg.removeChild(originalTitle);
11076
+ lodash2.prototype[methodName] = function() {
11077
+ var value = this.__wrapped__, args = isTaker ? [1] : arguments, isLazy = value instanceof LazyWrapper, iteratee2 = args[0], useLazy = isLazy || isArray2(value);
11078
+ var interceptor = function(value2) {
11079
+ var result3 = lodashFunc.apply(lodash2, arrayPush([value2], args));
11080
+ return isTaker && chainAll ? result3[0] : result3;
11081
+ };
11082
+ if (useLazy && checkIteratee && typeof iteratee2 == "function" && iteratee2.length != 1) {
11083
+ isLazy = useLazy = false;
10667
11084
  }
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);
10676
- }
10677
- };
10678
- SVGInjector(nonReactTarget, {
10679
- afterEach,
10680
- beforeEach,
10681
- cacheRequests: useRequestCache,
10682
- evalScripts,
10683
- httpRequestWithCredentials,
10684
- renumerateIRIElements
11085
+ var chainAll = this.__chain__, isHybrid = !!this.__actions__.length, isUnwrapped = retUnwrapped && !chainAll, onlyLazy = isLazy && !isHybrid;
11086
+ if (!retUnwrapped && useLazy) {
11087
+ value = onlyLazy ? value : new LazyWrapper(this);
11088
+ var result2 = func.apply(value, args);
11089
+ result2.__actions__.push({ "func": thru, "args": [interceptor], "thisArg": undefined$1 });
11090
+ return new LodashWrapper(result2, chainAll);
11091
+ }
11092
+ if (isUnwrapped && onlyLazy) {
11093
+ return func.apply(this, args);
11094
+ }
11095
+ result2 = this.thru(interceptor);
11096
+ return isUnwrapped ? isTaker ? result2.value()[0] : result2.value() : result2;
11097
+ };
10685
11098
  });
10686
- }
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();
11099
+ arrayEach(["pop", "push", "shift", "sort", "splice", "unshift"], function(methodName) {
11100
+ var func = arrayProto[methodName], chainName = /^(?:push|sort|unshift)$/.test(methodName) ? "tap" : "thru", retUnwrapped = /^(?:pop|shift)$/.test(methodName);
11101
+ lodash2.prototype[methodName] = function() {
11102
+ var args = arguments;
11103
+ if (retUnwrapped && !this.__chain__) {
11104
+ var value = this.value();
11105
+ return func.apply(isArray2(value) ? value : [], args);
11106
+ }
11107
+ return this[chainName](function(value2) {
11108
+ return func.apply(isArray2(value2) ? value2 : [], args);
11109
+ });
11110
+ };
10707
11111
  });
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);
11112
+ baseForOwn(LazyWrapper.prototype, function(func, methodName) {
11113
+ var lodashFunc = lodash2[methodName];
11114
+ if (lodashFunc) {
11115
+ var key2 = lodashFunc.name + "";
11116
+ if (!hasOwnProperty.call(realNames, key2)) {
11117
+ realNames[key2] = [];
11118
+ }
11119
+ realNames[key2].push({ "name": methodName, "func": lodashFunc });
10871
11120
  }
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
- };
11121
+ });
11122
+ realNames[createHybrid(undefined$1, WRAP_BIND_KEY_FLAG).name] = [{
11123
+ "name": "wrapper",
11124
+ "func": undefined$1
11125
+ }];
11126
+ LazyWrapper.prototype.clone = lazyClone;
11127
+ LazyWrapper.prototype.reverse = lazyReverse;
11128
+ LazyWrapper.prototype.value = lazyValue;
11129
+ lodash2.prototype.at = wrapperAt;
11130
+ lodash2.prototype.chain = wrapperChain;
11131
+ lodash2.prototype.commit = wrapperCommit;
11132
+ lodash2.prototype.next = wrapperNext;
11133
+ lodash2.prototype.plant = wrapperPlant;
11134
+ lodash2.prototype.reverse = wrapperReverse;
11135
+ lodash2.prototype.toJSON = lodash2.prototype.valueOf = lodash2.prototype.value = wrapperValue;
11136
+ lodash2.prototype.first = lodash2.prototype.head;
11137
+ if (symIterator) {
11138
+ lodash2.prototype[symIterator] = wrapperToIterator;
11139
+ }
11140
+ return lodash2;
11141
+ };
11142
+ var _2 = runInContext();
11143
+ if (freeModule) {
11144
+ (freeModule.exports = _2)._ = _2;
11145
+ freeExports._ = _2;
11146
+ } else {
11147
+ root2._ = _2;
11148
+ }
11149
+ }).call(commonjsGlobal);
11150
+ })(lodash, lodash.exports);
11151
+ const _$1 = lodash.exports;
10897
11152
  const wrapper$4 = "_wrapper_t0nkm_341";
10898
11153
  const layer$1 = "_layer_t0nkm_345";
10899
11154
  const layerContainer$1 = "_layerContainer_t0nkm_348";
@@ -11497,8 +11752,11 @@ const Button = ({
11497
11752
  className: styles$M.buttonLabel,
11498
11753
  children: label2
11499
11754
  }),
11500
- /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleDown, {
11501
- className: styles$M.buttonCaret
11755
+ /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
11756
+ className: styles$M.buttonCaret,
11757
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
11758
+ icon: "chevron down"
11759
+ })
11502
11760
  })
11503
11761
  ]
11504
11762
  }) : null;
@@ -11536,10 +11794,16 @@ const Text$1 = ({ label: label2, title: title2, carat, disabled: disabled2, isOp
11536
11794
  title: title2 || label2,
11537
11795
  children: label2
11538
11796
  }),
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
11797
+ carat && carat === "right" ? /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
11798
+ className: styles$M.arrow,
11799
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
11800
+ icon: "chevron right"
11801
+ })
11802
+ }) : carat && carat === "down" ? /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
11803
+ className: styles$M.arrow,
11804
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
11805
+ icon: "chevron down"
11806
+ })
11543
11807
  }) : null
11544
11808
  ]
11545
11809
  });
@@ -11988,9 +12252,7 @@ const SubmenuActions = (props) => {
11988
12252
  basic: !primary2,
11989
12253
  round: true,
11990
12254
  small: true,
11991
- icon: subMenuIcon ? /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
11992
- icon: subMenuIcon
11993
- }) : /* @__PURE__ */ jsxRuntime.exports.jsx(FaEllipsisV, {}),
12255
+ icon: subMenuIcon != null ? subMenuIcon : "menu",
11994
12256
  testId
11995
12257
  });
11996
12258
  if (actions2.length) {
@@ -12049,9 +12311,7 @@ const Actions = (props) => {
12049
12311
  disabled: action2.disabled,
12050
12312
  small: true,
12051
12313
  name: action2.label,
12052
- icon: action2.icon ? /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
12053
- icon: action2.icon
12054
- }) : null,
12314
+ icon: action2.icon,
12055
12315
  onClick: (evt) => {
12056
12316
  if (closeLayer) {
12057
12317
  closeLayer();
@@ -13766,7 +14026,7 @@ const Heading$2 = ({
13766
14026
  libraryIcon && /* @__PURE__ */ jsxRuntime.exports.jsx(HelpIcon, {
13767
14027
  text: (_a = libraryIcon == null ? void 0 : libraryIcon.tooltip) != null ? _a : "",
13768
14028
  onClick: libraryIcon.onClick,
13769
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaBook, {})
14029
+ icon: "library"
13770
14030
  })
13771
14031
  ]
13772
14032
  })
@@ -13858,7 +14118,8 @@ const Dialog = ({ dialog: dialog2 }) => {
13858
14118
  }),
13859
14119
  onClose ? /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
13860
14120
  className: styles$C.dismiss,
13861
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(FaTimes, {
14121
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
14122
+ icon: "close",
13862
14123
  onClick: onClose
13863
14124
  })
13864
14125
  }) : null
@@ -13898,30 +14159,30 @@ const dialogShape = propTypes$1.exports.shape({
13898
14159
  Dialog.propTypes = {
13899
14160
  dialog: dialogShape.isRequired
13900
14161
  };
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";
14162
+ const inputInTable$a = "_inputInTable_iomrv_341";
14163
+ const inputHover$a = "_inputHover_iomrv_350";
14164
+ const inputFocus$a = "_inputFocus_iomrv_355";
14165
+ const inputError$a = "_inputError_iomrv_362";
14166
+ const inputWarning$a = "_inputWarning_iomrv_363";
14167
+ const inputDisabled$a = "_inputDisabled_iomrv_398";
14168
+ const hideScrollbars$a = "_hideScrollbars_iomrv_403";
14169
+ const inline$2 = "_inline_iomrv_425";
14170
+ const left$2 = "_left_iomrv_428";
14171
+ const right$6 = "_right_iomrv_431";
14172
+ const fixed$1 = "_fixed_iomrv_434";
14173
+ const border$1 = "_border_iomrv_446";
14174
+ const shadow = "_shadow_iomrv_452";
14175
+ const drawerContent = "_drawerContent_iomrv_455";
14176
+ const isResizing = "_isResizing_iomrv_467";
14177
+ const toggleButton = "_toggleButton_iomrv_478";
14178
+ const top = "_top_iomrv_491";
14179
+ const bottom = "_bottom_iomrv_494";
14180
+ const toggleButtonOpen = "_toggleButtonOpen_iomrv_497";
14181
+ const tabs$1 = "_tabs_iomrv_500";
14182
+ const tab$1 = "_tab_iomrv_500";
14183
+ const active$4 = "_active_iomrv_532";
14184
+ const tabsContent = "_tabsContent_iomrv_554";
14185
+ const resizeHandle = "_resizeHandle_iomrv_560";
13925
14186
  const styles$B = {
13926
14187
  inputInTable: inputInTable$a,
13927
14188
  inputHover: inputHover$a,
@@ -16047,7 +16308,9 @@ const ResizeHandle = React__default.forwardRef((props, ref2) => {
16047
16308
  ref: ref2,
16048
16309
  className: styles$B.resizeHandle,
16049
16310
  ...rest,
16050
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(FaGripLinesVertical, {})
16311
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
16312
+ icon: "drag horizontal"
16313
+ })
16051
16314
  });
16052
16315
  });
16053
16316
  const DrawerResizeWrapper = ({
@@ -16190,7 +16453,7 @@ const Drawer = ({
16190
16453
  children: isCustomButton ? button2 : /* @__PURE__ */ jsxRuntime.exports.jsx(Button$1, {
16191
16454
  onClick: setOpen ? () => setOpen(!open) : null,
16192
16455
  round: true,
16193
- icon: right2 ? /* @__PURE__ */ jsxRuntime.exports.jsx(FaChevronRight, {}) : /* @__PURE__ */ jsxRuntime.exports.jsx(FaChevronLeft, {})
16456
+ icon: right2 ? "chevron right" : "chevron left"
16194
16457
  })
16195
16458
  })
16196
16459
  ]
@@ -16638,12 +16901,6 @@ FileInput.propTypes = {
16638
16901
  onChange: propTypes$1.exports.func,
16639
16902
  testId: propTypes$1.exports.string
16640
16903
  };
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
- }
16647
16904
  const label$7 = "_label_12snn_341";
16648
16905
  const labelLeft$1 = "_labelLeft_12snn_345";
16649
16906
  const icons$1 = "_icons_12snn_353";
@@ -16680,18 +16937,18 @@ const Label$2 = ({
16680
16937
  }),
16681
16938
  info2 && /* @__PURE__ */ jsxRuntime.exports.jsx(HelpIcon, {
16682
16939
  text: info2,
16683
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaInfoCircle, {})
16940
+ icon: "info"
16684
16941
  }),
16685
16942
  lock && lock.visible && lock.onClick && /* @__PURE__ */ jsxRuntime.exports.jsx(HelpIcon, {
16686
16943
  onClick: lock.onClick,
16687
- icon: lock.active ? /* @__PURE__ */ jsxRuntime.exports.jsx(HiLockClosed, {}) : /* @__PURE__ */ jsxRuntime.exports.jsx(HiLockOpen, {}),
16944
+ icon: lock.active ? "lock" : "unlock",
16688
16945
  active: lock.active,
16689
16946
  testId: lock.testId
16690
16947
  }),
16691
16948
  libraryIcon && /* @__PURE__ */ jsxRuntime.exports.jsx(HelpIcon, {
16692
16949
  text: (_a = libraryIcon == null ? void 0 : libraryIcon.tooltip) != null ? _a : "",
16693
16950
  onClick: libraryIcon.onClick,
16694
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaBook, {})
16951
+ icon: "library"
16695
16952
  })
16696
16953
  ]
16697
16954
  })
@@ -25905,42 +26162,42 @@ var InfiniteScroll = function(_super) {
25905
26162
  };
25906
26163
  return InfiniteScroll2;
25907
26164
  }(Component$1);
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";
26165
+ const inputInTable$8 = "_inputInTable_1udco_341";
26166
+ const inputHover$8 = "_inputHover_1udco_350";
26167
+ const inputFocus$8 = "_inputFocus_1udco_355";
26168
+ const inputError$8 = "_inputError_1udco_362";
26169
+ const inputWarning$8 = "_inputWarning_1udco_363";
26170
+ const inputDisabled$8 = "_inputDisabled_1udco_398";
26171
+ const hideScrollbars$8 = "_hideScrollbars_1udco_403";
26172
+ const header$1 = "_header_1udco_413";
26173
+ const headerTitle = "_headerTitle_1udco_413";
26174
+ const heading$3 = "_heading_1udco_414";
26175
+ const itemHeader = "_itemHeader_1udco_414";
26176
+ const narrow = "_narrow_1udco_417";
26177
+ const stickyHeader = "_stickyHeader_1udco_421";
26178
+ const title$3 = "_title_1udco_432";
26179
+ const name = "_name_1udco_438";
26180
+ const iconTooltipMargin = "_iconTooltipMargin_1udco_441";
26181
+ const bold = "_bold_1udco_444";
26182
+ const toggleNarrow = "_toggleNarrow_1udco_453";
26183
+ const drag$1 = "_drag_1udco_471";
26184
+ const list$1 = "_list_1udco_491";
26185
+ const bordered$1 = "_bordered_1udco_495";
26186
+ const item$4 = "_item_1udco_414";
26187
+ const action = "_action_1udco_528";
26188
+ const active$3 = "_active_1udco_531";
26189
+ const disabled$5 = "_disabled_1udco_546";
26190
+ const label$6 = "_label_1udco_557";
26191
+ const details$2 = "_details_1udco_564";
26192
+ const metadata = "_metadata_1udco_565";
26193
+ const itemContent = "_itemContent_1udco_574";
26194
+ const indentIcon = "_indentIcon_1udco_581";
26195
+ const expandIcon = "_expandIcon_1udco_586";
26196
+ const expanded = "_expanded_1udco_592";
26197
+ const right$4 = "_right_1udco_595";
26198
+ const actions = "_actions_1udco_602";
26199
+ const scrollableList = "_scrollableList_1udco_607";
26200
+ const hideScrollbar = "_hideScrollbar_1udco_403";
25944
26201
  const listStyles = {
25945
26202
  inputInTable: inputInTable$8,
25946
26203
  inputHover: inputHover$8,
@@ -25984,7 +26241,7 @@ const ToggleNarrow = ({ toggleNarrow: toggleNarrow2, onClickToggleNarrow }) => {
25984
26241
  className: listStyles.toggleNarrow,
25985
26242
  onClick: onClickToggleNarrow,
25986
26243
  children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
25987
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaChevronLeft, {})
26244
+ icon: "chevron left"
25988
26245
  })
25989
26246
  }) : null;
25990
26247
  };
@@ -26036,12 +26293,6 @@ ListHeading.propTypes = {
26036
26293
  toggleNarrow: propTypes$1.exports.bool,
26037
26294
  onToggleNarrow: propTypes$1.exports.func
26038
26295
  };
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
- }
26045
26296
  const Label$1 = ({ label: label2 }) => {
26046
26297
  return label2 ? /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
26047
26298
  className: listStyles.label,
@@ -26169,8 +26420,7 @@ const ListSubheading = forwardRef(({ item: item2, index: index2 }, listRowRefs)
26169
26420
  typeof expanded2 === "boolean" && /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
26170
26421
  className: cx$2(listStyles.expandIcon, expanded2 && listStyles.expanded),
26171
26422
  children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
26172
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleRight, {}),
26173
- color: "#777"
26423
+ icon: "chevron right"
26174
26424
  })
26175
26425
  }),
26176
26426
  /* @__PURE__ */ jsxRuntime.exports.jsx(Name, {
@@ -26262,14 +26512,13 @@ const ListRow = forwardRef(
26262
26512
  className: listStyles.drag,
26263
26513
  ...provided2.dragHandleProps,
26264
26514
  children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
26265
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(GrDrag, {})
26515
+ icon: "drag"
26266
26516
  })
26267
26517
  }),
26268
26518
  item2.level && item2.level > 0 ? /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
26269
26519
  className: listStyles.indentIcon,
26270
26520
  children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
26271
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(BsArrowReturnRight, {}),
26272
- color: "#777"
26521
+ icon: "indent"
26273
26522
  })
26274
26523
  }) : null,
26275
26524
  /* @__PURE__ */ jsxRuntime.exports.jsx(Label$1, {
@@ -26685,7 +26934,8 @@ const Dismiss = ({ type, onClose, isInToast }) => {
26685
26934
  isInToast ? styles$r.absolute : "",
26686
26935
  type === "Info" ? styles$r.info : type === "Success" ? styles$r.success : type === "Warning" ? styles$r.warning : type === "Error" ? styles$r.error : null
26687
26936
  ),
26688
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(FaTimes, {
26937
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
26938
+ icon: "close",
26689
26939
  onClick: onClose
26690
26940
  })
26691
26941
  });
@@ -26724,19 +26974,23 @@ const DialogIcon = ({ type }) => {
26724
26974
  const size2 = 16;
26725
26975
  switch (type) {
26726
26976
  case "Success":
26727
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaCheckCircle, {
26977
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
26978
+ icon: "success",
26728
26979
  size: size2
26729
26980
  });
26730
26981
  case "Warning":
26731
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaExclamationCircle, {
26982
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
26983
+ icon: "warning",
26732
26984
  size: size2
26733
26985
  });
26734
26986
  case "Error":
26735
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaExclamationTriangle, {
26987
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
26988
+ icon: "error",
26736
26989
  size: size2
26737
26990
  });
26738
26991
  default:
26739
- return /* @__PURE__ */ jsxRuntime.exports.jsx(FaInfoCircle, {
26992
+ return /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
26993
+ icon: "info",
26740
26994
  size: size2
26741
26995
  });
26742
26996
  }
@@ -28126,7 +28380,9 @@ const Option = ({
28126
28380
  }),
28127
28381
  /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
28128
28382
  className: styles$m.check,
28129
- children: selected2 ? /* @__PURE__ */ jsxRuntime.exports.jsx(FaCheck, {}) : null
28383
+ children: selected2 ? /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
28384
+ icon: "check"
28385
+ }) : null
28130
28386
  })
28131
28387
  ]
28132
28388
  });
@@ -28528,8 +28784,8 @@ const Trigger = ({
28528
28784
  evt.stopPropagation();
28529
28785
  onClickClear(evt);
28530
28786
  },
28531
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(FaTimes, {
28532
- className: cx$2(styles$l.iconClear)
28787
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
28788
+ icon: "close"
28533
28789
  })
28534
28790
  }) : /* @__PURE__ */ jsxRuntime.exports.jsx("span", {
28535
28791
  className: cx$2(styles$l.iconOpen)
@@ -29416,7 +29672,7 @@ const Pagination = ({ pagination }) => {
29416
29672
  small: small2,
29417
29673
  round: true,
29418
29674
  basic: true,
29419
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleDoubleLeft, {}),
29675
+ icon: "chevron double left",
29420
29676
  onClick: () => setSelectedPage(String(1)),
29421
29677
  disabled: showAll || selectedPage === 1
29422
29678
  }),
@@ -29424,7 +29680,7 @@ const Pagination = ({ pagination }) => {
29424
29680
  small: small2,
29425
29681
  round: true,
29426
29682
  basic: true,
29427
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleLeft, {}),
29683
+ icon: "chevron left",
29428
29684
  onClick: () => setSelectedPage(String(selectedPage - 1)),
29429
29685
  disabled: showAll || selectedPage === 1
29430
29686
  }),
@@ -29453,7 +29709,7 @@ const Pagination = ({ pagination }) => {
29453
29709
  small: small2,
29454
29710
  round: true,
29455
29711
  basic: true,
29456
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleRight, {}),
29712
+ icon: "chevron right",
29457
29713
  onClick: () => setSelectedPage(String(selectedPage + 1)),
29458
29714
  disabled: showAll || selectedPage === numPages
29459
29715
  }),
@@ -29461,7 +29717,7 @@ const Pagination = ({ pagination }) => {
29461
29717
  small: small2,
29462
29718
  round: true,
29463
29719
  basic: true,
29464
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaAngleDoubleRight, {}),
29720
+ icon: "chevron double right",
29465
29721
  onClick: () => setSelectedPage(String(numPages)),
29466
29722
  disabled: showAll || selectedPage === numPages
29467
29723
  })
@@ -29556,7 +29812,7 @@ const Popover = ({
29556
29812
  small: true,
29557
29813
  round: true,
29558
29814
  onClick: () => close2(),
29559
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaTimes, {})
29815
+ icon: "close"
29560
29816
  })
29561
29817
  })
29562
29818
  ]
@@ -56327,21 +56583,6 @@ function Remirror(props) {
56327
56583
  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)));
56328
56584
  }
56329
56585
  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
- }
56345
56586
  const richTextToolbar = "_richTextToolbar_1owpg_1";
56346
56587
  const richTextToolbarContainer = "_richTextToolbarContainer_1owpg_6";
56347
56588
  const styles$f = {
@@ -56360,27 +56601,27 @@ const RichTextToolbar = ({ disabled: disabled2, toolbarComponent }) => {
56360
56601
  const active2 = useActive();
56361
56602
  const items = [
56362
56603
  {
56363
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(TbBold, {}),
56604
+ icon: "bold",
56364
56605
  onClick: () => toggleBold(),
56365
56606
  active: active2.bold()
56366
56607
  },
56367
56608
  {
56368
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(TbItalic, {}),
56609
+ icon: "italic",
56369
56610
  onClick: () => toggleItalic(),
56370
56611
  active: active2.italic()
56371
56612
  },
56372
56613
  {
56373
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(TbCode, {}),
56614
+ icon: "code",
56374
56615
  onClick: () => toggleCode(),
56375
56616
  active: active2.code()
56376
56617
  },
56377
56618
  {
56378
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(TbList, {}),
56619
+ icon: "ul",
56379
56620
  onClick: () => toggleBulletList(),
56380
56621
  active: active2.bulletList()
56381
56622
  },
56382
56623
  {
56383
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(TbListNumbers, {}),
56624
+ icon: "ol",
56384
56625
  onClick: () => toggleOrderedList(),
56385
56626
  active: active2.orderedList()
56386
56627
  }
@@ -56792,7 +57033,7 @@ const SideBar = memo(
56792
57033
  },
56793
57034
  colored: true,
56794
57035
  round: true,
56795
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaArrowLeft, {})
57036
+ icon: "left"
56796
57037
  }),
56797
57038
  children: /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
56798
57039
  className: cx$2(styles$c.sidebar, !isOpen2 ? styles$c.collapsed : ""),
@@ -58947,7 +59188,7 @@ const Slider = ({
58947
59188
  round: true,
58948
59189
  onClick: () => onChangeValue(range2 ? [min, value == null ? void 0 : value[1]] : min),
58949
59190
  disabled: disabled2 || value === min || disabledContext,
58950
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaFastBackward, {})
59191
+ icon: "fast backward"
58951
59192
  })
58952
59193
  });
58953
59194
  const ButtonMax = () => /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
@@ -58958,7 +59199,7 @@ const Slider = ({
58958
59199
  round: true,
58959
59200
  onClick: () => onChangeValue(range2 ? [value == null ? void 0 : value[0], max] : max),
58960
59201
  disabled: disabled2 || value === max || disabledContext,
58961
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaFastForward, {})
59202
+ icon: "fast forward"
58962
59203
  })
58963
59204
  });
58964
59205
  return /* @__PURE__ */ jsxRuntime.exports.jsxs("div", {
@@ -59233,12 +59474,6 @@ Footer.propTypes = {
59233
59474
  pagination: paginationShape,
59234
59475
  content: propTypes$1.exports.object
59235
59476
  };
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
- }
59242
59477
  const inputInTable$1 = "_inputInTable_1xd0b_341";
59243
59478
  const inputHover$1 = "_inputHover_1xd0b_350";
59244
59479
  const inputFocus$1 = "_inputFocus_1xd0b_355";
@@ -59345,9 +59580,7 @@ const NumberInput = ({
59345
59580
  const onSetValue = (evt) => {
59346
59581
  const input2 = evt.target;
59347
59582
  const { value: value2 } = input2;
59348
- const inputValue = cleanNumStr(
59349
- value2.replaceAll(" ", "").replaceAll("|", "")
59350
- );
59583
+ const inputValue = cleanNumStr(value2.replaceAll(" ", ""));
59351
59584
  const { valid, errors } = validateInputValue(inputValue);
59352
59585
  if (valid) {
59353
59586
  onChange({
@@ -59602,13 +59835,19 @@ const Sort = (props) => {
59602
59835
  children: [
59603
59836
  sort2 === "down" ? /* @__PURE__ */ jsxRuntime.exports.jsx(Text, {
59604
59837
  link: true,
59605
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(CgSortAz, {})
59838
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
59839
+ icon: "sort descending"
59840
+ })
59606
59841
  }) : sort2 === "up" ? /* @__PURE__ */ jsxRuntime.exports.jsx(Text, {
59607
59842
  link: true,
59608
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(CgSortZa, {})
59843
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
59844
+ icon: "sort ascending"
59845
+ })
59609
59846
  }) : /* @__PURE__ */ jsxRuntime.exports.jsx(Text, {
59610
59847
  faint: true,
59611
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(CgSortZa, {})
59848
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
59849
+ icon: "sort ascending"
59850
+ })
59612
59851
  }),
59613
59852
  sortPriority && sort2 ? /* @__PURE__ */ jsxRuntime.exports.jsx("sup", {
59614
59853
  children: sortPriority
@@ -59635,7 +59874,7 @@ const CellLibraryIcon = (props) => {
59635
59874
  children: /* @__PURE__ */ jsxRuntime.exports.jsx(HelpIcon, {
59636
59875
  onClick: libraryIcon.onClick,
59637
59876
  text: libraryIcon.tooltip,
59638
- icon: /* @__PURE__ */ jsxRuntime.exports.jsx(FaBook, {})
59877
+ icon: "library"
59639
59878
  })
59640
59879
  }) : null;
59641
59880
  };
@@ -60141,7 +60380,9 @@ const Row = (props) => {
60141
60380
  children: /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
60142
60381
  ...provided.dragHandleProps,
60143
60382
  className: styles$6.dragIcon,
60144
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(GrDrag, {})
60383
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
60384
+ icon: "drag"
60385
+ })
60145
60386
  })
60146
60387
  });
60147
60388
  };
@@ -74019,12 +74260,6 @@ function TreeInner(props, ref2) {
74019
74260
  );
74020
74261
  }
74021
74262
  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
- }
74028
74263
  const tree = "_tree_m71jv_341";
74029
74264
  const toggle = "_toggle_m71jv_344";
74030
74265
  const dropTarget = "_dropTarget_m71jv_348";
@@ -74073,7 +74308,9 @@ const TreeItem = ({
74073
74308
  children: [
74074
74309
  draggable2 && /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
74075
74310
  className: listStyles.drag,
74076
- children: /* @__PURE__ */ jsxRuntime.exports.jsx(GrDrag, {})
74311
+ children: /* @__PURE__ */ jsxRuntime.exports.jsx(Icon, {
74312
+ icon: "drag"
74313
+ })
74077
74314
  }),
74078
74315
  hasChild && /* @__PURE__ */ jsxRuntime.exports.jsx("div", {
74079
74316
  className: styles.toggle,
@@ -74082,7 +74319,7 @@ const TreeItem = ({
74082
74319
  colored: "muted",
74083
74320
  small: true,
74084
74321
  round: true,
74085
- icon: isOpen2 ? /* @__PURE__ */ jsxRuntime.exports.jsx(AiOutlineMinusSquare, {}) : /* @__PURE__ */ jsxRuntime.exports.jsx(AiOutlinePlusSquare, {}),
74322
+ icon: isOpen2 ? "collapse" : "expand",
74086
74323
  onClick: handleToggle
74087
74324
  })
74088
74325
  }),