glimmer-dsl-web 0.6.0 → 0.6.2

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: b2c800cf33832acb3ab52d13d6ffa1db466d8c1c017bde29ce120c92c8e597e9
4
- data.tar.gz: 81e200ca9d1c20c62ed5a5b3e900b9723c08c54933d93e35c7d7ac114cda480f
3
+ metadata.gz: eecb0321e7308184ed4fb10bb9811c76a5e118cd7157e9956c29427e15717573
4
+ data.tar.gz: 61561e5ca787eb1bda14e6d2cb62fcc0b312900b0ecd1b34fcdaf16d9b9b58da
5
5
  SHA512:
6
- metadata.gz: d86f6012cf574205d499aad0a684e33793ce547740917c186580cc7295da0c7b8e625ae20473e6cd49edb87fc8a7abe4d109ab2f98cbc52e2a7208608a76c3bd
7
- data.tar.gz: 9269348151f2ad4007a1dccae80ff9ae2565af008c70285a6e0ffbe6d22faa4878b414d287556621d8ced0b23e3424980af25ec3027f3f8b39633c288ceb4e55
6
+ metadata.gz: 1a19b667b26371cce71670e8cb081130802712f125cab5be871f0b28bc6e8f4ee5ec391ce6b67203d52efe5f81da928f21ac0831a6484d2617c64e5ad9d0da1c
7
+ data.tar.gz: 751743fa39296af6e62c0af64b3a54a9b40ecb74cabc8192f77f539d3e196112522e5efd8a7fa5eb61a9fe86894d0c82128294bf6ab37a4f2efb39e2d364b255
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.6.2
4
+
5
+ - Support specifying default slot in a Component with slots (e.g. `default_slot :some_slot`) to allow consumers to insert content into default slot by adding content directly under consumed component instead of opening a block with slot name explicitly
6
+ - Support `:markup_root_slot` as a default slot that is always available to insert content into the component markup root element in case another element is specified as the default slot.
7
+ - Hello, Component Listeners (Default Slot)! Sample (has simpler code than Hello, Component Listeners! due to specifying a default slot): `require 'glimmer-dsl-web/samples/hello/hello_component_listeners_default_slot'`
8
+ - Fix opacity value for the Todo MVC sample's toggle all checkbox (make it `0` instead of `0px`)
9
+
10
+ ## 0.6.1
11
+
12
+ - Hello, Component Listeners! Sample: `require 'glimmer-dsl-web/samples/hello/hello_component_listeners'`
13
+ - Upgrade to glimmer-dsl-css 1.5.2 to fix issue with `%` Number operator and support `rem`, `Q`, `pt`, `pc`, `ch`, `ex`, `vh`, `vw`, `vmin`, `vmax` Number methods
14
+ - Refactor Todo MVC sample
15
+ - Fix issue with components that have no events declared when nesting slot content within them
16
+
3
17
  ## 0.6.0
4
18
 
5
19
  - Support Component Custom Event Listeners (declare inside Component with `event :eventname` or `events :event1, :event2, ...` and then listen inside consumer code by adding `on_customeventname do; ...; end` listener inside content block of a consumed Glimmer Web Component)