pillardash-ui-react 0.1.78 → 0.1.80
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 +7 -4
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -35,10 +35,12 @@ declare enum ExportFormatEnum {
|
|
|
35
35
|
}
|
|
36
36
|
declare function ExportButton(): react_jsx_runtime.JSX.Element;
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
interface CardProps {
|
|
39
39
|
children: ReactNode;
|
|
40
40
|
className?: string;
|
|
41
|
-
|
|
41
|
+
glass?: boolean;
|
|
42
|
+
}
|
|
43
|
+
declare const Card: ({ children, className, glass }: CardProps) => react_jsx_runtime.JSX.Element;
|
|
42
44
|
|
|
43
45
|
interface EmptyStateProps {
|
|
44
46
|
title?: string;
|
|
@@ -548,9 +550,10 @@ interface TooltipProps {
|
|
|
548
550
|
}
|
|
549
551
|
declare const Tooltip: React$1.FC<TooltipProps>;
|
|
550
552
|
|
|
553
|
+
type BadgeVariant = "default" | "secondary" | "success" | "warning" | "error" | "info";
|
|
551
554
|
interface BadgeProps {
|
|
552
555
|
children: React$1.ReactNode;
|
|
553
|
-
variant?:
|
|
556
|
+
variant?: BadgeVariant;
|
|
554
557
|
size?: "sm" | "md" | "lg";
|
|
555
558
|
className?: string;
|
|
556
559
|
onClick?: () => void;
|
|
@@ -558,4 +561,4 @@ interface BadgeProps {
|
|
|
558
561
|
declare const Badge: React$1.FC<BadgeProps>;
|
|
559
562
|
|
|
560
563
|
export { AlertContext, AlertProvider, Badge, Breadcrumb, Button, Card, CheckBox, CheckBoxDemo, ConfirmationAlert, DateTimePicker, DateTimePickerDemo, EmptyStateCard, ExportButton, ExportFormatEnum, FileUpload, Input, InputWithPrefix, Loading, LoadingDemo, Modal, ModalExample, Pagination, RadioGroup, SKELETON_LOADER_VERSION, SKELETON_PATTERNS, SKELETON_PRESETS, Search, Select, SelectButton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonImage, SkeletonList, SkeletonLoader, SkeletonLoaderExample, SkeletonProfile, SkeletonTable, SkeletonText, Table, TableDropdown, TableSkeleton, TagInput, TagInputDemo, TextEditor, Tooltip, alert, useAlert };
|
|
561
|
-
export type { AlertContextProps, AlertItem, AlertProps, AlertType, BadgeProps, BreadcrumbItem, BreadcrumbProps, ButtonProps, CheckBoxProps, Column, ConfirmationPopupProps, ConfirmationType, DateTimePickerProps, DateTimeValue, EmptyStateProps, FileUploadProps, InputElement, InputProps, InputWithPrefixProps, LoadingProps, ModalProps, PaginationProps, RadioGroupProps, SearchProps, SelectButtonOption, SelectButtonProps, SelectOption, SelectProps, SkeletonAnimation, SkeletonLoaderModule, SkeletonLoaderProps, SkeletonSize, SkeletonVariant, TableDropdownProps, TableProps, Tag, TagInputProps, TextEditorProps, TooltipProps };
|
|
564
|
+
export type { AlertContextProps, AlertItem, AlertProps, AlertType, BadgeProps, BadgeVariant, BreadcrumbItem, BreadcrumbProps, ButtonProps, CheckBoxProps, Column, ConfirmationPopupProps, ConfirmationType, DateTimePickerProps, DateTimeValue, EmptyStateProps, FileUploadProps, InputElement, InputProps, InputWithPrefixProps, LoadingProps, ModalProps, PaginationProps, RadioGroupProps, SearchProps, SelectButtonOption, SelectButtonProps, SelectOption, SelectProps, SkeletonAnimation, SkeletonLoaderModule, SkeletonLoaderProps, SkeletonSize, SkeletonVariant, TableDropdownProps, TableProps, Tag, TagInputProps, TextEditorProps, TooltipProps };
|