We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c1af7d commit af2a02fCopy full SHA for af2a02f
packages/components/src/components/input/input.lite.tsx
@@ -256,7 +256,8 @@ export default function DBInput(props: DBInputProps) {
256
'-option-' +
257
option.value
258
}
259
- value={option.value}>
+ value={option.value}
260
+ data-value={option.hiddenValue}>
261
{option.label}
262
</option>
263
)}
packages/components/src/shared/model.ts
@@ -694,6 +694,7 @@ export type AriaControlsProps = {
694
export type ValueLabelType = {
695
value: string;
696
label?: string;
697
+ hiddenValue?: string;
698
};
699
700
export type DocumentScrollState = {
0 commit comments