@mezo-org/mezo-clay 0.1.0-dev.18 → 0.1.0-dev.19
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/dist/components/accordion/panel.d.ts +19 -2
- package/dist/components/tabs/tabs.d.ts +1 -1
- package/dist/mezo-clay.es.js +9801 -9774
- package/dist/mezo-clay.umd.js +26 -26
- package/dist/utils/console.d.ts +1 -0
- package/package.json +18 -17
|
@@ -1,3 +1,20 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { PanelTitleProps } from './types';
|
|
2
3
|
export declare function PanelTitle({ artwork, artworkSize, title, subtitle, }: PanelTitleProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
export declare
|
|
4
|
+
export declare const Panel: React.ForwardRefExoticComponent<{
|
|
5
|
+
children?: React.ReactNode;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
'aria-controls'?: string;
|
|
8
|
+
key?: React.Key;
|
|
9
|
+
onChange?: import('baseui/accordion').OnChangeHandler;
|
|
10
|
+
onClick?: (e: Event) => unknown;
|
|
11
|
+
onKeyDown?: (e: KeyboardEvent) => unknown;
|
|
12
|
+
overrides?: import('baseui/accordion').PanelOverrides;
|
|
13
|
+
title?: React.ReactNode;
|
|
14
|
+
renderPanelContent?: boolean;
|
|
15
|
+
renderAll?: boolean;
|
|
16
|
+
} & {
|
|
17
|
+
expanded?: boolean;
|
|
18
|
+
} & {
|
|
19
|
+
id?: string;
|
|
20
|
+
} & React.RefAttributes<HTMLElement>>;
|
|
@@ -5,5 +5,5 @@ export type TabProps = BaseTabProps & {
|
|
|
5
5
|
export type TabsProps = BaseTabsProps & {
|
|
6
6
|
id?: string;
|
|
7
7
|
};
|
|
8
|
-
export declare function Tabs({ id, overrides, children, ...restProps }: TabsProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare function Tabs({ id, activeKey, overrides, children, ...restProps }: TabsProps): import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
export declare function Tab(props: TabProps): import("react/jsx-runtime").JSX.Element;
|