-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor tweaking, changelog, site update
- Loading branch information
Showing
11 changed files
with
28 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 3 additions & 4 deletions
7
...io/laminext/syntax/ObservableSyntax.scala → ...ala/io/laminext/syntax/SourceSyntax.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
package io.laminext.syntax | ||
|
||
import com.raquo.laminar.api.L._ | ||
import io.laminext.core.ops.source.SourceOfOptionOps | ||
import io.laminext.core.ops.source.SourceOps | ||
|
||
trait ObservableSyntax { | ||
trait SourceSyntax { | ||
|
||
implicit def syntaxObservable[A]( | ||
s: Observable[A] | ||
implicit def syntaxSource[A]( | ||
s: Source[A] | ||
): SourceOps[A] = new SourceOps[A](s) | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# v0.13.8 release | ||
|
||
* 08.07.2021 | ||
|
||
* API: new: `mutationObserver` | ||
* Fix: stored vars now check if local storage is accessible | ||
* API: observable extension methods are now source extension methods | ||
* API: now accepting source and sink where observable and observer where expected before |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters