@granto-umbrella/umbrella-components 3.0.21 → 3.0.22

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@granto-umbrella/umbrella-components",
3
- "version": "3.0.21",
3
+ "version": "3.0.22",
4
4
  "description": "Umbrella Components for React",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/index.ts CHANGED
@@ -41,12 +41,15 @@ import { BannerAjuda } from './components/molecules/BannerAjuda';
41
41
  import ButtonGroup from './components/molecules/ButtonGroup/ButtonGroup';
42
42
  import { Calendar } from './components/molecules/Calendar/Calendar';
43
43
  import { CodeInputContainer } from './components/molecules/CodeInputContainer';
44
+ import { HighlightsCard } from './components/molecules/HighlightsCard/HighlightsCard';
45
+ import { PieChartComponent } from './components/molecules/PieChartComponent/PieChartComponent';
44
46
  import {
45
47
  Popover,
46
48
  PopoverContent,
47
49
  PopoverTrigger,
48
50
  } from './components/molecules/Popover/Popover';
49
51
  import RadioGroup from './components/molecules/RadioBoxGroup/RadioBoxGroup';
52
+ import { RadioGroupField } from './components/molecules/RadioGroupField';
50
53
  import { TabToggle } from './components/molecules/TabToggle/TabToggle';
51
54
  import { Timeline } from './components/molecules/TimeLine/TimeLine';
52
55
  import AlertDialog from './components/organisms/AlertDialog/AlertDialog';
@@ -67,11 +70,14 @@ import {
67
70
  FormMessage,
68
71
  useFormField,
69
72
  } from './components/organisms/Form/Form';
73
+ import { ListagemUltimasEmissoes } from './components/organisms/ListagemUltimasEmissoes/ListagemUltimasEmissoes';
70
74
  import NavbarContainer from './components/organisms/Navbar/Navbar';
71
75
  import { TimelineModal } from './components/organisms/TimelineModal/TimelineModal';
72
76
 
73
77
  // Export all components
74
78
  export {
79
+ RadioGroupField,
80
+ PieChartComponent,
75
81
  AlertDialog,
76
82
  BannerAjuda,
77
83
  Badge,
@@ -86,6 +92,7 @@ export {
86
92
  Dialog,
87
93
  DialogContent,
88
94
  DialogDescription,
95
+ ListagemUltimasEmissoes,
89
96
  DialogFooter,
90
97
  DialogHeader,
91
98
  DialogPortal,
@@ -93,6 +100,7 @@ export {
93
100
  DialogTrigger,
94
101
  DropdownMenu,
95
102
  ErrorMessage,
103
+ HighlightsCard,
96
104
  Footer,
97
105
  Form,
98
106
  FormControl,