@data-c/ui 0.1.53 → 0.1.54
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 +8 -2
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -790,12 +790,17 @@ declare const List$1: {
|
|
|
790
790
|
interface PopoverRoot {
|
|
791
791
|
children: ReactNode;
|
|
792
792
|
}
|
|
793
|
-
declare function PopoverRoot(props: PopoverRoot):
|
|
793
|
+
declare function PopoverRoot(props: PopoverRoot): react_jsx_runtime.JSX.Element;
|
|
794
|
+
|
|
795
|
+
type PopoverTriggerPops$1 = ButtonProps$3 & {
|
|
796
|
+
asChild?: boolean;
|
|
797
|
+
};
|
|
798
|
+
declare function PopoverTrigger(props: PopoverTriggerPops$1): react_jsx_runtime.JSX.Element;
|
|
794
799
|
|
|
795
800
|
type PopoverTriggerPops = ButtonProps$3 & {
|
|
796
801
|
asChild?: boolean;
|
|
797
802
|
};
|
|
798
|
-
declare function
|
|
803
|
+
declare function PopoverClose(props: PopoverTriggerPops): react_jsx_runtime.JSX.Element;
|
|
799
804
|
|
|
800
805
|
interface PopoverContentPops extends Omit<PopoverProps, 'open'> {
|
|
801
806
|
}
|
|
@@ -805,6 +810,7 @@ declare const List: {
|
|
|
805
810
|
Root: typeof PopoverRoot;
|
|
806
811
|
Trigger: typeof PopoverTrigger;
|
|
807
812
|
Content: typeof PopoverContent;
|
|
813
|
+
Close: typeof PopoverClose;
|
|
808
814
|
};
|
|
809
815
|
|
|
810
816
|
export { AlterarSenha, AlterarSenhaProps, Avatar, Breadcrumbs, BreadcrumbsItem, BreadcrumbsProps, Button, ButtonContainer, Checkbox, CheckboxProps, ColorsGrid, Content$1 as Content, ContentProps, ContentTitle, CurrencyCellStyle, CurrencyTextField, DataTable$1 as DataTable, DataTableOptions, DataTableOptionsProps, DataTableProps, DataTable as DataTableV2, DeleteContainer, DeleteContainerProps, Dialog$1 as Dialog, DialogProps, Dialog as DialogV2, DrawerMenu, DrawerMenuProps, Editable, EditableProps, Filter, FilterApiContext, FilterApiContextProps, FilterContainer$1 as FilterContainer, FilterControl, FilterDataContext, FilterDataContextProps, FilterOptions, FilterProps, FilterProvider, FilterProviderProps, Flag, FormContainer, FormContainerProps, GridColDef, Header, Icon, LabelValue, LabelValueProps, List$1 as List, Menu, MenuItemProps$1 as MenuItemProps, MioAuth, MioAuthProps, OptionStyles, PageTitle, PasswordTextField, List as Popover, Profile, ProfileProps, SearchTextField, Surface, Tooltip, TooltipProps, Transporter, TransporterProps, renderMenuItems, theme, useFilter, useFilterApi };
|