@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.
- package/package.json +1 -1
- package/pfe.min.js +101 -101
- package/pfe.min.js.map +4 -4
- package/react/pf-accordion/pf-accordion-header.d.ts +4 -0
- package/react/pf-accordion/pf-accordion-panel.d.ts +4 -0
- package/react/pf-accordion/pf-accordion.d.ts +4 -0
- package/react/pf-avatar/pf-avatar.d.ts +4 -0
- package/react/pf-badge/pf-badge.d.ts +4 -0
- package/react/pf-button/pf-button.d.ts +4 -0
- package/react/pf-card/pf-card.d.ts +4 -0
- package/react/pf-clipboard-copy/pf-clipboard-copy.d.ts +4 -0
- package/react/pf-code-block/pf-code-block.d.ts +4 -0
- package/react/pf-icon/pf-icon.d.ts +4 -0
- package/react/pf-jump-links/pf-jump-links-item.d.ts +4 -0
- package/react/pf-jump-links/pf-jump-links-list.d.ts +4 -0
- package/react/pf-jump-links/pf-jump-links.d.ts +4 -0
- package/react/pf-label/pf-label.d.ts +4 -0
- package/react/pf-modal/pf-modal.d.ts +4 -0
- package/react/pf-panel/pf-panel.d.ts +4 -0
- package/react/pf-popover/pf-popover.d.ts +4 -0
- package/react/pf-progress-stepper/pf-progress-step.d.ts +4 -0
- package/react/pf-progress-stepper/pf-progress-stepper.d.ts +4 -0
- package/react/pf-spinner/pf-spinner.d.ts +4 -0
- package/react/pf-switch/pf-switch.d.ts +4 -0
- package/react/pf-tabs/pf-tab-panel.d.ts +4 -0
- package/react/pf-tabs/pf-tab.d.ts +4 -0
- package/react/pf-tabs/pf-tabs.d.ts +4 -0
- package/react/pf-tile/pf-tile.d.ts +4 -0
- package/react/pf-timestamp/pf-timestamp.d.ts +4 -0
- package/react/pf-tooltip/pf-tooltip.d.ts +4 -0
|
@@ -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.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-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-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, {}>;
|