@budibase/frontend-core 2.6.19-alpha.49 → 2.6.19-alpha.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@budibase/frontend-core",
3
- "version": "2.6.19-alpha.49",
3
+ "version": "2.6.19-alpha.50",
4
4
  "description": "Budibase frontend core libraries used in builder and client",
5
5
  "author": "Budibase",
6
6
  "license": "MPL-2.0",
7
7
  "svelte": "src/index.js",
8
8
  "dependencies": {
9
- "@budibase/bbui": "2.6.19-alpha.49",
10
- "@budibase/shared-core": "2.6.19-alpha.49",
9
+ "@budibase/bbui": "2.6.19-alpha.50",
10
+ "@budibase/shared-core": "2.6.19-alpha.50",
11
11
  "dayjs": "^1.11.7",
12
12
  "lodash": "^4.17.21",
13
13
  "socket.io-client": "^4.6.1",
14
14
  "svelte": "^3.46.2"
15
15
  },
16
- "gitHead": "9409103d5e82b9023c3020cc861b8ceecaa9f87b"
16
+ "gitHead": "de26b630db38ac507efa157899271e91da34b18e"
17
17
  }
@@ -7,7 +7,6 @@
7
7
  import { createAPIClient } from "../../../api"
8
8
  import { attachStores } from "../stores"
9
9
  import BulkDeleteHandler from "../controls/BulkDeleteHandler.svelte"
10
- import BetaButton from "../controls/BetaButton.svelte"
11
10
  import GridBody from "./GridBody.svelte"
12
11
  import ResizeOverlay from "../overlays/ResizeOverlay.svelte"
13
12
  import ReorderOverlay from "../overlays/ReorderOverlay.svelte"
@@ -144,7 +143,6 @@
144
143
  <HeaderRow />
145
144
  <GridBody />
146
145
  </div>
147
- <BetaButton />
148
146
  {#if allowAddRows}
149
147
  <NewRow />
150
148
  {/if}
@@ -1,4 +1,4 @@
1
- export const Padding = 128
1
+ export const Padding = 256
2
2
  export const MaxCellRenderHeight = 252
3
3
  export const MaxCellRenderWidthOverflow = 200
4
4
  export const ScrollBarSize = 8
@@ -1,46 +0,0 @@
1
- <script>
2
- import { Button } from "@budibase/bbui"
3
- </script>
4
-
5
- <div class="beta-background" />
6
- <div class="beta">
7
- Enjoying the Grid?
8
- <Button
9
- size="M"
10
- cta
11
- on:click={() => window.open("https://t.maze.co/156382627", "_blank")}
12
- >
13
- Give Feedback
14
- </Button>
15
- </div>
16
-
17
- <style>
18
- .beta {
19
- position: absolute;
20
- bottom: 32px;
21
- right: 32px;
22
- display: flex;
23
- flex-direction: row;
24
- align-items: center;
25
- gap: 16px;
26
- }
27
- .beta :global(.spectrum-Button) {
28
- background: var(--spectrum-global-color-magenta-400);
29
- border-color: var(--spectrum-global-color-magenta-400);
30
- }
31
- .beta-background {
32
- z-index: 0;
33
- pointer-events: none;
34
- position: absolute;
35
- bottom: -230px;
36
- right: -105px;
37
- width: 1400px;
38
- height: 320px;
39
- transform: rotate(-22deg);
40
- background: linear-gradient(
41
- to top,
42
- var(--cell-background) 20%,
43
- transparent
44
- );
45
- }
46
- </style>