File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -6,16 +6,16 @@ By [`@jimmynguyen1308`](https://github.com/jimmynguyen1308)
66
77## Example 1
88
9- Click [ here] ( example1.tsx ) to see code
9+ Click [ here] ( example1.tsx ) to see code & instructions
1010
1111### Screenshot
1212
1313![ screenshot-1] ( screenshot-example-1.png )
1414
1515## Example 2
1616
17- Click [ here] ( example2.tsx ) to see code
17+ Click [ here] ( example2.tsx ) to see code & instructions
1818
1919### Screenshot
2020
21- ![ screenshot-1 ] ( screenshot-example-2.png )
21+ ![ screenshot-2 ] ( screenshot-example-2.png )
Original file line number Diff line number Diff line change @@ -4,14 +4,17 @@ export type FilterTypes = (typeof filterType)[keyof typeof filterType]
44
55export type FilterConfig = {
66 params : {
7+ // Filter keywords
78 [ key : string ] : string
89 }
910}
1011
1112export type FilterOptions = {
13+ // Filter types based on parameters
1214 params : {
1315 [ key : string ] : FilterTypes
1416 }
17+ // Filter options (for "options"-typed filters)
1518 options ?: {
1619 [ key : string ] : Array < FilterValue >
1720 }
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export type TBodyProps = {
7575export type TableData = {
7676 // Table data
7777 tData : Array < CellData >
78- // Rendered elements
78+ // Customized elements for table cells based on the column types
7979 element ?: {
8080 [ key : string ] : QRL < ( record : CellData , param : string ) => JSXOutput >
8181 }
You can’t perform that action at this time.
0 commit comments