Build
-
Feature: Support
bazel
build system. See #1032.
Proposed by Kostya Serebryany @kcc
If all goes well (pending), it should appear in the Bazel central repository.
It can be imported into your project using the following lines:MODULE.bazel
bazel_dep(name = "ftxui", version = "6.1.8")
BUILD.bazel
deps = [ // Depend on the whole library: "@ftxui//:ftxui", // Choose a specific submodule: "@ftxui//:component", "@ftxui//:dom", "@ftxui//:screen", ]
Component
- Bugfix: Fix a crash with ResizeableSplit. See #1023.
- Clamp screen size to terminal size.
- Disallow
ResizeableSplit
with negative size.
Dom
- Bugfix: Disallow specifying a negative size constraint. See #1023.