indicator-ui 1.0.13 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -14693,15 +14693,15 @@ function Dh(...r) {
|
|
|
14693
14693
|
ease: "power2.out",
|
|
14694
14694
|
duration: 0.5
|
|
14695
14695
|
}).to(t, {
|
|
14696
|
-
|
|
14696
|
+
y: "0",
|
|
14697
14697
|
ease: "power2.out",
|
|
14698
14698
|
duration: 0.5
|
|
14699
|
-
}, "<").set(e, { transform: "none" }), n), disappear: () => (n.clear().to(e, {
|
|
14699
|
+
}, "<").set(e, { transform: "none" }).set(t, { transform: "none" }), n), disappear: () => (n.clear().to(e, {
|
|
14700
14700
|
height: 0,
|
|
14701
14701
|
duration: 0.5,
|
|
14702
14702
|
ease: "power2.out"
|
|
14703
14703
|
}).to(t, {
|
|
14704
|
-
|
|
14704
|
+
y: "-100%",
|
|
14705
14705
|
ease: "power2.out",
|
|
14706
14706
|
duration: 0.5
|
|
14707
14707
|
}, "<").set(e, { visibility: "hidden" }), n), changeHeight: (l) => {
|
|
@@ -15094,7 +15094,7 @@ function BB(r) {
|
|
|
15094
15094
|
close: _,
|
|
15095
15095
|
toggle: y,
|
|
15096
15096
|
getContentInitStyle: () => ({
|
|
15097
|
-
transform:
|
|
15097
|
+
transform: e === "close" ? "translateY(-100%)" : void 0
|
|
15098
15098
|
}),
|
|
15099
15099
|
getWrapperInitStyle: () => ({
|
|
15100
15100
|
height: e === "close" ? "0" : void 0
|
|
@@ -9,7 +9,7 @@ type PropsType<C extends ElementType, W extends ElementType> = AsProps<C, {
|
|
|
9
9
|
onUpdateState?: (state: CollapseState) => void;
|
|
10
10
|
initialState?: CollapseState;
|
|
11
11
|
}>;
|
|
12
|
-
type RefType = CollapsibleReturnType
|
|
12
|
+
type RefType = Omit<CollapsibleReturnType, 'getWrapperInitStyle' | 'getContentInitStyle'>;
|
|
13
13
|
/**
|
|
14
14
|
* Collapse — полиморфный JSX-компонент, являющийся компонентной реализацией хука `useCollapsible`.
|
|
15
15
|
*
|