@factorialco/f0-react-native 0.20.0 → 0.21.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.
Files changed (69) hide show
  1. package/README.md +107 -28
  2. package/package.json +60 -29
  3. package/src/components/Avatars/DateAvatar/__snapshots__/index.spec.tsx.snap +1 -1
  4. package/src/components/Avatars/DateAvatar/index.tsx +1 -1
  5. package/src/components/Avatars/EmojiAvatar/__snapshots__/index.spec.tsx.snap +3 -3
  6. package/src/components/Avatars/EmojiAvatar/index.tsx +1 -1
  7. package/src/components/Avatars/TeamAvatar/__snapshots__/index.spec.tsx.snap +2 -2
  8. package/src/components/Avatars/TeamAvatar/index.spec.tsx +1 -1
  9. package/src/components/Icon/README.md +1 -1
  10. package/src/components/Tags/DotTag/__snapshots__/index.spec.tsx.snap +0 -54
  11. package/src/components/__tests__/ExampleComponent.spec.tsx +11 -11
  12. package/src/icons/app/Ascending.tsx +19 -0
  13. package/src/icons/app/Balance.tsx +28 -0
  14. package/src/icons/app/CardPin.tsx +24 -0
  15. package/src/icons/app/Chip.tsx +21 -0
  16. package/src/icons/app/ClockBack.tsx +19 -0
  17. package/src/icons/app/ClockPlus.tsx +27 -0
  18. package/src/icons/app/Cloud.tsx +20 -0
  19. package/src/icons/app/Command.tsx +31 -0
  20. package/src/icons/app/Computer.tsx +25 -0
  21. package/src/icons/app/Contactless.tsx +21 -0
  22. package/src/icons/app/CornerHandle.tsx +21 -0
  23. package/src/icons/app/Descending.tsx +19 -0
  24. package/src/icons/app/DollarReset.tsx +31 -0
  25. package/src/icons/app/Equal.tsx +21 -0
  26. package/src/icons/app/EqualApproximately.tsx +21 -0
  27. package/src/icons/app/EqualGreater.tsx +21 -0
  28. package/src/icons/app/EqualLess.tsx +21 -0
  29. package/src/icons/app/FileSigned.tsx +21 -0
  30. package/src/icons/app/Files.tsx +21 -0
  31. package/src/icons/app/Flask.tsx +20 -0
  32. package/src/icons/app/Greater.tsx +21 -0
  33. package/src/icons/app/Group.tsx +21 -0
  34. package/src/icons/app/GroupBy.tsx +21 -0
  35. package/src/icons/app/Handle.tsx +21 -0
  36. package/src/icons/app/HardDrive.tsx +25 -0
  37. package/src/icons/app/Headset.tsx +25 -0
  38. package/src/icons/app/InputField.tsx +21 -0
  39. package/src/icons/app/Keyboard.tsx +21 -0
  40. package/src/icons/app/Less.tsx +21 -0
  41. package/src/icons/app/MessageFilled.tsx +24 -0
  42. package/src/icons/app/Moon.tsx +21 -0
  43. package/src/icons/app/Mouse.tsx +20 -0
  44. package/src/icons/app/Numbers.tsx +21 -0
  45. package/src/icons/app/Organization.tsx +25 -0
  46. package/src/icons/app/Password.tsx +32 -0
  47. package/src/icons/app/PersonMinus.tsx +19 -0
  48. package/src/icons/app/PersonNegative.tsx +27 -0
  49. package/src/icons/app/PersonPlus.tsx +19 -0
  50. package/src/icons/app/Pig.tsx +41 -0
  51. package/src/icons/app/Shield.tsx +20 -0
  52. package/src/icons/app/SignPost.tsx +22 -0
  53. package/src/icons/app/Sleep.tsx +21 -0
  54. package/src/icons/app/Sort.tsx +5 -5
  55. package/src/icons/app/Swap.tsx +21 -0
  56. package/src/icons/app/Tablet.tsx +21 -0
  57. package/src/icons/app/ThumbsDown.tsx +21 -0
  58. package/src/icons/app/ThumbsDownFilled.tsx +19 -0
  59. package/src/icons/app/ThumbsUp.tsx +21 -0
  60. package/src/icons/app/ThumbsUpFilled.tsx +19 -0
  61. package/src/icons/app/Upsell.tsx +19 -0
  62. package/src/icons/app/index.ts +49 -0
  63. package/src/icons/modules/Complaints.tsx +21 -0
  64. package/src/icons/modules/ItManagement.tsx +19 -0
  65. package/src/icons/modules/Meetings.tsx +19 -0
  66. package/src/icons/modules/Pages.tsx +21 -0
  67. package/src/icons/modules/SalaryAdvance.tsx +21 -0
  68. package/src/icons/modules/index.ts +5 -0
  69. package/src/index.ts +5 -5
@@ -2,6 +2,7 @@ export { default as Benefits } from "./Benefits";
2
2
  export { default as Calendar } from "./Calendar";
3
3
  export { default as Cards } from "./Cards";
4
4
  export { default as ClockIn } from "./ClockIn";
5
+ export { default as Complaints } from "./Complaints";
5
6
  export { default as Discover } from "./Discover";
6
7
  export { default as Documents } from "./Documents";
7
8
  export { default as Engagement } from "./Engagement";
@@ -9,17 +10,21 @@ export { default as Finance } from "./Finance";
9
10
  export { default as Goals } from "./Goals";
10
11
  export { default as Home } from "./Home";
11
12
  export { default as Hub } from "./Hub";
13
+ export { default as ItManagement } from "./ItManagement";
12
14
  export { default as Inbox } from "./Inbox";
13
15
  export { default as Kudos } from "./Kudos";
16
+ export { default as Meetings } from "./Meetings";
14
17
  export { default as MyDocuments } from "./MyDocuments";
15
18
  export { default as Organization } from "./Organization";
16
19
  export { default as Overviews } from "./Overviews";
20
+ export { default as Pages } from "./Pages";
17
21
  export { default as Payroll } from "./Payroll";
18
22
  export { default as Performance } from "./Performance";
19
23
  export { default as Profile } from "./Profile";
20
24
  export { default as Projects } from "./Projects";
21
25
  export { default as Recruitment } from "./Recruitment";
22
26
  export { default as Reports } from "./Reports";
27
+ export { default as SalaryAdvance } from "./SalaryAdvance";
23
28
  export { default as Sales } from "./Sales";
24
29
  export { default as Settings } from "./Settings";
25
30
  export { default as Shifts } from "./Shifts";
package/src/index.ts CHANGED
@@ -1,14 +1,14 @@
1
1
  // Export components
2
2
  export * from "./components/Activity/ActivityItem";
3
+ export * from "./components/Avatars/exports";
4
+ export * from "./components/Badge";
3
5
  export * from "./components/Button";
6
+ export * from "./components/Counter";
4
7
  export * from "./components/ExampleComponent";
5
8
  export * from "./components/Icon";
6
- export * from "./components/Avatars/exports";
7
- export * from "./components/Counter";
8
- export * from "./components/OnePreset";
9
- export * from "./components/Tags/exports";
10
- export * from "./components/OneChip";
11
9
  export * from "./components/Navigation/PageHeader";
10
+ export * from "./components/OneChip";
11
+ export * from "./components/OnePreset";
12
12
  export * from "./components/Tags/exports";
13
13
  export * from "./components/experimental/Lists/DataList";
14
14
  export * from "./components/experimental/Lists/DetailsItem";