-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
G
committed
Dec 11, 2023
1 parent
8351dbc
commit db12e1f
Showing
31 changed files
with
1,781 additions
and
481 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import { GFormField } from '../GForm/g-form'; | ||
import { MwSearchTableField } from '../MwSearchTable/mw-search-table'; | ||
import { GSearchTableField } from '../GSearchTable/g-search-table'; | ||
|
||
declare const GField: React.ForwardRefExoticComponent< | ||
(MwSearchTableField | GFormField) & React.RefAttributes<HTMLDivElement> | ||
(GSearchTableField | GFormField) & React.RefAttributes<HTMLDivElement> | ||
>; | ||
|
||
export default GField; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { GFormField } from '../GForm/g-form'; | ||
import { MwSearchTableField } from '../MwSearchTable/mw-search-table'; | ||
import { GSearchTableField } from '../GSearchTable/g-search-table'; | ||
|
||
export default function GField(_: GFormField | MwSearchTableField) { | ||
export default function GField(_: GFormField | GSearchTableField) { | ||
return null; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { GSearchTableField, GSearchTableProps } from './g-search-table'; | ||
|
||
export { GSearchTableField }; | ||
|
||
declare const GSearchTable: React.ForwardRefExoticComponent< | ||
GSearchTableProps & React.RefAttributes<HTMLDivElement> | ||
>; | ||
|
||
export default GSearchTable; |
Oops, something went wrong.