@datarobot/design-system 28.7.1 → 28.8.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/cjs/collapsible-sidebar/collapsible-sidebar.d.ts +2 -1
- package/cjs/collapsible-sidebar/collapsible-sidebar.js +8 -7
- package/cjs/full-screen-drawer/useFullScreenDrawer.js +1 -0
- package/cjs/full-screen-drawer/useFullScreenDrawer.test.js +12 -0
- package/esm/collapsible-sidebar/collapsible-sidebar.d.ts +2 -1
- package/esm/collapsible-sidebar/collapsible-sidebar.js +8 -6
- package/esm/full-screen-drawer/useFullScreenDrawer.js +1 -0
- package/esm/full-screen-drawer/useFullScreenDrawer.test.js +12 -0
- package/js/bundle/bundle.js +29 -16
- package/js/bundle/bundle.min.js +1 -1
- package/js/bundle/index.d.ts +2 -1
- package/package.json +1 -1
package/js/bundle/index.d.ts
CHANGED
|
@@ -1228,7 +1228,8 @@ export type CollapsibleSidebarProps = {
|
|
|
1228
1228
|
* @midnight-gray-supported
|
|
1229
1229
|
* @alpine-light-supported
|
|
1230
1230
|
* */
|
|
1231
|
-
|
|
1231
|
+
const CollapsibleSidebar: React.ForwardRefExoticComponent<CollapsibleSidebarProps & React.RefAttributes<HTMLDivElement>>;
|
|
1232
|
+
export default CollapsibleSidebar;
|
|
1232
1233
|
|
|
1233
1234
|
import './copy-to-clipboard.less';
|
|
1234
1235
|
export type CopyToClipboardProps = {
|