@epilot360/icons 1.18.1 → 1.18.2

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.
Files changed (151) hide show
  1. package/build/index.js +268 -9
  2. package/build/index.js.map +1 -1
  3. package/build/react/AreaChart/index.d.ts +6 -0
  4. package/build/react/AreaChart/index.js +242 -0
  5. package/build/react/AreaChart/index.js.map +1 -0
  6. package/build/react/ChartLine/index.d.ts +6 -0
  7. package/build/react/ChartLine/index.js +242 -0
  8. package/build/react/ChartLine/index.js.map +1 -0
  9. package/build/react/EpilotIcon.d.ts +16 -0
  10. package/build/react/EpilotIcon.js +148 -1
  11. package/build/react/EpilotIcon.js.map +1 -1
  12. package/build/react/Library/index.d.ts +6 -0
  13. package/build/react/Library/index.js +242 -0
  14. package/build/react/Library/index.js.map +1 -0
  15. package/build/react/Trending/index.d.ts +6 -0
  16. package/build/react/Trending/index.js +241 -0
  17. package/build/react/Trending/index.js.map +1 -0
  18. package/build/react/index.d.ts +4 -0
  19. package/build/react/index.js +163 -4
  20. package/build/react/index.js.map +1 -1
  21. package/build/svg/AreaChart/data.d.ts +3 -0
  22. package/build/svg/AreaChart/data.js +53 -0
  23. package/build/svg/AreaChart/data.js.map +1 -0
  24. package/build/svg/AreaChart/icon-fill.svg +6 -0
  25. package/build/svg/AreaChart/icon.svg +6 -0
  26. package/build/svg/AreaChart/index.d.ts +3 -0
  27. package/build/svg/AreaChart/index.js +136 -0
  28. package/build/svg/AreaChart/index.js.map +1 -0
  29. package/build/svg/ChartLine/data.d.ts +3 -0
  30. package/build/svg/ChartLine/data.js +53 -0
  31. package/build/svg/ChartLine/data.js.map +1 -0
  32. package/build/svg/ChartLine/icon-fill.svg +6 -0
  33. package/build/svg/ChartLine/icon.svg +6 -0
  34. package/build/svg/ChartLine/index.d.ts +3 -0
  35. package/build/svg/ChartLine/index.js +136 -0
  36. package/build/svg/ChartLine/index.js.map +1 -0
  37. package/build/svg/Library/data.d.ts +3 -0
  38. package/build/svg/Library/data.js +53 -0
  39. package/build/svg/Library/data.js.map +1 -0
  40. package/build/svg/Library/icon-fill.svg +8 -0
  41. package/build/svg/Library/icon.svg +8 -0
  42. package/build/svg/Library/index.d.ts +3 -0
  43. package/build/svg/Library/index.js +136 -0
  44. package/build/svg/Library/index.js.map +1 -0
  45. package/build/svg/Trending/data.d.ts +3 -0
  46. package/build/svg/Trending/data.js +52 -0
  47. package/build/svg/Trending/data.js.map +1 -0
  48. package/build/svg/Trending/icon-fill.svg +1 -0
  49. package/build/svg/Trending/icon.svg +1 -0
  50. package/build/svg/Trending/index.d.ts +3 -0
  51. package/build/svg/Trending/index.js +135 -0
  52. package/build/svg/Trending/index.js.map +1 -0
  53. package/build/svg/index.d.ts +4 -0
  54. package/build/svg/index.js +163 -4
  55. package/build/svg/index.js.map +1 -1
  56. package/build/svg/svgIcon.d.ts +4 -0
  57. package/build/svg/svgIcon.js +148 -1
  58. package/build/svg/svgIcon.js.map +1 -1
  59. package/build/version.json +2 -2
  60. package/dist/bundle.js +1 -1
  61. package/dist/bundle.js.map +1 -1
  62. package/dist/version.json +2 -2
  63. package/icons.config.yaml +13 -0
  64. package/index.js +268 -9
  65. package/index.js.map +1 -1
  66. package/package.json +1 -1
  67. package/react/AreaChart/index.d.ts +6 -0
  68. package/react/AreaChart/index.js +242 -0
  69. package/react/AreaChart/index.js.map +1 -0
  70. package/react/ChartLine/index.d.ts +6 -0
  71. package/react/ChartLine/index.js +242 -0
  72. package/react/ChartLine/index.js.map +1 -0
  73. package/react/EpilotIcon.d.ts +16 -0
  74. package/react/EpilotIcon.js +148 -1
  75. package/react/EpilotIcon.js.map +1 -1
  76. package/react/Library/index.d.ts +6 -0
  77. package/react/Library/index.js +242 -0
  78. package/react/Library/index.js.map +1 -0
  79. package/react/Trending/index.d.ts +6 -0
  80. package/react/Trending/index.js +241 -0
  81. package/react/Trending/index.js.map +1 -0
  82. package/react/index.d.ts +4 -0
  83. package/react/index.js +163 -4
  84. package/react/index.js.map +1 -1
  85. package/src/react/AreaChart/index.tsx +6 -0
  86. package/src/react/AreaChart/story.stories.tsx +13 -0
  87. package/src/react/ChartLine/index.tsx +6 -0
  88. package/src/react/ChartLine/story.stories.tsx +13 -0
  89. package/src/react/EpilotIcon.tsx +8 -0
  90. package/src/react/Library/index.tsx +6 -0
  91. package/src/react/Library/story.stories.tsx +13 -0
  92. package/src/react/Trending/index.tsx +6 -0
  93. package/src/react/Trending/story.stories.tsx +13 -0
  94. package/src/react/index.ts +4 -0
  95. package/src/svg/AreaChart/data.ts +9 -0
  96. package/src/svg/AreaChart/icon-fill.svg +6 -0
  97. package/src/svg/AreaChart/icon.svg +6 -0
  98. package/src/svg/AreaChart/index.ts +7 -0
  99. package/src/svg/ChartLine/data.ts +9 -0
  100. package/src/svg/ChartLine/icon-fill.svg +6 -0
  101. package/src/svg/ChartLine/icon.svg +6 -0
  102. package/src/svg/ChartLine/index.ts +7 -0
  103. package/src/svg/Library/data.ts +9 -0
  104. package/src/svg/Library/icon-fill.svg +8 -0
  105. package/src/svg/Library/icon.svg +8 -0
  106. package/src/svg/Library/index.ts +7 -0
  107. package/src/svg/Trending/data.ts +8 -0
  108. package/src/svg/Trending/icon-fill.svg +1 -0
  109. package/src/svg/Trending/icon.svg +1 -0
  110. package/src/svg/Trending/index.ts +7 -0
  111. package/src/svg/index.ts +4 -0
  112. package/src/svg/svgIcon.ts +8 -0
  113. package/svg/AreaChart/data.d.ts +3 -0
  114. package/svg/AreaChart/data.js +53 -0
  115. package/svg/AreaChart/data.js.map +1 -0
  116. package/svg/AreaChart/icon-fill.svg +6 -0
  117. package/svg/AreaChart/icon.svg +6 -0
  118. package/svg/AreaChart/index.d.ts +3 -0
  119. package/svg/AreaChart/index.js +136 -0
  120. package/svg/AreaChart/index.js.map +1 -0
  121. package/svg/ChartLine/data.d.ts +3 -0
  122. package/svg/ChartLine/data.js +53 -0
  123. package/svg/ChartLine/data.js.map +1 -0
  124. package/svg/ChartLine/icon-fill.svg +6 -0
  125. package/svg/ChartLine/icon.svg +6 -0
  126. package/svg/ChartLine/index.d.ts +3 -0
  127. package/svg/ChartLine/index.js +136 -0
  128. package/svg/ChartLine/index.js.map +1 -0
  129. package/svg/Library/data.d.ts +3 -0
  130. package/svg/Library/data.js +53 -0
  131. package/svg/Library/data.js.map +1 -0
  132. package/svg/Library/icon-fill.svg +8 -0
  133. package/svg/Library/icon.svg +8 -0
  134. package/svg/Library/index.d.ts +3 -0
  135. package/svg/Library/index.js +136 -0
  136. package/svg/Library/index.js.map +1 -0
  137. package/svg/Trending/data.d.ts +3 -0
  138. package/svg/Trending/data.js +52 -0
  139. package/svg/Trending/data.js.map +1 -0
  140. package/svg/Trending/icon-fill.svg +1 -0
  141. package/svg/Trending/icon.svg +1 -0
  142. package/svg/Trending/index.d.ts +3 -0
  143. package/svg/Trending/index.js +135 -0
  144. package/svg/Trending/index.js.map +1 -0
  145. package/svg/index.d.ts +4 -0
  146. package/svg/index.js +163 -4
  147. package/svg/index.js.map +1 -1
  148. package/svg/svgIcon.d.ts +4 -0
  149. package/svg/svgIcon.js +148 -1
  150. package/svg/svgIcon.js.map +1 -1
  151. package/version.json +2 -2
@@ -256,6 +256,10 @@ export declare const svgMap: {
256
256
  group: (opts?: SvgStringOpts) => string;
257
257
  folder_limited: (opts?: SvgStringOpts) => string;
258
258
  analytics: (opts?: SvgStringOpts) => string;
259
+ area_chart: (opts?: SvgStringOpts) => string;
260
+ trending: (opts?: SvgStringOpts) => string;
261
+ library: (opts?: SvgStringOpts) => string;
262
+ chart_line: (opts?: SvgStringOpts) => string;
259
263
  };
260
264
  export type IconSVGName = keyof typeof svgMap;
261
265
  type Opts = IconProps & {
@@ -530,6 +530,40 @@ const ArchiveSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvg
530
530
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (ArchiveSVG)));
531
531
 
532
532
 
533
+ /***/ }),
534
+
535
+ /***/ 38874:
536
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
537
+
538
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
539
+ /* harmony export */ data: () => (/* binding */ data)
540
+ /* harmony export */ });
541
+
542
+ const data = {
543
+ o: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M3 3v16a2 2 0 0 0 2 2h16"/><path d="m7 15 3-4 3 2 4-5v8H7z"/></g>',
544
+ f: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M3 3v16a2 2 0 0 0 2 2h16"/><path d="m7 15 3-4 3 2 4-5v8H7z"/></g>',
545
+ vb: "0 0 24 24"
546
+ };
547
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
548
+
549
+
550
+ /***/ }),
551
+
552
+ /***/ 58766:
553
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
554
+
555
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
556
+ /* harmony export */ AreaChartSVG: () => (/* binding */ AreaChartSVG)
557
+ /* harmony export */ });
558
+ /* harmony import */ var _svgString__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8697);
559
+ /* harmony import */ var _data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38874);
560
+
561
+
562
+
563
+ const AreaChartSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvgString)(_data__WEBPACK_IMPORTED_MODULE_0__.data, opts);
564
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (AreaChartSVG)));
565
+
566
+
533
567
  /***/ }),
534
568
 
535
569
  /***/ 41844:
@@ -1423,6 +1457,40 @@ const CategorySVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSv
1423
1457
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (CategorySVG)));
1424
1458
 
1425
1459
 
1460
+ /***/ }),
1461
+
1462
+ /***/ 23995:
1463
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
1464
+
1465
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
1466
+ /* harmony export */ data: () => (/* binding */ data)
1467
+ /* harmony export */ });
1468
+
1469
+ const data = {
1470
+ o: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M3 3v16a2 2 0 0 0 2 2h16"/><path d="m19 9-5 5-4-4-3 3"/></g>',
1471
+ f: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M3 3v16a2 2 0 0 0 2 2h16"/><path d="m19 9-5 5-4-4-3 3"/></g>',
1472
+ vb: "0 0 24 24"
1473
+ };
1474
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
1475
+
1476
+
1477
+ /***/ }),
1478
+
1479
+ /***/ 31038:
1480
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
1481
+
1482
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
1483
+ /* harmony export */ ChartLineSVG: () => (/* binding */ ChartLineSVG)
1484
+ /* harmony export */ });
1485
+ /* harmony import */ var _svgString__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8697);
1486
+ /* harmony import */ var _data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(23995);
1487
+
1488
+
1489
+
1490
+ const ChartLineSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvgString)(_data__WEBPACK_IMPORTED_MODULE_0__.data, opts);
1491
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (ChartLineSVG)));
1492
+
1493
+
1426
1494
  /***/ }),
1427
1495
 
1428
1496
  /***/ 24784:
@@ -4510,6 +4578,40 @@ const LeftPanelOpenSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.bu
4510
4578
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (LeftPanelOpenSVG)));
4511
4579
 
4512
4580
 
4581
+ /***/ }),
4582
+
4583
+ /***/ 16496:
4584
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4585
+
4586
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4587
+ /* harmony export */ data: () => (/* binding */ data)
4588
+ /* harmony export */ });
4589
+
4590
+ const data = {
4591
+ o: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M4 4v16M8 8v12M12 6v14M16 6l4 14"/></g>',
4592
+ f: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M4 4v16M8 8v12M12 6v14M16 6l4 14"/></g>',
4593
+ vb: "0 0 24 24"
4594
+ };
4595
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
4596
+
4597
+
4598
+ /***/ }),
4599
+
4600
+ /***/ 29931:
4601
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4602
+
4603
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4604
+ /* harmony export */ LibrarySVG: () => (/* binding */ LibrarySVG)
4605
+ /* harmony export */ });
4606
+ /* harmony import */ var _svgString__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8697);
4607
+ /* harmony import */ var _data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(16496);
4608
+
4609
+
4610
+
4611
+ const LibrarySVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvgString)(_data__WEBPACK_IMPORTED_MODULE_0__.data, opts);
4612
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (LibrarySVG)));
4613
+
4614
+
4513
4615
  /***/ }),
4514
4616
 
4515
4617
  /***/ 18602:
@@ -8061,6 +8163,39 @@ const ToggleSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvgS
8061
8163
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (ToggleSVG)));
8062
8164
 
8063
8165
 
8166
+ /***/ }),
8167
+
8168
+ /***/ 81796:
8169
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8170
+
8171
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8172
+ /* harmony export */ data: () => (/* binding */ data)
8173
+ /* harmony export */ });
8174
+
8175
+ const data = {
8176
+ o: '<path d="M95-243q-12-12-12-28-1-17 12-29l224-222q22-23 55-23t56 23l111 111 220-221h-83q-16 0-28-11-11-12-11-29t11-28q12-11 28-11h177q16 0 28 11 12 12 12 29v176q0 16-11 27-11 12-28 12-16 0-28-12-12-11-12-27v-79L596-355q-23 23-56 23t-55-23L373-465 151-243q-12 12-28 12-17 0-28-12Z"/>',
8177
+ f: '<path d="M95-243q-12-12-12-28-1-17 12-29l224-222q22-23 55-23t56 23l111 111 220-221h-83q-16 0-28-11-11-12-11-29t11-28q12-11 28-11h177q16 0 28 11 12 12 12 29v176q0 16-11 27-11 12-28 12-16 0-28-12-12-11-12-27v-79L596-355q-23 23-56 23t-55-23L373-465 151-243q-12 12-28 12-17 0-28-12Z"/>'
8178
+ };
8179
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
8180
+
8181
+
8182
+ /***/ }),
8183
+
8184
+ /***/ 26806:
8185
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8186
+
8187
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8188
+ /* harmony export */ TrendingSVG: () => (/* binding */ TrendingSVG)
8189
+ /* harmony export */ });
8190
+ /* harmony import */ var _svgString__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8697);
8191
+ /* harmony import */ var _data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81796);
8192
+
8193
+
8194
+
8195
+ const TrendingSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvgString)(_data__WEBPACK_IMPORTED_MODULE_0__.data, opts);
8196
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (TrendingSVG)));
8197
+
8198
+
8064
8199
  /***/ }),
8065
8200
 
8066
8201
  /***/ 44737:
@@ -8820,6 +8955,10 @@ __webpack_require__.r(__webpack_exports__);
8820
8955
  /* harmony import */ var _Group__WEBPACK_IMPORTED_MODULE_252__ = __webpack_require__(80917);
8821
8956
  /* harmony import */ var _FolderLimited__WEBPACK_IMPORTED_MODULE_253__ = __webpack_require__(94413);
8822
8957
  /* harmony import */ var _Analytics__WEBPACK_IMPORTED_MODULE_254__ = __webpack_require__(87581);
8958
+ /* harmony import */ var _AreaChart__WEBPACK_IMPORTED_MODULE_255__ = __webpack_require__(58766);
8959
+ /* harmony import */ var _Trending__WEBPACK_IMPORTED_MODULE_256__ = __webpack_require__(26806);
8960
+ /* harmony import */ var _Library__WEBPACK_IMPORTED_MODULE_257__ = __webpack_require__(29931);
8961
+ /* harmony import */ var _ChartLine__WEBPACK_IMPORTED_MODULE_258__ = __webpack_require__(31038);
8823
8962
 
8824
8963
  var __defProp = Object.defineProperty;
8825
8964
  var __getOwnPropSymbols = Object.getOwnPropertySymbols;
@@ -9099,6 +9238,10 @@ var __objRest = (source, exclude) => {
9099
9238
 
9100
9239
 
9101
9240
 
9241
+
9242
+
9243
+
9244
+
9102
9245
 
9103
9246
 
9104
9247
 
@@ -9359,7 +9502,11 @@ const svgMap = {
9359
9502
  code: _Code__WEBPACK_IMPORTED_MODULE_251__.CodeSVG,
9360
9503
  group: _Group__WEBPACK_IMPORTED_MODULE_252__.GroupSVG,
9361
9504
  folder_limited: _FolderLimited__WEBPACK_IMPORTED_MODULE_253__.FolderLimitedSVG,
9362
- analytics: _Analytics__WEBPACK_IMPORTED_MODULE_254__.AnalyticsSVG
9505
+ analytics: _Analytics__WEBPACK_IMPORTED_MODULE_254__.AnalyticsSVG,
9506
+ area_chart: _AreaChart__WEBPACK_IMPORTED_MODULE_255__.AreaChartSVG,
9507
+ trending: _Trending__WEBPACK_IMPORTED_MODULE_256__.TrendingSVG,
9508
+ library: _Library__WEBPACK_IMPORTED_MODULE_257__.LibrarySVG,
9509
+ chart_line: _ChartLine__WEBPACK_IMPORTED_MODULE_258__.ChartLineSVG
9363
9510
  };
9364
9511
  const defaultOpts = {
9365
9512
  name: "epilot",