@jupyter/web-components
Advanced tools
Comparing version 0.10.1 to 0.11.0
import type { Container } from '@microsoft/fast-foundation'; | ||
import { jpAccordion } from './accordion/index'; | ||
import { jpAccordionItem } from './accordion-item/index'; | ||
import { jpAnchor } from './anchor/index'; | ||
import { jpAnchoredRegion } from './anchored-region/index'; | ||
@@ -16,2 +17,3 @@ import { jpAvatar } from './avatar/index'; | ||
import { jpDivider } from './divider/index'; | ||
import { jpListbox } from './listbox/index'; | ||
import { jpMenu } from './menu/index'; | ||
@@ -40,2 +42,3 @@ import { jpMenuItem } from './menu-item/index'; | ||
import type { Accordion } from './accordion/index'; | ||
import type { Anchor } from './anchor/index'; | ||
import type { AnchoredRegion } from './anchored-region/index'; | ||
@@ -48,2 +51,3 @@ import type { Badge } from './badge/index'; | ||
import type { Divider } from './divider/index'; | ||
import type { ListboxElement } from './listbox/index'; | ||
import type { Menu } from './menu/index'; | ||
@@ -62,3 +66,3 @@ import type { Option } from './option/index'; | ||
import type { TreeView } from './tree-view/index'; | ||
export { jpAccordion, jpAccordionItem, jpAnchoredRegion, jpAvatar, jpBadge, jpBreadcrumb, jpBreadcrumbItem, jpButton, jpCard, jpCheckbox, jpCombobox, jpDataGrid, jpDataGridCell, jpDataGridRow, jpDateField, jpDivider, jpMenu, jpMenuItem, jpNumberField, jpOption, jpProgress, jpProgressRing, jpRadio, jpRadioGroup, jpSearch, jpSelect, jpSlider, jpSliderLabel, jpSwitch, jpTab, jpTabPanel, jpTabs, jpTextArea, jpTextField, jpToolbar, jpTooltip, jpTreeItem, jpTreeView }; | ||
export { jpAccordion, jpAccordionItem, jpAnchor, jpAnchoredRegion, jpAvatar, jpBadge, jpBreadcrumb, jpBreadcrumbItem, jpButton, jpCard, jpCheckbox, jpCombobox, jpDataGrid, jpDataGridCell, jpDataGridRow, jpDateField, jpDivider, jpListbox, jpMenu, jpMenuItem, jpNumberField, jpOption, jpProgress, jpProgressRing, jpRadio, jpRadioGroup, jpSearch, jpSelect, jpSlider, jpSliderLabel, jpSwitch, jpTab, jpTabPanel, jpTabs, jpTextArea, jpTextField, jpToolbar, jpTooltip, jpTreeItem, jpTreeView }; | ||
/** | ||
@@ -82,2 +86,13 @@ * All Jupyter Web Components | ||
jpAccordionItem: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").AccordionItemOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").AccordionItemOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>; | ||
jpAnchor: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{ | ||
baseName: string; | ||
baseClass: typeof import("@microsoft/fast-foundation").Anchor; | ||
template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<import("@microsoft/fast-foundation").Anchor, any>, import("@microsoft/fast-foundation").AnchorOptions>; | ||
styles: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ElementStyles, import("@microsoft/fast-foundation").AnchorOptions>; | ||
}> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<{ | ||
baseName: string; | ||
baseClass: typeof import("@microsoft/fast-foundation").Anchor; | ||
template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<import("@microsoft/fast-foundation").Anchor, any>, import("@microsoft/fast-foundation").AnchorOptions>; | ||
styles: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ElementStyles, import("@microsoft/fast-foundation").AnchorOptions>; | ||
}, typeof Anchor>; | ||
jpAnchoredRegion: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{ | ||
@@ -163,2 +178,11 @@ baseName: string; | ||
}, typeof Divider>; | ||
jpListbox: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{ | ||
baseName: string; | ||
template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<ListboxElement, any>, import("@microsoft/fast-foundation").FoundationElementDefinition>; | ||
styles: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ElementStyles, import("@microsoft/fast-foundation").FoundationElementDefinition>; | ||
}> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<{ | ||
baseName: string; | ||
template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<ListboxElement, any>, import("@microsoft/fast-foundation").FoundationElementDefinition>; | ||
styles: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ElementStyles, import("@microsoft/fast-foundation").FoundationElementDefinition>; | ||
}, typeof ListboxElement>; | ||
jpMenu: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{ | ||
@@ -165,0 +189,0 @@ baseName: string; |
@@ -8,2 +8,3 @@ export { addJupyterLabThemeChangeListener } from './utilities/theme/applyTheme'; | ||
export * from './accordion-item/index'; | ||
export * from './anchor/index'; | ||
export * from './anchored-region/index'; | ||
@@ -21,2 +22,3 @@ export * from './avatar/index'; | ||
export * from './divider/index'; | ||
export * from './listbox/index'; | ||
export * from './menu/index'; | ||
@@ -23,0 +25,0 @@ export * from './menu-item/index'; |
@@ -5,2 +5,3 @@ // Copyright (c) Jupyter Development Team. | ||
import { jpAccordionItem } from './accordion-item/index'; | ||
import { jpAnchor } from './anchor/index'; | ||
import { jpAnchoredRegion } from './anchored-region/index'; | ||
@@ -18,2 +19,3 @@ import { jpAvatar } from './avatar/index'; | ||
import { jpDivider } from './divider/index'; | ||
import { jpListbox } from './listbox/index'; | ||
import { jpMenu } from './menu/index'; | ||
@@ -42,3 +44,3 @@ import { jpMenuItem } from './menu-item/index'; | ||
// export all components | ||
export { jpAccordion, jpAccordionItem, jpAnchoredRegion, jpAvatar, jpBadge, jpBreadcrumb, jpBreadcrumbItem, jpButton, jpCard, jpCheckbox, jpCombobox, jpDataGrid, jpDataGridCell, jpDataGridRow, jpDateField, jpDivider, jpMenu, jpMenuItem, jpNumberField, jpOption, jpProgress, jpProgressRing, jpRadio, jpRadioGroup, jpSearch, jpSelect, jpSlider, jpSliderLabel, jpSwitch, jpTab, jpTabPanel, jpTabs, jpTextArea, jpTextField, jpToolbar, jpTooltip, jpTreeItem, jpTreeView }; | ||
export { jpAccordion, jpAccordionItem, jpAnchor, jpAnchoredRegion, jpAvatar, jpBadge, jpBreadcrumb, jpBreadcrumbItem, jpButton, jpCard, jpCheckbox, jpCombobox, jpDataGrid, jpDataGridCell, jpDataGridRow, jpDateField, jpDivider, jpListbox, jpMenu, jpMenuItem, jpNumberField, jpOption, jpProgress, jpProgressRing, jpRadio, jpRadioGroup, jpSearch, jpSelect, jpSlider, jpSliderLabel, jpSwitch, jpTab, jpTabPanel, jpTabs, jpTextArea, jpTextField, jpToolbar, jpTooltip, jpTreeItem, jpTreeView }; | ||
/** | ||
@@ -54,2 +56,3 @@ * All Jupyter Web Components | ||
jpAccordionItem, | ||
jpAnchor, | ||
jpAnchoredRegion, | ||
@@ -69,2 +72,3 @@ jpAvatar, | ||
jpDivider, | ||
jpListbox, | ||
jpMenu, | ||
@@ -71,0 +75,0 @@ jpMenuItem, |
@@ -11,2 +11,3 @@ // Copyright (c) Jupyter Development Team. | ||
export * from './accordion-item/index'; | ||
export * from './anchor/index'; | ||
export * from './anchored-region/index'; | ||
@@ -24,2 +25,3 @@ export * from './avatar/index'; | ||
export * from './divider/index'; | ||
export * from './listbox/index'; | ||
export * from './menu/index'; | ||
@@ -26,0 +28,0 @@ export * from './menu-item/index'; |
{ | ||
"name": "@jupyter/web-components", | ||
"version": "0.10.1", | ||
"version": "0.11.0", | ||
"description": "A component library for building extensions in Jupyter frontends.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit#readme", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1544232
161
31300