-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MINOR: Feature/show item paginated list (#294)
* add showElement method in BIMDataPagination component * adjust documentation * delete duplicate code
- Loading branch information
Showing
4 changed files
with
177 additions
and
20 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
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,72 @@ | ||
const basicPagination = [ | ||
"item 01", | ||
"item 02", | ||
"item 03", | ||
"item 04", | ||
"item 05", | ||
"item 06", | ||
"item 07", | ||
"item 08", | ||
"item 09", | ||
"item 10", | ||
"item 11", | ||
"item 12", | ||
]; | ||
|
||
const complexPagination = [ | ||
{ id: 1, text: "item 01" }, | ||
{ id: 2, text: "item 02" }, | ||
{ id: 3, text: "item 03" }, | ||
{ id: 4, text: "item 04" }, | ||
{ id: 5, text: "item 05" }, | ||
{ id: 6, text: "item 06" }, | ||
{ id: 7, text: "item 07" }, | ||
{ id: 8, text: "item 08" }, | ||
{ id: 9, text: "item 09" }, | ||
{ id: 10, text: "item 10" }, | ||
{ id: 11, text: "item 11" }, | ||
{ id: 12, text: "item 12" }, | ||
{ id: 13, text: "item 13" }, | ||
{ id: 14, text: "item 14" }, | ||
{ id: 15, text: "item 15" }, | ||
{ id: 16, text: "item 16" }, | ||
{ id: 17, text: "item 17" }, | ||
{ id: 18, text: "item 18" }, | ||
{ id: 19, text: "item 19" }, | ||
{ id: 20, text: "item 20" }, | ||
{ id: 21, text: "item 21" }, | ||
{ id: 22, text: "item 22" }, | ||
{ id: 23, text: "item 23" }, | ||
{ id: 24, text: "item 24" }, | ||
{ id: 25, text: "item 25" }, | ||
{ id: 26, text: "item 26" }, | ||
{ id: 27, text: "item 27" }, | ||
{ id: 28, text: "item 28" }, | ||
{ id: 29, text: "item 29" }, | ||
{ id: 30, text: "item 30" }, | ||
{ id: 31, text: "item 31" }, | ||
{ id: 32, text: "item 32" }, | ||
{ id: 33, text: "item 33" }, | ||
{ id: 34, text: "item 34" }, | ||
{ id: 35, text: "item 35" }, | ||
{ id: 36, text: "item 36" }, | ||
{ id: 37, text: "item 37" }, | ||
{ id: 38, text: "item 38" }, | ||
{ id: 39, text: "item 39" }, | ||
{ id: 40, text: "item 40" }, | ||
{ id: 41, text: "item 41" }, | ||
{ id: 42, text: "item 42" }, | ||
{ id: 43, text: "item 43" }, | ||
{ id: 44, text: "item 44" }, | ||
{ id: 45, text: "item 45" }, | ||
{ id: 46, text: "item 46" }, | ||
{ id: 47, text: "item 47" }, | ||
{ id: 48, text: "item 48" }, | ||
{ id: 49, text: "item 49" }, | ||
{ id: 50, text: "item 50" }, | ||
{ id: 51, text: "item 51" }, | ||
{ id: 52, text: "item 52" }, | ||
{ id: 53, text: "item 53" }, | ||
]; | ||
|
||
export { basicPagination, complexPagination }; |