@omegagrid/bundle 0.6.138 → 0.7.0
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 +5 -2
- package/omegagrid.js +1135 -588
- package/omegagrid.js.LICENSE.txt +6 -0
- package/package.json +23 -24
- package/typedoc.json +5 -2
package/icons.ts
CHANGED
|
@@ -248,7 +248,7 @@ import * as falCirclePlay from '@fortawesome/pro-light-svg-icons/faCirclePlay';
|
|
|
248
248
|
import * as falFont from '@fortawesome/pro-light-svg-icons/faFont';
|
|
249
249
|
import * as falPalette from '@fortawesome/pro-light-svg-icons/faPalette';
|
|
250
250
|
|
|
251
|
-
const
|
|
251
|
+
const fasIcons: IconDefinition[] = [
|
|
252
252
|
fasChevronUp.definition,
|
|
253
253
|
fasChevronDown.definition,
|
|
254
254
|
fasChevronRight.definition,
|
|
@@ -372,7 +372,9 @@ const faIcons: IconDefinition[] = [
|
|
|
372
372
|
fasCirclePlay.definition,
|
|
373
373
|
fasFont.definition,
|
|
374
374
|
fasPalette.definition,
|
|
375
|
+
];
|
|
375
376
|
|
|
377
|
+
const falIcons: IconDefinition[] = [
|
|
376
378
|
falChevronUp.definition,
|
|
377
379
|
falChevronDown.definition,
|
|
378
380
|
falChevronRight.definition,
|
|
@@ -500,5 +502,6 @@ const faIcons: IconDefinition[] = [
|
|
|
500
502
|
|
|
501
503
|
export const registerIcons = () => {
|
|
502
504
|
config.styleDefault = 'fal';
|
|
503
|
-
library.add(
|
|
505
|
+
library.add(fasIcons);
|
|
506
|
+
library.add(falIcons);
|
|
504
507
|
}
|