Skip to content

Commit

Permalink
Extract from e7f5b18cd010e888a0be191cf1bd41334a7fb9d6
Browse files Browse the repository at this point in the history
  • Loading branch information
akeneo committed May 13, 2024
1 parent f599432 commit b1ac4fc
Show file tree
Hide file tree
Showing 17 changed files with 171 additions and 12 deletions.
5 changes: 1 addition & 4 deletions lib/components/Input/DateInput/DateInput.js

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

2 changes: 1 addition & 1 deletion lib/components/Input/DateInput/DateInput.js.map

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

4 changes: 4 additions & 0 deletions lib/components/Input/TableInput/TableInput.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ declare const TableInput: {
highlighted?: boolean | undefined;
inError?: boolean | undefined;
}) => React.JSX.Element;
Date: ({ children, value, ...rest }: Omit<Override<React.InputHTMLAttributes<HTMLInputElement>, import("../common/InputProps").InputProps<string>>, "highlighted" | "inError"> & {
highlighted?: boolean | undefined;
inError?: boolean | undefined;
}) => React.JSX.Element;
Number: ({ children, value, ...rest }: Omit<Override<React.InputHTMLAttributes<HTMLInputElement>, import("../common/InputProps").InputProps<string>>, "highlighted" | "inError"> & {
highlighted?: boolean | undefined;
inError?: boolean | undefined;
Expand Down
2 changes: 2 additions & 0 deletions lib/components/Input/TableInput/TableInput.js

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

2 changes: 1 addition & 1 deletion lib/components/Input/TableInput/TableInput.js.map

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react';
import { Override } from '../../../../shared';
import { InputProps } from '../../common/InputProps';
declare type TableInputDateProps = Override<Override<React.InputHTMLAttributes<HTMLInputElement>, InputProps<string>>, {
highlighted?: boolean;
inError?: boolean;
}>;
declare const TableInputDate: ({ children, value, ...rest }: TableInputDateProps) => React.JSX.Element;
export { TableInputDate };
54 changes: 54 additions & 0 deletions lib/components/Input/TableInput/TableInputDate/TableInputDate.js

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

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

1 change: 1 addition & 0 deletions lib/storybook/hooks/useFakeTableInput.js

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

Loading

0 comments on commit b1ac4fc

Please sign in to comment.