Skip to content

Commit

Permalink
Form text
Browse files Browse the repository at this point in the history
  • Loading branch information
ianvexler committed Feb 14, 2024
1 parent b69ed34 commit ca8e188
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 6 deletions.
1 change: 1 addition & 0 deletions dist/components/form/Form.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ declare const Form: {
Feedback: import("react-bootstrap/esm/helpers").BsPrefixRefForwardingComponent<"div", import("react-bootstrap/esm/Feedback").FeedbackProps>;
};
Feedback: import("react-bootstrap/esm/helpers").BsPrefixRefForwardingComponent<"div", import("react-bootstrap/esm/Feedback").FeedbackProps>;
Text: import("react-bootstrap/esm/helpers").BsPrefixRefForwardingComponent<"small", import("react-bootstrap").FormTextProps>;
};
export default Form;
//# sourceMappingURL=Form.d.ts.map
2 changes: 1 addition & 1 deletion dist/components/form/Form.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.es.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.es.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22857,6 +22857,7 @@ Form$1.Check = FormCheck;
Form$1.RichText = FormRichText;
Form$1.DateTime = FormDateTime;
Form$1.Feedback = Feedback$1;
Form$1.Text = FormText$1;

var Title = function (_a) {
var text = _a.text, rest = __rest(_a, ["text"]);
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.min.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions src/components/form/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import FormLabel from './components/FormLabel';
import FormRichText from './components/FormRichText';
import FormDateTime from './components/FormDateTime';
import Feedback from 'react-bootstrap/esm/Feedback';
import { FormText } from 'react-bootstrap';

export interface FormProps extends React.HTMLProps<HTMLFormElement> {}

Expand All @@ -22,5 +23,6 @@ Form.Check = FormCheck;
Form.RichText = FormRichText;
Form.DateTime = FormDateTime;
Form.Feedback = Feedback;
Form.Text = FormText;

export default Form;

0 comments on commit ca8e188

Please sign in to comment.