You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21-3Lines changed: 21 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
## [Unreleased]
9
9
10
10
### Added
11
-
- Split the primitives into modules. You can now pick and add only the primitives that you need instead of being forced to add the entire API in your codebase.
12
-
- Introduced the following new modules: `composeunstyled-escape-handler`, `composeunstyled-build-modifier`
11
+
12
+
- Split the primitives into modules. You can now pick and choose only the APIs that you want to use
13
+
instead of being forced to add the entire API in your codebase.
14
+
- Introduced the following new modules: `composeunstyled-escape-handler`,
15
+
`composeunstyled-build-modifier`
16
+
17
+
### Removed
18
+
19
+
- All deprecated APIs are now removed. If you have breaking changes moving to this version,
20
+
downgrade to the latest 1.x.x version and use `ReplaceWith()` to smoothly migrate to the latest
21
+
APIs.
22
+
- Removed any `com.composables.core` reference.
23
+
24
+
### Changed
25
+
26
+
- Decoupled theming from primitives. Primitives used to be themable using `LocalContentColor` and
27
+
`LocalTextStyle`. This was problematic as you could not easily style your primitives using a
28
+
different theming API (such as Material Compose). Because of this, any kind of theming is removed,
29
+
and the users are responsible for choosing the theming API of their choice.
13
30
14
31
## [1.49.9] - 2025-04-24
15
32
@@ -22,7 +39,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
39
23
40
### Added
24
41
25
-
- Add new `ScrollArea` component in the `com.composeunstyled` package. Old packages will be removed in 2.0.
42
+
- Add new `ScrollArea` component in the `com.composeunstyled` package. Old packages will be removed
0 commit comments