@ballistix.digital/react-components 0.4.106 → 0.4.108
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 +18 -2
- package/dist/index.esm.js +2294 -259
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2293 -257
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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;
|
|
@@ -122,7 +123,7 @@ declare const IconElement: FC<TProps$b>;
|
|
|
122
123
|
|
|
123
124
|
type TInputGroupFormProps = {
|
|
124
125
|
name: string;
|
|
125
|
-
htmlType: HTMLInputTypeAttribute;
|
|
126
|
+
htmlType: HTMLInputTypeAttribute | 'area';
|
|
126
127
|
label?: string | ReactNode;
|
|
127
128
|
description?: string;
|
|
128
129
|
placeholder?: string;
|
|
@@ -140,6 +141,7 @@ type TInputGroupFormProps = {
|
|
|
140
141
|
min?: number;
|
|
141
142
|
max?: number;
|
|
142
143
|
maxLength?: number;
|
|
144
|
+
rows?: number;
|
|
143
145
|
type: 'normal' | 'inset' | 'overlapping' | 'pill' | 'floored';
|
|
144
146
|
isValid?: boolean;
|
|
145
147
|
isDisabled?: boolean;
|
|
@@ -890,4 +892,18 @@ declare const base: {
|
|
|
890
892
|
};
|
|
891
893
|
type TDateMenuFormStyles = DeepPartial$1<typeof base>;
|
|
892
894
|
|
|
893
|
-
|
|
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, 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, CheckboxInputGroupForm as default };
|