-
-
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.
Merge pull request #526 from fdm-monster/feat/new-grid-layout
feat: redesign printer grid layout for more flexibility (odd columns, etc)
- Loading branch information
Showing
21 changed files
with
289 additions
and
264 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
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
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<template> | ||
<BaseDialog | ||
:id="dialog.dialogId" | ||
max-width="1000px" | ||
@escape="closeDialog()" | ||
> | ||
<v-card class="pa-4"> | ||
<v-card-title> | ||
<span class="text-h5"> | ||
Grid Settings | ||
<v-tooltip top> | ||
<template v-slot:activator="{ props }"> | ||
<v-btn | ||
v-bind="props" | ||
class="ma-2" | ||
fab | ||
x-small | ||
> | ||
<v-icon>question_mark</v-icon> | ||
</v-btn> | ||
</template> | ||
<template v-slot:default> | ||
Change your grid rows, columns and tile settings. | ||
</template> | ||
</v-tooltip> | ||
</span> | ||
</v-card-title> | ||
|
||
<GridSettingsList /> | ||
|
||
<v-card-actions> | ||
<v-spacer /> | ||
<v-btn @click="dialog.closeDialog()">Close</v-btn> | ||
</v-card-actions> | ||
</v-card> | ||
</BaseDialog> | ||
</template> | ||
<script lang="ts" setup> | ||
import { DialogName } from '@/components/Generic/Dialogs/dialog.constants' | ||
import { useDialog } from '@/shared/dialog.composable' | ||
import GridSettingsList from '@/components/Settings/Shared/GridSettingsList.vue' | ||
const dialog = useDialog(DialogName.GridSettingsDialog) | ||
function closeDialog() { | ||
dialog.closeDialog(dialog.context()) | ||
} | ||
</script> |
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.