plataforma-fundacao-componentes 2.26.3 → 2.26.4
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/components/tooltipElement/TooltipElement.d.ts +9 -0
- package/dist/components/tooltipElement/TooltipElement.stories.d.ts +7 -0
- package/dist/components/typography/Typography.d.ts +13 -0
- package/dist/components/typography/Typography.stories.d.ts +38 -0
- package/dist/index.css +426 -257
- package/dist/index.d.ts +18 -16
- package/dist/index.js +590 -456
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +590 -458
- package/dist/index.modern.js.map +1 -1
- package/dist/utils/HTMLutils.d.ts +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -120,9 +120,9 @@ import DoughnutSquare from './components/chart/doughnutSquare/DoughnutSquare';
|
|
|
120
120
|
import MoneyByMonth from './components/chart/moneyByMonth/MoneyByMonth';
|
|
121
121
|
import Checkbox from './components/checkbox/Checkbox';
|
|
122
122
|
import Col from './components/col/Col';
|
|
123
|
-
import ControlLabel from './components/controlLabel/ControlLabel';
|
|
124
123
|
import Collapse from './components/collapse/Collapse';
|
|
125
124
|
import Container from './components/container/Container';
|
|
125
|
+
import ControlLabel from './components/controlLabel/ControlLabel';
|
|
126
126
|
import DatePicker from './components/datePicker/DatePicker';
|
|
127
127
|
import Doughnut from './components/doughnut/Doughnut';
|
|
128
128
|
import DropdownItem from './components/dropdownItem/DropdownItem';
|
|
@@ -135,29 +135,29 @@ import FileLoader from './components/fileLoader/FileLoader';
|
|
|
135
135
|
import FileUpload from './components/fileUpload/FileUpload';
|
|
136
136
|
import FooterSicredi from './components/footerSicredi/FooterSicredi';
|
|
137
137
|
import FullHeightContainer from './components/fullHeightContainer/FullHeightContainer';
|
|
138
|
-
import HeaderSeparator from './components/header/components/headerSeparator/HeaderSeparator';
|
|
139
138
|
import Header from './components/header/Header';
|
|
139
|
+
import HeaderSeparator from './components/header/components/headerSeparator/HeaderSeparator';
|
|
140
140
|
import IconButton from './components/iconButton/IconButton';
|
|
141
141
|
import Information from './components/information/Information';
|
|
142
142
|
import Input from './components/input/Input';
|
|
143
143
|
import InputArea from './components/inputArea/InputArea';
|
|
144
144
|
import ItemDropdownDownload from './components/itemDropdownDownload/ItemDropdownDownload';
|
|
145
|
-
import MenuItem from './components/menu/components/menuItem/MenuItem';
|
|
146
145
|
import Menu from './components/menu/Menu';
|
|
146
|
+
import MenuItem from './components/menu/components/menuItem/MenuItem';
|
|
147
147
|
import Modal from './components/modal/Modal';
|
|
148
148
|
import { ModalManager } from './components/modalManager/ModalManager';
|
|
149
149
|
import Notification from './components/notification/Notification';
|
|
150
150
|
import PageTitle, { PageSubTitle } from './components/pageTitle/PageTitle';
|
|
151
|
-
import Paginator from './components/paginator/Paginator';
|
|
152
151
|
import Pagination from './components/pagination/Pagination';
|
|
152
|
+
import Paginator from './components/paginator/Paginator';
|
|
153
153
|
import PreviaVideo from './components/previaVideo/PreviaVideo';
|
|
154
154
|
import RadioButton from './components/radioButton/RadioButton';
|
|
155
155
|
import Row from './components/row/Row';
|
|
156
156
|
import Search from './components/search/Search';
|
|
157
157
|
import Select from './components/select/Select';
|
|
158
158
|
import Switch from './components/switch/Switch';
|
|
159
|
-
import { ActionsColumn } from './components/table/components/actionsColumn/ActionsColumn';
|
|
160
159
|
import Table, { TypedTable } from './components/table/Table';
|
|
160
|
+
import { ActionsColumn } from './components/table/components/actionsColumn/ActionsColumn';
|
|
161
161
|
import TableActions from './components/tableActions/TableActions';
|
|
162
162
|
import TableFileNameAndAction from './components/tableFileNameAndAction/TableFileNameAndAction';
|
|
163
163
|
import TableWithOverflow from './components/tableWithOverflow/TableWithOverflow';
|
|
@@ -170,14 +170,20 @@ import Tooltip from './components/tooltip/Tooltip';
|
|
|
170
170
|
import TooltipManager from './components/tooltipManager/TooltipManager';
|
|
171
171
|
import TopLoader from './components/topLoader/TopLoader';
|
|
172
172
|
import VideoModal from './components/videoModal/VideoModal';
|
|
173
|
+
import { MiniInformationIcon } from './assets/icons/MiniInformationIcon';
|
|
173
174
|
import { PhonePlusIcon } from './assets/icons/PhonePlusIcon';
|
|
174
175
|
import Calendar from './components/calendar/Calendar';
|
|
175
176
|
import CalendarEvent from './components/calendarEvent/CalendarEvent';
|
|
177
|
+
import Chip from './components/chip/Chip';
|
|
176
178
|
import FloatingPanel from './components/floatingPanel/FloatingPanel';
|
|
179
|
+
import FormattedText from './components/formattedText/FormattedText';
|
|
177
180
|
import HourEvents from './components/hourEvents/HourEvents';
|
|
178
181
|
import InlineMonthPicker from './components/inlineMonthPicker/InlineMonthPicker';
|
|
179
182
|
import QRCode from './components/qrcode/QRCode';
|
|
180
183
|
import ScrollArrowOverflow from './components/scrollArrowOverflow/ScrollArrowOverflow';
|
|
184
|
+
import { LeftControlWithLabel } from './components/table/components/leftControlWithLabel/LeftControlWithLabel';
|
|
185
|
+
import TooltipElement from './components/tooltipElement/TooltipElement';
|
|
186
|
+
import Typography from './components/typography/Typography';
|
|
181
187
|
import VideoPlayer from './components/videoPlayer/VideoPlayer';
|
|
182
188
|
import useCallbackedState from './hooks/useCallbackedState/useCallbackedState';
|
|
183
189
|
import useCarouselBehaviour from './hooks/useCarouselBehaviour/useCarouselBehaviour';
|
|
@@ -186,20 +192,16 @@ import useDraggableContainer from './hooks/useDraggableContainer/useDraggableCon
|
|
|
186
192
|
import useDropOpened from './hooks/useDropOpened/useDropOpened';
|
|
187
193
|
import useHTMLShare from './hooks/useHTMLShare/useHTMLShare';
|
|
188
194
|
import useModalManager from './hooks/useModalManager/useModalManager';
|
|
195
|
+
import useOutsideClick from './hooks/useOutsideClick/useOutsideClick';
|
|
196
|
+
import usePagination from './hooks/usePagination/usePagination';
|
|
189
197
|
import useProgressiveCount from './hooks/useProgressiveCount/useProgressiveCount';
|
|
198
|
+
import usePublicMenuList from './hooks/usePublicMenuList/usePublicMenuList';
|
|
190
199
|
import useScreenSize from './hooks/useScreenSize/useScreenSize';
|
|
191
200
|
import useScrollTo from './hooks/useScrollTo/useScrollTo';
|
|
192
|
-
import useOutsideClick from './hooks/useOutsideClick/useOutsideClick';
|
|
193
|
-
import usePagination from './hooks/usePagination/usePagination';
|
|
194
201
|
import useStorageState from './hooks/useStorageState/useStorageState';
|
|
195
202
|
import useTimeElapsed from './hooks/useTimeElapsed/useTimeElapsed';
|
|
196
203
|
import useToastManager from './hooks/useToastManager/useToastManager';
|
|
197
204
|
import useValidatedState from './hooks/useValidatedState/useValidatedState';
|
|
198
|
-
import Chip from './components/chip/Chip';
|
|
199
|
-
import usePublicMenuList from './hooks/usePublicMenuList/usePublicMenuList';
|
|
200
|
-
import FormattedText from './components/formattedText/FormattedText';
|
|
201
|
-
import { LeftControlWithLabel } from './components/table/components/leftControlWithLabel/LeftControlWithLabel';
|
|
202
|
-
import { MiniInformationIcon } from './assets/icons/MiniInformationIcon';
|
|
203
205
|
export * from './components/modal/ModalTypes';
|
|
204
206
|
export * from './libraries/ActionCardThemes';
|
|
205
207
|
export * from './libraries/ButtonTheme';
|
|
@@ -222,14 +224,14 @@ export * from './libraries/Toast';
|
|
|
222
224
|
export * from './libraries/Tooltips';
|
|
223
225
|
export * from './models/menus';
|
|
224
226
|
export { stringToReactElement } from './utils/ParsingUtils';
|
|
225
|
-
export { Accordion, ActionCard, ActionsColumn, AnimatedLink, Banner, BigBlockButton, BottomNavigation, BreadCrumb, Button, ButtonFileUpload, Calendar, CalendarEvent, Card, Carousel, CarouselPersona, CarouselTouchFrendly, Checkbox, Col, Collapse, Container, ControlLabel, DatePicker, Doughnut, DoughnutSquare, DropdownItem, DropdownMenu, DropdownSelector, ElementPaginator, Etapas, Etiqueta, FileLoader, FileUpload, FloatingPanel, FooterSicredi, FormattedText, FullHeightContainer, Header, HeaderSeparator, HourEvents, IconButton, Information, InlineMonthPicker, Input, InputArea, ItemDropdownDownload,
|
|
227
|
+
export { Accordion, ActionCard, ActionsColumn, AnimatedLink, Banner, BigBlockButton, BottomNavigation, BreadCrumb, Button, ButtonFileUpload, Calendar, CalendarEvent, Card, Carousel, CarouselPersona, CarouselTouchFrendly, Checkbox, Col, Collapse, Container, ControlLabel, DatePicker, Doughnut, DoughnutSquare, DropdownItem, DropdownMenu, DropdownSelector, ElementPaginator, Etapas, Etiqueta, FileLoader, FileUpload, FloatingPanel, FooterSicredi, FormattedText, FullHeightContainer, Header, HeaderSeparator, HourEvents, IconButton, Information, InlineMonthPicker, Input, InputArea, ItemDropdownDownload,
|
|
226
228
|
/**
|
|
227
229
|
* @deprecated Use LeftControlWithLabel instead
|
|
228
230
|
*/
|
|
229
|
-
LeftControlWithLabel as LeftCheckboxWithLabel, Menu, MenuItem, Modal, ModalManager, MoneyByMonth, MoneyMonthLineChart, Notification, PageSubTitle, PageTitle, Pagination, Paginator, PreviaVideo, QRCode, RadioButton, Row, ScrollArrowOverflow, Search, Select, Switch, Table, TableActions, TableFileNameAndAction, TableWithOverflow, Tabs, TextEditor, Title, Toast, ToastManager, Tooltip, TooltipManager, TopLoader, TypedTable, VideoModal, VideoPlayer, };
|
|
231
|
+
LeftControlWithLabel as LeftCheckboxWithLabel, LeftControlWithLabel, Menu, MenuItem, Modal, ModalManager, MoneyByMonth, MoneyMonthLineChart, Notification, PageSubTitle, PageTitle, Pagination, Paginator, PreviaVideo, QRCode, RadioButton, Row, ScrollArrowOverflow, Search, Select, Switch, Table, TableActions, TableFileNameAndAction, TableWithOverflow, Tabs, TextEditor, Title, Toast, ToastManager, Tooltip, TooltipManager, TopLoader, TypedTable, VideoModal, VideoPlayer, };
|
|
230
232
|
export { useCallbackedState, useCarouselBehaviour, useControlledTimer, useDraggableContainer, useDropOpened, useHTMLShare, useModalManager, useOutsideClick, usePagination, useProgressiveCount, usePublicMenuList, useScreenSize, useScrollTo, useStorageState, useTimeElapsed, useToastManager, useValidatedState, };
|
|
231
|
-
export { AconteceuIcon, AddAssemblyIcon,
|
|
233
|
+
export { ATMIcon, AconteceuIcon, AddAssemblyIcon,
|
|
232
234
|
/**
|
|
233
235
|
* @deprecated Use AddIcon instead
|
|
234
236
|
*/
|
|
235
|
-
AddIcon as AddCircleIcon, AgencyIcon, AlertIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, ArrowLeftIcon, ArrowRightIcon, AssembleiasIcon,
|
|
237
|
+
AddIcon as AddCircleIcon, AddIcon, AgencyIcon, AlertIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, ArrowLeftIcon, ArrowRightIcon, AssembleiasIcon, BackOfficeIcon, BarChartIcon, BeeIcon, BigPlayIcon, BoldIcon, CalendarCheckIcon, CalendarIcon, CardsIcon, CataventoVerde, CheckCircleIcon, CheckIcon, ChequeIcon, ChevronArrowDownIcon, ChevronArrowLeftIcon, ChevronArrowRightIcon, Chip, CircleArrowLeft, CircleArrowRight, ClockIcon, CloseIcon, CloudDownloadIcon, CloudUploadIcon, ComitesIcon, ComunidadeIcon, CopyIcon, CreditIcon, CrescerIcon, CrescerLogo, DevicePlusIcon, DownloadIcon, DraggableIcon, EditIcon, EvidenciasIcon, ExclamationIcon, ExitIconArrowLeft, ExitIconArrowRight, EyeIcon, FilePlusIcon, FilesIcon, FilterIcon, FontColorIcon, FontIcon, FormacaoIcon, FundacaoLogo, FundoSocialIcon, GlobeIcon, GraduationIcon, HamburgerIcon, HandUpIcon, HomeIcon, InformationIcon, InvestimentIcon, ItalicIcon, LinkIcon, LinksUteisIcon, ListDotIcon, ListIcon, LoaderIcon, LocalIcon, LockIcon, MessageIcon, MiniInformationIcon, MoneyFileIcon, NavigatorWithMouse, NotebookIcon, OptionsIcon, ParticipantesIcon, PaymentIcon, PercentLoaderIcon, PhonePlusIcon, PieChartIcon, PlayIcon, PrintIcon, QRCodeIcon, QRCodeWhatsapp, RedoIcon, RefreshIcon, SearchIcon, SettingsIcon, SicrediLogo, SquaresIcon, SustentabilidadeIcon, ThreeDotsLoader, ThumbsUpIcon, TimesCircleIcon, TooltipElement, TransferenciaIcon, TrashIcon, TrianguloInferior, TwoFileIcon, Typography, UnderlineIcon, UndoIcon, UserIcon, WebsiteIcon, };
|