pillardash-ui-react 0.1.83 → 0.1.85
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 +3 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -125,6 +125,7 @@ interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement> & Textar
|
|
|
125
125
|
rightIcon?: React$1.ReactNode;
|
|
126
126
|
className?: string;
|
|
127
127
|
size?: "sm" | "md" | "lg";
|
|
128
|
+
block?: boolean;
|
|
128
129
|
}
|
|
129
130
|
declare const Input: React$1.FC<InputProps>;
|
|
130
131
|
|
|
@@ -439,6 +440,7 @@ declare const SkeletonTable: React$1.FC<{
|
|
|
439
440
|
columns?: number;
|
|
440
441
|
showHeader?: boolean;
|
|
441
442
|
}>;
|
|
443
|
+
declare const CardStatsSkeleton: () => react_jsx_runtime.JSX.Element;
|
|
442
444
|
declare const SkeletonLoaderExample: () => react_jsx_runtime.JSX.Element;
|
|
443
445
|
|
|
444
446
|
declare const SKELETON_LOADER_VERSION = "1.0.0";
|
|
@@ -560,5 +562,5 @@ interface BadgeProps {
|
|
|
560
562
|
}
|
|
561
563
|
declare const Badge: React$1.FC<BadgeProps>;
|
|
562
564
|
|
|
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 };
|
|
565
|
+
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
566
|
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 };
|