Thomas Brandého
0464a7723e
remove chakra from markdown component_map ( #2709 )
2024-02-26 19:34:22 -08:00
Tom Gotsman
d0e62b5020
small update to color scheme high level select ( #2712 )
...
Co-authored-by: Tom Gotsman <tomgotsman@Toms-MacBook-Pro.local>
2024-02-24 14:05:36 -08:00
Thomas Brandého
05044ed912
use direction props from radix.Flex ( #2696 )
...
* use direction props from radix.Flex
* override direction props
* test no var
* confirm no var
* add comment for reflex-web
2024-02-22 13:33:10 -08:00
Elijah Ahianyo
b849c8d9d8
Debounce input_ref
Truthiness check for vars ( #2692 )
...
* Debounce `input_ref` Truthiness check for vars
* fix integration test
2024-02-22 11:21:15 -08:00
Masen Furer
421bfa034a
Apply app theme color_mode/appearance as next-themes default ( #2654 )
...
* Apply app theme color_mode/appearance as next-themes default
* compiler: blacken
2024-02-22 10:14:38 -08:00
Elijah Ahianyo
f4666c4c96
Make rx.Upload
a memoization leaf ( #2695 )
2024-02-22 08:15:47 -08:00
Elijah Ahianyo
a6fb25e139
Progress component to support color_scheme
on component level ( #2684 )
...
* Progress component to support `color_scheme` on component level
* pyi fix
2024-02-21 14:38:27 -08:00
Thomas Brandého
9d051d383e
ThemePanel is toggleable with bool in Theme ( #2675 )
...
* ThemePanel is toggleable with bool in Theme
* change prop name to theme_panel
2024-02-20 15:51:24 -08:00
Elijah Ahianyo
37f66207fc
Use classes for allowed components ( #2662 )
2024-02-20 14:40:48 -08:00
Elijah Ahianyo
ec31f00185
Accordion Items unique Value ( #2663 )
...
* Accordion Items unique Value
use crypto.randomUUID to generate accordion item value at runtime instead of compile time
* use generateUUID in state.js instead of crypto.randomUUID()
2024-02-20 11:50:50 -08:00
Elijah Ahianyo
eeff4142ab
Accordion Root Exclude color_scheme
and variant
props in tag ( #2664 )
...
* Accordion Root Exclude `color_scheme` and `variant` props in tag
* colorScheme -> color for radix primitives
* remove _rename_props based on pr comments
* lint
* pyi fix
* pop instead of del
2024-02-20 09:57:01 -08:00
Masen Furer
279e9bfa28
[REF-1993] link: respect is_external
prop and other attributes on A tag ( #2651 )
...
* link: respect `is_external` prop and other attributes on A tag
Instead of passing all props to NextLink by default, only pass props that
NextLink understands, placing the remaining props on the Radix link
Add a test case to avoid regression of `is_external` behavior.
* Link is a MemoizationLeaf
Because Link is often rendered with NextLink as_child, and NextLink breaks if
the href is stateful outside of a Link, ensure that any stateful child of Link
gets memoized together.
2024-02-19 15:43:27 -08:00
Nikhil Rao
4ad238c42c
Update deprecation version to 0.5.0 ( #2642 )
2024-02-16 11:23:15 -08:00
Elijah Ahianyo
3f24b42260
Drawer component styles should only be in css dict ( #2640 )
2024-02-16 09:41:02 -08:00
Masen Furer
10984ef869
Quick fixes for regressions in 0.4.0 ( #2639 )
...
* rx.el.img accepts Any type for src prop
This retains compatibility with the previous chakra image src prop.
* Re-add `moment` back to top-level namespace
2024-02-15 22:48:52 -08:00
Masen Furer
3350fa0388
Component: translate underscore suffix for props supported by chakra ( #2636 )
...
* Component: translate underscore suffix for props supported by chakra
type_ becomes type
min_ becomes min
max_ becomes max
id_ becomes id
The deprecation warning is only displayed when the underscore suffix prop is
passed and the non-underscore suffix prop is defined on the given component.
* Rename type_ to type in accordion and scroll_area
All of the new radix components avoid the underscore suffix names where
possible.
* Update deprecation warning wording
* Refactor for readability
* Do not raise deprecation warning for `id_`
id is kind of a special prop because it exists on all components
* Add test case for deprecating underscore suffix props
2024-02-15 20:46:06 -08:00
Nikhil Rao
0beec0b2a6
Default high level radio to horizontal ( #2637 )
2024-02-15 20:34:52 -08:00
Masen Furer
b03fa5709f
rx.theme: Recognize color_mode
in addition to appearance
( #2635 )
2024-02-15 18:15:44 -08:00
Nikhil Rao
7240f8ee6f
Handle component namespaces in global styles ( #2630 )
2024-02-15 16:03:10 -08:00
Thomas Brandého
0cb66fb561
set default align stack ( #2626 )
2024-02-15 13:57:27 -08:00
Thomas Brandého
411a3a1f13
accordion default classname ( #2628 )
2024-02-15 13:57:12 -08:00
Martin Xu
37eeea1100
Spacing literal should include "0" ( #2622 )
...
* spacing literal should include "0"
* rename to LiteralSpacing
* pyi
2024-02-15 11:54:38 -08:00
Elijah Ahianyo
791fcc9b41
Text as_
prop literals update ( #2620 )
...
Support more literal values
2024-02-15 11:08:19 -08:00
Nikhil Rao
80c62da062
Use align start by default stacks ( #2619 )
2024-02-14 22:43:16 -08:00
Thomas Brandého
39486386f4
fix value/default_value in accordion ( #2616 )
...
* fix value/default_value in accordion
* fix for 3.8 compat
* update comment
2024-02-14 17:06:28 -08:00
Masen Furer
a91987c051
Update docstrings for Radix components based on upstream descriptions ( #2615 )
...
These are better than copying the generic description of Button in many many
many components.
2024-02-14 15:51:38 -08:00
Masen Furer
f12746d859
Inherit _rename_props from parent classes ( #2613 )
...
Ensure that _rename_props from base classes add to the list of _rename_props in subclasses.
Add a test case to validate this behavior.
2024-02-14 14:36:01 -08:00
Elijah Ahianyo
74d90ffb65
Apply themes to drawer content ( #2612 )
2024-02-14 13:36:48 -08:00
Elijah Ahianyo
d8a9a0c95d
Accordion var data Attribute Error Fix ( #2611 )
2024-02-14 11:55:05 -08:00
Thomas Brandého
48d6717bb8
add span in text namespace ( #2607 )
2024-02-14 10:30:26 -08:00
Thomas Brandého
4232767b69
update docstrings for Dialog components ( #2608 )
2024-02-14 10:29:09 -08:00
Alek Petuskey
eadbf1d3db
Fix comments on drawer ( #2604 )
...
* Fix comments on drawer
* Fix precommit
* Fix pyi
* Fix table invalid children
---------
Co-authored-by: Alek Petuskey <alekpetuskey@aleks-mbp.lan>
2024-02-13 22:10:18 -08:00
invrainbow
fccb73ee70
Fix rx.progress to support max
prop ( #2601 )
2024-02-13 14:25:31 -08:00
Elijah Ahianyo
5e9b472d1b
[REF-1919] Valid Children/parents to allow Foreach,Cond,Match and Fragment ( #2591 )
2024-02-13 14:22:22 -08:00
invrainbow
eea3b00deb
Fix AccordionItem interactive docs not showing up ( #2600 )
2024-02-13 14:08:30 -08:00
Masen Furer
656e43503c
[REF-1840] Clean up color_scheme
mapping ( #2602 )
2024-02-13 14:07:25 -08:00
Nikhil Rao
db90006512
Update input to use textfield.input ( #2599 )
2024-02-13 12:13:48 -08:00
Thomas Brandého
5328f624d4
update connection banner and connection modal to use Radix component instead of chakra ( #2593 )
2024-02-13 12:05:59 -08:00
Martin Xu
fda6785d56
sub form.root to form class solely for documentation ( #2594 )
2024-02-13 12:03:17 -08:00
Elijah Ahianyo
c1089fc8f9
[REF-1925] Accordion foreach fix ( #2598 )
2024-02-13 11:58:48 -08:00
Masen Furer
dcba038de5
Merge remote-tracking branch 'origin/main' into reflex-0.4.0
2024-02-13 11:10:33 -08:00
Masen Furer
b5f06991a9
Change names to get_upload_dir
and get_upload_url
( #2587 )
...
These shorter names are more concise and easier to type without losing
significant information.
2024-02-13 11:09:48 -08:00
Masen Furer
4206afeb7b
[REF-1958] Remove shadowed radix css props ( #2590 )
...
* style: shorthand replacements need camelCase
Avoid warning on terminal and in browser console from using kebab-case CSS
props with emotion.
* _rename_props only replace prop name once
In case the value also contains the prop name, we don't want to replace it
multiple times.
* pyi_generator: ignore _rename_props in create signature
* Avoid shadowing CSS prop `display` and `gap`
Replace usages of `gap` with `spacing` to retain Radix sizing number system,
while allowing users to specify a responsive `gap` using CSS units.
Remove `display` props from radix components, allowing `display` to accept
responsive lists.
* checkbox: apply `gap` to `flex` if provided
* Remove _rename_props from .create signatures
* Fix spacing prop in blank template
* Fixup tests after changing style shorthand to return camelCase
2024-02-13 10:06:28 -08:00
Nikhil Rao
f05d5ba7ba
Rename components in top level namespace ( #2589 )
2024-02-12 21:35:49 -08:00
Brandon Hsiao
de6835f464
ruff
2024-02-12 19:16:20 -08:00
Brandon Hsiao
481c9d9dbd
fix, lint
2024-02-12 18:57:52 -08:00
Brandon Hsiao
977a9d632b
add fixes to rx.progress
2024-02-12 18:38:34 -08:00
Alek Petuskey
de30e15b1d
Add alias for Vaul drawer ( #2586 )
2024-02-12 15:29:45 -08:00
Nikhil Rao
5c6a800b62
Update styles for progress ( #2570 )
2024-02-12 15:20:36 -08:00
Tom Gotsman
71e4d539f6
Remove dropdown menu sub content extra props ( #2582 )
2024-02-12 15:19:05 -08:00
Masen Furer
0da21ea605
Merge remote-tracking branch 'origin/main' into reflex-0.4.0
2024-02-12 15:05:34 -08:00
Masen Furer
47a6901695
banner.py: fix import specification for getBackendURL ( #2584 )
...
* banner.py: fix import specification for getBackendURL
Use the constant Dirs.STATE_PATH
* state.js: only `getBackendURL` dynamically when running client side
During server side rendering, `getBackendURL` cannot access the current
location from the `window`, because there is no `window`.
* Better client-side context checking
Thanks jackie
2024-02-12 15:04:59 -08:00
Thomas Brandého
798b72825d
fix match import in iconbutton ( #2552 )
2024-02-12 12:36:48 -08:00
Masen Furer
2b7e7450f8
Merge remote-tracking branch 'origin/main' into reflex-0.4.0
2024-02-12 12:22:50 -08:00
Masen Furer
10e8bd010c
Upload Workflow Refactor ( #2309 )
...
* upload with StaticFiles
* always create uploaded files folder
* just use /_upload to serve uploaded files
* Upload: update pyi file
* app.py: only mount Upload StaticFiles if the upload component is used
2024-02-12 12:21:56 -08:00
Martin Xu
6e946631f3
alias form to form.root ( #2579 )
2024-02-12 10:57:17 -08:00
Nikhil Rao
93c0091aad
remove extra props on scroll area ( #2581 )
2024-02-12 10:54:58 -08:00
Masen Furer
58b5e2f5bd
Merge remote-tracking branch 'origin/main' into reflex-0.4.0
2024-02-09 19:38:35 -08:00
Elijah Ahianyo
ccc9c32c95
Get rx.color
working with fstrings ( #2562 )
...
* fix for rx.color working with fstrings
* Fix fstrings issues
2024-02-09 17:06:55 -08:00
Masen Furer
3136a86e58
[REF-1921] Remove HTML attributes that shadow CSS props ( #2566 )
2024-02-09 16:13:35 -08:00
Masen Furer
78c54b3486
Use rx.el.img as rx.image ( #2558 )
...
* Use rx.el.img as rx.image
* Update test_image to work with plain rx.el.img
2024-02-08 14:44:53 -08:00
Masen Furer
d28109f4c4
Merge remote-tracking branch 'origin/main' into reflex-0.4.0
2024-02-08 11:54:02 -08:00
Masen Furer
7fb9747fa7
Fix missing getEventURL function in connection banner ( #2557 )
...
After a previous PR replaced `getEventURL` with `getBackendURL`, the banner
code was not updated, leading to problems rendering the connection banner.
2024-02-08 11:53:38 -08:00
Elijah Ahianyo
601dd34792
rx.color to work with conditional vars ( #2546 )
2024-02-08 11:45:15 -08:00
Elijah Ahianyo
64a90fa6eb
Decorator to validate rx.color
prop fields ( #2553 )
2024-02-08 11:21:46 -08:00
Masen Furer
c596651de6
Fix pre-commit issues introduced from merging origin/main
2024-02-08 10:28:45 -08:00
Masen Furer
ae20644a82
Merge remote-tracking branch 'origin/main' into reflex-0.4.0
2024-02-08 10:17:34 -08:00
Alek Petuskey
ea2a5904f2
Text default as p ( #2551 )
2024-02-07 18:53:59 -08:00
Tom Gotsman
cb66933921
many small changes from going over all props ( #2532 )
2024-02-07 18:16:47 -08:00
Masen Furer
c124650082
Merge remote-tracking branch 'origin/main' into reflex-0.4.0
2024-02-07 13:53:39 -08:00
Thomas Brandého
88f0be004d
ordered & unordered lists ( #2537 )
2024-02-07 12:29:29 -08:00
Tom Gotsman
57b75c6497
update slider so width automatically set ( #2542 )
2024-02-07 12:06:41 -08:00
Nikhil Rao
eacd534137
Increase debounce timeout to 300ms ( #2541 )
2024-02-07 11:55:43 -08:00
Masen Furer
de6244483d
[REF-1743] Implement radix-native color mode switch and button ( #2526 )
2024-02-07 11:55:25 -08:00
Elijah Ahianyo
1e4b0a163c
Map Accordion color schemes to radix colors ( #2511 )
2024-02-07 09:52:09 -08:00
Thomas Brandého
a858d3a755
remove radix icons ( #2538 )
...
* remove radix icons
* update pyi
2024-02-06 14:21:22 -08:00
Nikhil Rao
e2c3081d1e
Remove focus-visible package ( #2535 )
2024-02-06 11:36:12 -08:00
Elijah Ahianyo
8e2c9681f7
Radix Components Valid children/parents ( #2495 )
2024-02-06 10:55:00 -08:00
Masen Furer
660113fcf9
Merge remote-tracking branch 'origin/main' into reflex-0.4.0
2024-02-05 11:41:40 -08:00
Masen Furer
f99c48806a
Top-level namespace tweaks ( #2523 )
...
* pyi_generator: always ignore files starting with `tests`
* Move CodeBlock out of chakra namespace
* Expose additional names in the top-level namespace
* code pyi fixup
* expose input and quote at the top-level
* add text_field to top-level namespace (maybe)
* fixup chakra code.pyi
* Remove `text_field` from top level namespace
* Remove top-level big C Cond
* fixup top level pyi
2024-02-05 11:14:02 -08:00
Martin Xu
1bf4e23bf3
add dropdown primitive props ( #2521 )
2024-02-04 18:57:33 -08:00
Alek Petuskey
5589cbbfc2
Refactor rx.color ( #2522 )
...
* Refactor
* Lint
* Change name space to top level
* Update test
* Lint
* Fix pyright
* Update pyi
---------
Co-authored-by: Alek Petuskey <alekpetuskey@aleks-mbp.lan>
Co-authored-by: Nikhil Rao <nikhil@reflex.dev>
2024-02-04 15:39:07 -08:00
Nikhil Rao
05d1be2182
Move core components to radix namespace ( #2506 )
2024-02-02 14:26:46 -08:00
Masen Furer
8a3cec11cd
Merge remote-tracking branch 'origin/main' into reflex-0.4.0
2024-02-02 13:50:41 -08:00
Thomas Brandého
ba3de9b9e9
fix icon_button to size children lucide icon correctly. ( #2515 )
2024-02-02 12:23:31 -08:00
Masen Furer
2f70e3e43a
[REF-1839] Reserve top-level __call__ for a future high level API ( #2518 )
...
* Reserve top-level __call__ for a future high level API
Instead of aliasing the top-level `__call__` to `.root`, require users
to explicitly call `.root` to avoid breakage when a future high level
API gets implemented and takes over the top-level `__call__`
Fix REF-1839
* alertdialog: forgot this one
2024-02-02 12:16:59 -08:00
Alek Petuskey
02e626465c
Add comment for theme panel needed for docs ( #2508 )
...
* Add comment for theme panel needed for docs
* update pyi
---------
Co-authored-by: Alek Petuskey <alekpetuskey@aleks-mbp.lan>
Co-authored-by: Masen Furer <m_github@0x26.net>
2024-02-02 09:41:27 -08:00
Masen Furer
35b20d26b5
Merge remote-tracking branch 'origin/main' into reflex-0.4.0
2024-02-02 08:39:10 -08:00
Masen Furer
6d33156d15
Move is_used
to Upload component rather than UploadFilesProvider ( #2514 )
2024-02-01 17:57:43 -08:00
Tom Gotsman
1b4229691a
All event handlers inherit from event triggers ( #2507 )
...
* update to ensure every radix component only inherits events from EventTriggers class
* update the naming of event handlers to swap name on_value_change and on_checked_change to on_change
* update to call _replace_prop_names in component.py
* small darglint error fix
* update to ensure every radix component only inherits events from EventTriggers class
* update the naming of event handlers to swap name on_value_change and on_checked_change to on_change
* update to call _replace_prop_names in component.py
* small darglint error fix
* updates to pass pytest tests
* small fix
* duplicate removal
---------
Co-authored-by: Tom Gotsman <tomgotsman@toms-mbp.lan>
2024-02-01 16:11:15 -08:00
Martin Xu
c067033ed0
radix Theme panel_background prop: transparent -> translucent ( #2504 )
2024-01-31 16:06:23 -08:00
Masen Furer
9c086163df
[REF-1631] Clean up the rx.radix namespace ( #2501 )
2024-01-31 15:32:17 -08:00
Martin Xu
38845db60c
Add props from Radix tooltip primitives to tooltip component ( #2499 )
...
* add tooltip primitives props to tooltip
* ruff
2024-01-31 14:21:34 -08:00
Nikhil Rao
5176a7cb14
Support component create methods as keys in global styles ( #2498 )
2024-01-31 12:25:18 -08:00
Masen Furer
4df279b060
Merge remote-tracking branch 'origin/main' into reflex-0.4.0
2024-01-31 12:06:51 -08:00
Masen Furer
a5302f1866
[0.4.0] Namespace the Drawer primitive subcomponents ( #2492 )
2024-01-31 11:39:13 -08:00
Elijah Ahianyo
d2fd0d3b92
[REF-1742] Radio group prop types fix ( #2452 )
2024-01-30 18:14:20 -08:00
Masen Furer
e12b15f1fe
[REF-1738] Remove radix-specific layout/margin props ( #2442 )
2024-01-30 16:58:28 -08:00
Nikhil Rao
27b9a10233
Merge branch 'main' into reflex-0.4.0
2024-01-30 16:48:38 -08:00
Nikhil Rao
833507b73a
Fix accordion pyi ( #2491 )
2024-01-30 16:12:50 -08:00
Thomas Brandého
6cf411aeb3
add center / spacer / hstack / vstack in radix/themes/layout ( #2331 )
2024-01-30 15:39:22 -08:00
Thomas Brandého
1d6da9010e
fix color of icon to match theme ( #2488 )
2024-01-30 14:31:57 -08:00
Thomas Brandého
0b3693f744
fix kebab case for icon ( #2487 )
2024-01-30 14:31:47 -08:00
Masen Furer
8ecfd07668
Radix themes: replace color_scheme
with color
in get_fields ( #2486 )
2024-01-30 14:08:18 -08:00
Tianze
209c5fab7b
Tabs validate parent is proper tab container ( #2463 )
2024-01-30 11:45:00 -08:00
Martin Xu
0378b2aa3a
Radix primitive based Drawer component ( #2445 )
2024-01-29 20:32:11 -08:00
Masen Furer
bd9d6e6789
Radix Primitive Component Namespaces
...
Expose subcomponents of radix primitives wrapped in a SimpleNamespace with a
__call__ method that points to the high-level API entry point.
2024-01-29 17:38:58 -08:00
Masen Furer
bece5bdb44
[REF-1632] Apply rx.App
styles to Radix Themes root div
( #2481 )
2024-01-29 16:58:05 -08:00
Martin Xu
b6f4422378
Use form_root as form high level API ( #2479 )
2024-01-29 13:42:01 -08:00
Elijah Ahianyo
3a97a10d92
Pass down themes for rx.cond
and rx.match
( #2432 )
2024-01-29 12:03:36 -08:00
Thomas Brandého
11f6d7ccef
add lucide icons as a candidate for core icon library ( #2444 )
2024-01-29 11:43:00 -08:00
Masen Furer
b2c749fc9f
[REF-1763] Rename color
to color_scheme
in all radix themes components ( #2468 )
2024-01-28 16:54:01 -08:00
Martin Xu
3c7356ac3c
remove modal prop from dialog ( #2470 )
2024-01-28 15:56:45 -08:00
Tom Gotsman
14e35e51ee
add separator default width to fill the container ( #2459 )
2024-01-28 15:51:11 -08:00
Nikhil Rao
d68de02bc8
Revert "Individually Import Chakra Packages ( #2405 )" ( #2472 )
2024-01-28 15:39:59 -08:00
Tom Gotsman
8203b888fe
minor update to callout ( #2466 )
...
* minor update to callout
* pyi changes
---------
Co-authored-by: Tom Gotsman <tomgotsman@toms-mbp.lan>
2024-01-26 15:39:19 -08:00
Masen Furer
52d2bccbca
[REF-1746] Define value
prop on base rx.el.textarea ( #2467 )
2024-01-26 15:11:22 -08:00
wassaf shahzad
069892d8ee
fixed issue with hypens ( #2450 )
2024-01-26 14:14:46 -08:00
Masen Furer
a2e0807dc1
Chakra IconButton comes from "@chakra-ui/button@2.1.0" package ( #2465 )
2024-01-26 14:10:51 -08:00
Tom Gotsman
8ae67f89e3
small changes to texfield and separator ( #2448 )
2024-01-25 13:36:32 -08:00
Alek Petuskey
00a8054850
Individually Import Chakra Packages ( #2405 )
...
* Base lib switch
Co-authored-by: Alek Petuskey <alekpetuskey@aleks-mbp.lan>
2024-01-25 10:22:46 -08:00
Elijah Ahianyo
5f1751acc2
Vardata for rx.Match ( #2439 )
2024-01-24 14:55:49 -08:00
Masen Furer
1a50a63b98
Docstrings for radix components ( #2407 )
2024-01-24 12:39:05 -08:00
Martin Xu
ec889c411b
radix link renders as next link by default use ( #2440 )
...
* radix link renders as next link by default use
* pyi
* rewrite
* pyi didn't seem to overwrite
* color -> color_scheme
2024-01-24 12:05:44 -08:00
Nikhil Rao
e94dcf335c
Input high level api ( #2410 )
...
* Input high level api
* finish off input high level api
* Switch order of props
---------
Co-authored-by: Tom Gotsman <tomgotsman@toms-mbp.lan>
2024-01-24 10:53:46 -08:00
benedikt-bartscher
0b1b8ee639
auto enable /_upload endpoint only if Upload component is used ( #2430 )
2024-01-23 12:20:06 -08:00
Martin Xu
84858854ae
Clean up Radix Form component ( #2423 )
...
* form pr
* cleanup
* pyi
2024-01-22 15:07:27 -08:00
Elijah Ahianyo
bd22bcfa60
Accordion styling fix ( #2420 )
2024-01-22 13:04:01 -08:00
Tom Gotsman
b305f895a8
minor update to select prop ( #2424 )
2024-01-21 13:31:47 -08:00
Nikhil Rao
a92abbb0ce
Radix callout high level api ( #2409 )
2024-01-18 18:19:26 -08:00
Tom Gotsman
c8693851fe
update to allow items to be autogenerated for docs ( #2419 )
2024-01-18 17:37:20 -08:00
Tom Gotsman
676f2c5dc2
radiogroup high level api ( #2401 )
2024-01-18 16:41:55 -08:00
Tom Gotsman
7d99d235f1
create high level api for select component ( #2402 )
2024-01-18 16:24:36 -08:00
Tom Gotsman
035fc8e15a
high level api for checkbox ( #2406 )
2024-01-18 15:58:02 -08:00
Alek Petuskey
d466c2aaa2
Radix Accordion ( #2310 )
2024-01-18 14:20:21 -08:00
Alek Petuskey
0bb9a021a2
Overlay Components Improvements ( #2395 )
2024-01-15 15:06:27 -08:00
Masen Furer
fc2f6cddf9
Inset: fix comment ( #2389 )
2024-01-12 14:40:28 -08:00
Masen Furer
fb89c374b1
Correct Radix Themes Slider props ( #2386 )
2024-01-12 14:40:08 -08:00
Masen Furer
6b6f3ae0be
Fix docstrings and comments for Box and Card components ( #2385 )
2024-01-12 14:39:45 -08:00
Masen Furer
27ed574b63
aspectratio: fix docstring and extra literal def ( #2379 )
2024-01-11 14:04:06 -08:00
Elijah Ahianyo
05b4267bb4
Pin version for data editor deps ( #2383 )
2024-01-11 14:03:41 -08:00
Martin Xu
a53af00480
Clean up Radix Avatar components props ( #2375 )
...
* clean up some props for some radix components
* pyi
2024-01-11 11:26:43 -08:00
Tom Gotsman
c81fa261b2
update radix components ( #2380 )
...
* update radix components
* update for pyi
* updates for pre commit
* update pyi again
---------
Co-authored-by: Tom Gotsman <tomgotsman@toms-mbp.lan>
2024-01-10 17:56:04 -08:00
macmoritz
43a0867bb4
add time_picker component ( #2343 )
2024-01-05 18:25:10 -08:00
Tom Gotsman
51baa94ed5
adding cancel and action sub components for alert dialog and rename alert dialog root ( #2352 )
...
* adding cancel and action sub components for alert dialog
* updates to pass integration tests
* add components
---------
Co-authored-by: Tom Gotsman <tomgotsman@Toms-MacBook-Pro.local>
Co-authored-by: Tom Gotsman <tomgotsman@toms-mbp.lan>
2024-01-05 11:37:15 -08:00
Elijah Ahianyo
abfc099779
rx.match component ( #2318 )
...
* initial commit
* add more tests
* refactor match jinja template
* add docstrings
* cleanup
* possible fix for pyright
* fix conflicts
* fix conflicts again
* comments
* fixed bug from review
* fix tests
* address PR comment
* fix tests
* type error improvement
* formatting
* darglint fix
* more tests
* stringify switch condition and cases as js doesnt support complex types(lists and dicts) in switch cases.
* Update reflex/vars.py
Co-authored-by: Masen Furer <m_github@0x26.net>
* change usages
* Precommit fix
---------
Co-authored-by: Alek Petuskey <alek@pynecone.io>
Co-authored-by: Masen Furer <m_github@0x26.net>
Co-authored-by: Alek Petuskey <alekpetuskey@aleks-mbp.lan>
2024-01-04 09:48:18 -08:00
Tom Gotsman
32b9b00e05
update inline so all props have comments ( #2353 )
2024-01-03 15:30:47 -08:00
Masen Furer
0211e9a0e5
Avoid passing props to lists and list items ( #2326 )
2023-12-21 15:58:45 -08:00
Thomas Brandého
527fa4bc3f
Add slider, progress, and form primitives ( #2306 )
2023-12-21 10:32:40 -08:00
Nikhil Rao
93c97383d9
Refactor chakra components into separate folder ( #2315 )
2023-12-21 09:52:08 -08:00
dodeca-6-tope
97f528e7b5
add size prop to the number input ( #2311 )
2023-12-20 13:54:20 -08:00
Tom Gotsman
5c5d17df59
Fixing bugs in radix ( #2316 )
2023-12-20 13:52:56 -08:00
Thomas Brandého
8ac08e2cb4
color_scheme props added and updated pyi files ( #2279 )
2023-12-18 20:47:18 -08:00
Nikhil Rao
5d21f0ca60
Add high-level API for accordion ( #2285 )
2023-12-18 17:21:49 -08:00
Elijah Ahianyo
53e402f47b
Chakra input component type_ prop literal ( #2292 )
2023-12-18 15:43:51 -08:00
Elijah Ahianyo
9629b59617
DataFrame Serializer fix ( #2281 )
2023-12-12 14:03:40 -08:00
Masen Furer
e52267477c
[REF-1417] Convert underscore-prefixed style props to pseudo selector ( #2266 )
2023-12-11 13:37:57 -08:00
Nikhil Rao
96f68cb94d
Implement accordion component ( #2262 )
...
* Implement accordion component
* Fix literal annotation
* Use style prop instead of css
* Move accordion to primitives folder
* Add pyi file
* Fix pyright
* Add apply_theme method
* Fix apply_theme
* Use apply_theme method
* Fix lint
2023-12-08 21:20:30 -08:00
Thomas Brandého
0ca903e468
wrap radix icons ( #2263 )
...
* Add inital ui
* More radix updates
* Add el inheritance
* Add el inheritance for layout
* Triggers + primitive prop inheritance
* Initial Primitives
* Small fix
* Update select
* Radix Themes fixups (#2245 )
* [REF-1367] Fix up event trigger specs
* Add missing name/value props for form controls
Checkbox was incorrectly tagged Button
TextArea was incorrectly tagged TextArea.Input
* [REF-1364] Radix Link now renders as a NextLink
For href as Var or href does not contain the ://, then
render as a NextLink for efficient inner-app navigation
* More changes
* PYI
* add @radix-ui/icons to radix.themes
* add pyi file
* fix for py3.8
---------
Co-authored-by: Alek Petuskey <alekpetuskey@aleks-mbp.lan>
Co-authored-by: Masen Furer <m_github@0x26.net>
2023-12-07 14:08:20 -08:00
Thomas Brandého
a0bd83b915
add event triggers for base html components ( #2276 )
2023-12-07 11:22:40 -08:00
Thomas Brandého
caf32605ca
add next/image and next-video in next namespace ( #2223 )
2023-12-07 10:38:47 -08:00
Alek Petuskey
7164b91d7b
Implement Radix Themes ( #2236 )
2023-12-06 16:47:03 -08:00
Nikhil Rao
46d03880e6
Format var better in error message ( #2269 )
2023-12-06 13:31:29 -08:00
Masen Furer
e0a1b39231
[REF-1425] Always capitalize tag of StatefulComponent ( #2264 )
2023-12-06 09:41:09 -08:00
Masen Furer
eb79da8538
[REF-1352] Markdown component_map hash improvements ( #2241 )
2023-12-01 11:45:22 -08:00
Masen Furer
49ccd2f1fb
Generalize MemoizationLeaf Component mixin ( #2247 )
2023-12-01 11:41:11 -08:00
Masen Furer
4ada79c1e5
[REF-1349] RechartsCharts and ResponsiveContainer must be memo leaf ( #2240 )
2023-12-01 09:49:59 -08:00
Masen Furer
a2d5bbc133
[reflex-web tweaks] Do not memoize children of InputGroup ( #2230 )
2023-11-30 09:48:28 -08:00
Masen Furer
a86bcb3c72
[reflex-web tweaks] chakra Icon is a ChakraComponent (use sx for style) ( #2231 )
...
* chakra Icon is a ChakraComponent (use sx for style)
* icon: update pyi file
2023-11-29 14:48:32 -08:00
Masen Furer
3deb2cec93
code_block responds to color mode by default ( #2228 )
2023-11-28 13:24:38 -08:00
Masen Furer
0c55723df4
[REF-1158] Move chakra-only deps to chakra lib ( #2171 )
2023-11-28 00:04:07 -08:00
Masen Furer
626357ed87
Memoize markdown component_map ( #2219 )
2023-11-27 18:09:41 -08:00
Alek Petuskey
065b1b88d2
Add index on tabs ( #2225 )
...
* Add index on tabs
---------
Co-authored-by: Alek Petuskey <alekpetuskey@aleks-mbp.lan>
2023-11-27 17:59:35 -08:00
Masen Furer
527437cf23
[REF-144] Add context in each component to prevent rerenders ( #2198 )
2023-11-27 16:05:59 -08:00
Thomas Brandého
ed5b3818cb
update removal version of deprecated features ( #2224 )
2023-11-27 14:04:55 -08:00
Thomas Brandého
d61b83fde7
add/subtract in moment ( #2212 )
2023-11-22 13:13:59 -08:00
Masen Furer
1603144c7d
[REF-889] useContext per substate ( #2149 )
2023-11-21 11:52:06 -08:00
Nikhil Rao
e9437ad941
Use singleton app provider to speed up compiles ( #2172 )
2023-11-20 18:11:24 -08:00
Nikhil Rao
b5f6ab3a82
Fix pyright errors ( #2210 )
2023-11-20 18:10:41 -08:00
Tom Gotsman
b6e7744498
update column select literals ( #2150 )
2023-11-20 16:17:27 -08:00
Masen Furer
5eb4c4e62a
Serialize PIL Image in its format ( #2201 )
2023-11-20 16:17:09 -08:00
Alek Petuskey
88a3276356
HTML Refactor ( #2164 )
2023-11-20 15:16:03 -08:00
Thomas Brandého
1b402b65be
fix offset of data_editor input when page is scrolled ( #2208 )
2023-11-20 15:15:00 -08:00
Masen Furer
8e7d4819ee
check_generated_pyi: fix diff checking ( #2029 )
2023-11-17 15:21:52 -08:00
Thomas Brandého
1a83f85783
_valid_children and _invalid_children accessible from class ( #2192 )
2023-11-17 12:30:18 -08:00
Masen Furer
7eccc6d988
[REF-723+] Upload with progress and cancellation ( #1899 )
2023-11-16 15:46:13 -08:00
Alek Petuskey
e399b5a98c
Fix wrong modal sizes ( #2183 )
2023-11-16 15:35:15 -08:00
Thomas Brandého
ddb1f8133b
Apply new pyi script ( #2041 )
2023-11-16 10:27:04 -08:00
Tom Gotsman
d3314233bd
add in new no_of_lines prop for text ( #2184 )
...
* add in new no_of_lines prop for text
* black update
---------
Co-authored-by: Tom Gotsman <tomgotsman@toms-mbp.lan>
2023-11-15 17:59:52 -08:00
Alek Petuskey
93dcc6300d
Add chat icon ( #2181 )
2023-11-15 16:02:44 -08:00
Masen Furer
ce47fcfd6c
Fix CustomComponent rendering ( #2169 )
2023-11-14 13:03:12 -08:00
Masen Furer
f3929f47e3
form: only pass handleSubmit when on_submit is defined ( #2162 )
2023-11-13 23:27:42 -08:00
Nikhil Rao
33e4816950
Lazy import modules in reflex ( #2144 )
2023-11-13 19:48:12 -08:00
Masen Furer
27b09132b5
form: generate a unique on_submit suffix in create ( #2154 )
2023-11-13 12:52:26 -08:00
Elijah Ahianyo
ea22452b27
Reduce Syntax highlighter footprint ( #2037 )
2023-11-13 12:47:55 -08:00
Masen Furer
5e6520cb5d
Support Form controls via name attribute (no ID or ref) ( #2012 )
2023-11-10 12:58:59 -08:00
Nikhil Rao
e703d87450
Set unique index vars in rx.foreach ( #2126 )
2023-11-03 16:20:42 -07:00
Thomas Brandého
eb52edb067
components as props ( #2124 )
2023-11-03 13:29:18 -07:00
Thomas Brandého
eeeab441d8
add column resize for data editor ( #2099 )
2023-11-02 12:22:35 -07:00
shu-qian
a1c39b9968
Add 'orientation' Property to Reflex Stepper Components ( #2089 )
...
* Added 'orientation' property to Stepper
* import Literal in reflex/components/navigation/stepper.py
* Update reflex/components/navigation/stepper.py
---------
Co-authored-by: sq <1838545301@qq.com>
Co-authored-by: Masen Furer <m_github@0x26.net>
2023-11-01 11:51:23 -07:00