pillardash-ui-react 0.1.30 → 0.1.32
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 -1
- package/dist/index.js +4 -4
- 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
|
@@ -193,6 +193,7 @@ interface ConfirmationPopupProps {
|
|
|
193
193
|
overlayClassName?: string;
|
|
194
194
|
maxWidth?: "sm" | "md" | "lg";
|
|
195
195
|
}
|
|
196
|
+
declare const ConfirmationAlert: React$1.FC<ConfirmationPopupProps>;
|
|
196
197
|
|
|
197
198
|
type ModalSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full';
|
|
198
199
|
type ModalPosition = 'left' | 'right' | 'center';
|
|
@@ -268,6 +269,8 @@ declare function TableSkeleton({ columns, rows }: {
|
|
|
268
269
|
rows: number;
|
|
269
270
|
}): react_jsx_runtime.JSX.Element;
|
|
270
271
|
|
|
272
|
+
declare function TableDropdown({ actions, trigger, className, dropdownClassName, }: TableDropdownProps): react_jsx_runtime.JSX.Element;
|
|
273
|
+
|
|
271
274
|
type SkeletonVariant = 'text' | 'rectangular' | 'circular' | 'rounded' | 'card' | 'avatar' | 'button' | 'image' | 'line';
|
|
272
275
|
type SkeletonAnimation = 'pulse' | 'wave' | 'none';
|
|
273
276
|
type SkeletonSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
@@ -384,5 +387,5 @@ declare const SKELETON_PATTERNS: {
|
|
|
384
387
|
};
|
|
385
388
|
};
|
|
386
389
|
|
|
387
|
-
export { AlertContext, AlertProvider, Button, Card, CheckBox, EmptyStateCard, ExportButton, ExportFormatEnum, FileUpload, Input, Modal, ModalExample, Pagination, SKELETON_LOADER_VERSION, SKELETON_PATTERNS, SKELETON_PRESETS, Search, Select, SelectButton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonImage, SkeletonList, SkeletonLoader, SkeletonLoaderExample, SkeletonProfile, SkeletonTable, SkeletonText, Table, TableSkeleton, TextEditor, alert, useAlert };
|
|
390
|
+
export { AlertContext, AlertProvider, Button, Card, CheckBox, ConfirmationAlert, EmptyStateCard, ExportButton, ExportFormatEnum, FileUpload, Input, 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, alert, useAlert };
|
|
388
391
|
export type { AlertContextProps, AlertItem, AlertProps, AlertType, ButtonProps, CheckBoxProps, Column, ConfirmationPopupProps, ConfirmationType, EmptyStateProps, FileUploadProps, InputProps, ModalProps, PaginationProps, SearchProps, SelectButtonOption, SelectButtonProps, SelectOption, SelectProps, SkeletonAnimation, SkeletonLoaderModule, SkeletonLoaderProps, SkeletonSize, SkeletonVariant, TableDropdownProps, TableProps, TextEditorProps };
|