glimmer-dsl-web 0.0.4 → 0.0.6

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: 64730435caff848fd16bfad099963c9c3d6298da78af51bb0bbcbd9c41ed5ca9
4
- data.tar.gz: 80cb8d417c40726210eab103ace178016c9595b2d123f931ab9dd2e6469e37ac
3
+ metadata.gz: 6d0e231339d0d3cd0a330fce53e852109df1b4b7b306194cff98e8e2eecbbd39
4
+ data.tar.gz: 384766d64c13a9724402021ea1ce47fae393bf66ccb4c56011a6e14e4c3fdefd
5
5
  SHA512:
6
- metadata.gz: 4964424f7ccc8b35257d5c28b28749f8ee9fcc0be889d498c17ff3a81faac173fc9d3ae2d1d4a0818a0af7685a3e88dd2885b4733cc213995a54c7d76a6f3443
7
- data.tar.gz: 4d9cb434aa3d62053f98351ec38c821198f2426cdc00503d6a0f2eefd402377a4158f80a504942e966df2c95f7b2ee1644bea199c1f63011fe0c719e9cb27628
6
+ metadata.gz: 1d127d5d4b7eed73f60940b8c669593fcace051c6eccd6a5e80bc9d759aedecec922ba2b701341b9fc043781d7d2e4d0e371cc967dd782f4c3ed228d7b68c748
7
+ data.tar.gz: 9bb14fe78d3d4d6b7709429132c7b00bedb12d1183adcead609f88545b199174e7dda788241e41db63732551650064d77ec8794d3360c9c08c4c3719397a02a7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.0.6
4
+
5
+ - Support attribute unidirectional/bidirectional data-binding
6
+ - Support `select` element (it was blocked by a built-in Ruby method)
7
+ - Handle case of `:parent` selector being invalid, defaulting to `body`.
8
+ - Remove pure-struct gem dependency as the latest Opal fixed the implementation of Struct
9
+ - New Hello, Data-Binding! Sample: `require 'glimmer-dsl-web/samples/hello/hello_data_binding'`
10
+
11
+ ## 0.0.5
12
+
13
+ - Support `p` element as it was overriden by Ruby's `p` method.
14
+ - Update listener syntax to be the original HTML event name (e.g. `onclick`) without being underscored to keep the transition to the Glimmer GUI DSL simple (e.g. `onclick` not `on_click`)
15
+ - Wrap listener `event` argument with `Glimmer::Web::Event` object, which proxies calls to JS event when needed
16
+ - Rename Hello Button! Sample to Hello, Form! Sample: `require 'glimmer-dsl-web/samples/hello/hello_form'`
17
+ - Update Hello, Form! Sample to display browser native validation errors and have automatic focus support on the name field
18
+ - Event listeners do not call `prevent_default` by default anymore, leaving it to the consumer of the library to decide
19
+ - New Hello, Button! Sample (replacing older one): `require 'glimmer-dsl-web/samples/hello/hello_button'`
20
+
3
21
  ## 0.0.4
4
22
 
5
23
  - Support nesting attributes/properties under element (e.g. `input { value 'something'; dir 'rtl' }`)