Yarn

Results 17 issues of Yarn

I'm not absolutely sure that this is a safe change, but still, I thought it would be worth opening an issue for. This likely applies to Angular and Vue as...

type:enhancement
lang:css/scss/less
area:multiparser
lang:html

This behaviour might have changed from Kotlin JS/Legacy, but Kotlin JS/IR doesn't seem to keep information on fully qualified names at runtime (mentioned in the documentation [here](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/qualified-name.html), and there are...

Looking at `Gtk.Window` as an example, I believe that the `child` and `application` properties should be nullable, see: [get_child](https://docs.gtk.org/gtk4/method.Window.get_child.html)/[set_child](https://docs.gtk.org/gtk4/method.Window.set_child.html) and [get_application](https://docs.gtk.org/gtk4/method.Window.get_application.html)/[set_application](https://docs.gtk.org/gtk4/method.Window.set_application.html), where it explicitly states that `NULL` is a valid...

Hi, is there any interest in serializing values so that they are compatible with XML Schema types? There are at least two scenarios where I've noticed xmlutil not adhering to...

# Description Consider the following toy example: ```kt @Serializable data class User(val name: String, val shoppingCart: ShoppingCart) @Serializable(with = ShoppingCartSerializer::class) data class ShoppingCart(val items: MutableList) { val total: Double get()...

## Use-case I'm writing a multiplatform library using coroutines and one of the targets is JS. It is expected that the JS build of the library will be used from...

enhancement
js

Consider the following module: ``` [module/test] type = custom/script exec = echo "%{B#660000}this text has 27 characters" label-maxlen = 27 ``` It shows the following: ![2017-04-12-191719_111x29_scrot](https://cloud.githubusercontent.com/assets/8314616/24972905/e3d087e8-1fb4-11e7-95cb-44f5ea88de21.png) I believe the format...

bug