@bigbinary/neetoui 4.1.38 → 4.1.39
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/index.css +1 -1
- package/index.d.ts +10 -0
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -552,6 +552,15 @@ export type KbdProps = {
|
|
|
552
552
|
className?: string;
|
|
553
553
|
};
|
|
554
554
|
|
|
555
|
+
export type NoDataProps = {
|
|
556
|
+
title?: string;
|
|
557
|
+
description?: string;
|
|
558
|
+
helpText?: React.ReactNode;
|
|
559
|
+
primaryButtonProps?: ButtonProps;
|
|
560
|
+
secondaryButtonProps?: ButtonProps;
|
|
561
|
+
className?: string;
|
|
562
|
+
};
|
|
563
|
+
|
|
555
564
|
// components
|
|
556
565
|
|
|
557
566
|
export const Accordion: React.FC<AccordionProps> & {
|
|
@@ -637,3 +646,4 @@ export const Typography: React.ForwardRefExoticComponent<TypographyProps>;
|
|
|
637
646
|
export const Tooltip: React.ForwardRefExoticComponent<TooltipProps>;
|
|
638
647
|
export const Popover: React.ForwardRefExoticComponent<PopoverProps>;
|
|
639
648
|
export const Kbd: React.FC<KbdProps>;
|
|
649
|
+
export const NoData: React.FC<NoDataProps>;
|