glimmer-dsl-libui 0.5.18 → 0.5.19
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +32 -8876
- 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/glimmer-dsl-libui.gemspec +0 -0
- data/lib/glimmer/libui/custom_control/refined_table.rb +53 -34
- 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,12 @@
|
|
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
|
+
|
3
10
|
## 0.5.18
|
4
11
|
|
5
12
|
- `CustomWindow.launch(...)` returns the launched application/custom-window (e.g. `PaginatedRefinedTable.launch` returns the `PaginatedRefinedTable` instance that was automatically constructed)
|