refactor(editor): Improve linting for component and prop names (no-changelog) (#8169)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-12-28 09:49:58 +01:00
committed by GitHub
parent 639afcd7a5
commit 68cff4c59e
304 changed files with 3428 additions and 3516 deletions

View File

@@ -289,17 +289,17 @@ defineExpose({
:label="valuesLabel"
:underline="true"
:size="labelSize"
:showOptions="true"
:showExpressionSelector="false"
inputName="columns"
:show-options="true"
:show-expression-selector="false"
input-name="columns"
color="text-dark"
>
<template #options>
<parameter-options
<ParameterOptions
:parameter="parameter"
:customActions="parameterActions"
:custom-actions="parameterActions"
:loading="props.refreshInProgress"
:loadingMessage="fetchingFieldsLabel"
:loading-message="fetchingFieldsLabel"
@update:modelValue="onParameterActionSelected"
/>
</template>
@@ -360,19 +360,19 @@ defineExpose({
></n8n-icon-button>
</div>
<div :class="$style.parameterInput">
<parameter-input-full
<ParameterInputFull
:parameter="field"
:value="getParameterValue(field.name)"
:displayOptions="true"
:display-options="true"
:path="`${props.path}.${field.name}`"
:isReadOnly="refreshInProgress || field.readOnly"
:hideIssues="true"
:nodeValues="nodeValues"
:is-read-only="refreshInProgress || field.readOnly"
:hide-issues="true"
:node-values="nodeValues"
:class="$style.parameterInputFull"
@update="onValueChanged"
/>
</div>
<parameter-issues
<ParameterIssues
v-if="getFieldIssues(field).length > 0"
:issues="getFieldIssues(field)"
:class="[$style.parameterIssues, 'ml-5xs']"