Skip to content

Commit 56bbf46

Browse files
feat(TanstackForm): export multiple input type to be used in projects (#974)
1 parent aff1aca commit 56bbf46

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
export { type Checkbox as _Checkbox } from './checkbox.js';
2+
export { type ColorPicker as _ColorPicker } from './color_picker.js';
3+
export { type Input as _Input } from './input.js';
4+
export { type NumericInput as _NumericInput } from './numeric_input.js';
5+
export { type ResetButton as _ResetButton } from './reset_button.js';
6+
export { type Select as _Select } from './select.js';
7+
export { type SubmitButton as _SubmitButton } from './submit_button.js';
8+
export { type Switch as _Switch } from './switch.js';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { type Section as _Section } from './Section.js';

src/components/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ export * from './root-layout/index.js';
1414
export * from './split_pane/index.js';
1515
export * from './table/index.js';
1616
export * from './toolbar/index.js';
17-
export * from './form/context/use_ts_form.js';
1817
export * from './form/components/field_groups/index.js';
1918
export * from './form/components/input_groups/index.js';
19+
export * from './form/components/input/index.js';
20+
export * from './form/components/layout/index.js';
21+
export * from './form/context/use_ts_form.js';
2022
export * from './activity_bar/index.js';
2123
export * from './activity_panel/index.js';
2224
export * from './utils/index.js';

0 commit comments

Comments
 (0)