@jupyter-notebook/web-components
Version:
A component library for building extensions in Jupyter frontends.
25 lines (24 loc) • 748 B
JavaScript
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
import { TabPanel, tabPanelTemplate as template } from '@microsoft/fast-foundation';
import { tabPanelStyles as styles } from '@microsoft/fast-components';
/**
* A function that returns a {@link @microsoft/fast-foundation#TabPanel} registration for configuring the component with a DesignSystem.
* Implements {@link @microsoft/fast-foundation#tabPanelTemplate}
*
*
* @public
* @remarks
* Generates HTML Element: `<jp-tab-panel>`
*/
export const jpTabPanel = TabPanel.compose({
baseName: 'tab-panel',
template,
styles
});
/**
* Base class for TabPanel
* @public
*/
export { TabPanel };
export { styles as tabPanelStyles };