@granto-umbrella/umbrella-components 3.0.21 → 3.0.23
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/dist/umbrella-components.es.js +39433 -25136
- package/dist/umbrella-components.umd.js +1416 -1132
- package/package.json +1 -1
- package/src/index.ts +12 -0
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -41,12 +41,16 @@ 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 { InsuranceCard } from './components/molecules/InsuranceCard/InsuranceCard';
|
|
46
|
+
import { PieChartComponent } from './components/molecules/PieChartComponent/PieChartComponent';
|
|
44
47
|
import {
|
|
45
48
|
Popover,
|
|
46
49
|
PopoverContent,
|
|
47
50
|
PopoverTrigger,
|
|
48
51
|
} from './components/molecules/Popover/Popover';
|
|
49
52
|
import RadioGroup from './components/molecules/RadioBoxGroup/RadioBoxGroup';
|
|
53
|
+
import { RadioGroupField } from './components/molecules/RadioGroupField';
|
|
50
54
|
import { TabToggle } from './components/molecules/TabToggle/TabToggle';
|
|
51
55
|
import { Timeline } from './components/molecules/TimeLine/TimeLine';
|
|
52
56
|
import AlertDialog from './components/organisms/AlertDialog/AlertDialog';
|
|
@@ -58,6 +62,7 @@ import {
|
|
|
58
62
|
StyledDialogClose,
|
|
59
63
|
StyledDialogOverlay,
|
|
60
64
|
} from './components/organisms/Dialog/Dialog.styles';
|
|
65
|
+
import DonutEmissionsChart from './components/organisms/DonutEmissionsChart';
|
|
61
66
|
import {
|
|
62
67
|
FormControl,
|
|
63
68
|
FormDescription,
|
|
@@ -67,11 +72,16 @@ import {
|
|
|
67
72
|
FormMessage,
|
|
68
73
|
useFormField,
|
|
69
74
|
} from './components/organisms/Form/Form';
|
|
75
|
+
import { ListagemUltimasEmissoes } from './components/organisms/ListagemUltimasEmissoes/ListagemUltimasEmissoes';
|
|
70
76
|
import NavbarContainer from './components/organisms/Navbar/Navbar';
|
|
71
77
|
import { TimelineModal } from './components/organisms/TimelineModal/TimelineModal';
|
|
72
78
|
|
|
73
79
|
// Export all components
|
|
74
80
|
export {
|
|
81
|
+
InsuranceCard,
|
|
82
|
+
DonutEmissionsChart,
|
|
83
|
+
RadioGroupField,
|
|
84
|
+
PieChartComponent,
|
|
75
85
|
AlertDialog,
|
|
76
86
|
BannerAjuda,
|
|
77
87
|
Badge,
|
|
@@ -86,6 +96,7 @@ export {
|
|
|
86
96
|
Dialog,
|
|
87
97
|
DialogContent,
|
|
88
98
|
DialogDescription,
|
|
99
|
+
ListagemUltimasEmissoes,
|
|
89
100
|
DialogFooter,
|
|
90
101
|
DialogHeader,
|
|
91
102
|
DialogPortal,
|
|
@@ -93,6 +104,7 @@ export {
|
|
|
93
104
|
DialogTrigger,
|
|
94
105
|
DropdownMenu,
|
|
95
106
|
ErrorMessage,
|
|
107
|
+
HighlightsCard,
|
|
96
108
|
Footer,
|
|
97
109
|
Form,
|
|
98
110
|
FormControl,
|