pillardash-ui-react 0.1.95 → 0.1.98
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 -8
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -100,11 +100,11 @@ interface FileItem {
|
|
|
100
100
|
uploadProgress?: number;
|
|
101
101
|
}
|
|
102
102
|
interface FileViewProps {
|
|
103
|
-
|
|
104
|
-
onDelete?: (
|
|
105
|
-
onUpdate?: (
|
|
106
|
-
onView?: (
|
|
107
|
-
onDownload?: (
|
|
103
|
+
file: FileItem | null;
|
|
104
|
+
onDelete?: () => void;
|
|
105
|
+
onUpdate?: () => void;
|
|
106
|
+
onView?: () => void;
|
|
107
|
+
onDownload?: () => void;
|
|
108
108
|
showActions?: boolean;
|
|
109
109
|
showDelete?: boolean;
|
|
110
110
|
showUpdate?: boolean;
|
|
@@ -116,8 +116,6 @@ interface FileViewProps {
|
|
|
116
116
|
}
|
|
117
117
|
declare const FileView: React$1.FC<FileViewProps>;
|
|
118
118
|
|
|
119
|
-
declare const FileViewSystemDemo: () => react_jsx_runtime.JSX.Element;
|
|
120
|
-
|
|
121
119
|
interface FileUploadProps {
|
|
122
120
|
onFileChange: (files: File[] | null) => void;
|
|
123
121
|
existingFiles?: FileItem[];
|
|
@@ -229,6 +227,7 @@ interface DateTimePickerProps {
|
|
|
229
227
|
firstDayOfWeek?: 0 | 1;
|
|
230
228
|
}
|
|
231
229
|
declare const DateTimePicker: React$1.FC<DateTimePickerProps>;
|
|
230
|
+
|
|
232
231
|
declare const DateTimePickerDemo: () => react_jsx_runtime.JSX.Element;
|
|
233
232
|
|
|
234
233
|
interface SearchProps {
|
|
@@ -593,5 +592,5 @@ interface BadgeProps {
|
|
|
593
592
|
}
|
|
594
593
|
declare const Badge: React$1.FC<BadgeProps>;
|
|
595
594
|
|
|
596
|
-
export { AlertContext, AlertProvider, Badge, Breadcrumb, Button, Card, CardStatsSkeleton, CheckBox, CheckBoxDemo, ConfirmationAlert, DateTimePicker, DateTimePickerDemo, EmptyStateCard, ExportButton, ExportFormatEnum, FileUpload, FileView,
|
|
595
|
+
export { AlertContext, AlertProvider, Badge, Breadcrumb, Button, Card, CardStatsSkeleton, CheckBox, CheckBoxDemo, ConfirmationAlert, DateTimePicker, DateTimePickerDemo, EmptyStateCard, ExportButton, ExportFormatEnum, FileUpload, FileView, 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 };
|
|
597
596
|
export type { AlertContextProps, AlertItem, AlertProps, AlertType, BadgeProps, BadgeVariant, BreadcrumbItem, BreadcrumbProps, ButtonProps, CheckBoxProps, Column, ConfirmationPopupProps, ConfirmationType, DateTimePickerProps, DateTimeValue, EmptyStateProps, FileItem, FileUploadProps, FileViewProps, InputElement, InputProps, InputWithPrefixProps, LoadingProps, ModalProps, PaginationProps, RadioGroupProps, SearchProps, SelectButtonOption, SelectButtonProps, SelectOption, SelectProps, SkeletonAnimation, SkeletonLoaderModule, SkeletonLoaderProps, SkeletonSize, SkeletonVariant, TableDropdownProps, TableProps, Tag, TagInputProps, TextEditorProps, TooltipProps };
|