Skip to content

Battledash-2/svselect

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🔍 svselect

Easy to use Select inputs.

Exports the Select component:

interface Param {
	label: string;
	key: string | number;
	custom?: boolean;
}

interface SelectParams {
	options?: Param[];
	multiple?: boolean;
	allowcreate?: boolean;
	hideselected?: boolean;
	onChange?: (
		newValue: Param[] | Param,
		oldValue: Param[] | Param
	) => boolean;
	selected?: Param[] | Param;
	placeholder?: string;
	id?: string;
	style?: string;
	getSelected?: () => Param[] | Param;
}

To use the getSelected function, use the bind:this derivative.

<script>
	// ... imports
	let selectBox; // call `selectBox.getSelected()`
</script>

<select bind:this="{selectBox}" allowcreate {options} />

OR

<script>
	// ... imports
	let getUserSelected; // call this whenever you want
</script>

<select bind:getSelected="{getUserSelected}" allowcreate {options} />

Made to fit in with Bootstrap. You should be able to integrate this seemlessly without a styling hassle.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published