@data-c/ui 0.1.58 → 0.1.60
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 +23 -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
|
@@ -13,7 +13,7 @@ import { GridActionsCellItemProps, GridColDef as GridColDef$1, DataGridProps, Gr
|
|
|
13
13
|
interface ButtonProps$2 extends ButtonProps$3 {
|
|
14
14
|
isLoading?: boolean;
|
|
15
15
|
}
|
|
16
|
-
declare const Button: (props: ButtonProps$2) => react_jsx_runtime.JSX.Element;
|
|
16
|
+
declare const Button$1: (props: ButtonProps$2) => react_jsx_runtime.JSX.Element;
|
|
17
17
|
|
|
18
18
|
declare function ButtonContainer(props: StackProps): react_jsx_runtime.JSX.Element;
|
|
19
19
|
|
|
@@ -820,4 +820,25 @@ declare const List: {
|
|
|
820
820
|
Close: typeof PopoverClose;
|
|
821
821
|
};
|
|
822
822
|
|
|
823
|
-
|
|
823
|
+
type ButtonGroupButtonProps = {
|
|
824
|
+
value?: string | number;
|
|
825
|
+
children: string;
|
|
826
|
+
isLoading?: boolean;
|
|
827
|
+
} & Omit<ButtonProps$3, 'children'>;
|
|
828
|
+
declare function ButtonGroupButton(props: ButtonGroupButtonProps): react_jsx_runtime.JSX.Element;
|
|
829
|
+
|
|
830
|
+
interface ButtonGroupRootProps {
|
|
831
|
+
onChange?: (value: string | number) => void;
|
|
832
|
+
value?: string | number;
|
|
833
|
+
isLoading?: boolean;
|
|
834
|
+
disableMemory?: boolean;
|
|
835
|
+
children: React__default.ReactElement<ButtonGroupButtonProps> | React__default.ReactElement<ButtonGroupButtonProps>[];
|
|
836
|
+
}
|
|
837
|
+
declare function ButtonGroupRoot(props: ButtonGroupRootProps): react_jsx_runtime.JSX.Element;
|
|
838
|
+
|
|
839
|
+
declare const Button: {
|
|
840
|
+
Root: typeof ButtonGroupRoot;
|
|
841
|
+
Button: typeof ButtonGroupButton;
|
|
842
|
+
};
|
|
843
|
+
|
|
844
|
+
export { AlterarLicenca, AlterarLicencaProps, AlterarSenha, AlterarSenhaProps, Avatar, Breadcrumbs, BreadcrumbsItem, BreadcrumbsProps, Button$1 as Button, ButtonContainer, Button as ButtonGroup, 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 };
|