Christian Hausknecht

Results 23 issues of Christian Hausknecht
trafficstars

We should update 11ty version, as dependabot marks some issues related to 11ty.

documentation

The `ease-in` and `ease-out` classes are interchanged. We should fix this in order to get a smoother animation. We can burrow the correct values from some internal component's animation.

headless

- update to 2.0.x - evaluate KSP version (needed tweeks for 1.9 upgrade iirc)

good first issue

As time goes by the Kotlin coding conventions got stricter an now there is the convention for `PascalCase`Names: https://kotlinlang.org/docs/coding-conventions.html#source-file-names So we should follow this guideline!

#### Problem Until this PR, the `export` function was not safe to use: ```kotlin class Exporter(initialize: Exporter.() -> Unit) { lateinit var payload: T // this is bad and dangerous!...

api improvement
api breaking

#### Problem Currently the `export` function is not safe to use: ```kotlin class Exporter(initialize: Exporter.() -> Unit) { lateinit var payload: T // this is bad and dangerous! fun export(payload:...

api improvement
api breaking

Obviously fritz2 misses the following events in its listener definitions according to this [list](https://www.w3schools.com/jsref/dom_obj_event.asp): - animationend - animationiteration - animationstart - error - mousewheel - transitionend We should add those...

enhancement

#### Motivation Currently the support for validating sealed class hierachies is rather limited, as our provided mechanisms wont work as the following example shows: ```kotlin import dev.fritz2.core.Lens import dev.fritz2.core.Lenses import...

enhancement

> [!IMPORTANT] > During the work on this issue we found a different solution. So don't be confused, that there is no `GetterLens` at all. Refer to the description of...

enhancement

In addition to the problem described in #874 there arises another problem with validation in sealed class hiearchies: Using a `ValidatingStore` managing such types! Consider the example hierarchy from #874...

enhancement