Merge pull request #15268 from Budibase/contributor-enhancements

Plugin author enhancements
This commit is contained in:
Andrew Kingston 2024-12-31 14:19:05 +00:00 committed by GitHub
commit 5088979b18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 25 additions and 4 deletions

View File

@ -273,6 +273,7 @@
value={option.value}
icon={option.barIcon}
title={option.barTitle || option.label}
disabled={!!setting.license}
{component}
/>
{/each}
@ -281,6 +282,7 @@
prop={setting.key}
options={setting.options}
label={setting.label}
disabled={!!setting.license}
{component}
/>
{/if}
@ -289,11 +291,16 @@
prop={setting.key}
icon={setting.barIcon}
title={setting.barTitle || setting.label}
disabled={!!setting.license}
bool
{component}
/>
{:else if setting.type === "color"}
<SettingsColorPicker prop={setting.key} {component} />
<SettingsColorPicker
prop={setting.key}
{component}
disabled={!!setting.license}
/>
{/if}
{#if setting.barSeparator !== false && (settings.length != idx + 1 || !isRoot)}
<div class="divider" />

View File

@ -10,6 +10,7 @@
export let bool = false
export let active = false
export let component
export let disabled = false
const dispatch = createEventDispatcher()
@ -22,6 +23,7 @@
<div
{title}
class:active
class:disabled
on:click={() => {
if (prop) {
const newValue = bool ? !currentValue : value
@ -50,4 +52,8 @@
background-color: rgba(13, 102, 208, 0.1);
color: var(--spectrum-global-color-blue-600);
}
.disabled {
pointer-events: none;
color: var(--spectrum-global-color-gray-400);
}
</style>

View File

@ -4,14 +4,15 @@
export let prop
export let component
export let disabled = false
$: currentValue = component?.[prop]
</script>
<div>
<div class:disabled>
<ColorPicker
size="S"
value={currentValue}
value={disabled ? null : currentValue}
on:change={e => {
if (prop) {
builderStore.actions.updateProp(prop, e.detail)
@ -24,4 +25,7 @@
div {
padding: 0 4px;
}
div.disabled {
pointer-events: none;
}
</style>

View File

@ -6,6 +6,7 @@
export let options
export let label
export let component
export let disabled = false
$: currentValue = component?.[prop]
</script>
@ -16,6 +17,7 @@
autoWidth
placeholder={label}
{options}
{disabled}
value={currentValue}
on:change={e => {
if (prop) {

View File

@ -41,6 +41,7 @@ import {
memo,
derivedMemo,
} from "@budibase/frontend-core"
import { createValidatorFromConstraints } from "components/app/forms/validation"
export default {
API,
@ -81,6 +82,7 @@ export default {
generateGoldenSample: RowUtils.generateGoldenSample,
memo,
derivedMemo,
createValidatorFromConstraints,
// Components
Provider,

View File

@ -7,7 +7,7 @@ export const HPadding = 40
export const ScrollBarSize = 8
export const GutterWidth = 72
export const DefaultColumnWidth = 200
export const MinColumnWidth = 80
export const MinColumnWidth = 56
export const NewRowID = "new"
export const BlankRowID = "blank"
export const GeneratedIDPrefix = "‽‽"