import { FormControl } from '@@/form-components/FormControl'; import { CodeEditor } from '@@/CodeEditor'; import { ShortcutsTooltip } from '@@/CodeEditor/ShortcutsTooltip'; type Props = { values: string; setValues: (values: string) => void; valuesRef: string; isValuesRefLoading: boolean; }; export function HelmValuesInput({ values, setValues, valuesRef, isValuesRefLoading, }: Props) { return (
User-defined values will override the default chart values.
You can get more information about the Helm values file format in the{' '} official documentation . } >
Values reference (read-only)
} inputId="values-reference" size="vertical" isLoading={isValuesRefLoading} loadingText="Loading values..." className="[&>label]:w-full [&>label]:!mb-1 !mx-0" > ); }