Skip to content

Commit f5be14d

Browse files
Improvements (#36)
* added `.DS_Store` files to ignored files * Updated dependencies * chore: removed resize icon * revamp: Updating UI for RDT * chore: set constraints for height of dev tool window * formatted code * chore: Enabled `settings` tab * tabs: Added a new settings tab * new: `settings` tab * chore: a template for the settings tab * Removed unneded coded for resizer * Removed double loop for settings category 👍 * chore: Added horizontal scroll hook * chore: implemented horizontal scrolling for top bar * new props for `Tab` component; control open state * chore: Updated the logo visibity on open * chore: Added `settings` to tabs * chore: disabled timeline tab in settings * new: Updated cursors * New defacto settings tab * feat.: `settings` * fix: removed cursor pointer bug * pulled upstream * pr improvements * min and max height * readme update --------- Co-authored-by: Abdur-Rahman Fashola <abbadshaf05@gmail.com>
1 parent 89924f4 commit f5be14d

21 files changed

Lines changed: 777 additions & 1463 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,3 +128,5 @@ dist
128128
.yarn/build-state.yml
129129
.yarn/install-state.gz
130130
.pnp.*
131+
132+
**/*/.DS_Store

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ The `RemixDevTools` component accepts the following props:
103103
- [**DEPRECATED**] `showRouteBoundaries`:This flag has been deprecated in favor of adding route boundaries. Please see the section below for more information.
104104
- `hideUntilHover`: Allows you to hide the trigger until you hover over it. Defaults to `false`.
105105
- `additionalTabs`: Allows you to provide additional tabs to the Remix Development Tools. Defaults to `[]`.
106+
- `minHeight`: Allows you to set the minimum height of the Remix Development Tools. Defaults to `600`.
107+
- `minHeight`: Allows you to set the minimum height of the Remix Development Tools. Defaults to `200`.
106108

107109
## Adding route boundaries
108110

@@ -221,6 +223,8 @@ Writing plugins for Remix Development Tools is easy. You can write a plugin that
221223
component: <MyComponent />,
222224
// Whether the tab requires the Remix Forge VS Code extension to be connected to be shown
223225
requiresForge: false,
226+
// Whether the timeline should be shown on the tab
227+
hideTimeline: false,
224228
}
225229
}
226230
```
@@ -414,7 +418,7 @@ Contributions to Remix Development Tools are welcome! To contribute, please foll
414418

415419
1. Fork the repository and clone it locally.
416420
2. Create a new branch for your feature or bug fix.
417-
4. Run `npm run dev` to start the development server.
421+
4. Run `npm run dev` to start the development server with a vanilla Remix app setup.
418422
4. Run `npm run epic-dev` to start the development server with the epic stack.
419423
5. Implement your changes, adhering to the existing code style and best practices.
420424
5. Please add tests for any new features or bug fixes.

0 commit comments

Comments
 (0)