-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatically handle too large payloads
- Loading branch information
Adrian Salceanu
committed
Aug 30, 2024
1 parent
09915f1
commit 6dff1f2
Showing
4 changed files
with
68 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "StippleUI" | ||
uuid = "a3c5d34a-b254-4859-a8fa-b86abb7e84a3" | ||
authors = ["Adrian Salceanu <[email protected]>"] | ||
version = "0.23.4" | ||
version = "0.23.3" | ||
|
||
[deps] | ||
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581" | ||
|
@@ -25,7 +25,7 @@ Dates = "1.6" | |
Genie = "5.30.4" | ||
OrderedCollections = "1" | ||
PrecompileTools = "1" | ||
Stipple = "0.28.13" | ||
Stipple = "0.28.14" | ||
Tables = "1" | ||
julia = "1.6" | ||
|
||
|
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,7 +1,13 @@ | ||
table(:dt, | ||
paginationsync = Symbol("dt.pagination"), | ||
@on("request", :request), | ||
table(:dt1, | ||
paginationsync = Symbol("dt1.pagination"), | ||
@on("request", :paginate_dt1), | ||
loading = :loading, | ||
filter = Symbol("dt.filter"), | ||
title = "Random data" | ||
filter = Symbol("dt1.filter"), | ||
title = "Random big data" | ||
) | ||
table(:dt2, | ||
paginationsync = Symbol("dt2.pagination"), | ||
loading = :loading, | ||
filter = Symbol("dt2.filter"), | ||
title = "Random small data" | ||
) |
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