Merge pull request #1480 from Budibase/restapi_fix
Rest api fix & desktop deprecation banner
This commit is contained in:
commit
2dd8de0e94
|
@ -55,5 +55,6 @@
|
||||||
height={200}
|
height={200}
|
||||||
{query}
|
{query}
|
||||||
schema={fetchQueryDefinition(query)}
|
schema={fetchQueryDefinition(query)}
|
||||||
editable={false} />
|
editable={false}
|
||||||
|
{datasource} />
|
||||||
{/if}
|
{/if}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { Home as Link } from "@budibase/bbui"
|
import { Home as Link, Button } from "@budibase/bbui"
|
||||||
import {
|
import {
|
||||||
AppsIcon,
|
AppsIcon,
|
||||||
HostingIcon,
|
HostingIcon,
|
||||||
|
@ -10,8 +10,31 @@
|
||||||
import BuilderSettingsButton from "components/start/BuilderSettingsButton.svelte"
|
import BuilderSettingsButton from "components/start/BuilderSettingsButton.svelte"
|
||||||
|
|
||||||
let modal
|
let modal
|
||||||
|
$: deprecationWarning = true
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
{#if deprecationWarning}
|
||||||
|
<div class="deprecation-root">
|
||||||
|
|
||||||
|
<div class="deprecation-inner">
|
||||||
|
<div class="deprecation-text">
|
||||||
|
From the 25th of May, Budibase is moving to a self-hosted web experience in the browser.<br/>
|
||||||
|
We will cease development on the current Electron based desktop builder.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="deprecation-actions">
|
||||||
|
|
||||||
|
<a href="https://github.com/Budibase/budibase/discussions/1487" target="_blank">read more</a>
|
||||||
|
|
||||||
|
<button on:click={() => deprecationWarning = false}>
|
||||||
|
Close
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
<div class="root">
|
<div class="root">
|
||||||
<div class="ui-nav">
|
<div class="ui-nav">
|
||||||
<div class="home-logo">
|
<div class="home-logo">
|
||||||
|
@ -49,6 +72,77 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
|
.deprecation-root {
|
||||||
|
padding: 20px;
|
||||||
|
background-color: var(--yellow-light);
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.deprecation-inner {
|
||||||
|
display: flex;
|
||||||
|
max-width: 900px;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.deprecation-text {
|
||||||
|
flex: 1 1 auto;
|
||||||
|
color: black;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.deprecation-actions {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
padding-left: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.deprecation-actions > a {
|
||||||
|
color: white;
|
||||||
|
border-color: black;
|
||||||
|
background-color: black;
|
||||||
|
font-size: var(--font-size-xs);
|
||||||
|
padding: var(--spacing-xs) var(--spacing-m);
|
||||||
|
font-family: var(--font-sans);
|
||||||
|
cursor: pointer;
|
||||||
|
font-weight: 600;
|
||||||
|
box-sizing: border-box;
|
||||||
|
overflow: hidden;
|
||||||
|
border-radius: var(--border-radius-s);
|
||||||
|
transition: all 0.2s ease 0s;
|
||||||
|
display: inline-flex;
|
||||||
|
text-rendering: optimizeLegibility;
|
||||||
|
text-decoration: none;
|
||||||
|
min-width: auto;
|
||||||
|
outline: none;
|
||||||
|
font-feature-settings: "case" 1, "rlig" 1, "calt" 0;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
user-select: none;
|
||||||
|
flex-shrink: 0;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 0;
|
||||||
|
border-width: 2px;
|
||||||
|
border-style: solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
.deprecation-actions > a:hover {
|
||||||
|
background-color: white;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.deprecation-actions > button {
|
||||||
|
border-style: none;
|
||||||
|
background-color: rgba(0,0,0,0);
|
||||||
|
color: rgb(117, 117, 117);
|
||||||
|
cursor: pointer;
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.deprecation-actions > button:hover {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
.root {
|
.root {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 260px 1fr;
|
grid-template-columns: 260px 1fr;
|
||||||
|
|
Loading…
Reference in New Issue