Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
ca25303
refactor(design-system): rework on SwipeableRow to include Dismiss, R…
rafaeltonholo Mar 11, 2026
8305af7
refactor(design-system): move SwipeDirectionAccessibilityAction to it…
rafaeltonholo Mar 12, 2026
e130472
refactor(design-system): move SwipeDirection to its own file
rafaeltonholo Mar 12, 2026
c935138
refactor(message-list): enhance swipeable row behavior with dynamic s…
rafaeltonholo Mar 12, 2026
489c7b7
fix(design-system): accessibility actions not triggering animation
rafaeltonholo Mar 18, 2026
d2a8c08
chore(ui-catalog): added missing accessibility actions for testing pu…
rafaeltonholo Mar 18, 2026
57b2620
refactor(ui-catalog): enhance SwipeableRowItems with dynamic threshol…
rafaeltonholo Mar 18, 2026
b285789
refactor(design-system): improve swipeable row gesture handling and s…
rafaeltonholo Mar 19, 2026
72c50a6
refactor(ui-catalog): enhance SwipeableRowItems layout and text overf…
rafaeltonholo Mar 19, 2026
e0e65b3
refactor(design-system): enhance SwipeableRow with animated content a…
rafaeltonholo Mar 19, 2026
8cac656
feat(design-system): add haptic feedback support to SwipeableRow inte…
rafaeltonholo Mar 19, 2026
8f63797
refactor(design-system): enhance SwipeableRow default animations and …
rafaeltonholo Mar 19, 2026
ba1b593
refactor(design-system): use `Dp` for `SwipeBehaviour` threshold
rafaeltonholo Mar 24, 2026
24aed2a
chore(design-system): shorten swipeable row accessibility descriptions
rafaeltonholo Mar 31, 2026
23182d7
refactor(design-system): simplify documentation in swipe molecule
rafaeltonholo Mar 31, 2026
2bbca23
refactor(design-system): split `SwipeBehaviour.Reveal` in `SwipeBehav…
rafaeltonholo Mar 31, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import net.thunderbird.ui.catalog.ui.page.molecule.CatalogMoleculePage.STATE
import net.thunderbird.ui.catalog.ui.page.molecule.CatalogMoleculePage.SWIPEABLE_ROW
import net.thunderbird.ui.catalog.ui.page.molecule.CatalogMoleculePage.TAB_ROW
import net.thunderbird.ui.catalog.ui.page.molecule.items.PullToRefresh
import net.thunderbird.ui.catalog.ui.page.molecule.items.SwipeableRowItems
import net.thunderbird.ui.catalog.ui.page.molecule.items.inputItems
import net.thunderbird.ui.catalog.ui.page.molecule.items.stateItems
import net.thunderbird.ui.catalog.ui.page.molecule.items.swipeableRowItems
import net.thunderbird.ui.catalog.ui.page.molecule.items.tabRowItems

@Composable
Expand All @@ -32,13 +32,13 @@ fun CatalogMoleculeContent(
INPUT -> inputItems()
STATE -> stateItems()
TAB_ROW -> tabRowItems()
SWIPEABLE_ROW -> swipeableRowItems()
else -> throw IllegalArgumentException("Unknown page: $it")
}
},
onRenderFullScreenPage = { page ->
when (page) {
PULL_TO_REFRESH -> PullToRefresh()
SWIPEABLE_ROW -> SwipeableRowItems()
else -> throw IllegalArgumentException("Unknown page: $page")
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ enum class CatalogMoleculePage(
STATE("States"),
PULL_TO_REFRESH("Pull to refresh", isFullScreen = true),
TAB_ROW("Tab Rows"),
SWIPEABLE_ROW("Swipeable Rows"),
SWIPEABLE_ROW("Swipeable Rows", isFullScreen = true),
;

override fun toString(): String {
Expand Down
Loading
Loading