@skeletonlabs/skeleton
Advanced tools
Comparing version 2.7.1 to 2.8.0-dev.866cda1f
@@ -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 {}; |
@@ -26,6 +26,2 @@ import { SvelteComponentTyped } from "svelte"; | ||
spacing?: string | undefined; | ||
/** Set open by default on load.*/ | ||
open?: boolean | undefined; | ||
/** Set the tree disabled state*/ | ||
disabled?: boolean | undefined; | ||
/** Provide classes to set the tree item padding styles.*/ | ||
@@ -32,0 +28,0 @@ padding?: string | undefined; |
{ | ||
"name": "@skeletonlabs/skeleton", | ||
"version": "2.7.1", | ||
"version": "2.8.0-dev.866cda1f", | ||
"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
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
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
1