Skip to content

Commit

Permalink
Merge branch 'release/1.1.17'
Browse files Browse the repository at this point in the history
  • Loading branch information
pdanpdan committed Nov 30, 2023
2 parents 6ae0596 + c9ada2b commit 3023070
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 19 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pdanpdan/quasar-play",
"version": "1.1.16",
"version": "1.1.17",
"description": "Playground for Quasar Framework",
"productName": "Quasar Play",
"author": {
Expand Down
22 changes: 21 additions & 1 deletion patches/@[email protected]
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
diff --git a/dist/vue-repl.css b/dist/vue-repl.css
index d9f07c16f570d381b3d2e50c054ae256831dd69a..ea089f663d7eda5701ed1887042d06d9c9ef8970 100644
index d9f07c16f570d381b3d2e50c054ae256831dd69a..3e22348ba61937000aaca360786b0ff63ad51266 100644
--- a/dist/vue-repl.css
+++ b/dist/vue-repl.css
@@ -35,7 +35,7 @@
color: var(--text-light);
position: absolute;
left: 50%;
- bottom: 20px;
+ bottom: 17px;
background-color: var(--bg);
padding: 8px 12px;
border-radius: 8px;
@@ -231,6 +231,7 @@ button.active[data-v-f221f6e0] {
margin-right: 10px;
}
Expand Down Expand Up @@ -39,6 +48,17 @@ index d9f07c16f570d381b3d2e50c054ae256831dd69a..ea089f663d7eda5701ed1887042d06d9
}
.file .remove[data-v-f661725b] {
display: inline-block;
@@ -306,8 +307,8 @@ button.active[data-v-f221f6e0] {

.wrapper[data-v-70b24951] {
position: absolute;
- bottom: 8px;
- right: 15px;
+ bottom: 21px;
+ left: 15px;
z-index: 11;
display: flex;
align-items: center;
diff --git a/dist/vue-repl.js b/dist/vue-repl.js
index 76ec54386cbda4ea0e0c054f1373d0a056a54d09..ebc371d3180a202473aaf3f227ea119b9929cd8d 100644
--- a/dist/vue-repl.js
Expand Down
6 changes: 3 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 10 additions & 14 deletions src/templates/main.vue
Original file line number Diff line number Diff line change
@@ -1,27 +1,23 @@
<template>
<template v-if="NO_SETTINGS === true">
<template v-if="NO_SUSPENSE === true">
<main-app v-if="onSSR !== true" />
</template>
<main-app v-if="NO_SUSPENSE === true" />

<suspense v-else>
<main-app v-if="onSSR !== true" />
<main-app />
</suspense>
</template>

<template v-else>
<div v-if="NO_SUSPENSE === true">
<div v-else-if="NO_SUSPENSE === true">
<quasar-settings v-if="onSSR !== true" />
<main-app class="col" v-if="onSSR !== true" />
</div>

<suspense v-else>
<div>
<quasar-settings v-if="onSSR !== true" />
<main-app class="col" v-if="onSSR !== true" />
</div>

<suspense v-else>
<div>
<quasar-settings v-if="onSSR !== true" />
<main-app class="col" v-if="onSSR !== true" />
</div>
</suspense>
</template>
</suspense>
</template>

<script lang="ts">
Expand Down

0 comments on commit 3023070

Please sign in to comment.