@omegagrid/bundle 0.3.64 → 0.3.65
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.ts +13 -1
- package/omegagrid.js +43 -42
- package/package.json +14 -14
package/icons.ts
CHANGED
|
@@ -65,6 +65,8 @@ import { faEye as fasEye } from '@fortawesome/pro-solid-svg-icons/faEye';
|
|
|
65
65
|
import { faEyeSlash as fasEyeSlash } from '@fortawesome/pro-solid-svg-icons/faEyeSlash';
|
|
66
66
|
import { faChartColumn as fasChartColumn } from '@fortawesome/pro-solid-svg-icons/faChartColumn';
|
|
67
67
|
import { faChartBar as fasChartBar } from '@fortawesome/pro-solid-svg-icons/faChartBar';
|
|
68
|
+
import { faChartLine as fasChartLine } from '@fortawesome/pro-solid-svg-icons/faChartLine';
|
|
69
|
+
import { faChartPie as fasChartPie } from '@fortawesome/pro-solid-svg-icons/faChartPie';
|
|
68
70
|
import { faPlus as fasPlus } from '@fortawesome/pro-solid-svg-icons/faPlus';
|
|
69
71
|
import { faMinus as fasMinus } from '@fortawesome/pro-solid-svg-icons/faMinus';
|
|
70
72
|
import { faComment as fasComment } from '@fortawesome/pro-solid-svg-icons/faComment';
|
|
@@ -93,6 +95,7 @@ import { faCircleHalfStroke as fasCircleHalfStroke } from '@fortawesome/pro-soli
|
|
|
93
95
|
import { faCircleQuarterStroke as fasCircleQuarterStroke } from '@fortawesome/pro-solid-svg-icons/faCircleQuarterStroke';
|
|
94
96
|
import { faCircleThreeQuartersStroke as fasCircleThreeQuartersStroke } from '@fortawesome/pro-solid-svg-icons/faCircleThreeQuartersStroke';
|
|
95
97
|
import { faTree as fasTree } from '@fortawesome/pro-solid-svg-icons/faTree';
|
|
98
|
+
import { faMagnifyingGlass as fasMagnifyingGlass } from '@fortawesome/pro-solid-svg-icons/faMagnifyingGlass';
|
|
96
99
|
|
|
97
100
|
import { faChevronUp as falChevronUp } from '@fortawesome/pro-light-svg-icons/faChevronUp';
|
|
98
101
|
import { faChevronDown as falChevronDown } from '@fortawesome/pro-light-svg-icons/faChevronDown';
|
|
@@ -159,6 +162,8 @@ import { faEye as falEye } from '@fortawesome/pro-light-svg-icons/faEye';
|
|
|
159
162
|
import { faEyeSlash as falEyeSlash } from '@fortawesome/pro-light-svg-icons/faEyeSlash';
|
|
160
163
|
import { faChartColumn as falChartColumn } from '@fortawesome/pro-light-svg-icons/faChartColumn';
|
|
161
164
|
import { faChartBar as falChartBar } from '@fortawesome/pro-light-svg-icons/faChartBar';
|
|
165
|
+
import { faChartLine as falChartLine } from '@fortawesome/pro-light-svg-icons/faChartLine';
|
|
166
|
+
import { faChartPie as falChartPie } from '@fortawesome/pro-light-svg-icons/faChartPie';
|
|
162
167
|
import { faPlus as falPlus } from '@fortawesome/pro-light-svg-icons/faPlus';
|
|
163
168
|
import { faMinus as falMinus } from '@fortawesome/pro-light-svg-icons/faMinus';
|
|
164
169
|
import { faComment as falComment } from '@fortawesome/pro-light-svg-icons/faComment';
|
|
@@ -187,6 +192,7 @@ import { faCircleHalfStroke as falCircleHalfStroke } from '@fortawesome/pro-ligh
|
|
|
187
192
|
import { faCircleQuarterStroke as falCircleQuarterStroke } from '@fortawesome/pro-light-svg-icons/faCircleQuarterStroke';
|
|
188
193
|
import { faCircleThreeQuartersStroke as falCircleThreeQuartersStroke } from '@fortawesome/pro-light-svg-icons/faCircleThreeQuartersStroke';
|
|
189
194
|
import { faTree as falTree } from '@fortawesome/pro-light-svg-icons/faTree';
|
|
195
|
+
import { faMagnifyingGlass as falMagnifyingGlass } from '@fortawesome/pro-light-svg-icons/faMagnifyingGlass';
|
|
190
196
|
|
|
191
197
|
|
|
192
198
|
const faIcons: IconDefinition[] = [
|
|
@@ -254,6 +260,8 @@ const faIcons: IconDefinition[] = [
|
|
|
254
260
|
fasEyeSlash,
|
|
255
261
|
fasChartColumn,
|
|
256
262
|
fasChartBar,
|
|
263
|
+
fasChartLine,
|
|
264
|
+
fasChartPie,
|
|
257
265
|
fasPlus,
|
|
258
266
|
fasMinus,
|
|
259
267
|
fasComment,
|
|
@@ -283,6 +291,7 @@ const faIcons: IconDefinition[] = [
|
|
|
283
291
|
fasCircleQuarterStroke,
|
|
284
292
|
fasCircleThreeQuartersStroke,
|
|
285
293
|
fasTree,
|
|
294
|
+
fasMagnifyingGlass,
|
|
286
295
|
|
|
287
296
|
falChevronUp,
|
|
288
297
|
falChevronDown,
|
|
@@ -348,6 +357,8 @@ const faIcons: IconDefinition[] = [
|
|
|
348
357
|
falEyeSlash,
|
|
349
358
|
falChartColumn,
|
|
350
359
|
falChartBar,
|
|
360
|
+
falChartLine,
|
|
361
|
+
falChartPie,
|
|
351
362
|
falPlus,
|
|
352
363
|
falMinus,
|
|
353
364
|
falComment,
|
|
@@ -376,7 +387,8 @@ const faIcons: IconDefinition[] = [
|
|
|
376
387
|
falCircleHalfStroke,
|
|
377
388
|
falCircleQuarterStroke,
|
|
378
389
|
falCircleThreeQuartersStroke,
|
|
379
|
-
falTree
|
|
390
|
+
falTree,
|
|
391
|
+
falMagnifyingGlass
|
|
380
392
|
];
|
|
381
393
|
|
|
382
394
|
export const registerIcons = () => {
|