dawn-ui-react 1.0.0-alpha.10 → 1.0.0-alpha.11
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/code-block/code-block-window.d.ts +1 -2
- package/dist/components/code-block/code-block.types.d.ts +1 -1
- package/dist/components/code-block/index.d.ts +9 -1
- package/dist/dawn-ui-react.js +1704 -1555
- package/dist/dawn-ui-react.umd.cjs +24 -24
- package/package.json +1 -1
- package/dist/components/code-block/code-block-header-group.d.ts +0 -2
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import { CodeBlockWindowProps } from './code-block.types';
|
|
2
2
|
export declare const CodeBlockWindow: ({ className, children, ref, ...props }: CodeBlockWindowProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
export {};
|
|
@@ -21,6 +21,6 @@ export type CodeBlockCopyProps = React.ComponentProps<'button'>;
|
|
|
21
21
|
export type CodeBlockNameProps = React.ComponentProps<'div'>;
|
|
22
22
|
export type CodeBlockSelectProps = React.ComponentProps<typeof SelectTrigger>;
|
|
23
23
|
export type CodeBlockHeaderGroupProps = React.ComponentProps<'div'>;
|
|
24
|
-
export type CodeBlockTitleProps = React.ComponentProps<'div'>;
|
|
25
24
|
export type CodeBlockDownloadProps = React.ComponentProps<'button'>;
|
|
26
25
|
export type CodeBlockActionsProps = React.ComponentProps<'div'>;
|
|
26
|
+
export type CodeBlockWindowProps = React.ComponentProps<'div'>;
|
|
@@ -1,2 +1,10 @@
|
|
|
1
|
-
export type { CodeBlockProps } from './code-block.types';
|
|
1
|
+
export type { CodeBlockProps, CodeBlockActionsProps, CodeBlockCopyProps, CodeBlockDownloadProps, CodeBlockHeaderGroupProps, CodeBlockNameProps, CodeBlockProviderState, CodeBlockSelectProps, CodeBlockTabsProps, CodeBlockWindowProps, CodeBlockValue, } from './code-block.types';
|
|
2
2
|
export { CodeBlock } from './code-block';
|
|
3
|
+
export { CodeBlockActions } from './code-block-actions';
|
|
4
|
+
export { CodeBlockCopy } from './code-block-copy';
|
|
5
|
+
export { CodeBlockDownload } from './code-block-download';
|
|
6
|
+
export { CodeBlockHeader } from './code-block-header';
|
|
7
|
+
export { CodeBlockName } from './code-block-name';
|
|
8
|
+
export { CodeBlockSelect } from './code-block-select';
|
|
9
|
+
export { CodeBlockTabs } from './code-block-tabs';
|
|
10
|
+
export { CodeBlockWindow } from './code-block-window';
|