@data-c/ui 0.1.63 → 0.1.65
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 +56 -23
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as _mui_material from '@mui/material';
|
|
3
|
-
import { ButtonProps as ButtonProps$3, StackProps, CheckboxProps as CheckboxProps$1, DialogProps as DialogProps$1, IconButtonProps, DrawerProps, TypographyProps, ToolbarProps as ToolbarProps$1, TextFieldProps, FilterOptionsState, TooltipProps as TooltipProps$2, BoxProps, PaperProps, SvgIconProps, IconProps,
|
|
3
|
+
import { ButtonProps as ButtonProps$3, StackProps, CheckboxProps as CheckboxProps$1, DialogProps as DialogProps$1, IconButtonProps, DrawerProps, TypographyProps, ToolbarProps as ToolbarProps$1, TextFieldProps, FilterOptionsState, TooltipProps as TooltipProps$2, BoxProps, PaperProps, SvgIconProps, IconProps, ChipProps, InputBaseProps, Breakpoint, TableFooterProps, MenuItemProps as MenuItemProps$2, PopoverProps } from '@mui/material';
|
|
4
4
|
import * as React$1 from 'react';
|
|
5
5
|
import React__default, { ReactNode, ComponentType } from 'react';
|
|
6
6
|
import { MUIDataTableProps } from 'mui-datatables';
|
|
@@ -571,6 +571,11 @@ declare const Dialog: {
|
|
|
571
571
|
ConfirmDelete: typeof DialogConfirmDelete;
|
|
572
572
|
};
|
|
573
573
|
|
|
574
|
+
interface FilterAdvancedActionsContainerProps {
|
|
575
|
+
children: React__default.ReactNode;
|
|
576
|
+
}
|
|
577
|
+
declare function FilterAdvancedActionsContainer({ children, }: FilterAdvancedActionsContainerProps): react_jsx_runtime.JSX.Element;
|
|
578
|
+
|
|
574
579
|
declare function FilterAdvancedButton(): react_jsx_runtime.JSX.Element;
|
|
575
580
|
|
|
576
581
|
interface FilterAdvancedContainerProps {
|
|
@@ -578,6 +583,25 @@ interface FilterAdvancedContainerProps {
|
|
|
578
583
|
}
|
|
579
584
|
declare function FilterAdvancedContainer(props: FilterAdvancedContainerProps): react_jsx_runtime.JSX.Element;
|
|
580
585
|
|
|
586
|
+
interface FilterAdvancedActionsContentProps {
|
|
587
|
+
children: React__default.ReactNode;
|
|
588
|
+
}
|
|
589
|
+
declare function FilterAdvancedActionsContent({ children, }: FilterAdvancedActionsContentProps): react_jsx_runtime.JSX.Element;
|
|
590
|
+
|
|
591
|
+
declare function ApplyButton(): react_jsx_runtime.JSX.Element;
|
|
592
|
+
|
|
593
|
+
interface FiltrerChipProps extends Omit<ChipProps, 'children'> {
|
|
594
|
+
children?: ReactNode;
|
|
595
|
+
name: string;
|
|
596
|
+
disabledDelete?: boolean;
|
|
597
|
+
}
|
|
598
|
+
declare function FiltrerChip(props: FiltrerChipProps): react_jsx_runtime.JSX.Element;
|
|
599
|
+
|
|
600
|
+
interface FilterChipsProps {
|
|
601
|
+
children: ReactNode;
|
|
602
|
+
}
|
|
603
|
+
declare function FilterChips({ children: childrenProp, }: FilterChipsProps): react_jsx_runtime.JSX.Element;
|
|
604
|
+
|
|
581
605
|
declare function FilterContainer({ children }: {
|
|
582
606
|
children: ReactNode;
|
|
583
607
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -618,6 +642,8 @@ declare function FilterProvider<T>(props: FilterProviderProps<T>): react_jsx_run
|
|
|
618
642
|
declare function useFilter<T = any>(): FilterDataContextProps<T>;
|
|
619
643
|
declare function useFilterApi<T = any>(): FilterApiContextProps<T>;
|
|
620
644
|
|
|
645
|
+
declare function ResetButton(): react_jsx_runtime.JSX.Element;
|
|
646
|
+
|
|
621
647
|
interface FilterRootProps {
|
|
622
648
|
children: ReactNode;
|
|
623
649
|
}
|
|
@@ -628,32 +654,12 @@ interface FilterSearchTextFieldProps extends Omit<InputBaseProps, 'onChange'> {
|
|
|
628
654
|
}
|
|
629
655
|
declare function FilterSearchTextField(props: FilterSearchTextFieldProps): react_jsx_runtime.JSX.Element;
|
|
630
656
|
|
|
631
|
-
declare function ApplyButton(): react_jsx_runtime.JSX.Element;
|
|
632
|
-
|
|
633
|
-
declare function ResetButton(): react_jsx_runtime.JSX.Element;
|
|
634
|
-
|
|
635
|
-
interface FilterAdvancedActionsContainerProps {
|
|
636
|
-
children: React__default.ReactNode;
|
|
637
|
-
}
|
|
638
|
-
declare function FilterAdvancedActionsContainer({ children, }: FilterAdvancedActionsContainerProps): react_jsx_runtime.JSX.Element;
|
|
639
|
-
|
|
640
|
-
interface FilterChipsProps {
|
|
641
|
-
children: ReactNode;
|
|
642
|
-
}
|
|
643
|
-
declare function FilterChips({ children: childrenProp, }: FilterChipsProps): react_jsx_runtime.JSX.Element;
|
|
644
|
-
|
|
645
|
-
interface FiltrerChipProps extends Omit<ChipProps, 'children'> {
|
|
646
|
-
children?: ReactNode;
|
|
647
|
-
name: string;
|
|
648
|
-
disabledDelete?: boolean;
|
|
649
|
-
}
|
|
650
|
-
declare function FiltrerChip(props: FiltrerChipProps): react_jsx_runtime.JSX.Element;
|
|
651
|
-
|
|
652
657
|
declare const Filter: {
|
|
653
658
|
Root: typeof FilterRoot;
|
|
654
659
|
SearchTextField: typeof FilterSearchTextField;
|
|
655
660
|
Container: typeof FilterContainer;
|
|
656
661
|
AdvancedContainer: typeof FilterAdvancedContainer;
|
|
662
|
+
AdvancedContent: typeof FilterAdvancedActionsContent;
|
|
657
663
|
AdvancedActionsContainer: typeof FilterAdvancedActionsContainer;
|
|
658
664
|
AdvancedButton: typeof FilterAdvancedButton;
|
|
659
665
|
Provider: typeof FilterProvider;
|
|
@@ -842,4 +848,31 @@ declare const Button: {
|
|
|
842
848
|
Button: typeof ButtonGroupButton;
|
|
843
849
|
};
|
|
844
850
|
|
|
845
|
-
|
|
851
|
+
interface CardRootProps {
|
|
852
|
+
children: React__default.ReactNode;
|
|
853
|
+
}
|
|
854
|
+
declare function CardRoot(props: CardRootProps): react_jsx_runtime.JSX.Element;
|
|
855
|
+
|
|
856
|
+
interface CardHeaderProps {
|
|
857
|
+
children: React__default.ReactNode;
|
|
858
|
+
}
|
|
859
|
+
declare function CardHeader(props: CardHeaderProps): react_jsx_runtime.JSX.Element;
|
|
860
|
+
|
|
861
|
+
interface CardTitleProps {
|
|
862
|
+
title: string;
|
|
863
|
+
}
|
|
864
|
+
declare function CardTitle(props: CardTitleProps): react_jsx_runtime.JSX.Element;
|
|
865
|
+
|
|
866
|
+
interface CardContentProps {
|
|
867
|
+
children: React.ReactNode;
|
|
868
|
+
}
|
|
869
|
+
declare function CardContent(props: CardContentProps): react_jsx_runtime.JSX.Element;
|
|
870
|
+
|
|
871
|
+
declare const Card: {
|
|
872
|
+
Root: typeof CardRoot;
|
|
873
|
+
Content: typeof CardContent;
|
|
874
|
+
Header: typeof CardHeader;
|
|
875
|
+
Title: typeof CardTitle;
|
|
876
|
+
};
|
|
877
|
+
|
|
878
|
+
export { AlterarLicenca, AlterarLicencaProps, AlterarSenha, AlterarSenhaProps, Avatar, Breadcrumbs, BreadcrumbsItem, BreadcrumbsProps, Button$1 as Button, ButtonContainer, Button as ButtonGroup, Card, 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 };
|