remove unused custom props

This commit is contained in:
Cory LaViska
2021-05-28 21:08:31 -04:00
parent 51f003d5fd
commit d5ee79fe1e
2 changed files with 0 additions and 10 deletions

View File

@@ -1,11 +1,6 @@
@use '../../styles/component';
:host {
--hide-duration: var(--sl-transition-medium);
--hide-timing-function: ease;
--show-duration: var(--sl-transition-medium);
--show-timing-function: ease;
display: block;
}

View File

@@ -25,11 +25,6 @@ let id = 0;
* @part summary-icon - The expand/collapse summary icon.
* @part content - The details content.
*
* @customProperty --hide-duration - The length of the hide transition.
* @customProperty --hide-timing-function - The timing function (easing) to use for the hide transition.
* @customProperty --show-duration - The length of the show transition.
* @customProperty --show-timing-function - The timing function (easing) to use for the show transition.
*
* @animation details.show - The animation to use when showing details. You can use `height: auto` with this animation.
* @animation details.hide - The animation to use when hiding details. You can use `height: auto` with this animation.
*/