@skeletonlabs/skeleton
Advanced tools
Comparing version 2.7.1-dev.158d9733 to 2.7.1-dev.69b68256
@@ -47,2 +47,4 @@ import { SvelteComponentTyped } from "svelte"; | ||
regionInput?: string | undefined; | ||
/** Provide the ARIA label for the select input.*/ | ||
label?: string | undefined; | ||
/** Enable/Disable transitions*/ | ||
@@ -66,2 +68,4 @@ transitions?: boolean | undefined; | ||
chipTransitionOutParams?: TransitionParams<ChipTransitionOut> | undefined; | ||
addChip?: ((chip: string) => void) | undefined; | ||
removeChip?: ((chip: string) => void) | undefined; | ||
}; | ||
@@ -86,2 +90,9 @@ events(): { | ||
}>; | ||
addManually: CustomEvent<{ | ||
chipIndex: number; | ||
chipValue: string; | ||
}>; | ||
removeManually: CustomEvent<{ | ||
chipValue: string; | ||
}>; | ||
invalid: CustomEvent<{ | ||
@@ -91,2 +102,5 @@ event: SubmitEvent; | ||
}>; | ||
invalidManually: CustomEvent<{ | ||
input: string; | ||
}>; | ||
} & { | ||
@@ -101,3 +115,5 @@ [evt: string]: CustomEvent<any>; | ||
export default class InputChip<ListTransitionIn extends Transition = FlyTransition, ListTransitionOut extends Transition = FlyTransition, ChipTransitionIn extends Transition = ScaleTransition, ChipTransitionOut extends Transition = ScaleTransition> extends SvelteComponentTyped<InputChipProps<ListTransitionIn, ListTransitionOut, ChipTransitionIn, ChipTransitionOut>, InputChipEvents<ListTransitionIn, ListTransitionOut, ChipTransitionIn, ChipTransitionOut>, InputChipSlots<ListTransitionIn, ListTransitionOut, ChipTransitionIn, ChipTransitionOut>> { | ||
get addChip(): (chip: string) => void; | ||
get removeChip(): (chip: string) => void; | ||
} | ||
export {}; |
{ | ||
"name": "@skeletonlabs/skeleton", | ||
"version": "2.7.1-dev.158d9733", | ||
"version": "2.7.1-dev.69b68256", | ||
"description": "A SvelteKit component library.", | ||
@@ -5,0 +5,0 @@ "author": "endigo9740 <chris@skeletonlabs.dev>", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
310842
4410