@omegagrid/bundle 0.3.26 → 0.3.28
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 +8 -0
- package/omegagrid.js +4 -4
- package/package.json +14 -14
package/icons.ts
CHANGED
|
@@ -2,6 +2,8 @@ import { library, config, IconDefinition } from '@fortawesome/fontawesome-svg-co
|
|
|
2
2
|
|
|
3
3
|
import { faChevronUp as fasChevronUp } from '@fortawesome/pro-solid-svg-icons/faChevronUp';
|
|
4
4
|
import { faChevronDown as fasChevronDown } from '@fortawesome/pro-solid-svg-icons/faChevronDown';
|
|
5
|
+
import { faChevronRight as fasChevronRight } from '@fortawesome/pro-solid-svg-icons/faChevronRight';
|
|
6
|
+
import { faChevronLeft as fasChevronLeft } from '@fortawesome/pro-solid-svg-icons/faChevronLeft';
|
|
5
7
|
import { faBuilding as fasBuilding } from '@fortawesome/pro-solid-svg-icons/faBuilding';
|
|
6
8
|
import { faFilter as fasFilter } from '@fortawesome/pro-solid-svg-icons/faFilter';
|
|
7
9
|
import { faDownload as fasDownload } from '@fortawesome/pro-solid-svg-icons/faDownload';
|
|
@@ -71,6 +73,8 @@ import { faBars as fasBars } from '@fortawesome/pro-solid-svg-icons/faBars';
|
|
|
71
73
|
|
|
72
74
|
import { faChevronUp as falChevronUp } from '@fortawesome/pro-light-svg-icons/faChevronUp';
|
|
73
75
|
import { faChevronDown as falChevronDown } from '@fortawesome/pro-light-svg-icons/faChevronDown';
|
|
76
|
+
import { faChevronRight as falChevronRight } from '@fortawesome/pro-light-svg-icons/faChevronRight';
|
|
77
|
+
import { faChevronLeft as falChevronLeft } from '@fortawesome/pro-light-svg-icons/faChevronLeft';
|
|
74
78
|
import { faBuilding as falBuilding } from '@fortawesome/pro-light-svg-icons/faBuilding';
|
|
75
79
|
import { faFilter as falFilter } from '@fortawesome/pro-light-svg-icons/faFilter';
|
|
76
80
|
import { faDownload as falDownload } from '@fortawesome/pro-light-svg-icons/faDownload';
|
|
@@ -141,6 +145,8 @@ import { faBars as falBars } from '@fortawesome/pro-light-svg-icons/faBars';
|
|
|
141
145
|
const faIcons: IconDefinition[] = [
|
|
142
146
|
fasChevronUp,
|
|
143
147
|
fasChevronDown,
|
|
148
|
+
fasChevronRight,
|
|
149
|
+
fasChevronLeft,
|
|
144
150
|
fasBuilding,
|
|
145
151
|
fasFilter,
|
|
146
152
|
fasDownload,
|
|
@@ -210,6 +216,8 @@ const faIcons: IconDefinition[] = [
|
|
|
210
216
|
|
|
211
217
|
falChevronUp,
|
|
212
218
|
falChevronDown,
|
|
219
|
+
falChevronRight,
|
|
220
|
+
falChevronLeft,
|
|
213
221
|
falBuilding,
|
|
214
222
|
falFilter,
|
|
215
223
|
falDownload,
|