plataforma-fundacao-componentes 2.26.14 → 2.26.15

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.
@@ -17,6 +17,7 @@ import MoneyMonthLineChart from './chart/components/moneyMonthLineChart/MoneyMon
17
17
  import DoughnutSquare from './chart/doughnutSquare/DoughnutSquare';
18
18
  import MoneyByMonth from './chart/moneyByMonth/MoneyByMonth';
19
19
  import Checkbox from './checkbox/Checkbox';
20
+ import Chip from './chip/Chip';
20
21
  import Col from './col/Col';
21
22
  import Collapse from './collapse/Collapse';
22
23
  import Container from './container/Container';
@@ -75,11 +76,13 @@ import { ToastManager } from './toastManager/ToastManager';
75
76
  import Tooltip from './tooltip/Tooltip';
76
77
  import TooltipManager from './tooltipManager/TooltipManager';
77
78
  import TopLoader from './topLoader/TopLoader';
79
+ import Typography from './typography/Typography';
78
80
  import VerticalSlider from './verticalSlider/verticalSlider';
79
81
  import VideoModal from './videoModal/VideoModal';
80
82
  import VideoPlayer from './videoPlayer/VideoPlayer';
81
- 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,
83
+ import TooltipElement from './tooltipElement/TooltipElement';
84
+ export { Accordion, ActionCard, ActionsColumn, AnimatedLink, Banner, BigBlockButton, BottomNavigation, BreadCrumb, Button, ButtonFileUpload, Calendar, CalendarEvent, Card, Carousel, CarouselPersona, CarouselTouchFrendly, Checkbox, Chip, 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,
82
85
  /**
83
86
  * @deprecated Use LeftControlWithLabel instead
84
87
  */
85
- LeftControlWithLabel as LeftCheckboxWithLabel, LeftControlWithLabel, Menu, MenuItem, Modal, ModalManager, MoneyByMonth, MoneyMonthLineChart, Notification, NotificationPanel, 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, VerticalSlider, VideoModal, VideoPlayer, };
88
+ LeftControlWithLabel as LeftCheckboxWithLabel, LeftControlWithLabel, Menu, MenuItem, Modal, ModalManager, MoneyByMonth, MoneyMonthLineChart, Notification, NotificationPanel, PageSubTitle, PageTitle, Pagination, Paginator, PreviaVideo, QRCode, RadioButton, Row, ScrollArrowOverflow, Search, Select, Switch, Table, TableActions, TableFileNameAndAction, TableWithOverflow, Tabs, TextEditor, Title, Toast, ToastManager, Tooltip, TooltipElement, TooltipManager, TopLoader, TypedTable, Typography, VerticalSlider, VideoModal, VideoPlayer, };
@@ -0,0 +1,10 @@
1
+ import { Placement } from '@floating-ui/react';
2
+ import { HTMLAttributes, ReactNode } from 'react';
3
+ export interface iTooltip {
4
+ label?: ReactNode;
5
+ placement?: Placement;
6
+ fallbackPlacements?: Placement[];
7
+ children?: ReactNode;
8
+ wrapperProps?: HTMLAttributes<HTMLDivElement>;
9
+ }
10
+ export default function TooltipElement({ label, placement, fallbackPlacements, wrapperProps, children, }: iTooltip): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,13 @@
1
+ import { CSSProperties, HTMLAttributes } from 'react';
2
+ export interface TypographyProps extends HTMLAttributes<HTMLElement> {
3
+ variant?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'body' | 'caption' | 'small';
4
+ focus?: boolean;
5
+ alignment?: CSSProperties['textAlign'];
6
+ color?: 'primary' | 'primary-dark' | 'secondary' | 'default';
7
+ format?: true | {
8
+ active: boolean;
9
+ replacers?: string[];
10
+ };
11
+ }
12
+ declare const Typography: import("react").ForwardRefExoticComponent<TypographyProps & import("react").RefAttributes<HTMLElement>>;
13
+ export default Typography;