@konoma-development/react-components 0.0.12 → 0.0.14

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.
@@ -8,6 +8,7 @@ export interface TableColumn<DataType> {
8
8
  sorting?: '+' | '-' | undefined;
9
9
  sortKey?: string;
10
10
  filterKey?: string;
11
+ filterType?: 'filter' | 'fieldSearch';
11
12
  onClick?: () => void;
12
13
  allowResize?: boolean;
13
14
  filterable?: boolean;
package/dist/main.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { default as Checkbox } from './components/form/checkbox';
2
2
  import { default as CheckboxList } from './components/form/checkboxList';
3
- import { default as Form } from './components/form/form';
3
+ import { default as Form, ErrorContext } from './components/form/form';
4
4
  import { default as FormField } from './components/form/formField';
5
5
  import { default as Input } from './components/form/input';
6
6
  import { default as PhoneInput } from './components/form/phoneInput';
@@ -22,4 +22,4 @@ import { default as Modal } from './components/ui/modal';
22
22
  import { default as Tabs } from './components/ui/tabs';
23
23
  import { default as Tag } from './components/ui/tag';
24
24
  import * as validators from './components/form/validators';
25
- export { Button, Checkbox, CheckboxList, Classes, ColumnChooser, ColumnChooserEntry, FilterContext, Form, FormField, FormFieldProps, FormValue, Icon, Input, LoadingIndicator, Mask, Modal, Option, Pagination, PhoneInput, RadioButtonGroup, Select, Table, TableActionEntry, TableActions, TableColumn, Tabs, Tag, TagList, TextArea, validators, };
25
+ export { Button, Checkbox, CheckboxList, Classes, ColumnChooser, ColumnChooserEntry, ErrorContext, FilterContext, Form, FormField, FormFieldProps, FormValue, Icon, Input, LoadingIndicator, Mask, Modal, Option, Pagination, PhoneInput, RadioButtonGroup, Select, Table, TableActionEntry, TableActions, TableColumn, Tabs, Tag, TagList, TextArea, validators, };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@konoma-development/react-components",
3
3
  "packageManager": "yarn@4.6.0",
4
- "version": "0.0.12",
4
+ "version": "0.0.14",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },