glimmer-dsl-libui 0.5.16 → 0.5.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 99ed9eb0a65da64d13717cf3f967ceadc36c4a0eed74fcbb385bd5d19c812db2
4
- data.tar.gz: f24060ff8ef38a93c1f3174d3e01102d61d2c0c8d8466b1e0d32fedc8972c9ea
3
+ metadata.gz: accf8dc47f4733c16186bb7a5a54fedc6aa104e9e4895ad665ddc9fa978ea77f
4
+ data.tar.gz: 5ad4c40013c34b392d9099bcb916f88c9b615256d9aa6245a1e612d7844276f3
5
5
  SHA512:
6
- metadata.gz: def5540396a5cffc5f1271d3bb2664d008cf26db2f88207dc75bc23fa9915a2badfa45db8778e59644c99cbb0753147361556de25d118acd51e2dc211abd4bc8
7
- data.tar.gz: 30ac47a92b4439aca5f3bc244514b400f810d8a9c855f64acf924544b448647d0d573d5218bc2e515ceb7bb469978b1e3e754d74d3ff86aea0b7d7247ee0e433
6
+ metadata.gz: cd440a256bc123a77fee6df5f73d7e0ed41cd70272ef75d6279cbe40d87ebfc3ebc262c0513b707dc532826d3cbc6778721fd5599f17aa6d8edf6917b681e4c8
7
+ data.tar.gz: 71d44088fa42f4bad46e8dfa6e208316c3186872a905116286a6b660bf613fea61eed671f89b8daa72fe705dda6a4b48347dd0a028e5d9468ee57ec7795e8a6b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.5.19
4
+
5
+ - New `refined_table` `filter_query` option to set initial filter
6
+ - Support `refined_table` `filter_query=(new_query)` method to enable setting a new `filter_query` programmatically after initial rendering, automatically filtering table content
7
+ - Support `refined_table` `model_array=(new_array)` method to enable setting a new `model_array` programmatically after initial rendering, automatically filtering by `filter_query` if any
8
+ - Rename `refined_table` `paginated_model_array` attribute to `refined_model_array` to represent its paginated filtered model array
9
+
10
+ ## 0.5.18
11
+
12
+ - `CustomWindow.launch(...)` returns the launched application/custom-window (e.g. `PaginatedRefinedTable.launch` returns the `PaginatedRefinedTable` instance that was automatically constructed)
13
+ - `CustomWindow.launched_application`/`CustomWindow.launched_custom_window` returns the launched application of a previous `.launch` call. This can be useful for rescuing errors and performing cleanup on the view object attributes after `.launch` returned.
14
+
15
+ ## 0.5.17
16
+
17
+ - Ensure disabling pagination buttons in `refined_table` if page is at beginning or end
18
+ - Add a "of #{page_count} pages" label after the text control in `refined_table` pagination area
19
+ - Page count ("of #{page_count} pages" label) can be shown by setting `visible_page_count: true` in `refined_table` options
20
+ - Correct initial `page` option passed to `refined_table` if out of range
21
+ - If `refined_table` `model_array` has no more than a single page of data, then hide pagination buttons
22
+
3
23
  ## 0.5.16
4
24
 
5
25
  - `refined_table` custom control that renders a `table` with filtering and pagination, thus being able to handle a large data set (e.g. 50,000)