elseware-ui 2.36.1 → 2.36.2
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.css +9 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.js +336 -276
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +162 -102
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1636,17 +1636,17 @@ declare const euiToast: {
|
|
|
1636
1636
|
};
|
|
1637
1637
|
declare function sendToast(data?: SendToastOptions): string;
|
|
1638
1638
|
|
|
1639
|
-
interface TransitionDropdownProps
|
|
1640
|
-
visibility:
|
|
1639
|
+
interface TransitionDropdownProps {
|
|
1640
|
+
visibility: boolean;
|
|
1641
1641
|
children?: ReactNode;
|
|
1642
1642
|
}
|
|
1643
|
-
declare function TransitionDropdown({ visibility, children }: TransitionDropdownProps
|
|
1643
|
+
declare function TransitionDropdown({ visibility, children }: TransitionDropdownProps): React__default.JSX.Element;
|
|
1644
1644
|
|
|
1645
|
-
interface
|
|
1646
|
-
visibility:
|
|
1645
|
+
interface TransitionFadeInProps {
|
|
1646
|
+
visibility: boolean;
|
|
1647
1647
|
children?: ReactNode;
|
|
1648
1648
|
}
|
|
1649
|
-
declare function TransitionFadeIn({ visibility, children }:
|
|
1649
|
+
declare function TransitionFadeIn({ visibility, children }: TransitionFadeInProps): React__default.JSX.Element;
|
|
1650
1650
|
|
|
1651
1651
|
declare const Transition: {
|
|
1652
1652
|
TransitionDropdown: typeof TransitionDropdown;
|
package/dist/index.d.ts
CHANGED
|
@@ -1636,17 +1636,17 @@ declare const euiToast: {
|
|
|
1636
1636
|
};
|
|
1637
1637
|
declare function sendToast(data?: SendToastOptions): string;
|
|
1638
1638
|
|
|
1639
|
-
interface TransitionDropdownProps
|
|
1640
|
-
visibility:
|
|
1639
|
+
interface TransitionDropdownProps {
|
|
1640
|
+
visibility: boolean;
|
|
1641
1641
|
children?: ReactNode;
|
|
1642
1642
|
}
|
|
1643
|
-
declare function TransitionDropdown({ visibility, children }: TransitionDropdownProps
|
|
1643
|
+
declare function TransitionDropdown({ visibility, children }: TransitionDropdownProps): React__default.JSX.Element;
|
|
1644
1644
|
|
|
1645
|
-
interface
|
|
1646
|
-
visibility:
|
|
1645
|
+
interface TransitionFadeInProps {
|
|
1646
|
+
visibility: boolean;
|
|
1647
1647
|
children?: ReactNode;
|
|
1648
1648
|
}
|
|
1649
|
-
declare function TransitionFadeIn({ visibility, children }:
|
|
1649
|
+
declare function TransitionFadeIn({ visibility, children }: TransitionFadeInProps): React__default.JSX.Element;
|
|
1650
1650
|
|
|
1651
1651
|
declare const Transition: {
|
|
1652
1652
|
TransitionDropdown: typeof TransitionDropdown;
|