Skip to content

Releases: composablehorizons/compose-unstyled

1.49.6

11 Jan 10:35

Choose a tag to compare

Added

  • ScrollAreaState now exposes a new isScrollInProgress property

Fixed

  • Scrollbars Thumb HideWhileIdle hides while scrolling #114

1.49.5

03 Jan 14:15

Choose a tag to compare

Added

  • Add onTextLayout parameter to Text (#185)
  • Begin of prefixing all components with Unstyled- prefix, so it's simpler to differenciate with other design systems components.

Fixed

  • Dialog's enter animations now work correctly on iOS.

1.49.4

24 Dec 20:13

Choose a tag to compare

Added

  • Add autoSize parameter to Text

Fixed

  • Fix a bug where ScrollArea would trigger overscroll effect to the wrong axis
  • Remove TextField placeholder on any character entered including space
  • Change token names of PlatformTheme so that they do not override user's
  • Fix inverted colors for RadioGroup
  • Fix a Slider bug where Thumb would immediately jump while dragged

Changed

  • Deprecate ScrollArea with overscroll effect parameter

1.49.3

26 Nov 11:51

Choose a tag to compare

Added

Allow customization of Platform Themes (b2c2a26)

Fixed

  • Tint TextField's contents according to LocalContentColor (1b3fb2b)
  • Fix a crash when updating BottomSheet's detents (7961afd)
  • Fix bug where Modifier.onFocusChanged wouldn't work with TextField (e3f0bd6)

1.49.2

19 Nov 09:40

Choose a tag to compare

Fix some issues with the publishing plugin

1.49.1

19 Nov 09:15

Choose a tag to compare

  • Move Text & TextField to shared module, so that it can be accessed by Platform Themes.
  • Give unstyled module a unique android namespace so that it can be used by Gradle 9.0

1.49.0

17 Nov 01:42

Choose a tag to compare

Added

  • Introduce Platform Themes. Platform Themes provide a native look and feel depending on the platform you are running on, such as platform fonts, text sizes, emojis on Web, touch indications, and interactive sizing for controls.
  • Add option to animate ColoredIndication's color changes
  • Add getter to MutableThemeProperties

Changed

  • Updated demos to use Platform Theme instead of hardcoded styles

1.48.3

11 Nov 06:23

Choose a tag to compare

Fixed

  • Ensure modal is added before monitoring its state (fixes #151)

1.48.2

11 Nov 01:11

Choose a tag to compare

Add publishing to internal-shared

Fixes: https://github.com/composablehorizons/compose-unstyled/issues/156

1.48.1

09 Nov 09:13

Choose a tag to compare

This version splits the library into modules so that you can use only the APIs that your project needs.

All modules are now:

// 1-liner setup. Adds all Unstyled APIs
implementation("com.composables:composeunstyled:1.48.1")

// adds all component primitives
implementation("com.composables:composeunstyled-primitives:1.48.1")

// adds theming APIs
implementation("com.composables:composeunstyled-theming:1.48.1")

// core is now deprecated. it is an alias for `composeunstyled` and will go away in 2.0
implementation("com.composables:core:1.48.1")