grafana / cuetsy

Experimental CUE->TypeScript exporter
Apache License 2.0
106 stars 8 forks source link

Fix enums defaults generation when we extending from a parent class #86

Closed spinillos closed 1 year ago

spinillos commented 1 year ago

Fixes enums case for: https://github.com/grafana/schematization-and-as-code-project/issues/56

We can set a default enum value to a field from a parent class using:

common.LegendDisplayMode & (*"list" | _|_)

The issue was using TopKind (_) but I couldn't make it work with that :(

spinillos commented 1 year ago

Closing in favor of: https://github.com/grafana/cuetsy/pull/87