Skip to content

Commit

Permalink
Merge pull request #3280 from bettyblocks/feat/add-debounce-delay-on-…
Browse files Browse the repository at this point in the history
…change-interaction-textinput-PFR-412

feat: add debounce delay on change interaction textinput PFR-412
  • Loading branch information
ingmar-stipriaan authored Nov 15, 2023
2 parents 1240b28 + 4658991 commit 7048377
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/prefabs/structures/TextInput/options/advanced.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { variable, text, number } from '@betty-blocks/component-sdk';

export const advanced = {
debounceDelay: number('Debounce delay (in ms)'),
debounceDelay: number('Interaction (change) delay in milliseconds', {
value: '0',
}),
dataComponentAttribute: variable('Test attribute', {
value: [],
}),
Expand Down

0 comments on commit 7048377

Please sign in to comment.