lecom-ui 2.0.8 → 2.0.9
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/index.d.ts +29 -1
- package/dist/index.js +5 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -282,6 +282,10 @@ interface HeaderProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<
|
|
|
282
282
|
extraContent?: React$1.ReactNode;
|
|
283
283
|
onOpenMenuChange?: () => void;
|
|
284
284
|
}
|
|
285
|
+
declare const Header: {
|
|
286
|
+
({ customStyles, module, customImgSrc, socialMenu, userMenu, helpMenu, modulesMenu, extraContent, onOpenMenuChange, className, ...props }: HeaderProps): React$1.JSX.Element;
|
|
287
|
+
displayName: string;
|
|
288
|
+
};
|
|
285
289
|
|
|
286
290
|
interface SideBarProps {
|
|
287
291
|
items: {
|
|
@@ -302,4 +306,28 @@ declare const Layout: {
|
|
|
302
306
|
|
|
303
307
|
declare const Skeleton: ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => React$1.JSX.Element;
|
|
304
308
|
|
|
305
|
-
|
|
309
|
+
interface CadastroFacilProps extends React$1.SVGAttributes<SVGSVGElement> {
|
|
310
|
+
fillColor?: FillColor;
|
|
311
|
+
size?: string | number;
|
|
312
|
+
}
|
|
313
|
+
declare const CadastroFacil: React$1.ForwardRefExoticComponent<CadastroFacilProps & React$1.RefAttributes<SVGSVGElement>>;
|
|
314
|
+
|
|
315
|
+
interface LogoLecomProps extends React$1.SVGAttributes<SVGSVGElement> {
|
|
316
|
+
fillColor?: FillColor;
|
|
317
|
+
size?: string | number;
|
|
318
|
+
}
|
|
319
|
+
declare const LogoLecom: React$1.ForwardRefExoticComponent<LogoLecomProps & React$1.RefAttributes<SVGSVGElement>>;
|
|
320
|
+
|
|
321
|
+
interface ModoTesteProps extends React$1.SVGAttributes<SVGSVGElement> {
|
|
322
|
+
fillColor?: FillColor;
|
|
323
|
+
size?: string | number;
|
|
324
|
+
}
|
|
325
|
+
declare const ModoTeste: React$1.ForwardRefExoticComponent<ModoTesteProps & React$1.RefAttributes<SVGSVGElement>>;
|
|
326
|
+
|
|
327
|
+
interface RpaProps extends React$1.SVGAttributes<SVGSVGElement> {
|
|
328
|
+
fillColor?: FillColor;
|
|
329
|
+
size?: string | number;
|
|
330
|
+
}
|
|
331
|
+
declare const Rpa: React$1.ForwardRefExoticComponent<RpaProps & React$1.RefAttributes<SVGSVGElement>>;
|
|
332
|
+
|
|
333
|
+
export { type BgColor, Button, type ButtonProps, CadastroFacil, type CadastroFacilProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type Color, type ColorToken, type CustomStyles$1 as CustomStyles, type FillColor, type Fonts, Header, type HeaderProps, Layout, type LayoutProps, LogoLecom, type LogoLecomProps, ModoTeste, type ModoTesteProps, Rpa, type RpaProps, type SideBarProps, Skeleton, type TextColor, Typography, type TypographyProps, buttonVariants, colors, fonts, headerVariants, typographyVariants };
|
package/dist/index.js
CHANGED
|
@@ -5,3 +5,8 @@ export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle }
|
|
|
5
5
|
export { Typography, typographyVariants } from './components/Typography/Typography.js';
|
|
6
6
|
export { Layout } from './components/Layout/Layout.js';
|
|
7
7
|
export { Skeleton } from './components/Skeleton/Skeleton.js';
|
|
8
|
+
export { CadastroFacil } from './components/CustomIcon/Icons/CadastroFacil.js';
|
|
9
|
+
export { LogoLecom } from './components/CustomIcon/Icons/LogoLecom.js';
|
|
10
|
+
export { ModoTeste } from './components/CustomIcon/Icons/ModoTeste.js';
|
|
11
|
+
export { Rpa } from './components/CustomIcon/Icons/Rpa.js';
|
|
12
|
+
export { Header, headerVariants } from './components/Header/Header.js';
|