@epilot360/icons 1.17.21 → 1.17.22
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/icons.config.yaml +5 -1
- package/index.js +155 -10
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/Attach/index.js +1 -1
- package/react/Attach/index.js.map +1 -1
- package/react/Description/index.d.ts +4 -0
- package/react/Description/index.js +209 -0
- package/react/Description/index.js.map +1 -0
- package/react/EpilotIcon.d.ts +3 -1
- package/react/EpilotIcon.js +113 -2
- package/react/EpilotIcon.js.map +1 -1
- package/react/index.d.ts +1 -0
- package/react/index.js +119 -5
- package/react/index.js.map +1 -1
- package/svg/Description/icon-fill.svg +1 -0
- package/svg/Description/icon.svg +1 -0
- package/svg/Description/index.d.ts +3 -0
- package/svg/Description/index.js +159 -0
- package/svg/Description/index.js.map +1 -0
- package/svg/index.d.ts +1 -0
- package/svg/index.js +85 -4
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +2 -1
- package/svg/svgIcon.js +79 -1
- package/svg/svgIcon.js.map +1 -1
package/icons.config.yaml
CHANGED
|
@@ -810,8 +810,12 @@ Widgets:
|
|
|
810
810
|
aliases: ["widgets"]
|
|
811
811
|
svg_import: "@material-symbols/svg-600/rounded/widgets.svg"
|
|
812
812
|
Attach:
|
|
813
|
-
name:
|
|
813
|
+
name: attach
|
|
814
814
|
alias: ["attach_file", "attach", "clip"]
|
|
815
815
|
svg_import: "@material-symbols/svg-600/rounded/attach_file.svg"
|
|
816
|
+
Description:
|
|
817
|
+
name: description
|
|
818
|
+
alias: ["description"]
|
|
819
|
+
svg_import: "@material-symbols/svg-600/rounded/description.svg"
|
|
816
820
|
|
|
817
821
|
|
package/index.js
CHANGED
|
@@ -3084,6 +3084,60 @@ var SvgIcon = function SvgIcon(props) {
|
|
|
3084
3084
|
|
|
3085
3085
|
/***/ }),
|
|
3086
3086
|
|
|
3087
|
+
/***/ 59951:
|
|
3088
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3089
|
+
|
|
3090
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3091
|
+
/* harmony export */ Z: () => (__WEBPACK_DEFAULT_EXPORT__),
|
|
3092
|
+
/* harmony export */ r: () => (/* binding */ SvgIconFill)
|
|
3093
|
+
/* harmony export */ });
|
|
3094
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
|
|
3095
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
3096
|
+
var _path;
|
|
3097
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3098
|
+
|
|
3099
|
+
var SvgIconFill = function SvgIconFill(props) {
|
|
3100
|
+
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg", _extends({
|
|
3101
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3102
|
+
width: 48,
|
|
3103
|
+
height: 48,
|
|
3104
|
+
viewBox: "0 -960 960 960"
|
|
3105
|
+
}, props), _path || (_path = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("path", {
|
|
3106
|
+
d: "M352.39-248.87h255.78q13.97 0 23.4-9.75 9.43-9.74 9.43-23.76 0-14.01-9.43-23.36t-23.4-9.35H351.83q-13.97 0-23.4 9.47-9.43 9.46-9.43 23.47 0 14.02 9.71 23.65 9.72 9.63 23.68 9.63Zm0-170h255.78q13.97 0 23.4-9.75 9.43-9.74 9.43-23.76 0-14.01-9.43-23.36t-23.4-9.35H351.83q-13.97 0-23.4 9.47-9.43 9.46-9.43 23.47 0 14.02 9.71 23.65 9.72 9.63 23.68 9.63Zm-127.3 353q-32.51 0-55.87-23.35-23.35-23.36-23.35-55.87v-669.82q0-32.74 23.35-56.26 23.36-23.53 55.87-23.53h328.65q16.32 0 31.31 6.7 14.99 6.7 25.82 17.52l179.61 179.61q10.82 10.83 17.52 25.82 6.7 14.99 6.7 31.31v488.65q0 32.51-23.53 55.87-23.52 23.35-56.26 23.35H225.09Zm320.82-602.65q0 16.7 11.45 28.16 11.46 11.45 28.16 11.45h149.39l-189-186v146.39Z"
|
|
3107
|
+
})));
|
|
3108
|
+
};
|
|
3109
|
+
|
|
3110
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\" viewBox=\"0 -960 960 960\"><path d=\"M352.39-248.87h255.78q13.97 0 23.4-9.75 9.43-9.74 9.43-23.76 0-14.01-9.43-23.36t-23.4-9.35H351.83q-13.97 0-23.4 9.47-9.43 9.46-9.43 23.47 0 14.02 9.71 23.65 9.72 9.63 23.68 9.63Zm0-170h255.78q13.97 0 23.4-9.75 9.43-9.74 9.43-23.76 0-14.01-9.43-23.36t-23.4-9.35H351.83q-13.97 0-23.4 9.47-9.43 9.46-9.43 23.47 0 14.02 9.71 23.65 9.72 9.63 23.68 9.63Zm-127.3 353q-32.51 0-55.87-23.35-23.35-23.36-23.35-55.87v-669.82q0-32.74 23.35-56.26 23.36-23.53 55.87-23.53h328.65q16.32 0 31.31 6.7 14.99 6.7 25.82 17.52l179.61 179.61q10.82 10.83 17.52 25.82 6.7 14.99 6.7 31.31v488.65q0 32.51-23.53 55.87-23.52 23.35-56.26 23.35H225.09Zm320.82-602.65q0 16.7 11.45 28.16 11.46 11.45 28.16 11.45h149.39l-189-186v146.39Z\"/></svg>");
|
|
3111
|
+
|
|
3112
|
+
/***/ }),
|
|
3113
|
+
|
|
3114
|
+
/***/ 30922:
|
|
3115
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3116
|
+
|
|
3117
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3118
|
+
/* harmony export */ Z: () => (__WEBPACK_DEFAULT_EXPORT__),
|
|
3119
|
+
/* harmony export */ r: () => (/* binding */ SvgIcon)
|
|
3120
|
+
/* harmony export */ });
|
|
3121
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
|
|
3122
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
3123
|
+
var _path;
|
|
3124
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3125
|
+
|
|
3126
|
+
var SvgIcon = function SvgIcon(props) {
|
|
3127
|
+
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg", _extends({
|
|
3128
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3129
|
+
width: 48,
|
|
3130
|
+
height: 48,
|
|
3131
|
+
viewBox: "0 -960 960 960"
|
|
3132
|
+
}, props), _path || (_path = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("path", {
|
|
3133
|
+
d: "M352.39-248.87h255.78q13.95 0 23.39-9.63 9.44-9.64 9.44-23.88 0-14-9.44-23.35-9.44-9.36-23.39-9.36H351.83q-13.95 0-23.39 9.48-9.44 9.47-9.44 23.47 0 14.01 9.6 23.64t23.79 9.63Zm0-170h255.78q13.95 0 23.39-9.63 9.44-9.64 9.44-23.88 0-14-9.44-23.35-9.44-9.36-23.39-9.36H351.83q-13.95 0-23.39 9.48-9.44 9.47-9.44 23.47 0 14.01 9.6 23.64t23.79 9.63Zm-127.3 353q-32.51 0-55.87-23.35-23.35-23.36-23.35-55.87v-669.82q0-32.74 23.35-56.26 23.36-23.53 55.87-23.53h328.65q16.46 0 31.38 6.7 14.92 6.7 25.75 17.52l179.61 179.61q10.82 10.83 17.52 25.75 6.7 14.92 6.7 31.38v488.65q0 32.51-23.53 55.87-23.52 23.35-56.26 23.35H225.09Zm320.82-602.65v-146.39H225.09v669.82h509.82v-483.82H585.52q-16.7 0-28.16-11.45-11.45-11.46-11.45-28.16ZM225.09-814.91v186-186 669.82-669.82Z"
|
|
3134
|
+
})));
|
|
3135
|
+
};
|
|
3136
|
+
|
|
3137
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\" viewBox=\"0 -960 960 960\"><path d=\"M352.39-248.87h255.78q13.95 0 23.39-9.63 9.44-9.64 9.44-23.88 0-14-9.44-23.35-9.44-9.36-23.39-9.36H351.83q-13.95 0-23.39 9.48-9.44 9.47-9.44 23.47 0 14.01 9.6 23.64t23.79 9.63Zm0-170h255.78q13.95 0 23.39-9.63 9.44-9.64 9.44-23.88 0-14-9.44-23.35-9.44-9.36-23.39-9.36H351.83q-13.95 0-23.39 9.48-9.44 9.47-9.44 23.47 0 14.01 9.6 23.64t23.79 9.63Zm-127.3 353q-32.51 0-55.87-23.35-23.35-23.36-23.35-55.87v-669.82q0-32.74 23.35-56.26 23.36-23.53 55.87-23.53h328.65q16.46 0 31.38 6.7 14.92 6.7 25.75 17.52l179.61 179.61q10.82 10.83 17.52 25.75 6.7 14.92 6.7 31.38v488.65q0 32.51-23.53 55.87-23.52 23.35-56.26 23.35H225.09Zm320.82-602.65v-146.39H225.09v669.82h509.82v-483.82H585.52q-16.7 0-28.16-11.45-11.45-11.46-11.45-28.16ZM225.09-814.91v186-186 669.82-669.82Z\"/></svg>");
|
|
3138
|
+
|
|
3139
|
+
/***/ }),
|
|
3140
|
+
|
|
3087
3141
|
/***/ 21080:
|
|
3088
3142
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3089
3143
|
|
|
@@ -12034,7 +12088,7 @@ var __objRest = (source, exclude) => {
|
|
|
12034
12088
|
|
|
12035
12089
|
|
|
12036
12090
|
|
|
12037
|
-
const name = "
|
|
12091
|
+
const name = "attach";
|
|
12038
12092
|
function Attach(props) {
|
|
12039
12093
|
const _a = __spreadValues(__spreadValues({}, _common__WEBPACK_IMPORTED_MODULE_3__.defaultIconProps), props), { variant } = _a, restProps = __objRest(_a, ["variant"]);
|
|
12040
12094
|
const IconComponent = variant === "outlined" ? _svg_Attach_icon_svg__WEBPACK_IMPORTED_MODULE_2__/* .ReactComponent */ .r : _svg_Attach_icon_fill_svg__WEBPACK_IMPORTED_MODULE_1__/* .ReactComponent */ .r;
|
|
@@ -14284,6 +14338,62 @@ function DeleteForever(props) {
|
|
|
14284
14338
|
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (DeleteForever)));
|
|
14285
14339
|
|
|
14286
14340
|
|
|
14341
|
+
/***/ }),
|
|
14342
|
+
|
|
14343
|
+
/***/ 99076:
|
|
14344
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
14345
|
+
|
|
14346
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14347
|
+
/* harmony export */ Description: () => (/* binding */ Description)
|
|
14348
|
+
/* harmony export */ });
|
|
14349
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
|
|
14350
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
14351
|
+
/* harmony import */ var _svg_Description_icon_fill_svg__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(59951);
|
|
14352
|
+
/* harmony import */ var _svg_Description_icon_svg__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(30922);
|
|
14353
|
+
/* harmony import */ var _common__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(58387);
|
|
14354
|
+
|
|
14355
|
+
var __defProp = Object.defineProperty;
|
|
14356
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
14357
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
14358
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
14359
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
14360
|
+
var __spreadValues = (a, b) => {
|
|
14361
|
+
for (var prop in b || (b = {}))
|
|
14362
|
+
if (__hasOwnProp.call(b, prop))
|
|
14363
|
+
__defNormalProp(a, prop, b[prop]);
|
|
14364
|
+
if (__getOwnPropSymbols)
|
|
14365
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
14366
|
+
if (__propIsEnum.call(b, prop))
|
|
14367
|
+
__defNormalProp(a, prop, b[prop]);
|
|
14368
|
+
}
|
|
14369
|
+
return a;
|
|
14370
|
+
};
|
|
14371
|
+
var __objRest = (source, exclude) => {
|
|
14372
|
+
var target = {};
|
|
14373
|
+
for (var prop in source)
|
|
14374
|
+
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
14375
|
+
target[prop] = source[prop];
|
|
14376
|
+
if (source != null && __getOwnPropSymbols)
|
|
14377
|
+
for (var prop of __getOwnPropSymbols(source)) {
|
|
14378
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
14379
|
+
target[prop] = source[prop];
|
|
14380
|
+
}
|
|
14381
|
+
return target;
|
|
14382
|
+
};
|
|
14383
|
+
|
|
14384
|
+
|
|
14385
|
+
|
|
14386
|
+
|
|
14387
|
+
const name = "description";
|
|
14388
|
+
function Description(props) {
|
|
14389
|
+
const _a = __spreadValues(__spreadValues({}, _common__WEBPACK_IMPORTED_MODULE_3__.defaultIconProps), props), { variant } = _a, restProps = __objRest(_a, ["variant"]);
|
|
14390
|
+
const IconComponent = variant === "outlined" ? _svg_Description_icon_svg__WEBPACK_IMPORTED_MODULE_2__/* .ReactComponent */ .r : _svg_Description_icon_fill_svg__WEBPACK_IMPORTED_MODULE_1__/* .ReactComponent */ .r;
|
|
14391
|
+
const overrides = props.size ? { width: props.size, height: props.size } : {};
|
|
14392
|
+
return /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0___default().createElement(IconComponent, __spreadValues(__spreadValues({ "aria-label": name }, restProps), overrides));
|
|
14393
|
+
}
|
|
14394
|
+
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (Description)));
|
|
14395
|
+
|
|
14396
|
+
|
|
14287
14397
|
/***/ }),
|
|
14288
14398
|
|
|
14289
14399
|
/***/ 56102:
|
|
@@ -15226,6 +15336,7 @@ function Epilot(props) {
|
|
|
15226
15336
|
/* harmony import */ var _Task__WEBPACK_IMPORTED_MODULE_201__ = __webpack_require__(39152);
|
|
15227
15337
|
/* harmony import */ var _Widgets__WEBPACK_IMPORTED_MODULE_202__ = __webpack_require__(3052);
|
|
15228
15338
|
/* harmony import */ var _Attach__WEBPACK_IMPORTED_MODULE_203__ = __webpack_require__(81777);
|
|
15339
|
+
/* harmony import */ var _Description__WEBPACK_IMPORTED_MODULE_204__ = __webpack_require__(99076);
|
|
15229
15340
|
|
|
15230
15341
|
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
15231
15342
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
@@ -15444,6 +15555,7 @@ var __objRest = (source, exclude) => {
|
|
|
15444
15555
|
|
|
15445
15556
|
|
|
15446
15557
|
|
|
15558
|
+
|
|
15447
15559
|
|
|
15448
15560
|
|
|
15449
15561
|
const IconComponentsMap = {
|
|
@@ -15649,7 +15761,8 @@ const IconComponentsMap = {
|
|
|
15649
15761
|
cards: _Cards__WEBPACK_IMPORTED_MODULE_200__.Cards,
|
|
15650
15762
|
task: _Task__WEBPACK_IMPORTED_MODULE_201__.Task,
|
|
15651
15763
|
widgets: _Widgets__WEBPACK_IMPORTED_MODULE_202__.Widgets,
|
|
15652
|
-
|
|
15764
|
+
attach: _Attach__WEBPACK_IMPORTED_MODULE_203__.Attach,
|
|
15765
|
+
description: _Description__WEBPACK_IMPORTED_MODULE_204__.Description
|
|
15653
15766
|
};
|
|
15654
15767
|
const EpilotIcon = (props) => {
|
|
15655
15768
|
const _a = props, { name } = _a, restProps = __objRest(_a, ["name"]);
|
|
@@ -23189,6 +23302,7 @@ const defaultIconProps = {
|
|
|
23189
23302
|
/* harmony export */ DataObject: () => (/* reexport safe */ _DataObject__WEBPACK_IMPORTED_MODULE_19__.DataObject),
|
|
23190
23303
|
/* harmony export */ Delete: () => (/* reexport safe */ _Delete__WEBPACK_IMPORTED_MODULE_4__.Delete),
|
|
23191
23304
|
/* harmony export */ DeleteForever: () => (/* reexport safe */ _DeleteForever__WEBPACK_IMPORTED_MODULE_175__.DeleteForever),
|
|
23305
|
+
/* harmony export */ Description: () => (/* reexport safe */ _Description__WEBPACK_IMPORTED_MODULE_203__.Description),
|
|
23192
23306
|
/* harmony export */ Design: () => (/* reexport safe */ _Design__WEBPACK_IMPORTED_MODULE_76__.Design),
|
|
23193
23307
|
/* harmony export */ Desktop: () => (/* reexport safe */ _Desktop__WEBPACK_IMPORTED_MODULE_87__.Desktop),
|
|
23194
23308
|
/* harmony export */ Diagram: () => (/* reexport safe */ _Diagram__WEBPACK_IMPORTED_MODULE_147__.Diagram),
|
|
@@ -23202,7 +23316,7 @@ const defaultIconProps = {
|
|
|
23202
23316
|
/* harmony export */ Entity: () => (/* reexport safe */ _Entity__WEBPACK_IMPORTED_MODULE_74__.Entity),
|
|
23203
23317
|
/* harmony export */ EntityBuilder: () => (/* reexport safe */ _EntityBuilder__WEBPACK_IMPORTED_MODULE_113__.EntityBuilder),
|
|
23204
23318
|
/* harmony export */ Epilot: () => (/* reexport safe */ _Epilot__WEBPACK_IMPORTED_MODULE_0__.Epilot),
|
|
23205
|
-
/* harmony export */ EpilotIcon: () => (/* reexport safe */
|
|
23319
|
+
/* harmony export */ EpilotIcon: () => (/* reexport safe */ _EpilotIcon__WEBPACK_IMPORTED_MODULE_204__.EpilotIcon),
|
|
23206
23320
|
/* harmony export */ Error: () => (/* reexport safe */ _Error__WEBPACK_IMPORTED_MODULE_11__.Error),
|
|
23207
23321
|
/* harmony export */ Exclamation: () => (/* reexport safe */ _Exclamation__WEBPACK_IMPORTED_MODULE_104__.Exclamation),
|
|
23208
23322
|
/* harmony export */ ExpandContent: () => (/* reexport safe */ _ExpandContent__WEBPACK_IMPORTED_MODULE_135__.ExpandContent),
|
|
@@ -23225,7 +23339,7 @@ const defaultIconProps = {
|
|
|
23225
23339
|
/* harmony export */ Grid: () => (/* reexport safe */ _Grid__WEBPACK_IMPORTED_MODULE_172__.Grid),
|
|
23226
23340
|
/* harmony export */ GridView: () => (/* reexport safe */ _GridView__WEBPACK_IMPORTED_MODULE_173__.GridView),
|
|
23227
23341
|
/* harmony export */ Help: () => (/* reexport safe */ _Help__WEBPACK_IMPORTED_MODULE_13__.Help),
|
|
23228
|
-
/* harmony export */ IconComponentsMap: () => (/* reexport safe */
|
|
23342
|
+
/* harmony export */ IconComponentsMap: () => (/* reexport safe */ _EpilotIcon__WEBPACK_IMPORTED_MODULE_204__.IconComponentsMap),
|
|
23229
23343
|
/* harmony export */ Image: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_89__.Image),
|
|
23230
23344
|
/* harmony export */ Info: () => (/* reexport safe */ _Info__WEBPACK_IMPORTED_MODULE_12__.Info),
|
|
23231
23345
|
/* harmony export */ Journey: () => (/* reexport safe */ _Journey__WEBPACK_IMPORTED_MODULE_82__.Journey),
|
|
@@ -23541,7 +23655,9 @@ const defaultIconProps = {
|
|
|
23541
23655
|
/* harmony import */ var _Task__WEBPACK_IMPORTED_MODULE_200__ = __webpack_require__(39152);
|
|
23542
23656
|
/* harmony import */ var _Widgets__WEBPACK_IMPORTED_MODULE_201__ = __webpack_require__(3052);
|
|
23543
23657
|
/* harmony import */ var _Attach__WEBPACK_IMPORTED_MODULE_202__ = __webpack_require__(81777);
|
|
23544
|
-
/* harmony import */ var
|
|
23658
|
+
/* harmony import */ var _Description__WEBPACK_IMPORTED_MODULE_203__ = __webpack_require__(99076);
|
|
23659
|
+
/* harmony import */ var _EpilotIcon__WEBPACK_IMPORTED_MODULE_204__ = __webpack_require__(80726);
|
|
23660
|
+
|
|
23545
23661
|
|
|
23546
23662
|
|
|
23547
23663
|
|
|
@@ -24946,6 +25062,27 @@ const DeleteForeverSVG = (opts) => {
|
|
|
24946
25062
|
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (DeleteForeverSVG)));
|
|
24947
25063
|
|
|
24948
25064
|
|
|
25065
|
+
/***/ }),
|
|
25066
|
+
|
|
25067
|
+
/***/ 60489:
|
|
25068
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
25069
|
+
|
|
25070
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
25071
|
+
/* harmony export */ DescriptionSVG: () => (/* binding */ DescriptionSVG)
|
|
25072
|
+
/* harmony export */ });
|
|
25073
|
+
/* harmony import */ var _icon_fill_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(59951);
|
|
25074
|
+
/* harmony import */ var _icon_svg__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(30922);
|
|
25075
|
+
|
|
25076
|
+
|
|
25077
|
+
|
|
25078
|
+
const DescriptionSVG = (opts) => {
|
|
25079
|
+
var _a;
|
|
25080
|
+
const variant = (_a = opts == null ? void 0 : opts.variant) != null ? _a : "filled";
|
|
25081
|
+
return variant === "outlined" ? _icon_svg__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z : _icon_fill_svg__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z;
|
|
25082
|
+
};
|
|
25083
|
+
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (DescriptionSVG)));
|
|
25084
|
+
|
|
25085
|
+
|
|
24949
25086
|
/***/ }),
|
|
24950
25087
|
|
|
24951
25088
|
/***/ 78569:
|
|
@@ -28075,6 +28212,7 @@ const WorkflowSVG = (opts) => {
|
|
|
28075
28212
|
/* harmony export */ DataObjectSVG: () => (/* reexport safe */ _DataObject__WEBPACK_IMPORTED_MODULE_19__.DataObjectSVG),
|
|
28076
28213
|
/* harmony export */ DeleteForeverSVG: () => (/* reexport safe */ _DeleteForever__WEBPACK_IMPORTED_MODULE_175__.DeleteForeverSVG),
|
|
28077
28214
|
/* harmony export */ DeleteSVG: () => (/* reexport safe */ _Delete__WEBPACK_IMPORTED_MODULE_4__.DeleteSVG),
|
|
28215
|
+
/* harmony export */ DescriptionSVG: () => (/* reexport safe */ _Description__WEBPACK_IMPORTED_MODULE_203__.DescriptionSVG),
|
|
28078
28216
|
/* harmony export */ DesignSVG: () => (/* reexport safe */ _Design__WEBPACK_IMPORTED_MODULE_76__.DesignSVG),
|
|
28079
28217
|
/* harmony export */ DesktopSVG: () => (/* reexport safe */ _Desktop__WEBPACK_IMPORTED_MODULE_87__.DesktopSVG),
|
|
28080
28218
|
/* harmony export */ DiagramSVG: () => (/* reexport safe */ _Diagram__WEBPACK_IMPORTED_MODULE_147__.DiagramSVG),
|
|
@@ -28221,8 +28359,8 @@ const WorkflowSVG = (opts) => {
|
|
|
28221
28359
|
/* harmony export */ WebhookSVG: () => (/* reexport safe */ _Webhook__WEBPACK_IMPORTED_MODULE_75__.WebhookSVG),
|
|
28222
28360
|
/* harmony export */ WidgetsSVG: () => (/* reexport safe */ _Widgets__WEBPACK_IMPORTED_MODULE_201__.WidgetsSVG),
|
|
28223
28361
|
/* harmony export */ WorkflowSVG: () => (/* reexport safe */ _Workflow__WEBPACK_IMPORTED_MODULE_77__.WorkflowSVG),
|
|
28224
|
-
/* harmony export */ svgIcon: () => (/* reexport safe */
|
|
28225
|
-
/* harmony export */ svgMap: () => (/* reexport safe */
|
|
28362
|
+
/* harmony export */ svgIcon: () => (/* reexport safe */ _svgIcon__WEBPACK_IMPORTED_MODULE_204__.svgIcon),
|
|
28363
|
+
/* harmony export */ svgMap: () => (/* reexport safe */ _svgIcon__WEBPACK_IMPORTED_MODULE_204__.svgMap)
|
|
28226
28364
|
/* harmony export */ });
|
|
28227
28365
|
/* harmony import */ var _Epilot__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81960);
|
|
28228
28366
|
/* harmony import */ var _Edit__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(88885);
|
|
@@ -28427,7 +28565,9 @@ const WorkflowSVG = (opts) => {
|
|
|
28427
28565
|
/* harmony import */ var _Task__WEBPACK_IMPORTED_MODULE_200__ = __webpack_require__(82186);
|
|
28428
28566
|
/* harmony import */ var _Widgets__WEBPACK_IMPORTED_MODULE_201__ = __webpack_require__(76338);
|
|
28429
28567
|
/* harmony import */ var _Attach__WEBPACK_IMPORTED_MODULE_202__ = __webpack_require__(51845);
|
|
28430
|
-
/* harmony import */ var
|
|
28568
|
+
/* harmony import */ var _Description__WEBPACK_IMPORTED_MODULE_203__ = __webpack_require__(60489);
|
|
28569
|
+
/* harmony import */ var _svgIcon__WEBPACK_IMPORTED_MODULE_204__ = __webpack_require__(30585);
|
|
28570
|
+
|
|
28431
28571
|
|
|
28432
28572
|
|
|
28433
28573
|
|
|
@@ -28847,6 +28987,7 @@ const WorkflowSVG = (opts) => {
|
|
|
28847
28987
|
/* harmony import */ var _Task__WEBPACK_IMPORTED_MODULE_200__ = __webpack_require__(82186);
|
|
28848
28988
|
/* harmony import */ var _Widgets__WEBPACK_IMPORTED_MODULE_201__ = __webpack_require__(76338);
|
|
28849
28989
|
/* harmony import */ var _Attach__WEBPACK_IMPORTED_MODULE_202__ = __webpack_require__(51845);
|
|
28990
|
+
/* harmony import */ var _Description__WEBPACK_IMPORTED_MODULE_203__ = __webpack_require__(60489);
|
|
28850
28991
|
|
|
28851
28992
|
var __defProp = Object.defineProperty;
|
|
28852
28993
|
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
@@ -29077,6 +29218,7 @@ var __objRest = (source, exclude) => {
|
|
|
29077
29218
|
|
|
29078
29219
|
|
|
29079
29220
|
|
|
29221
|
+
|
|
29080
29222
|
|
|
29081
29223
|
|
|
29082
29224
|
const svgMap = {
|
|
@@ -29282,7 +29424,8 @@ const svgMap = {
|
|
|
29282
29424
|
cards: _Cards__WEBPACK_IMPORTED_MODULE_199__.CardsSVG,
|
|
29283
29425
|
task: _Task__WEBPACK_IMPORTED_MODULE_200__.TaskSVG,
|
|
29284
29426
|
widgets: _Widgets__WEBPACK_IMPORTED_MODULE_201__.WidgetsSVG,
|
|
29285
|
-
|
|
29427
|
+
attach: _Attach__WEBPACK_IMPORTED_MODULE_202__.AttachSVG,
|
|
29428
|
+
description: _Description__WEBPACK_IMPORTED_MODULE_203__.DescriptionSVG
|
|
29286
29429
|
};
|
|
29287
29430
|
const defaultOpts = {
|
|
29288
29431
|
name: "epilot",
|
|
@@ -29517,6 +29660,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
29517
29660
|
/* harmony export */ DeleteForever: () => (/* reexport safe */ _react__WEBPACK_IMPORTED_MODULE_0__.DeleteForever),
|
|
29518
29661
|
/* harmony export */ DeleteForeverSVG: () => (/* reexport safe */ _svg__WEBPACK_IMPORTED_MODULE_1__.DeleteForeverSVG),
|
|
29519
29662
|
/* harmony export */ DeleteSVG: () => (/* reexport safe */ _svg__WEBPACK_IMPORTED_MODULE_1__.DeleteSVG),
|
|
29663
|
+
/* harmony export */ Description: () => (/* reexport safe */ _react__WEBPACK_IMPORTED_MODULE_0__.Description),
|
|
29664
|
+
/* harmony export */ DescriptionSVG: () => (/* reexport safe */ _svg__WEBPACK_IMPORTED_MODULE_1__.DescriptionSVG),
|
|
29520
29665
|
/* harmony export */ Design: () => (/* reexport safe */ _react__WEBPACK_IMPORTED_MODULE_0__.Design),
|
|
29521
29666
|
/* harmony export */ DesignSVG: () => (/* reexport safe */ _svg__WEBPACK_IMPORTED_MODULE_1__.DesignSVG),
|
|
29522
29667
|
/* harmony export */ Desktop: () => (/* reexport safe */ _react__WEBPACK_IMPORTED_MODULE_0__.Desktop),
|
|
@@ -29819,7 +29964,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
29819
29964
|
/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(77374);
|
|
29820
29965
|
/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_types__WEBPACK_IMPORTED_MODULE_2__);
|
|
29821
29966
|
/* harmony reexport (unknown) */ var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
29822
|
-
/* harmony reexport (unknown) */ for(const __WEBPACK_IMPORT_KEY__ in _types__WEBPACK_IMPORTED_MODULE_2__) if(["default","AICompose","AIStar","Account","AccountCircleOff","Action","Add","AddCircle","AddLink","AddTask","Address","Alarm","Apartment","Archive","ArrowCircleLeft","ArrowLeft","ArrowRight","Attach","AttributeEdit","Attributes","AutoDelete","Automation","AutomationCircle","Availability","AvgTime","Blueprint","Bolt","Cable","Calculator","Calendar","CalendarClock","CalendarToday","Call","Campaign","Cards","Category","Check","CheckBox","CheckCircle","Checklist","ChevronLeft","ChevronRight","ChipExtraction","Close","CollapseContent","Comment","Condition","ConditionCircle","Connection","Consent","Contact","ContentCopy","Contract","Dangerous","Dashboard","DataObject","Delete","DeleteForever","Design","Desktop","Diagram","Document","DoubleThumbsUp","Download","DragIndicator","DriveFileMove","Edit","EnergySavingsLeaf","Entity","EntityBuilder","Epilot","EpilotIcon","Error","Exclamation","ExpandContent","ExpandLess","ExpandMore","Explore","File","FileCopy","FileCopyOff","FileManager","FileShared","Filter","FilterAlt","FilterAltOff","Flip","Flow","Forest","Frame","Fuel","Grid","GridView","Help","IconComponentsMap","Image","Info","Journey","Keep","KeepOff","Label","LabelOff","Link","LinkOff","LocationAway","Lock","LockOpen","Login","Logout","Lookup","Mail","Map","MarkMessageRead","MarkMessageUnread","MarkNoteRead","MarkNoteUnread","Menu","Merge","Message","Meter","MoreHoriz","MoreHorizCircle","MoreVert","MoveDown","MoveToInbox","Note","NoteStack","Notifications","Number","OpenInNew","Opportunity","Order","Paragraph","Partner","Partnering","Pause","PauseCircle","Payment","Pending","PersonAdd","PersonCheck","Phase","Phone","Play","PlayCircle","Portal","PreviousProvider","Price","PriceMapping","Primary","Product","Purpose","QuestionMark","RadioButton","Raven","ReadMore","Recycling","Refresh","Relations","Remove","Repeat","Reply","ReplyAll","Request","Resize","Restore","SDK","Schedule","Search","Send","Settings","Share","Signature","Skip","Solar","Sort","Stack","Star","StepOver","Submission","SuccessConfirmation","Summary","Sun","Table","TableEdit","Target","Task","Tax","Templates","TextField","Thread","ThumbDown","ThumbUp","Ticket","TwoColumns","Unarchive","Undo","Update","Upload","ViewDay","Visibility","VisibilityOff","Warning","Webhook","Widgets","Workflow","AIComposeSVG","AIStarSVG","AccountCircleOffSVG","AccountSVG","ActionSVG","AddCircleSVG","AddLinkSVG","AddSVG","AddTaskSVG","AddressSVG","AlarmSVG","ApartmentSVG","ArchiveSVG","ArrowCircleLeftSVG","ArrowLeftSVG","ArrowRightSVG","AttachSVG","AttributeEditSVG","AttributesSVG","AutoDeleteSVG","AutomationCircleSVG","AutomationSVG","AvailabilitySVG","AvgTimeSVG","BlueprintSVG","BoltSVG","CableSVG","CalculatorSVG","CalendarClockSVG","CalendarSVG","CalendarTodaySVG","CallSVG","CampaignSVG","CardsSVG","CategorySVG","CheckBoxSVG","CheckCircleSVG","CheckSVG","ChecklistSVG","ChevronLeftSVG","ChevronRightSVG","ChipExtractionSVG","CloseSVG","CollapseContentSVG","CommentSVG","ConditionCircleSVG","ConditionSVG","ConnectionSVG","ConsentSVG","ContactSVG","ContentCopySVG","ContractSVG","DangerousSVG","DashboardSVG","DataObjectSVG","DeleteForeverSVG","DeleteSVG","DesignSVG","DesktopSVG","DiagramSVG","DocumentSVG","DoubleThumbsUpSVG","DownloadSVG","DragIndicatorSVG","DriveFileMoveSVG","EditSVG","EnergySavingsLeafSVG","EntityBuilderSVG","EntitySVG","EpilotSVG","ErrorSVG","ExclamationSVG","ExpandContentSVG","ExpandLessSVG","ExpandMoreSVG","ExploreSVG","FileCopyOffSVG","FileCopySVG","FileManagerSVG","FileSVG","FileSharedSVG","FilterAltOffSVG","FilterAltSVG","FilterSVG","FlipSVG","FlowSVG","ForestSVG","FrameSVG","FuelSVG","GridSVG","GridViewSVG","HelpSVG","ImageSVG","InfoSVG","JourneySVG","KeepOffSVG","KeepSVG","LabelOffSVG","LabelSVG","LinkOffSVG","LinkSVG","LocationAwaySVG","LockOpenSVG","LockSVG","LoginSVG","LogoutSVG","LookupSVG","MailSVG","MapSVG","MarkMessageReadSVG","MarkMessageUnreadSVG","MarkNoteReadSVG","MarkNoteUnreadSVG","MenuSVG","MergeSVG","MessageSVG","MeterSVG","MoreHorizCircleSVG","MoreHorizSVG","MoreVertSVG","MoveDownSVG","MoveToInboxSVG","NoteSVG","NoteStackSVG","NotificationsSVG","NumberSVG","OpenInNewSVG","OpportunitySVG","OrderSVG","ParagraphSVG","PartnerSVG","PartneringSVG","PauseCircleSVG","PauseSVG","PaymentSVG","PendingSVG","PersonAddSVG","PersonCheckSVG","PhaseSVG","PhoneSVG","PlayCircleSVG","PlaySVG","PortalSVG","PreviousProviderSVG","PriceMappingSVG","PriceSVG","PrimarySVG","ProductSVG","PurposeSVG","QuestionMarkSVG","RadioButtonSVG","RavenSVG","ReadMoreSVG","RecyclingSVG","RefreshSVG","RelationsSVG","RemoveSVG","RepeatSVG","ReplyAllSVG","ReplySVG","RequestSVG","ResizeSVG","RestoreSVG","SDKSVG","ScheduleSVG","SearchSVG","SendSVG","SettingsSVG","ShareSVG","SignatureSVG","SkipSVG","SolarSVG","SortSVG","StackSVG","StarSVG","StepOverSVG","SubmissionSVG","SuccessConfirmationSVG","SummarySVG","SunSVG","TableEditSVG","TableSVG","TargetSVG","TaskSVG","TaxSVG","TemplatesSVG","TextFieldSVG","ThreadSVG","ThumbDownSVG","ThumbUpSVG","TicketSVG","TwoColumnsSVG","UnarchiveSVG","UndoSVG","UpdateSVG","UploadSVG","ViewDaySVG","VisibilityOffSVG","VisibilitySVG","WarningSVG","WebhookSVG","WidgetsSVG","WorkflowSVG","svgIcon","svgMap"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = () => _types__WEBPACK_IMPORTED_MODULE_2__[__WEBPACK_IMPORT_KEY__]
|
|
29967
|
+
/* harmony reexport (unknown) */ for(const __WEBPACK_IMPORT_KEY__ in _types__WEBPACK_IMPORTED_MODULE_2__) if(["default","AICompose","AIStar","Account","AccountCircleOff","Action","Add","AddCircle","AddLink","AddTask","Address","Alarm","Apartment","Archive","ArrowCircleLeft","ArrowLeft","ArrowRight","Attach","AttributeEdit","Attributes","AutoDelete","Automation","AutomationCircle","Availability","AvgTime","Blueprint","Bolt","Cable","Calculator","Calendar","CalendarClock","CalendarToday","Call","Campaign","Cards","Category","Check","CheckBox","CheckCircle","Checklist","ChevronLeft","ChevronRight","ChipExtraction","Close","CollapseContent","Comment","Condition","ConditionCircle","Connection","Consent","Contact","ContentCopy","Contract","Dangerous","Dashboard","DataObject","Delete","DeleteForever","Description","Design","Desktop","Diagram","Document","DoubleThumbsUp","Download","DragIndicator","DriveFileMove","Edit","EnergySavingsLeaf","Entity","EntityBuilder","Epilot","EpilotIcon","Error","Exclamation","ExpandContent","ExpandLess","ExpandMore","Explore","File","FileCopy","FileCopyOff","FileManager","FileShared","Filter","FilterAlt","FilterAltOff","Flip","Flow","Forest","Frame","Fuel","Grid","GridView","Help","IconComponentsMap","Image","Info","Journey","Keep","KeepOff","Label","LabelOff","Link","LinkOff","LocationAway","Lock","LockOpen","Login","Logout","Lookup","Mail","Map","MarkMessageRead","MarkMessageUnread","MarkNoteRead","MarkNoteUnread","Menu","Merge","Message","Meter","MoreHoriz","MoreHorizCircle","MoreVert","MoveDown","MoveToInbox","Note","NoteStack","Notifications","Number","OpenInNew","Opportunity","Order","Paragraph","Partner","Partnering","Pause","PauseCircle","Payment","Pending","PersonAdd","PersonCheck","Phase","Phone","Play","PlayCircle","Portal","PreviousProvider","Price","PriceMapping","Primary","Product","Purpose","QuestionMark","RadioButton","Raven","ReadMore","Recycling","Refresh","Relations","Remove","Repeat","Reply","ReplyAll","Request","Resize","Restore","SDK","Schedule","Search","Send","Settings","Share","Signature","Skip","Solar","Sort","Stack","Star","StepOver","Submission","SuccessConfirmation","Summary","Sun","Table","TableEdit","Target","Task","Tax","Templates","TextField","Thread","ThumbDown","ThumbUp","Ticket","TwoColumns","Unarchive","Undo","Update","Upload","ViewDay","Visibility","VisibilityOff","Warning","Webhook","Widgets","Workflow","AIComposeSVG","AIStarSVG","AccountCircleOffSVG","AccountSVG","ActionSVG","AddCircleSVG","AddLinkSVG","AddSVG","AddTaskSVG","AddressSVG","AlarmSVG","ApartmentSVG","ArchiveSVG","ArrowCircleLeftSVG","ArrowLeftSVG","ArrowRightSVG","AttachSVG","AttributeEditSVG","AttributesSVG","AutoDeleteSVG","AutomationCircleSVG","AutomationSVG","AvailabilitySVG","AvgTimeSVG","BlueprintSVG","BoltSVG","CableSVG","CalculatorSVG","CalendarClockSVG","CalendarSVG","CalendarTodaySVG","CallSVG","CampaignSVG","CardsSVG","CategorySVG","CheckBoxSVG","CheckCircleSVG","CheckSVG","ChecklistSVG","ChevronLeftSVG","ChevronRightSVG","ChipExtractionSVG","CloseSVG","CollapseContentSVG","CommentSVG","ConditionCircleSVG","ConditionSVG","ConnectionSVG","ConsentSVG","ContactSVG","ContentCopySVG","ContractSVG","DangerousSVG","DashboardSVG","DataObjectSVG","DeleteForeverSVG","DeleteSVG","DescriptionSVG","DesignSVG","DesktopSVG","DiagramSVG","DocumentSVG","DoubleThumbsUpSVG","DownloadSVG","DragIndicatorSVG","DriveFileMoveSVG","EditSVG","EnergySavingsLeafSVG","EntityBuilderSVG","EntitySVG","EpilotSVG","ErrorSVG","ExclamationSVG","ExpandContentSVG","ExpandLessSVG","ExpandMoreSVG","ExploreSVG","FileCopyOffSVG","FileCopySVG","FileManagerSVG","FileSVG","FileSharedSVG","FilterAltOffSVG","FilterAltSVG","FilterSVG","FlipSVG","FlowSVG","ForestSVG","FrameSVG","FuelSVG","GridSVG","GridViewSVG","HelpSVG","ImageSVG","InfoSVG","JourneySVG","KeepOffSVG","KeepSVG","LabelOffSVG","LabelSVG","LinkOffSVG","LinkSVG","LocationAwaySVG","LockOpenSVG","LockSVG","LoginSVG","LogoutSVG","LookupSVG","MailSVG","MapSVG","MarkMessageReadSVG","MarkMessageUnreadSVG","MarkNoteReadSVG","MarkNoteUnreadSVG","MenuSVG","MergeSVG","MessageSVG","MeterSVG","MoreHorizCircleSVG","MoreHorizSVG","MoreVertSVG","MoveDownSVG","MoveToInboxSVG","NoteSVG","NoteStackSVG","NotificationsSVG","NumberSVG","OpenInNewSVG","OpportunitySVG","OrderSVG","ParagraphSVG","PartnerSVG","PartneringSVG","PauseCircleSVG","PauseSVG","PaymentSVG","PendingSVG","PersonAddSVG","PersonCheckSVG","PhaseSVG","PhoneSVG","PlayCircleSVG","PlaySVG","PortalSVG","PreviousProviderSVG","PriceMappingSVG","PriceSVG","PrimarySVG","ProductSVG","PurposeSVG","QuestionMarkSVG","RadioButtonSVG","RavenSVG","ReadMoreSVG","RecyclingSVG","RefreshSVG","RelationsSVG","RemoveSVG","RepeatSVG","ReplyAllSVG","ReplySVG","RequestSVG","ResizeSVG","RestoreSVG","SDKSVG","ScheduleSVG","SearchSVG","SendSVG","SettingsSVG","ShareSVG","SignatureSVG","SkipSVG","SolarSVG","SortSVG","StackSVG","StarSVG","StepOverSVG","SubmissionSVG","SuccessConfirmationSVG","SummarySVG","SunSVG","TableEditSVG","TableSVG","TargetSVG","TaskSVG","TaxSVG","TemplatesSVG","TextFieldSVG","ThreadSVG","ThumbDownSVG","ThumbUpSVG","TicketSVG","TwoColumnsSVG","UnarchiveSVG","UndoSVG","UpdateSVG","UploadSVG","ViewDaySVG","VisibilityOffSVG","VisibilitySVG","WarningSVG","WebhookSVG","WidgetsSVG","WorkflowSVG","svgIcon","svgMap"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = () => _types__WEBPACK_IMPORTED_MODULE_2__[__WEBPACK_IMPORT_KEY__]
|
|
29823
29968
|
/* harmony reexport (unknown) */ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
29824
29969
|
|
|
29825
29970
|
|