@tetrascience-npm/tetrascience-react-ui 0.6.0-beta.86.1 → 0.6.0-beta.88.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/dist/components/composed/DataAppShell/DataAppShell.cjs +1 -1
- package/dist/components/composed/DataAppShell/DataAppShell.cjs.map +1 -1
- package/dist/components/composed/DataAppShell/DataAppShell.js +68 -67
- package/dist/components/composed/DataAppShell/DataAppShell.js.map +1 -1
- package/dist/components/ui/accordion.cjs +1 -1
- package/dist/components/ui/accordion.cjs.map +1 -1
- package/dist/components/ui/accordion.js +1 -1
- package/dist/components/ui/accordion.js.map +1 -1
- package/dist/components/ui/combobox.cjs +1 -1
- package/dist/components/ui/combobox.cjs.map +1 -1
- package/dist/components/ui/combobox.js +12 -12
- package/dist/components/ui/combobox.js.map +1 -1
- package/dist/components/ui/select.cjs +1 -1
- package/dist/components/ui/select.cjs.map +1 -1
- package/dist/components/ui/select.js +1 -1
- package/dist/components/ui/select.js.map +1 -1
- package/dist/components/ui/slider.cjs +1 -1
- package/dist/components/ui/slider.cjs.map +1 -1
- package/dist/components/ui/slider.js +9 -9
- package/dist/components/ui/slider.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.tailwind.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1181,7 +1181,7 @@ export declare interface CostBreakdown {
|
|
|
1181
1181
|
cache?: number;
|
|
1182
1182
|
}
|
|
1183
1183
|
|
|
1184
|
-
export declare function DataAppShell({ appName, appFullName, appIcon, version, navGroups, onAppNameClick, backToPlatformPath, onBackToPlatform, userMenu, breadcrumbs, onHelpClick, headerActions, sidebarPanel, children, className, }: DataAppShellProps): JSX.Element;
|
|
1184
|
+
export declare function DataAppShell({ appName, appFullName, appIcon, version, navGroups, onAppNameClick, backToPlatformPath, onBackToPlatform, userMenu, breadcrumbs, onHelpClick, headerActions, sidebarPanel, showNavRail, children, className, }: DataAppShellProps): JSX.Element;
|
|
1185
1185
|
|
|
1186
1186
|
export declare interface DataAppShellProps {
|
|
1187
1187
|
/** Application name/abbreviation shown in the logo button */
|
|
@@ -1210,6 +1210,8 @@ export declare interface DataAppShellProps {
|
|
|
1210
1210
|
headerActions?: React_2.ReactNode;
|
|
1211
1211
|
/** Slot rendered between the icon rail and the content (e.g. WorkflowPanel) */
|
|
1212
1212
|
sidebarPanel?: React_2.ReactNode;
|
|
1213
|
+
/** Show the desktop icon nav rail. Set false to reclaim width when the panel is collapsed. */
|
|
1214
|
+
showNavRail?: boolean;
|
|
1213
1215
|
/** Main content area */
|
|
1214
1216
|
children: React_2.ReactNode;
|
|
1215
1217
|
/** Additional className for the root container */
|