@bbki.ng/components 1.5.12 → 1.5.13

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/index.d.ts CHANGED
@@ -83,7 +83,10 @@ declare type PageProps = {
83
83
  main: ReactElement;
84
84
  footer: ReactElement;
85
85
  };
86
- declare const Page: (props: PageProps) => JSX.Element;
86
+ declare const Page: (props: PageProps) => JSX.Element;
87
+ declare const NotFound: (props: {
88
+ children?: any;
89
+ }) => JSX.Element;
87
90
 
88
91
  declare type PopConfirmProps = {
89
92
  onOk?: EventHandler<React.MouseEvent<HTMLButtonElement>> | (() => Promise<void>);
@@ -193,4 +196,13 @@ interface LinkListProps extends Omit<listProps, "itemRenderer" | "items"> {
193
196
  }
194
197
  declare const LinkList: (props: LinkListProps) => JSX.Element;
195
198
 
196
- export { Article, ArticleProps, ArticleSkeleton, ArticleSkeletonProps, BLinkDotProps, BlinkDot, Breadcrumb, BreadcrumbProps, Button, ButtonProps, ButtonType, DropImage, ImageDropProps, ImagePreviewerProps, Link, LinkColor, LinkList, LinkListProps, LinkListSkeleton, LinkListSkeletonProps, LinkProps, List, Logo, LogoProps, Nav, NavProps, Page, Panel, PanelProps, PathObj, PopConfirm, PopConfirmProps, Skeleton, SkeletonColor, SkeletonProps, Table, TableProps, Tag, TagProps, Tags, ThreeColLayout, TitledList, TitledListProps, listProps, threeColLayoutProps };
199
+ interface NoiseCoverProps {
200
+ className?: string;
201
+ width?: number;
202
+ height?: number;
203
+ children?: any;
204
+ color?: string;
205
+ }
206
+ declare const NoiseCover: (props: NoiseCoverProps) => JSX.Element;
207
+
208
+ export { Article, ArticleProps, ArticleSkeleton, ArticleSkeletonProps, BLinkDotProps, BlinkDot, Breadcrumb, BreadcrumbProps, Button, ButtonProps, ButtonType, DropImage, ImageDropProps, ImagePreviewerProps, Link, LinkColor, LinkList, LinkListProps, LinkListSkeleton, LinkListSkeletonProps, LinkProps, List, Logo, LogoProps, Nav, NavProps, NoiseCover, NoiseCoverProps, NotFound, Page, Panel, PanelProps, PathObj, PopConfirm, PopConfirmProps, Skeleton, SkeletonColor, SkeletonProps, Table, TableProps, Tag, TagProps, Tags, ThreeColLayout, TitledList, TitledListProps, listProps, threeColLayoutProps };