lecom-ui 2.0.9 → 2.1.1
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 +6 -1
- package/dist/index.js +1 -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';
|
|
@@ -330,4 +331,8 @@ interface RpaProps extends React$1.SVGAttributes<SVGSVGElement> {
|
|
|
330
331
|
}
|
|
331
332
|
declare const Rpa: React$1.ForwardRefExoticComponent<RpaProps & React$1.RefAttributes<SVGSVGElement>>;
|
|
332
333
|
|
|
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
|
@@ -10,3 +10,4 @@ export { LogoLecom } from './components/CustomIcon/Icons/LogoLecom.js';
|
|
|
10
10
|
export { ModoTeste } from './components/CustomIcon/Icons/ModoTeste.js';
|
|
11
11
|
export { Rpa } from './components/CustomIcon/Icons/Rpa.js';
|
|
12
12
|
export { Header, headerVariants } from './components/Header/Header.js';
|
|
13
|
+
export { Popover, PopoverContent, PopoverTrigger } from './components/Popover/Popover.js';
|