Skip to content

Commit b2386de

Browse files
committed
Build: Upgrade to Laminar v18.0.0-M2
1 parent 0a80b7a commit b2386de

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ On the build side, this project is a parser, a translator, and a generator. It p
1919

2020
## Status
2121

22-
WIP. For now, you can play with `0.1.0` if you really want to, but remember it's an early preview. You can see it in action in [Laminar demo](https://demo.laminar.dev/app/integrations/web-components/shoelace).
22+
WIP. For now, you can play with it if you really want to, but remember it's an early preview. You can see it in action in [Laminar demo](https://demo.laminar.dev/app/integrations/web-components/shoelace).
2323

2424
Top TODO-s (two of many):
2525

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "laminar-shoelace-components",
2+
"name": "test-setup",
33
"private": true,
4-
"version": "0.1.0",
4+
"version": "0.0.1",
55
"type": "module",
66
"devDependencies": {
77
"@shoelace-style/shoelace": "~2.11.2"

project/Versions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ object Versions {
22

33
val Scala_3 = "3.3.7"
44

5-
val Laminar = "18.0.0-M1"
5+
val Laminar = "18.0.0-M2"
66

77
//val ScalaJsStubs = "1.1.0"
88

src/main/scala/com/raquo/laminar/shoelace/sl/CommonTypes.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ trait CommonTypes {
4444

4545
protected def boolProp(name: String): HtmlProp[Boolean] = L.htmlProp(name, None, Codec.booleanAsIs)
4646

47-
protected def asIsProp[V](name: String): HtmlProp[V] = L.htmlProp(name, None, Codec.asIsCodec[V]())
47+
protected def asIsProp[V](name: String): HtmlProp[V] = L.htmlProp(name, None, Codec.asIsCodec[V])
4848

4949
protected def boolAttr(name: String): HtmlAttr[Boolean] = {
5050
L.htmlAttr(name, Codec.booleanAsAttrPresence)

0 commit comments

Comments
 (0)