@integrigo/integrigo-ui 1.3.6 → 1.3.9

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 (46) hide show
  1. package/lib/components/atoms/Icon/icons/Bars.d.ts +4 -0
  2. package/lib/components/atoms/Icon/icons/Envelope.d.ts +4 -0
  3. package/lib/components/atoms/Icon/icons/Facebook.d.ts +4 -0
  4. package/lib/components/atoms/Icon/icons/Instagram.d.ts +4 -0
  5. package/lib/components/atoms/Icon/icons/Linkedin.d.ts +4 -0
  6. package/lib/components/atoms/Icon/icons/Minus.d.ts +4 -0
  7. package/lib/components/atoms/Icon/icons/Phone.d.ts +4 -0
  8. package/lib/components/atoms/Icon/icons/Plus.d.ts +4 -0
  9. package/lib/index.esm.js +1 -1
  10. package/lib/index.esm.js.map +1 -1
  11. package/lib/index.js +1 -1
  12. package/lib/index.js.map +1 -1
  13. package/package.json +1 -1
  14. package/lib/components/atoms/Button/Button.stories.d.ts +0 -6
  15. package/lib/components/atoms/Card/Card.stories.d.ts +0 -11
  16. package/lib/components/atoms/Icon/Icon.stories.d.ts +0 -24
  17. package/lib/components/atoms/Input/Input.stories.d.ts +0 -4
  18. package/lib/components/atoms/Nav/Nav.stories.d.ts +0 -5
  19. package/lib/components/atoms/Typography/Body.stories.d.ts +0 -8
  20. package/lib/components/atoms/Typography/Hero.stories.d.ts +0 -9
  21. package/lib/components/atoms/Typography/Label.stories.d.ts +0 -8
  22. package/lib/components/molecules/InfoCard/InfoCard.stories.d.ts +0 -7
  23. package/src/components/atoms/Button/Button.tsx +0 -64
  24. package/src/components/atoms/Button/index.ts +0 -1
  25. package/src/components/atoms/Card/Card.tsx +0 -11
  26. package/src/components/atoms/Card/index.ts +0 -1
  27. package/src/components/atoms/Icon/Icon.tsx +0 -43
  28. package/src/components/atoms/Icon/index.ts +0 -1
  29. package/src/components/atoms/Input/Input.tsx +0 -19
  30. package/src/components/atoms/Input/index.ts +0 -1
  31. package/src/components/atoms/Nav/Nav.tsx +0 -21
  32. package/src/components/atoms/Nav/index.ts +0 -1
  33. package/src/components/atoms/Pill/Pill.tsx +0 -17
  34. package/src/components/atoms/Pill/index.ts +0 -1
  35. package/src/components/atoms/Typography/Body.tsx +0 -12
  36. package/src/components/atoms/Typography/Hero.tsx +0 -21
  37. package/src/components/atoms/Typography/Label.tsx +0 -12
  38. package/src/components/atoms/Typography/index.ts +0 -5
  39. package/src/components/atoms/index.ts +0 -7
  40. package/src/components/molecules/InfoCard/InfoCard.tsx +0 -69
  41. package/src/components/molecules/InfoCard/index.tsx +0 -1
  42. package/src/components/molecules/index.ts +0 -1
  43. package/src/index.ts +0 -15
  44. package/src/styles/colors.ts +0 -8
  45. package/src/styles/global.ts +0 -79
  46. package/src/styles/index.ts +0 -2
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { FontAwesomeIconProps } from "@fortawesome/react-fontawesome";
3
+ declare const Bars: React.FC<Omit<FontAwesomeIconProps, 'icon'>>;
4
+ export default Bars;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { FontAwesomeIconProps } from "@fortawesome/react-fontawesome";
3
+ declare const Envelope: React.FC<Omit<FontAwesomeIconProps, 'icon'>>;
4
+ export default Envelope;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { FontAwesomeIconProps } from "@fortawesome/react-fontawesome";
3
+ declare const Facebook: React.FC<Omit<FontAwesomeIconProps, 'icon'>>;
4
+ export default Facebook;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { FontAwesomeIconProps } from "@fortawesome/react-fontawesome";
3
+ declare const Instagram: React.FC<Omit<FontAwesomeIconProps, 'icon'>>;
4
+ export default Instagram;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { FontAwesomeIconProps } from "@fortawesome/react-fontawesome";
3
+ declare const Linkedin: React.FC<Omit<FontAwesomeIconProps, 'icon'>>;
4
+ export default Linkedin;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { FontAwesomeIconProps } from "@fortawesome/react-fontawesome";
3
+ declare const Minus: React.FC<Omit<FontAwesomeIconProps, 'icon'>>;
4
+ export default Minus;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { FontAwesomeIconProps } from "@fortawesome/react-fontawesome";
3
+ declare const Phone: React.FC<Omit<FontAwesomeIconProps, 'icon'>>;
4
+ export default Phone;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { FontAwesomeIconProps } from "@fortawesome/react-fontawesome";
3
+ declare const Plus: React.FC<Omit<FontAwesomeIconProps, 'icon'>>;
4
+ export default Plus;