@budibase/frontend-core 3.19.0 → 3.19.2
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/frontend-core",
|
|
3
|
-
"version": "3.19.
|
|
3
|
+
"version": "3.19.2",
|
|
4
4
|
"description": "Budibase frontend core libraries used in builder and client",
|
|
5
5
|
"author": "Budibase",
|
|
6
6
|
"license": "MPL-2.0",
|
|
@@ -17,5 +17,5 @@
|
|
|
17
17
|
"shortid": "2.2.15",
|
|
18
18
|
"socket.io-client": "^4.7.5"
|
|
19
19
|
},
|
|
20
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "6d89c268f83c9702e183b1372e6db79ed1e48e9d"
|
|
21
21
|
}
|
package/src/components/index.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
export { default as SplitPage } from "./SplitPage.svelte"
|
|
2
|
-
export { default as TestimonialPage } from "./TestimonialPage.svelte"
|
|
3
2
|
export { default as SignatureModal } from "./SignatureModal.svelte"
|
|
4
|
-
export { default as Testimonial } from "./Testimonial.svelte"
|
|
5
3
|
export { default as UserAvatar } from "./UserAvatar.svelte"
|
|
6
4
|
export { default as UserAvatars } from "./UserAvatars.svelte"
|
|
7
5
|
export { default as Updating } from "./Updating.svelte"
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
import { Layout } from "@budibase/bbui"
|
|
3
|
-
import Bulgaria from "../../assets/bulgaria.png"
|
|
4
|
-
import Reworld from "../../assets/reworld.png"
|
|
5
|
-
import Schnellecke from "../../assets/schnellecke.png"
|
|
6
|
-
|
|
7
|
-
const testimonials = [
|
|
8
|
-
{
|
|
9
|
-
text: "Budibase was the only solution that checked all the boxes for Reworld. Reworld expects to realize $3.2MM in savings due to the elimination of redundant data entry.",
|
|
10
|
-
name: "Charles Link",
|
|
11
|
-
role: "Senior Director, Data and Analytics",
|
|
12
|
-
image: Reworld,
|
|
13
|
-
imageSize: 105,
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
text: "Budibase was mission-critical for us and went a long way in preventing what could have become a humanitarian crisis here in Bulgaria.",
|
|
17
|
-
name: "Bozhidar Bozhanov",
|
|
18
|
-
role: "Government of Bulgaria",
|
|
19
|
-
image: Bulgaria,
|
|
20
|
-
imageSize: 49,
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
text: "Centralization of authentication, quick turnaround time for requests, integration with different database systems has given it the edge and it’s now used daily for internal development for those apps that you know you need but don’t feel value in losing days of development to reinvent the wheel.",
|
|
24
|
-
name: "Davide Lenzarini",
|
|
25
|
-
role: "IT manager",
|
|
26
|
-
image: Schnellecke,
|
|
27
|
-
imageSize: 141,
|
|
28
|
-
},
|
|
29
|
-
]
|
|
30
|
-
const testimonial = testimonials[Math.floor(Math.random() * 3)]
|
|
31
|
-
</script>
|
|
32
|
-
|
|
33
|
-
<div class="testimonial">
|
|
34
|
-
<Layout noPadding gap="S">
|
|
35
|
-
<img
|
|
36
|
-
width={testimonial.imageSize}
|
|
37
|
-
alt="a-happy-budibase-user"
|
|
38
|
-
src={testimonial.image}
|
|
39
|
-
/>
|
|
40
|
-
<div class="text">
|
|
41
|
-
"{testimonial.text}"
|
|
42
|
-
</div>
|
|
43
|
-
<div class="author">
|
|
44
|
-
<div class="name">{testimonial.name}</div>
|
|
45
|
-
<div class="company">{testimonial.role}</div>
|
|
46
|
-
</div>
|
|
47
|
-
</Layout>
|
|
48
|
-
</div>
|
|
49
|
-
|
|
50
|
-
<style>
|
|
51
|
-
.testimonial {
|
|
52
|
-
width: 380px;
|
|
53
|
-
padding: 40px;
|
|
54
|
-
}
|
|
55
|
-
.text {
|
|
56
|
-
font-size: var(--font-size-l);
|
|
57
|
-
font-style: italic;
|
|
58
|
-
}
|
|
59
|
-
.name {
|
|
60
|
-
font-weight: bold;
|
|
61
|
-
color: var(--spectrum-global-color-gray-900);
|
|
62
|
-
font-size: var(--font-size-l);
|
|
63
|
-
}
|
|
64
|
-
.company {
|
|
65
|
-
color: var(--spectrum-global-color-gray-700);
|
|
66
|
-
}
|
|
67
|
-
</style>
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
import SplitPage from "./SplitPage.svelte"
|
|
3
|
-
import Testimonial from "./Testimonial.svelte"
|
|
4
|
-
|
|
5
|
-
export let enabled = true
|
|
6
|
-
</script>
|
|
7
|
-
|
|
8
|
-
<SplitPage>
|
|
9
|
-
<slot />
|
|
10
|
-
<div class:wrapper={enabled} slot="right">
|
|
11
|
-
{#if enabled}
|
|
12
|
-
<Testimonial />
|
|
13
|
-
{/if}
|
|
14
|
-
</div>
|
|
15
|
-
</SplitPage>
|
|
16
|
-
|
|
17
|
-
<style>
|
|
18
|
-
.wrapper {
|
|
19
|
-
width: 100%;
|
|
20
|
-
height: 100%;
|
|
21
|
-
display: grid;
|
|
22
|
-
place-items: center;
|
|
23
|
-
}
|
|
24
|
-
</style>
|