@patternfly/elements 2.3.0 → 2.3.2

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.
@@ -0,0 +1,4 @@
1
+ // pf-accordion/pf-accordion-header.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfAccordionHeader } from '@patternfly/elements/pf-accordion/pf-accordion-header.js';
4
+ export const AccordionHeader: ReactWebComponent<PfAccordionHeader, { onChange: 'change' }>;
@@ -0,0 +1,4 @@
1
+ // pf-accordion/pf-accordion-panel.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfAccordionPanel } from '@patternfly/elements/pf-accordion/pf-accordion-panel.js';
4
+ export const AccordionPanel: ReactWebComponent<PfAccordionPanel, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-accordion/pf-accordion.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfAccordion } from '@patternfly/elements/pf-accordion/pf-accordion.js';
4
+ export const Accordion: ReactWebComponent<PfAccordion, { onExpand: 'expand'; onCollapse: 'collapse' }>;
@@ -0,0 +1,4 @@
1
+ // pf-avatar/pf-avatar.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfAvatar } from '@patternfly/elements/pf-avatar/pf-avatar.js';
4
+ export const Avatar: ReactWebComponent<PfAvatar, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-badge/pf-badge.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfBadge } from '@patternfly/elements/pf-badge/pf-badge.js';
4
+ export const Badge: ReactWebComponent<PfBadge, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-button/pf-button.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfButton } from '@patternfly/elements/pf-button/pf-button.js';
4
+ export const Button: ReactWebComponent<PfButton, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-card/pf-card.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfCard } from '@patternfly/elements/pf-card/pf-card.js';
4
+ export const Card: ReactWebComponent<PfCard, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-clipboard-copy/pf-clipboard-copy.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfClipboardCopy } from '@patternfly/elements/pf-clipboard-copy/pf-clipboard-copy.js';
4
+ export const ClipboardCopy: ReactWebComponent<PfClipboardCopy, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-code-block/pf-code-block.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfCodeBlock } from '@patternfly/elements/pf-code-block/pf-code-block.js';
4
+ export const CodeBlock: ReactWebComponent<PfCodeBlock, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-icon/pf-icon.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfIcon } from '@patternfly/elements/pf-icon/pf-icon.js';
4
+ export const Icon: ReactWebComponent<PfIcon, { onLoad: 'load'; onError: 'error' }>;
@@ -0,0 +1,4 @@
1
+ // pf-jump-links/pf-jump-links-item.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfJumpLinksItem } from '@patternfly/elements/pf-jump-links/pf-jump-links-item.js';
4
+ export const JumpLinksItem: ReactWebComponent<PfJumpLinksItem, { onSelect: 'select'; onFocus: 'focus' }>;
@@ -0,0 +1,4 @@
1
+ // pf-jump-links/pf-jump-links-list.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfJumpLinksList } from '@patternfly/elements/pf-jump-links/pf-jump-links-list.js';
4
+ export const JumpLinksList: ReactWebComponent<PfJumpLinksList, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-jump-links/pf-jump-links.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfJumpLinks } from '@patternfly/elements/pf-jump-links/pf-jump-links.js';
4
+ export const JumpLinks: ReactWebComponent<PfJumpLinks, { onToggle: 'toggle' }>;
@@ -0,0 +1,4 @@
1
+ // pf-label/pf-label.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfLabel } from '@patternfly/elements/pf-label/pf-label.js';
4
+ export const Label: ReactWebComponent<PfLabel, { onClose: 'close' }>;
@@ -0,0 +1,4 @@
1
+ // pf-modal/pf-modal.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfModal } from '@patternfly/elements/pf-modal/pf-modal.js';
4
+ export const Modal: ReactWebComponent<PfModal, { onOpen: 'open'; onClose: 'close' }>;
@@ -0,0 +1,4 @@
1
+ // pf-panel/pf-panel.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfPanel } from '@patternfly/elements/pf-panel/pf-panel.js';
4
+ export const Panel: ReactWebComponent<PfPanel, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-popover/pf-popover.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfPopover } from '@patternfly/elements/pf-popover/pf-popover.js';
4
+ export const Popover: ReactWebComponent<PfPopover, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-progress-stepper/pf-progress-step.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfProgressStep } from '@patternfly/elements/pf-progress-stepper/pf-progress-step.js';
4
+ export const ProgressStep: ReactWebComponent<PfProgressStep, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-progress-stepper/pf-progress-stepper.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfProgressStepper } from '@patternfly/elements/pf-progress-stepper/pf-progress-stepper.js';
4
+ export const ProgressStepper: ReactWebComponent<PfProgressStepper, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-spinner/pf-spinner.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfSpinner } from '@patternfly/elements/pf-spinner/pf-spinner.js';
4
+ export const Spinner: ReactWebComponent<PfSpinner, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-switch/pf-switch.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfSwitch } from '@patternfly/elements/pf-switch/pf-switch.js';
4
+ export const Switch: ReactWebComponent<PfSwitch, { onChange: 'change' }>;
@@ -0,0 +1,4 @@
1
+ // pf-tabs/pf-tab-panel.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfTabPanel } from '@patternfly/elements/pf-tabs/pf-tab-panel.js';
4
+ export const TabPanel: ReactWebComponent<PfTabPanel, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-tabs/pf-tab.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfTab } from '@patternfly/elements/pf-tabs/pf-tab.js';
4
+ export const Tab: ReactWebComponent<PfTab, { onTabExpand: 'tab-expand' }>;
@@ -0,0 +1,4 @@
1
+ // pf-tabs/pf-tabs.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfTabs } from '@patternfly/elements/pf-tabs/pf-tabs.js';
4
+ export const Tabs: ReactWebComponent<PfTabs, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-tile/pf-tile.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfTile } from '@patternfly/elements/pf-tile/pf-tile.js';
4
+ export const Tile: ReactWebComponent<PfTile, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-timestamp/pf-timestamp.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfTimestamp } from '@patternfly/elements/pf-timestamp/pf-timestamp.js';
4
+ export const Timestamp: ReactWebComponent<PfTimestamp, {}>;
@@ -0,0 +1,4 @@
1
+ // pf-tooltip/pf-tooltip.js
2
+ import type { ReactWebComponent } from '@lit-labs/react';
3
+ import type { PfTooltip } from '@patternfly/elements/pf-tooltip/pf-tooltip.js';
4
+ export const Tooltip: ReactWebComponent<PfTooltip, {}>;