Timothy Z.
91a92a0a32
rename(StreamsList): ref name
2024-12-23 17:24:29 +02:00
Timothy Z.
87a07f28db
fix(StreamsList): streams-container scroll position
2024-12-23 17:21:06 +02:00
Alexandru Branza
30b7588236
Fix Poster Sharpness
...
Chrome (on Windows only) was showing the posters with high sharpness, this made it hard to read text on some posters (including the title), this one css style seems to fix it, and I didn't notice it impacting other cases yet.
2024-12-23 14:26:51 +02:00
Tim
d589b67f85
feat(Addons): make addons actions one click
2024-12-21 23:14:48 +01:00
Timothy Z.
fbebd9bbd4
refactor(Library): use rem instead of px
2024-12-21 23:14:49 +02:00
Timothy Z.
7c23ab5585
refactor(HorizontalNavbar): use rem & use vars
2024-12-21 23:14:37 +02:00
Timothy Z.
c49ae8d595
refactor(MetaDetails): use rem instead of px
2024-12-21 23:14:12 +02:00
Timothy Z.
3d29fefa7c
refactor(copyright): update copyright info
2024-12-21 23:10:16 +02:00
Timothy Z.
dab4205988
refactor(app styles): env vars changes
2024-12-21 22:57:55 +02:00
Timothy Z.
561896b611
remove(SearchBar): remove fixed width
...
- .search-container
2024-12-21 22:39:37 +02:00
Timothy Z.
9c2b9da9bf
refactor(app toasts): styles
2024-12-21 22:39:07 +02:00
Timothy Z.
72d9a6b36f
fix(app): styles for the bottom-overlay-size
...
- use rem instead of px
- make the bottom-overlay-size adjustments
2024-12-21 22:35:42 +02:00
Timothy Z.
a8609da7da
refactor(MetaDetails): styles + performance
...
- use useMemo for the bg render check
2024-12-21 22:26:33 +02:00
IEduStu
9ca41aa8c0
feat: improve mobile design
2024-12-21 22:18:29 +02:00
Timothy Z.
96ceafa458
remove(app styles): variable which was repeated
...
- var(--selectable-inputs-assumed-height) removed in favor of reusing
var(--top-overlay-size)
- fixed the bottom overlay size
2024-12-21 22:11:13 +02:00
Timothy Z.
fb1a043e1d
refactor(MetaDetails): use rem instead
...
- remove unused nav-bar-size declaration
2024-12-21 21:57:47 +02:00
Timothy Z.
ef153fab4b
refactor(Discover): remove inline var
2024-12-21 21:56:01 +02:00
Timothy Z.
d29375c31b
refactor(Discover): use global vars
2024-12-21 21:55:40 +02:00
Timothy Z.
d7a4deadaa
refactor(Addons): use global vars
2024-12-21 21:55:26 +02:00
Timothy Z.
3a67df5791
refactor(app): add vars used across the app
2024-12-21 21:55:11 +02:00
Timothy Z.
896950cff0
refactor(Board): styles
...
- removed use of px
2024-12-21 21:46:45 +02:00
Timothy Z.
d7776f6d98
refactor(Addons): styles
...
- removed use of px
- creates less native variables
-removed unnecessary vars
2024-12-21 21:44:00 +02:00
Timothy Z.
dd8791d589
refactor(StreamingServerWarning): styles
...
- removed the use of px values since these might be problematic on some devices
- sticking to rem as the best way of defining sizes
- reusing the global variable approach according screen sizes
- added spacing
- improved border-radius handling
2024-12-21 21:24:39 +02:00
Timothy Z.
39cb89b0b0
refactor: update the copyrights (1)
2024-12-21 20:56:25 +02:00
Timothy Z.
77657929e8
refactor(HorizontalNavbar): add missing space
2024-12-21 20:55:37 +02:00
Timothy Z.
4f4b46c9f1
refactor(MainNavbars): use less variables
...
this ensures we utilize built in less style variables at the top of the file to avoid inline variable declarations
2024-12-21 20:53:36 +02:00
Timothy Z.
8e4fcc1a6e
fix: image was not visible on some iPads
2024-12-21 18:02:29 +02:00
Timothy Z.
055ac1d873
remove: webkit properties on button
...
touch-callout is not supported well and might cause problems, clearly written not to use in production;
highlight color not needed since we use it on global html
2024-12-21 15:41:27 +02:00
Timothy Z.
45ed5254ea
add: calculated-bottom-safe-inset
...
this will allow us to reuse in the app without importing globals file
2024-12-21 15:40:35 +02:00
Timothy Z.
ec570b91f1
refactor(styles): app styles.less
2024-12-21 15:30:07 +02:00
IEduStu
e03aba766a
feat: improve mobile design
2024-12-21 15:21:26 +02:00
Timothy Z.
da22bc090a
fix: modal image was not visible on some macbooks
2024-12-21 15:18:03 +02:00
Tim
d1583a6f4a
Update src/routes/Player/Player.js
...
Co-authored-by: Timothy Z. <timothy@stremio.com>
2024-12-20 20:26:48 +01:00
Tim
b9d6e01256
fix(Player): layout issue with audio menu
2024-12-20 20:24:51 +01:00
Tim
caeacf1bc1
Merge branch 'refactor/player-audio-menu' of https://github.com/Stremio/stremio-web into refactor/player-audio-menu
2024-12-20 20:23:26 +01:00
Tim
57aac8a27a
fix(Player): audio menu open state
2024-12-20 20:18:17 +01:00
Timothy Z.
08fdf19677
Merge branch 'development' into refactor/player-audio-menu
2024-12-20 19:37:01 +02:00
Timothy Z.
04f579eab5
Merge pull request #761 from Stremio/fix/streaming-server-url-item-styles
...
fix: streaming server url AddItem styles
2024-12-20 12:10:45 +02:00
Timothy Z.
07412f0b7e
fix: mobile additem styles
2024-12-20 12:00:51 +02:00
Abhishek Panwar
082df3a253
Fix: Correct URL Encoding in SearchBar Component
...
Changes Made:
Used encodeURIComponent in the SearchBar component to ensure special characters and spaces in search queries are correctly encoded.
Example:
Before: Searching Alexa & Katie could break the query, returning incomplete results.
After: The query is now encoded as Alexa%20%26%20Katie, ensuring accurate results.
2024-12-20 02:01:32 +05:30
Timothy Z.
befc1d6eec
fix: streaming server url item styles
2024-12-19 21:23:56 +02:00
Timothy Z.
379bd1dc88
Merge branch 'development' into feat/player-side-drawer
2024-12-19 11:44:20 +02:00
Timothy Z.
8a7e07f833
refactor: add back the gap to the placeholder
2024-12-18 17:36:17 +02:00
Timothy Z.
f9fb161292
refactor: align mobile view size with real addon
2024-12-18 17:34:19 +02:00
Timothy Z.
fbb9c45460
fix: copyright comment
2024-12-18 17:15:43 +02:00
Timothy Z.
4b22bda09c
feat: addon placeholder
2024-12-18 17:07:19 +02:00
Timothy Z.
1b997dfb83
Merge branch 'development' into feat/player-side-drawer
2024-12-18 12:21:21 +02:00
Timothy Z.
1d9f0fcb15
fix: toats outer glow problem with overflow
2024-12-18 12:00:19 +02:00
Timothy Z.
5249d1855f
refactor(SideDrawerButton): styles
2024-12-18 11:35:19 +02:00
Timothy Z.
f1cb4c145a
feat: add copyright + button mobile styles
2024-12-18 11:30:01 +02:00
Tim
609e407914
fix(Player): hide side drawer button when overlay hidden
2024-12-18 10:24:01 +01:00
Tim
c45cc8afe2
fix(Player): remove side-drawer-layer from overlayHidden
2024-12-18 10:22:15 +01:00
Timothy Z.
429dfc2f29
refactor: use cubic bezier easing
2024-12-18 10:53:20 +02:00
Tim
f6ed54f2f9
feat: add transition to side drawer
2024-12-18 09:38:38 +01:00
Tim
f9cb1a5fd2
refactor(Player): make SideDrawer act like a menu
2024-12-18 09:34:12 +01:00
Timothy Z.
d353305428
remove: image on mobile landscape
2024-12-17 16:56:20 +02:00
Timothy Z.
7875e4ba99
fix: modal image sizing
2024-12-17 16:44:31 +02:00
Timothy Z.
99921c0db8
remove: uneccesary flex declaration
2024-12-17 15:33:46 +02:00
Timothy Z.
c2a4fb87bd
fix: rename old class to align to new impl
2024-12-17 15:32:45 +02:00
Timothy Z.
d9a9fb2d4f
fix: styles on event modal
2024-12-17 15:20:26 +02:00
Timothy Z.
72b7a370fc
feat: rewrite sidedrawer to act like a menu
2024-12-16 19:25:31 +02:00
Timothy Z.
1555e05d6b
(revert): removal of useeffect | sidedrawer states
2024-12-16 17:08:23 +02:00
Timothy Z.
9b4e3e83b1
remove: unused prop
2024-12-16 16:38:24 +02:00
Timothy Z.
f8d9d0d838
fix(info container): height in landscape mode
2024-12-16 16:37:10 +02:00
Timothy Z.
297b8f172d
refactor: keep the DOM organised
2024-12-16 16:32:03 +02:00
Tim
3dc0e37e02
Merge pull request #748 from Stremio/refactor/remove-addons-button-horizontal-navbar
...
refactor: remove addons button horizontal navbar
2024-12-16 14:01:32 +01:00
Timothy Z.
1788a95f24
fix: strange positioning on movies
2024-12-16 14:19:50 +02:00
Timothy Z.
dd53dcc4b3
Merge branch 'development' into feat/player-side-drawer
2024-12-16 14:14:15 +02:00
Tim
aba6c48281
fix(Calendar): hover only on pointer fine
2024-12-16 12:34:57 +01:00
Tim
85752239ea
Merge pull request #752 from Stremio/fix/color-input-styles
...
fix: colorInput component styles
2024-12-16 12:18:59 +01:00
Tim
d3b7482d2d
Merge pull request #754 from Stremio/fix/bottom-sheet-ipad-pro
...
fix(BottomSheet): was hidden on ipad pro in portait mode
2024-12-16 12:17:08 +01:00
Tim
16b43933a6
Merge pull request #753 from Stremio/fix/mutliselect-menu-height-settings
...
fix: use the default height set in the component
2024-12-16 12:16:44 +01:00
Tim
976992b28e
fix(BottomSheet): was hidden on ipad pro in portait mode
2024-12-16 12:10:29 +01:00
Tim
1117774794
Merge pull request #751 from Stremio/fix/buttons-mobile-expirience
...
fix: remove blue select box from the buttons
2024-12-16 12:06:34 +01:00
Timothy Z.
6b9be43671
fix: use the default height set in the component
...
MutliSelect
2024-12-16 13:05:29 +02:00
Timothy Z.
5f3a9204b9
fix: colorInput component styles
2024-12-16 13:00:09 +02:00
Timothy Z.
07570f99b6
fix: remove blue select box from the buttons
2024-12-16 12:40:03 +02:00
Timothy Z.
b45a99296e
fix: speed menu overflow issue
2024-12-16 12:31:03 +02:00
Tim
dbb1a79219
fix(TextInput): submit not triggering
2024-12-16 10:17:20 +01:00
Timothy Z.
678c755003
refactor: remove addons button horizontal navbar
2024-12-15 21:22:15 +02:00
Timothy Z.
b8a5e60374
refactor: button position moved to right
2024-12-13 16:33:43 +02:00
Timothy Z.
444152a09b
refactor: closer button logic and width on mobile
2024-12-13 13:30:59 +02:00
Timothy Z.
47464ceed0
feat: add close button
2024-12-13 13:06:57 +02:00
Timothy Z.
7a39c40a54
remove: unused var
2024-12-13 12:54:55 +02:00
Timothy Z.
5eb0c01536
fix: videos height
2024-12-12 19:19:24 +02:00
Timothy Z.
6c34c6fd61
fix: use flex instead of height attribute
2024-12-12 19:14:56 +02:00
Timothy Z.
10838315d8
fix: use dvw for width instead of %
2024-12-12 19:10:40 +02:00
Timothy Z.
f97b5f1d69
refactor: import hooks on top of the file
2024-12-12 18:51:33 +02:00
Timothy Z.
a0be48bf7e
Merge branch 'development' into feat/player-side-drawer
2024-12-12 18:47:10 +02:00
Timothy Z.
73f685621e
refactor: use padding instead of margin
2024-12-12 18:42:29 +02:00
Timothy Z.
e23b761468
refactor(RadioButton): remove margin
2024-12-12 18:38:31 +02:00
Timothy Z.
e92d9ca0d9
refactor (URLsmanager): styles
2024-12-12 15:26:50 +02:00
Timothy Z.
7f6204e57d
Merge branch 'development' into feat/player-side-drawer
2024-12-12 14:02:36 +02:00
Tim
cbfd920caa
Merge pull request #742 from Stremio/fix/multiselect-menu-height
...
fix: multiselectMenu and Multiselect height
2024-12-12 12:28:31 +01:00
Timothy Z.
c2dc381776
fix: overflow on the container filter addons
2024-12-12 13:20:44 +02:00
Tim
e6214be768
Merge pull request #743 from Stremio/fix/calendar-keyboard-nav
...
fix(Calendar): prevent keyboard nav on cell items
2024-12-12 12:16:11 +01:00
Timothy Z.
303d26e49b
fix: library bug
2024-12-12 13:15:24 +02:00
Tim
37310aadef
Merge pull request #740 from Stremio/fix/nav-menu-height
...
fix: nav-menu height
2024-12-12 12:06:57 +01:00
Timothy Z.
ec23f6764e
Merge branch 'development' into feat/player-side-drawer
2024-12-12 12:39:41 +02:00
Tim
f0775cc5b7
Merge pull request #736 from Stremio/fix/player-mark-video-as-watched
...
Fix player mark video as watched
2024-12-12 11:01:51 +01:00
Tim
937366cb31
fix(Settings): reset server url only if it was selected after deleting
2024-12-11 18:36:46 +01:00
Tim
0baec6535b
fix: tooltips style position issue
2024-12-11 17:07:01 +01:00
Tim
200bb62de6
fix(Calendar): prevent keyboard nav on cell items
2024-12-11 16:39:16 +01:00
Timothy Z.
2097b0c5d4
fix: dropdowns were not visible in pop-up
2024-12-11 12:33:56 +02:00
Timothy Z.
df07ca51b0
refactor: sizes of the menu-container
2024-12-11 12:26:40 +02:00
Timothy Z.
bad210810e
fix: multiselectMenu and Multiselect height
2024-12-11 12:08:51 +02:00
Timothy Z.
2f85fba64d
revert: formatting
2024-12-11 11:49:30 +02:00
Timothy Z.
203c04b8c8
refactor: logic for showing the button
2024-12-11 11:48:17 +02:00
Timothy Z.
944069e411
refactor(StreamsList): addons install button
2024-12-11 11:38:36 +02:00
Timothy Z.
58ff80f4f2
fix: nav-menu height
2024-12-11 11:23:55 +02:00
Tim
c811c28be6
refactor: move audio tracks to their own menu
2024-12-10 20:40:17 +01:00
Timothy Z.
483273aacd
fix: menu-layer mobile issues
2024-12-10 20:31:55 +02:00
Timothy Z.
de290823e6
fix: speed menu overflow issue
2024-12-10 20:31:38 +02:00
Timothy Z.
3fc1e2c191
fix: action-buttons-container margin issue
2024-12-10 20:31:23 +02:00
Timothy Z.
c3d506c749
fix: padding on MetaPreview
2024-12-10 19:48:43 +02:00
Timothy Z.
cc046ce48a
refactor: fix iOS overflow issues
2024-12-10 19:12:41 +02:00
Timothy Z.
d5b8dc9480
Merge branch 'fix/player-mark-video-as-watched' into feat/player-side-drawer
2024-12-10 13:58:19 +02:00
Timothy Z.
5a422b5b33
refactor (styles): landscape mode on mobile
2024-12-09 18:05:10 +02:00
Timothy Z.
d9cec1205c
refactor(styles): use dvh to respect safe areas
...
dvh solves an issue where without fullscreen not all videos in the list are fully visible since vh does not count the safe / unsafe area
2024-12-09 17:39:55 +02:00
Timothy Z.
8e42bb0d1d
refactor(styles): videos height
2024-12-09 17:22:37 +02:00
Timothy Z.
36bae5221a
refactor(styles): orientation UI tweaks
2024-12-09 16:20:47 +02:00
Timothy Z.
cbffdfa33c
refactor(styles): mobile UI adjustments (3)
2024-12-09 16:01:25 +02:00
Timothy Z.
7d2c5118b3
refactor(styles): more mobile adjustments
2024-12-09 15:59:09 +02:00
Timothy Z.
e372b89566
refactor: mobile UI improvements
2024-12-09 15:24:10 +02:00
Timothy Z.
2b03b087f2
fix: ts error for the inert attribute
2024-12-09 12:30:47 +02:00
Tim
41be4528ff
fix: don't spread Video component props
2024-12-09 09:06:03 +01:00
Tim
8098bc5c33
fix: mark video as watched on player
2024-12-08 13:57:40 +01:00
Timothy Z.
888b008cae
refactor: simlifications, fix arrows
2024-12-06 15:37:23 +02:00
Timothy Z.
61c578160b
refactor(SideDrawer): simplify the conditionals
2024-12-06 14:48:50 +02:00
Timothy Z.
a81792ea5d
remove: InfoMenu and VideosMenu
2024-12-06 14:45:25 +02:00
Timothy Z.
a726ffb60d
feat: init side drawer component
2024-12-06 14:39:16 +02:00
Timothy Z.
de1732dc68
fix: settings navigate between menus shortcut
2024-12-03 22:44:52 +02:00
Timothy Z.
6d3eeaa286
refactor: fix focus on item
2024-12-03 12:25:29 +02:00
Timothy Z.
9e3c0c6203
refactor: radio button component structure
2024-11-29 14:43:15 +02:00
Timothy Z.
f2994a59a8
Revert "add: index for checkbox"
...
This reverts commit 50843dc347 .
2024-11-29 14:32:49 +02:00
Timothy Z.
50843dc347
add: index for checkbox
2024-11-29 14:31:11 +02:00
Timothy Z.
c49817aea1
chore: lint fix
2024-11-29 14:23:36 +02:00
Timothy Z.
31b0d06fd7
remove: checkbox component
2024-11-29 14:21:53 +02:00
Timothy Z.
55eba27535
remove: checkbox label css
2024-11-29 14:19:57 +02:00
Timothy Z.
a09332e101
refactor: use a radio button on the item instead
2024-11-29 14:18:57 +02:00
Timothy Z.
ccde5971f8
refactor: minor improvements, better spacing
2024-11-29 12:38:29 +02:00
Timothy Z.
ccccce2be1
refactor: checkbox component
2024-11-29 12:22:20 +02:00
Timothy Z.
7087033522
fix: typo of toggle
2024-11-29 12:17:38 +02:00
Timothy Z.
e7099767c4
Merge branch 'development' into feat/manage-streaming-urls
2024-11-28 17:39:09 +02:00
Tim
7b87715153
refactor(Calendar): remove past items styling
2024-11-28 15:07:39 +01:00
Tim
83c5c5ab0f
refactor(Calendar): month selector style
2024-11-28 14:29:04 +01:00
Tim
1f7cf89d94
refactor(Calendar): remove chrome mobile highlight on buttons
2024-11-28 14:11:23 +01:00
Tim
03a29c5903
refactor(Calendar): simplify mobile media query
2024-11-28 14:06:46 +01:00
Timothy Z.
93db08678d
Merge branch 'development' into feat/manage-streaming-urls
2024-11-28 15:01:40 +02:00
Timothy Z.
c5ab6b6112
fix: navbar item label was cut
2024-11-28 14:55:55 +02:00
Tim
73ab4adf4a
refactor(Calendar): use fixed widths for selector
2024-11-28 13:36:15 +01:00
Tim
320bca2e35
fix(Calendar): copyright headers
2024-11-28 11:45:26 +01:00
Tim
ef28d744e2
Merge branch 'development' of https://github.com/Stremio/stremio-web into feat/calendar
2024-11-28 11:42:14 +01:00
Tim
a7d3a40e2e
Merge pull request #731 from Stremio/fix/styles-meta-details-streams
...
Fix: styles on metaDetails / Streams page
2024-11-28 11:39:12 +01:00
Timothy Z.
192bd53537
remove(stream): max-height on addon-name
...
Co-authored-by: Tim <tymmesyde@gmail.com>
2024-11-28 12:35:30 +02:00
Tim
e5e67d547a
feat(Calendar): implement selector
2024-11-28 11:31:27 +01:00
Tim
9ea6c82619
Merge pull request #645 from Stremio/feat/seek-player-action
...
feat(player): add seek action and handle seeking player state
2024-11-28 09:56:37 +01:00
Tim
96a15dfbf6
refactor(Player): format type declaration
2024-11-28 09:23:10 +01:00
Tim
9fc13d2c55
refactor(Player): remove unecessary comments
2024-11-28 09:20:11 +01:00
Tim
941d8d7822
refactor(Player): remove unecessary dep onSeekRequested callback
2024-11-28 09:18:47 +01:00
Timothy Z.
15026ccf8c
fix(stream): addon label overflow
2024-11-27 14:57:57 +02:00
Timothy Z.
d3a98fbdd3
fix(multiSelect): addon name overflow
2024-11-27 14:57:41 +02:00
Tim
bd6367ef50
refactor(Player): core seek action
2024-11-26 18:20:59 +01:00
Lachezar Lechev
6ead608086
fix(payer): Seekbar action and arrow keys for Seek action
...
Signed-off-by: Lachezar Lechev <lachezar@ambire.com>
2024-11-25 15:41:23 +02:00
Timothy Z.
84903f4566
fix: bug when clicking on mark as watched button
2024-11-22 00:13:16 +02:00
Tim
efc2667c1d
Merge pull request #688 from ArtificialSloth/feat/subtitles-track-label
...
feat: Add label to subtitle tracks
2024-11-20 15:35:01 +01:00
ArtificialSloth
0b40ffe4b7
Merge branch 'feat/subtitles-track-label' of https://github.com/ArtificialSloth/stremio-web into feat/subtitles-track-label
2024-11-20 05:56:16 -05:00
ArtificialSloth
b07e10fe2b
handle text overflow for track origin.
2024-11-20 05:56:14 -05:00
ArtificialSloth
18359aa42d
Update src/routes/Player/SubtitlesMenu/SubtitlesMenu.js
...
Co-authored-by: Timothy Z. <timothy@stremio.com>
2024-11-20 05:40:02 -05:00
ArtificialSloth
ffdb2fd5d4
Swap origin and label, add fallback for url check, translate origin, and handle text overflow for long labels
2024-11-20 05:26:48 -05:00
Timothy Z.
feb84ef4c4
refactor: use single quote strings
2024-11-18 15:52:28 +02:00
Timothy Z.
06e43968c9
refactor: add checks to call setter when needed
2024-11-18 15:49:48 +02:00
Lachezar Lechev
2b4e616701
Merge branch 'development' into feat/seek-player-action
2024-11-18 14:53:09 +02:00
Tim
c27b94fa6c
refactor(ModalDialog): rename duplicated class name
2024-11-16 22:22:53 +01:00
Timothy Z.
feb6746c90
fix: modal dialog styles issues
2024-11-16 22:27:42 +02:00
Gater73
e095ca1e5c
Update CONSTANTS.js
...
Add x.com as a white listed domain
2024-11-11 23:48:43 -03:00
Lachezar Lechev
ad8e0f9b57
Merge branch 'development' into feat/manage-streaming-urls
2024-11-08 14:44:50 +02:00
Tim
9df9a4e1a1
fix(Calendar): layout issue for small viewports
2024-11-04 15:31:00 +01:00
Tim
c9e116006d
chore: add new interface languages
2024-11-04 13:35:21 +01:00
Tim
693e3e3a37
Merge pull request #717 from heavy-baby/feat/add-interface-language
...
Update interfaceLanguages.json
2024-11-04 10:52:14 +01:00
heavy-baby
d941da36cd
Update interfaceLanguages.json
...
Added Japanese item.
2024-11-04 14:30:14 +09:00
Tim
79cde15ade
fix(Calendar): toMonthYear returned incorrect month depending on the day
2024-10-31 15:09:28 +01:00
cevznriny
be40252744
img loading='lazy'
2024-10-31 10:56:10 +01:00
Tim
57fc3bc263
fix(BottomSheet): add bottom padding to container
2024-10-30 10:23:40 +01:00
Tim
a98d38fa25
fix(BottomSheet): remove chrome mobile highlight color for backdrop
2024-10-30 10:23:21 +01:00
Timothy Z.
4bfb28382e
fix: upcoming label removed when video watched
2024-10-30 10:20:13 +02:00
Tim
6337f25660
Merge branch 'development' of https://github.com/Stremio/stremio-web into feat/calendar
2024-10-29 08:59:46 +01:00
Tim
7cefc8d964
feat(Calendar): add transition to border of items
2024-10-29 08:58:17 +01:00
Tim
ac01908374
fix(Calendar): deselect day when closing details
2024-10-29 08:54:21 +01:00
Tim
ea933fe5c3
refactor(PaginationInput): transition when hovering the button
2024-10-29 08:46:28 +01:00
Tim
d9b82acc4a
fix(Calendar): lint
2024-10-29 08:40:06 +01:00
Tim
820f7eaf81
fix(Calendar): use useCallback for useCalendarDate functions
2024-10-29 08:39:29 +01:00
Alexandru Branza
bb02ab8d54
Fix Backward Support for Older Browsers
2024-10-25 15:58:58 +03:00
Timothy Z.
1b1cf2bec1
add: placeholder
2024-10-24 15:59:09 +03:00
Timothy Z.
ada66b95df
refactor: add profile.settings to dependency array
2024-10-24 15:38:12 +03:00
Timothy Z.
d32782b68b
refactor: handle ordering by core
2024-10-24 13:57:13 +03:00
Timothy Z.
38fc6e3c66
refactor: separate AddItem
2024-10-24 12:12:09 +03:00
Timothy Z.
f8cf7f7ae5
refactor: use the other function for submitting
2024-10-24 11:56:27 +03:00
Timothy Z.
8b067ad5b4
chore: fix eslint (2)
2024-10-24 11:52:15 +03:00
Timothy Z.
603c314905
fix: eslint errors
2024-10-24 11:51:26 +03:00