* feat: lists and feeds sub title in feed column
* feat: lists setting panel
* fix: imports
* fix: avatar align in profile setting
* fix: styles in settings
* feat: lists setting table
* feat: list and listsubscription types
* feat: target model
* fix: target model types errors
* feat: seperate feed list and list list
* feat: edit lists
* feat: lists feeds management
* feat: new feed column
* feat: use feedId for single feed entries request
* fix: lists feedId
* feat: disable invalid functions for lists
* feat: discover target selector
* feat: list follow modal
* feat: feed icon text size
* feat: use list get api
* feat: lists edit action
* fix: radio color
* fix: radio click area
* feat: list external page
* feat: hide mark all action for list
* feat: lists unread
* fix: types
* fix: add tooltip for resize panel
Signed-off-by: Innei <i@innei.in>
* feat: add resize indicator
Signed-off-by: Innei <i@innei.in>
* fix: hide section when no lists
Signed-off-by: Innei <i@innei.in>
---------
Signed-off-by: Innei <i@innei.in>
Co-authored-by: Innei <i@innei.in>
* fix: The problem with the display of the right content area
When switching subscription types, the right side may briefly show the content of the previous type before displaying the current type's content after the data request is completed.
* fix:Regarding the style issue of selecting subscription types using the Tab and arrow keys
When a subscription type is selected with the mouse and then switched using the tab key or arrow keys, the background color of the subscription type does not change correctly, always remaining dark for the initially clicked type.
I noticed in the code that the style includes
focus-visible:bg-zinc-500/30 focus-visible:!outline-none
which suggests that the intended behavior is for the background color to change based on the currently focused subscription type when using the tab key or arrow keys.
However, the focus-visible style may not be applied correctly due to keyboard event listeners in the code.
To address this, I introduced a variable to track whether the switch is made via the tab key or arrow keys.
---------
Co-authored-by: Stephen Zhou <hi@hyoban.cc>
Co-authored-by: Innei <i@innei.in>