Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
4212a74
Start Dashboard Layout template based on Toolpad Core
apedroferreira Jun 19, 2025
ab0127a
Fix theme switcher
apedroferreira Jun 19, 2025
2ab72ca
Add hooks and CRUD list page
apedroferreira Jun 19, 2025
d384997
Add rest of CRUD components
apedroferreira Jun 20, 2025
a8139d0
Add boolean field to employees, restructure files a bit
apedroferreira Jun 23, 2025
f99e690
Add alternate theming, reorganize project, overall fixes
apedroferreira Jun 24, 2025
38c7505
Format docs, create template app page with theme switching
apedroferreira Jun 24, 2025
2205512
Fix overflow and add template screenshots
apedroferreira Jun 24, 2025
24ae616
Merge remote-tracking branch 'upstream/master' into dashboard-layout-…
apedroferreira Jun 24, 2025
12c1cde
Try to pass CI
apedroferreira Jun 24, 2025
782bbd7
oh come on
apedroferreira Jun 24, 2025
36d676a
almost there cloud
apedroferreira Jun 24, 2025
029a859
this time surely
apedroferreira Jun 24, 2025
e76f76d
here we go again
apedroferreira Jun 25, 2025
2fafbfa
Merge remote-tracking branch 'upstream/master' into dashboard-layout-…
apedroferreira Jun 25, 2025
5507123
smol fix
apedroferreira Jun 25, 2025
b7db1dc
Attempt to fix Netlify deploy
apedroferreira Jun 25, 2025
8695980
Adjust imports
apedroferreira Jun 25, 2025
d9dc951
Try relative import
apedroferreira Jun 25, 2025
fb0feea
unused import
apedroferreira Jun 25, 2025
b299f66
Fix mobile sidebar
apedroferreira Jun 25, 2025
6f33ef5
Add basename and theming fixes
apedroferreira Jun 25, 2025
80ccf02
Address review suggestions and add fixes for all similar issues found
apedroferreira Jul 2, 2025
1763eb2
Merge remote-tracking branch 'upstream/master' into dashboard-layout-…
apedroferreira Jul 2, 2025
e9ba8de
fix lint
apedroferreira Jul 2, 2025
8185961
prettier
apedroferreira Jul 2, 2025
54c84cf
Fix date pickers input
apedroferreira Jul 2, 2025
11be64e
Shorter button title, change template order
apedroferreira Jul 3, 2025
f3368c1
Merge remote-tracking branch 'upstream/master' into dashboard-layout-…
apedroferreira Jul 3, 2025
233e34d
update screenshots
apedroferreira Jul 3, 2025
d00ecdf
Address all review suggestions and more, missing screenshots
apedroferreira Jul 9, 2025
246dd7a
update screenshots
apedroferreira Jul 9, 2025
f9d4341
Merge remote-tracking branch 'upstream/master' into dashboard-layout-…
apedroferreira Jul 9, 2025
aaae2d3
Update docs/data/material/getting-started/templates/crud-dashboard/co…
apedroferreira Jul 14, 2025
6c37872
format
apedroferreira Jul 15, 2025
ca84341
Merge remote-tracking branch 'upstream/master' into dashboard-layout-…
apedroferreira Jul 15, 2025
14f6009
nice try
apedroferreira Jul 15, 2025
fe2c3b5
my god it never ends does it
apedroferreira Jul 15, 2025
b59eef3
wow
apedroferreira Jul 15, 2025
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
Prev Previous commit
wow
  • Loading branch information
apedroferreira committed Jul 15, 2025
commit b59eef331e55cdcecbe42fc9172d0f3b47bb6156
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@ RFTextField.propTypes = {
}).isRequired,
/**
* Props applied to the Input element.
* It will be a [`FilledInput`](/material-ui/api/filled-input/),
* [`OutlinedInput`](/material-ui/api/outlined-input/) or [`Input`](/material-ui/api/input/)
* It will be a [`FilledInput`](https://mui.com/material-ui/api/filled-input/),
* [`OutlinedInput`](https://mui.com/material-ui/api/outlined-input/) or [`Input`](https://mui.com/material-ui/api/input/)
* component depending on the `variant` prop value.
* @deprecated Use `slotProps.input` instead. This prop will be removed in a future major release. See [Migrating from deprecated APIs](https://mui.com/material-ui/migration/migrating-from-deprecated-apis/) for more details.
*/
InputProps: PropTypes.object,
meta: PropTypes.shape({
Expand All @@ -59,7 +60,7 @@ RFTextField.propTypes = {
dirty: PropTypes.bool,
dirtySinceLastSubmit: PropTypes.bool,
error: PropTypes.any,
initial: PropTypes.string,
initial: PropTypes.any,
invalid: PropTypes.bool,
length: PropTypes.number,
modified: PropTypes.bool,
Expand Down
Loading