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 +4 -4
- data/CHANGELOG.md +20 -0
- data/README.md +48 -9005
- data/VERSION +1 -1
- data/docs/examples/GLIMMER-DSL-LIBUI-ADVANCED-EXAMPLES.md +6265 -0
- data/docs/examples/GLIMMER-DSL-LIBUI-BASIC-EXAMPLES.md +2604 -0
- data/examples/paginated_refined_table.rb +11 -136
- data/glimmer-dsl-libui.gemspec +0 -0
- data/lib/glimmer/libui/custom_control/refined_table.rb +73 -34
- data/lib/glimmer/libui/custom_window.rb +11 -2
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: accf8dc47f4733c16186bb7a5a54fedc6aa104e9e4895ad665ddc9fa978ea77f
|
4
|
+
data.tar.gz: 5ad4c40013c34b392d9099bcb916f88c9b615256d9aa6245a1e612d7844276f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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)
|