gradio/js/html
Abubakar Abid 23a2958f5e
Add a .click() event and padding parameter to the HTML component (#10155)
* add click event to html

* format

* add changeset

* add padding parameter

* fix test

* format

* add changeset

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2024-12-11 09:00:53 -08:00
..
shared Add a .click() event and padding parameter to the HTML component (#10155) 2024-12-11 09:00:53 -08:00
CHANGELOG.md chore: update versions (#10067) 2024-11-28 14:23:37 -05:00
Example.svelte
Index.svelte Add a .click() event and padding parameter to the HTML component (#10155) 2024-12-11 09:00:53 -08:00
package.json chore: update versions (#10067) 2024-11-28 14:23:37 -05:00
README.md

@gradio/html

import { BaseHTML } from "@gradio/html";

BaseHTML

	export let elem_id = "";
	export let elem_classes: string[] = [];
	export let value: string;
	export let visible = true;
	export let min_height = false;