@bagelink/vue 0.0.1137 → 0.0.1139

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.
@@ -1,5 +1,6 @@
1
- import { FONT_AWESOME_ICONS, MATERIAL_ICONS } from './constants';
1
+ import { FONT_AWESOME_ICONS, MATERIAL_ICONS, FONT_AWESOME_BRANDS_ICONS } from './constants';
2
2
  export type FontAwesomeIcons = (typeof FONT_AWESOME_ICONS)[number];
3
+ export type FontAwesomeBrandsIcons = (typeof FONT_AWESOME_BRANDS_ICONS)[number];
3
4
  export type MaterialIcons = (typeof MATERIAL_ICONS)[number];
4
- export type IconType = MaterialIcons | FontAwesomeIcons;
5
+ export type IconType = MaterialIcons | FontAwesomeIcons | FontAwesomeBrandsIcons;
5
6
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Icon/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAErE,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,kBAAkB,CAAC,CAAC,MAAM,CAAC,CAAA;AAClE,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,CAAC,CAAA;AAE3D,MAAM,MAAM,QAAQ,GAAG,aAAa,GAAG,gBAAgB,CAAA"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Icon/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,cAAc,EAAE,yBAAyB,EAAE,MAAM,aAAa,CAAA;AAEhG,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,kBAAkB,CAAC,CAAC,MAAM,CAAC,CAAA;AAClE,MAAM,MAAM,sBAAsB,GAAG,CAAC,OAAO,yBAAyB,CAAC,CAAC,MAAM,CAAC,CAAA;AAC/E,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,CAAC,CAAA;AAE3D,MAAM,MAAM,QAAQ,GAAG,aAAa,GAAG,gBAAgB,GAAG,sBAAsB,CAAA"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "0.0.1137",
4
+ "version": "0.0.1139",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -1,6 +1,7 @@
1
- import type { FONT_AWESOME_ICONS, MATERIAL_ICONS } from './constants'
1
+ import type { FONT_AWESOME_ICONS, MATERIAL_ICONS, FONT_AWESOME_BRANDS_ICONS } from './constants'
2
2
 
3
3
  export type FontAwesomeIcons = (typeof FONT_AWESOME_ICONS)[number]
4
+ export type FontAwesomeBrandsIcons = (typeof FONT_AWESOME_BRANDS_ICONS)[number]
4
5
  export type MaterialIcons = (typeof MATERIAL_ICONS)[number]
5
6
 
6
- export type IconType = MaterialIcons | FontAwesomeIcons
7
+ export type IconType = MaterialIcons | FontAwesomeIcons | FontAwesomeBrandsIcons