@jupyter/web-components
Advanced tools
Comparing version 0.12.0 to 0.13.0
@@ -16,2 +16,3 @@ import type { Container } from '@microsoft/fast-foundation'; | ||
import { jpDateField } from './date-field/index'; | ||
import { jpDialog } from './dialog/index'; | ||
import { jpDivider } from './divider/index'; | ||
@@ -49,2 +50,3 @@ import { jpListbox } from './listbox/index'; | ||
import type { DataGrid, DataGridCell, DataGridRow } from './data-grid/index'; | ||
import type { Dialog } from './dialog/index'; | ||
import type { Divider } from './divider/index'; | ||
@@ -65,3 +67,3 @@ import type { ListboxElement } from './listbox/index'; | ||
import type { TreeView } from './tree-view/index'; | ||
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 }; | ||
export { jpAccordion, jpAccordionItem, jpAnchor, jpAnchoredRegion, jpAvatar, jpBadge, jpBreadcrumb, jpBreadcrumbItem, jpButton, jpCard, jpCheckbox, jpCombobox, jpDataGrid, jpDataGridCell, jpDataGridRow, jpDateField, jpDialog, jpDivider, jpListbox, jpMenu, jpMenuItem, jpNumberField, jpOption, jpProgress, jpProgressRing, jpRadio, jpRadioGroup, jpSearch, jpSelect, jpSlider, jpSliderLabel, jpSwitch, jpTab, jpTabPanel, jpTabs, jpTextArea, jpTextField, jpToolbar, jpTooltip, jpTreeItem, jpTreeView }; | ||
/** | ||
@@ -167,2 +169,11 @@ * All Jupyter Web Components | ||
jpDateField: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("./date-field/date-field").DateFieldOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("./date-field/date-field").DateFieldOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>; | ||
jpDialog: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{ | ||
baseName: string; | ||
template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<Dialog, 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<Dialog, any>, import("@microsoft/fast-foundation").FoundationElementDefinition>; | ||
styles: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ElementStyles, import("@microsoft/fast-foundation").FoundationElementDefinition>; | ||
}, typeof Dialog>; | ||
jpDivider: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{ | ||
@@ -169,0 +180,0 @@ baseName: string; |
@@ -20,2 +20,3 @@ export { addJupyterLabThemeChangeListener } from './utilities/theme/applyTheme'; | ||
export * from './data-grid/index'; | ||
export * from './dialog/index'; | ||
export * from './divider/index'; | ||
@@ -22,0 +23,0 @@ export * from './listbox/index'; |
@@ -17,2 +17,3 @@ // Copyright (c) Jupyter Development Team. | ||
import { jpDateField } from './date-field/index'; | ||
import { jpDialog } from './dialog/index'; | ||
import { jpDivider } from './divider/index'; | ||
@@ -43,3 +44,3 @@ import { jpListbox } from './listbox/index'; | ||
// export all components | ||
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 }; | ||
export { jpAccordion, jpAccordionItem, jpAnchor, jpAnchoredRegion, jpAvatar, jpBadge, jpBreadcrumb, jpBreadcrumbItem, jpButton, jpCard, jpCheckbox, jpCombobox, jpDataGrid, jpDataGridCell, jpDataGridRow, jpDateField, jpDialog, jpDivider, jpListbox, jpMenu, jpMenuItem, jpNumberField, jpOption, jpProgress, jpProgressRing, jpRadio, jpRadioGroup, jpSearch, jpSelect, jpSlider, jpSliderLabel, jpSwitch, jpTab, jpTabPanel, jpTabs, jpTextArea, jpTextField, jpToolbar, jpTooltip, jpTreeItem, jpTreeView }; | ||
/** | ||
@@ -69,2 +70,3 @@ * All Jupyter Web Components | ||
jpDateField, | ||
jpDialog, | ||
jpDivider, | ||
@@ -71,0 +73,0 @@ jpListbox, |
@@ -23,2 +23,3 @@ // Copyright (c) Jupyter Development Team. | ||
export * from './data-grid/index'; | ||
export * from './dialog/index'; | ||
export * from './divider/index'; | ||
@@ -25,0 +26,0 @@ export * from './listbox/index'; |
@@ -53,2 +53,7 @@ // Copyright (c) Jupyter Development Team. | ||
:host([autowidth]) ::slotted([role='option']), | ||
:host([autowidth]) ::slotted(option) { | ||
padding: 0 calc(1em + ${designUnit} * 1.25px + 1px); | ||
} | ||
.listbox[hidden] { | ||
@@ -55,0 +60,0 @@ display: none; |
{ | ||
"name": "@jupyter/web-components", | ||
"version": "0.12.0", | ||
"version": "0.13.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
1577474
163
32117