pillardash-ui-react 0.1.47 → 0.1.49
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 +39 -2
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -401,5 +401,42 @@ interface LoadingProps {
|
|
|
401
401
|
}
|
|
402
402
|
declare const Loading: React$1.FC<LoadingProps>;
|
|
403
403
|
|
|
404
|
-
|
|
405
|
-
|
|
404
|
+
type BreadcrumbItem = {
|
|
405
|
+
label: string;
|
|
406
|
+
href?: string;
|
|
407
|
+
isActive?: boolean;
|
|
408
|
+
onClick?: () => void;
|
|
409
|
+
};
|
|
410
|
+
interface BreadcrumbProps {
|
|
411
|
+
items: BreadcrumbItem[];
|
|
412
|
+
showBackButton?: boolean;
|
|
413
|
+
onBackClick?: () => void;
|
|
414
|
+
separator?: string;
|
|
415
|
+
backButtonLabel?: string;
|
|
416
|
+
className?: string;
|
|
417
|
+
}
|
|
418
|
+
declare const Breadcrumb: FC<BreadcrumbProps>;
|
|
419
|
+
|
|
420
|
+
interface TooltipProps {
|
|
421
|
+
children: React$1.ReactNode;
|
|
422
|
+
content: string | React$1.ReactNode;
|
|
423
|
+
position?: "top" | "bottom" | "left" | "right";
|
|
424
|
+
variant?: "dark" | "light" | "accent";
|
|
425
|
+
size?: "sm" | "md" | "lg";
|
|
426
|
+
delay?: number;
|
|
427
|
+
disabled?: boolean;
|
|
428
|
+
className?: string;
|
|
429
|
+
}
|
|
430
|
+
declare const Tooltip: React$1.FC<TooltipProps>;
|
|
431
|
+
|
|
432
|
+
interface BadgeProps {
|
|
433
|
+
children: React$1.ReactNode;
|
|
434
|
+
variant?: "default" | "secondary" | "success" | "warning" | "error" | "info";
|
|
435
|
+
size?: "sm" | "md" | "lg";
|
|
436
|
+
className?: string;
|
|
437
|
+
onClick?: () => void;
|
|
438
|
+
}
|
|
439
|
+
declare const Badge: React$1.FC<BadgeProps>;
|
|
440
|
+
|
|
441
|
+
export { AlertContext, AlertProvider, Badge, Breadcrumb, Button, Card, CheckBox, ConfirmationAlert, EmptyStateCard, ExportButton, ExportFormatEnum, FileUpload, Input, Loading, Modal, ModalExample, Pagination, SKELETON_LOADER_VERSION, SKELETON_PATTERNS, SKELETON_PRESETS, Search, Select, SelectButton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonImage, SkeletonList, SkeletonLoader, SkeletonLoaderExample, SkeletonProfile, SkeletonTable, SkeletonText, Table, TableDropdown, TableSkeleton, TextEditor, Tooltip, alert, useAlert };
|
|
442
|
+
export type { AlertContextProps, AlertItem, AlertProps, AlertType, BadgeProps, BreadcrumbItem, BreadcrumbProps, ButtonProps, CheckBoxProps, Column, ConfirmationPopupProps, ConfirmationType, EmptyStateProps, FileUploadProps, InputProps, LoadingProps, ModalProps, PaginationProps, SearchProps, SelectButtonOption, SelectButtonProps, SelectOption, SelectProps, SkeletonAnimation, SkeletonLoaderModule, SkeletonLoaderProps, SkeletonSize, SkeletonVariant, TableDropdownProps, TableProps, TextEditorProps, TooltipProps };
|