-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 4 enhanced spotlight (#6) * refactored existing spotlight to cmdk * nested spotlight actions, reworked project actions * Update SpotlightItem.tsx * spotlight model and enum actions * resetting spotlight search on navigation * displaying shortcuts is spotlight * Update SpotlightMainActions.tsx * new model, enum shortcuts * spotlight create model enum field sub option * 3 rework blocks editors (#7) * refactored existing spotlight to cmdk * nested spotlight actions, reworked project actions * Update SpotlightItem.tsx * spotlight model and enum actions * resetting spotlight search on navigation * displaying shortcuts is spotlight * Update SpotlightMainActions.tsx * new model, enum shortcuts * new schema editor, sorting schema blocks wip * removed old node forms * moved datasource, generator settings to sidebar * sorting blocks, base block form container * sortable block fields * model field modifier, type selectors * cleanup * collapsing fields on dnd sort * layout change on sidebar open, focus selected block btn * remove field btn, resizd schema sidebar * Update .gitignore * new field form * enum form wip * 5 dark mode support (#9) * dark theme * spotlight not found component * welcome message shortcuts * changed new model field form position * Update NewModelFieldForm.tsx * 8 persistent block and fields ids (#11) * persistent model field ids for editor * persistent enum field ids for editor * Update Editor.tsx * new enum field form * explicit n-m relations switch (#13)
- Loading branch information
Showing
86 changed files
with
2,418 additions
and
565 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
node_modules | ||
dist | ||
.next | ||
out | ||
*.log* | ||
.turbo | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,9 @@ | ||
import React from 'react' | ||
import ReactDOM from 'react-dom/client' | ||
import { MantineProvider } from '@mantine/core' | ||
import { NotificationsProvider } from '@mantine/notifications' | ||
import App from './App' | ||
import { theme } from './core/theme' | ||
|
||
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( | ||
<React.StrictMode> | ||
<MantineProvider withGlobalStyles withNormalizeCSS theme={theme}> | ||
<NotificationsProvider> | ||
<App /> | ||
</NotificationsProvider> | ||
</MantineProvider> | ||
<App /> | ||
</React.StrictMode> | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.