@budibase/frontend-core 2.13.14 → 2.13.15
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.13.
|
|
3
|
+
"version": "2.13.15",
|
|
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.13.
|
|
10
|
-
"@budibase/shared-core": "2.13.
|
|
9
|
+
"@budibase/bbui": "2.13.15",
|
|
10
|
+
"@budibase/shared-core": "2.13.15",
|
|
11
11
|
"dayjs": "^1.10.8",
|
|
12
12
|
"lodash": "^4.17.21",
|
|
13
13
|
"socket.io-client": "^4.6.1",
|
|
14
14
|
"svelte": "^3.46.2"
|
|
15
15
|
},
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "8ada75c2f51c6ddff52676944b0d6e9395ea1c0b"
|
|
17
17
|
}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import { GutterWidth } from "../lib/constants"
|
|
3
|
-
import { getContext } from "svelte"
|
|
3
|
+
import { getContext, createEventDispatcher } from "svelte"
|
|
4
4
|
import { Checkbox, Icon } from "@budibase/bbui"
|
|
5
5
|
import GridCell from "./GridCell.svelte"
|
|
6
|
-
import { createEventDispatcher } from "svelte"
|
|
7
6
|
|
|
8
7
|
export let row
|
|
9
8
|
export let rowFocused = false
|
|
@@ -4,8 +4,7 @@
|
|
|
4
4
|
import GridScrollWrapper from "./GridScrollWrapper.svelte"
|
|
5
5
|
import DataCell from "../cells/DataCell.svelte"
|
|
6
6
|
import { fade } from "svelte/transition"
|
|
7
|
-
import { GutterWidth } from "../lib/constants"
|
|
8
|
-
import { NewRowID } from "../lib/constants"
|
|
7
|
+
import { GutterWidth, NewRowID } from "../lib/constants"
|
|
9
8
|
import GutterCell from "../cells/GutterCell.svelte"
|
|
10
9
|
import KeyboardShortcut from "./KeyboardShortcut.svelte"
|
|
11
10
|
|