udp-react-enterprise-component-library 25.1.0-beta.6 → 25.1.0-beta.9
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/types/index.d.ts
CHANGED
|
@@ -111,6 +111,7 @@ export * from './reports/PowerBIReport';
|
|
|
111
111
|
export * from './routes/UdpRoutes';
|
|
112
112
|
export * from './shell/Shell';
|
|
113
113
|
export * from './shell/ui/AmbientProjectSwitcher';
|
|
114
|
+
export * from './shell/ui/ShellDropdown';
|
|
114
115
|
export * from './shell/ui/FluentProfileMenuCard';
|
|
115
116
|
export * from './shell/ui/SiteHeaderRightComponent';
|
|
116
117
|
export * from './stores/catalogStore';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const ShellDropdown: {
|
|
3
|
+
(props: any): React.JSX.Element;
|
|
4
|
+
propTypes: {
|
|
5
|
+
componentName: any;
|
|
6
|
+
data: any;
|
|
7
|
+
value: any;
|
|
8
|
+
onChange: any;
|
|
9
|
+
optionLabelDisplayFunction: any;
|
|
10
|
+
placeholder: any;
|
|
11
|
+
className: any;
|
|
12
|
+
classProps: any;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
export default ShellDropdown;
|
|
@@ -9,6 +9,7 @@ export declare const SiteHeaderSpacer: (props: any) => React.JSX.Element;
|
|
|
9
9
|
declare const SiteHeader: {
|
|
10
10
|
(props: any): React.JSX.Element;
|
|
11
11
|
propTypes: {
|
|
12
|
+
breadCrumbRoot: any;
|
|
12
13
|
/**
|
|
13
14
|
* Passes the background color on the project switcher (default: theme secondary)
|
|
14
15
|
*/
|