@pantheon-systems/pds-toolkit-react 1.0.0-dev.254 → 1.0.0-dev.255
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/components/icons/Icon/Icon.d.ts +1 -1
- package/_dist/components/navigation/DashboardNav/dashboard-nav-utilities.d.ts +0 -1
- package/_dist/components/navigation/navigation-types.d.ts +0 -1
- package/_dist/components/navigation/navigation-utilities.d.ts +0 -1
- package/_dist/components/notifications/Toaster/useToast.d.ts +1 -5
- package/_dist/css/pds-core.css +1 -1
- package/_dist/index.js +1 -1
- package/_dist/index.js.map +1 -1
- package/_dist/libs/components/sb-docs-toc-layout.d.ts +4 -0
- package/package.json +3 -2
|
@@ -714,5 +714,5 @@ declare const svgData: {
|
|
|
714
714
|
readonly width: "576";
|
|
715
715
|
};
|
|
716
716
|
};
|
|
717
|
-
export declare const iconList:
|
|
717
|
+
export declare const iconList: PDSIcon[];
|
|
718
718
|
export {};
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { PDSIcon } from '@components/icons/Icon/Icon';
|
|
3
2
|
import { NavigationItem } from '@components/navigation/navigation-types';
|
|
4
3
|
export declare const processDashboardNavLinkContent: (baseClass: string, linkContent: JSX.Element | string, links?: NavigationItem[], icon?: PDSIcon) => JSX.Element;
|
|
@@ -7,8 +7,4 @@ export declare enum ToastType {
|
|
|
7
7
|
Success = "success",
|
|
8
8
|
Info = "info"
|
|
9
9
|
}
|
|
10
|
-
export declare const useToast: () => [
|
|
11
|
-
(type: ToastType, message: string | ReactElement, options?: ToastOptions) => string | number,
|
|
12
|
-
typeof toastApi,
|
|
13
|
-
ReturnType<typeof cssTransition>
|
|
14
|
-
];
|
|
10
|
+
export declare const useToast: () => [(type: ToastType, message: string | ReactElement, options?: ToastOptions) => string | number, typeof toastApi, ReturnType<typeof cssTransition>];
|