@ballistix.digital/react-components 0.4.107 → 0.4.109

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 CHANGED
@@ -9,6 +9,7 @@ import { TPagePaginationNavigationStyles as TPagePaginationNavigationStyles$1 }
9
9
  export { createColumnHelper } from 'helpers/table';
10
10
  import { Option, SelectValue } from 'react-tailwindcss-select/dist/components/type';
11
11
  export { fromSelectMenuOptionToStringValue } from 'helpers/format';
12
+ import { FormikProps, FormikValues } from 'formik';
12
13
 
13
14
  declare const base$k: {
14
15
  loading: string;
@@ -891,4 +892,18 @@ declare const base: {
891
892
  };
892
893
  type TDateMenuFormStyles = DeepPartial$1<typeof base>;
893
894
 
894
- export { AvatarElement, BadgeElement, BreadcrumbsNavigation, ButtonElement, ButtonGroupElement, ContainerLayout, DateMenuForm, DividerLayout, DropdownElement, IconElement, InputGroupForm, ListContainerLayout, MediaObjectLayout, ModalOverlay, NotificationOverlay, PagePaginationNavigation, LayoutPanel as PanelLayout, PanelPaginationNavigation, SelectMenuForm, SlideOverOverlay, TButtonElementProps, TDateMenuFormProps, TDateMenuFormStyles, TInputGroupFormProps, TInputGroupStyles, TModalOverlayProps, TSelectMenuFormProps, TSelectMenuFormStyles, TTableListProps as TTableList2Props, TTableListProps$1 as TTableListProps, TTableListStyles, TabNavigation, TableColumnOptionsCustom, TableExcelExportCustom as TableExportCustom, TableList, TableList2, VerticalNavigation };
895
+ type Props = {
896
+ name: string;
897
+ form: FormikProps<FormikValues>;
898
+ options: {
899
+ title: string;
900
+ description: string;
901
+ value: string;
902
+ }[];
903
+ values: string[];
904
+ className?: string;
905
+ onChange?: (value: string) => void;
906
+ };
907
+ declare const CheckboxInputGroupForm: FC<Props>;
908
+
909
+ export { AvatarElement, BadgeElement, BreadcrumbsNavigation, ButtonElement, ButtonGroupElement, CheckboxInputGroupForm as CheckboxInputFormGroup, ContainerLayout, DateMenuForm, DividerLayout, DropdownElement, IconElement, InputGroupForm, ListContainerLayout, MediaObjectLayout, ModalOverlay, NotificationOverlay, PagePaginationNavigation, LayoutPanel as PanelLayout, PanelPaginationNavigation, SelectMenuForm, SlideOverOverlay, TButtonElementProps, TDateMenuFormProps, TDateMenuFormStyles, TInputGroupFormProps, TInputGroupStyles, TModalOverlayProps, TSelectMenuFormProps, TSelectMenuFormStyles, TTableListProps as TTableList2Props, TTableListProps$1 as TTableListProps, TTableListStyles, TabNavigation, TableColumnOptionsCustom, TableExcelExportCustom as TableExportCustom, TableList, TableList2, VerticalNavigation };