prometeo-design-system 1.4.7 → 1.4.9
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/components/Avatar/Avatar.d.ts +4 -4
- package/dist/components/Button/Button.d.ts +2 -1
- package/dist/components/Card/Card.d.ts +12 -0
- package/dist/components/CheckBox/CheckBox.d.ts +7 -0
- package/dist/components/DropZone/DropZone.d.ts +0 -1
- package/dist/components/Input/Input.d.ts +5 -3
- package/dist/components/OtpInput/OtpInput.d.ts +15 -0
- package/dist/components/Sidebar/index.d.ts +0 -1
- package/dist/components/SwipeContainer/SwipeContainer.d.ts +19 -0
- package/dist/components/Table/Table.d.ts +4 -1
- package/dist/components/Tooltip/Tootip.d.ts +10 -0
- package/dist/index.d.ts +5 -0
- package/dist/preview/TablePreview.d.ts +2 -0
- package/dist/prometeo-design-system.css +1 -1
- package/dist/prometeo-design-system.es.js +3739 -3272
- package/dist/prometeo-design-system.umd.js +70 -34
- package/package.json +2 -1
- package/dist/components/Sidebar/components/ProfileSection.d.ts +0 -11
- package/dist/components/Sidebar/components/avatar-profile.d.ts +0 -5
- /package/dist/components/{Profile/Profile.d.ts → ProfilePictureUpload/ProfilePictureUpload.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prometeo-design-system",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.9",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "design kit system",
|
|
7
7
|
"main": "dist/prometeo-design-system.umd.js",
|
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
"formik": "^2.4.6",
|
|
65
65
|
"framer-motion": "^12.23.12",
|
|
66
66
|
"globals": "^16.3.0",
|
|
67
|
+
"input-otp": "^1.4.2",
|
|
67
68
|
"react": "^19.0.0",
|
|
68
69
|
"react-dom": "^19.0.0",
|
|
69
70
|
"react-dropzone": "^14.3.8",
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
interface ProfileSectionProps {
|
|
2
|
-
user: {
|
|
3
|
-
name: string;
|
|
4
|
-
email: string;
|
|
5
|
-
profileImage?: string;
|
|
6
|
-
};
|
|
7
|
-
className?: string;
|
|
8
|
-
onProfileClick?: () => void;
|
|
9
|
-
}
|
|
10
|
-
export declare const ProfileSection: ({ user, className, onProfileClick }: ProfileSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
export default ProfileSection;
|
/package/dist/components/{Profile/Profile.d.ts → ProfilePictureUpload/ProfilePictureUpload.d.ts}
RENAMED
|
File without changes
|