✨ lint
This commit is contained in:
parent
72e3070ad2
commit
8cd5076f96
|
@ -93,7 +93,7 @@
|
||||||
{...props}
|
{...props}
|
||||||
name={key} />
|
name={key} />
|
||||||
</div>
|
</div>
|
||||||
{#if control === Input && !key.startsWith("_")}
|
{#if control === Input && !key.startsWith('_')}
|
||||||
<button data-cy={`${key}-binding-button`} on:click={dropdown.show}>
|
<button data-cy={`${key}-binding-button`} on:click={dropdown.show}>
|
||||||
<Icon name="edit" />
|
<Icon name="edit" />
|
||||||
</button>
|
</button>
|
||||||
|
|
|
@ -116,7 +116,7 @@
|
||||||
control={definition.control}
|
control={definition.control}
|
||||||
label={definition.label}
|
label={definition.label}
|
||||||
key={definition.key}
|
key={definition.key}
|
||||||
value={componentInstance[definition.key]|| componentInstance[definition.key].defaultValue}
|
value={componentInstance[definition.key] || componentInstance[definition.key].defaultValue}
|
||||||
{componentInstance}
|
{componentInstance}
|
||||||
{onChange}
|
{onChange}
|
||||||
props={{ ...excludeProps(definition, ['control', 'label']) }} />
|
props={{ ...excludeProps(definition, ['control', 'label']) }} />
|
||||||
|
|
|
@ -516,10 +516,30 @@ export default {
|
||||||
key: "datasource",
|
key: "datasource",
|
||||||
control: ModelViewSelect,
|
control: ModelViewSelect,
|
||||||
},
|
},
|
||||||
{ label: "Stripe Color", key: "stripeColor", control: Colorpicker, defaultValue: "#FFFFFF" },
|
{
|
||||||
{ label: "Border Color", key: "borderColor", control: Colorpicker, defaultValue: "#FFFFFF" },
|
label: "Stripe Color",
|
||||||
{ label: "TH Color", key: "backgroundColor", control: Colorpicker, defaultValue: "#FFFFFF" },
|
key: "stripeColor",
|
||||||
{ label: "TH Font Color", key: "color", control: Colorpicker, defaultValue: "#FFFFFF" },
|
control: Colorpicker,
|
||||||
|
defaultValue: "#FFFFFF",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Border Color",
|
||||||
|
key: "borderColor",
|
||||||
|
control: Colorpicker,
|
||||||
|
defaultValue: "#FFFFFF",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "TH Color",
|
||||||
|
key: "backgroundColor",
|
||||||
|
control: Colorpicker,
|
||||||
|
defaultValue: "#FFFFFF",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "TH Font Color",
|
||||||
|
key: "color",
|
||||||
|
control: Colorpicker,
|
||||||
|
defaultValue: "#FFFFFF",
|
||||||
|
},
|
||||||
{ label: "Table", key: "model", control: ModelSelect },
|
{ label: "Table", key: "model", control: ModelSelect },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -105,7 +105,7 @@ function viewTemplate({ field, modelId, groupBy, filters = [], calculation }) {
|
||||||
if (calculation) {
|
if (calculation) {
|
||||||
schema = {
|
schema = {
|
||||||
...(groupBy ? GROUP_PROPERTY : FIELD_PROPERTY),
|
...(groupBy ? GROUP_PROPERTY : FIELD_PROPERTY),
|
||||||
...SCHEMA_MAP[calculation]
|
...SCHEMA_MAP[calculation],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,6 @@
|
||||||
([field, message]) => `${field} ${message}`
|
([field, message]) => `${field} ${message}`
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
async function fetchModel() {
|
async function fetchModel() {
|
||||||
const FETCH_MODEL_URL = `/api/models/${model}`
|
const FETCH_MODEL_URL = `/api/models/${model}`
|
||||||
const response = await _bb.api.get(FETCH_MODEL_URL)
|
const response = await _bb.api.get(FETCH_MODEL_URL)
|
||||||
|
|
Loading…
Reference in New Issue