lecom-ui 2.0.8 → 2.0.10
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 +34 -1
- package/dist/index.js +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import * as class_variance_authority_types from 'class-variance-authority/types'
|
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
3
|
import { VariantProps } from 'class-variance-authority';
|
|
4
4
|
import { CustomStyles as CustomStyles$2 } from '@/components/Button';
|
|
5
|
+
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
5
6
|
|
|
6
7
|
type Transparent = 'transparent';
|
|
7
8
|
type Black = 'black';
|
|
@@ -282,6 +283,10 @@ interface HeaderProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<
|
|
|
282
283
|
extraContent?: React$1.ReactNode;
|
|
283
284
|
onOpenMenuChange?: () => void;
|
|
284
285
|
}
|
|
286
|
+
declare const Header: {
|
|
287
|
+
({ customStyles, module, customImgSrc, socialMenu, userMenu, helpMenu, modulesMenu, extraContent, onOpenMenuChange, className, ...props }: HeaderProps): React$1.JSX.Element;
|
|
288
|
+
displayName: string;
|
|
289
|
+
};
|
|
285
290
|
|
|
286
291
|
interface SideBarProps {
|
|
287
292
|
items: {
|
|
@@ -302,4 +307,32 @@ declare const Layout: {
|
|
|
302
307
|
|
|
303
308
|
declare const Skeleton: ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => React$1.JSX.Element;
|
|
304
309
|
|
|
305
|
-
|
|
310
|
+
interface CadastroFacilProps extends React$1.SVGAttributes<SVGSVGElement> {
|
|
311
|
+
fillColor?: FillColor;
|
|
312
|
+
size?: string | number;
|
|
313
|
+
}
|
|
314
|
+
declare const CadastroFacil: React$1.ForwardRefExoticComponent<CadastroFacilProps & React$1.RefAttributes<SVGSVGElement>>;
|
|
315
|
+
|
|
316
|
+
interface LogoLecomProps extends React$1.SVGAttributes<SVGSVGElement> {
|
|
317
|
+
fillColor?: FillColor;
|
|
318
|
+
size?: string | number;
|
|
319
|
+
}
|
|
320
|
+
declare const LogoLecom: React$1.ForwardRefExoticComponent<LogoLecomProps & React$1.RefAttributes<SVGSVGElement>>;
|
|
321
|
+
|
|
322
|
+
interface ModoTesteProps extends React$1.SVGAttributes<SVGSVGElement> {
|
|
323
|
+
fillColor?: FillColor;
|
|
324
|
+
size?: string | number;
|
|
325
|
+
}
|
|
326
|
+
declare const ModoTeste: React$1.ForwardRefExoticComponent<ModoTesteProps & React$1.RefAttributes<SVGSVGElement>>;
|
|
327
|
+
|
|
328
|
+
interface RpaProps extends React$1.SVGAttributes<SVGSVGElement> {
|
|
329
|
+
fillColor?: FillColor;
|
|
330
|
+
size?: string | number;
|
|
331
|
+
}
|
|
332
|
+
declare const Rpa: React$1.ForwardRefExoticComponent<RpaProps & React$1.RefAttributes<SVGSVGElement>>;
|
|
333
|
+
|
|
334
|
+
declare const Popover: React$1.FC<PopoverPrimitive.PopoverProps>;
|
|
335
|
+
declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
336
|
+
declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
337
|
+
|
|
338
|
+
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, Popover, PopoverContent, PopoverTrigger, Rpa, type RpaProps, type SideBarProps, Skeleton, type TextColor, Typography, type TypographyProps, buttonVariants, colors, fonts, headerVariants, typographyVariants };
|
package/dist/index.js
CHANGED
|
@@ -5,3 +5,9 @@ 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';
|
|
13
|
+
export { Popover, PopoverContent, PopoverTrigger } from './components/Popover/Popover.js';
|