pillardash-ui-react 0.1.82 → 0.1.84
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 +4 -3
- package/dist/index.js +3 -3
- 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
|
@@ -386,8 +386,8 @@ declare function Table<T>({ data, columns, itemsPerPage, onViewChange, totalItem
|
|
|
386
386
|
declare function Pagination({ currentPage, totalPages, totalItems, itemsPerPage, onPageChange, onViewChange, loading, }: PaginationProps): react_jsx_runtime.JSX.Element;
|
|
387
387
|
|
|
388
388
|
declare function TableSkeleton({ columns, rows }: {
|
|
389
|
-
columns
|
|
390
|
-
rows
|
|
389
|
+
columns?: number;
|
|
390
|
+
rows?: number;
|
|
391
391
|
}): react_jsx_runtime.JSX.Element;
|
|
392
392
|
|
|
393
393
|
declare function TableDropdown({ actions, trigger, className, dropdownClassName, }: TableDropdownProps): react_jsx_runtime.JSX.Element;
|
|
@@ -439,6 +439,7 @@ declare const SkeletonTable: React$1.FC<{
|
|
|
439
439
|
columns?: number;
|
|
440
440
|
showHeader?: boolean;
|
|
441
441
|
}>;
|
|
442
|
+
declare const CardStatsSkeleton: () => react_jsx_runtime.JSX.Element;
|
|
442
443
|
declare const SkeletonLoaderExample: () => react_jsx_runtime.JSX.Element;
|
|
443
444
|
|
|
444
445
|
declare const SKELETON_LOADER_VERSION = "1.0.0";
|
|
@@ -560,5 +561,5 @@ interface BadgeProps {
|
|
|
560
561
|
}
|
|
561
562
|
declare const Badge: React$1.FC<BadgeProps>;
|
|
562
563
|
|
|
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 };
|
|
564
|
+
export { AlertContext, AlertProvider, Badge, Breadcrumb, Button, Card, CardStatsSkeleton, 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 };
|
|
564
565
|
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 };
|