uibee 2.10.0 → 2.10.1
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/package.json
CHANGED
|
@@ -55,7 +55,7 @@ declare module 'uibee/components' {
|
|
|
55
55
|
idKey?: string
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
export
|
|
58
|
+
export function LoginPage(props: LoginPageProps): JSX.Element;
|
|
59
59
|
export function Toaster(): JSX.Element;
|
|
60
60
|
export function toast(message: string, type: ToastType, duration?: number): void;
|
|
61
61
|
export namespace toast {
|
|
@@ -64,8 +64,8 @@ declare module 'uibee/components' {
|
|
|
64
64
|
export function warning(message: string, duration?: number): void;
|
|
65
65
|
export function error(message: string, duration?: number): void;
|
|
66
66
|
}
|
|
67
|
-
export
|
|
68
|
-
export
|
|
67
|
+
export function LanguageToggle(props: { lang: Language }): JSX.Element;
|
|
68
|
+
export function ThemeSwitch(props: { className?: string }): JSX.Element;
|
|
69
69
|
|
|
70
70
|
export interface ConfirmPopupProps {
|
|
71
71
|
isOpen: boolean
|
|
@@ -79,7 +79,7 @@ declare module 'uibee/components' {
|
|
|
79
79
|
}
|
|
80
80
|
export function ConfirmPopup(props: ConfirmPopupProps): JSX.Element | null;
|
|
81
81
|
|
|
82
|
-
export
|
|
82
|
+
export function Table(props: TableProps): JSX.Element;
|
|
83
83
|
export function Pagination(props: { pageSize?: number; totalRows?: number }): JSX.Element;
|
|
84
84
|
|
|
85
85
|
export function MenuButton(props: {
|