magneto365.ui 2.70.2 → 2.70.4
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/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +12 -12
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/molecules/CandidateProfile/children/CandidateProfileAvatar/CandidateProfileAvatar.interface.d.ts +1 -2
- package/dist/cjs/types/components/hooks/useClickOutside/index.d.ts +1 -0
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +12 -12
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/molecules/CandidateProfile/children/CandidateProfileAvatar/CandidateProfileAvatar.interface.d.ts +1 -2
- package/dist/esm/types/components/hooks/useClickOutside/index.d.ts +1 -0
- package/dist/index.d.ts +1 -2
- package/package.json +1 -1
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { IAvatar, IRatingBadge } from '@components/UI/atoms';
|
|
3
|
-
export interface ICandidateProfileAvatar extends React.HTMLAttributes<HTMLDivElement
|
|
4
|
-
avatar: IAvatar;
|
|
3
|
+
export interface ICandidateProfileAvatar extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onClick'>, IAvatar {
|
|
5
4
|
score?: IRatingBadge['score'];
|
|
6
5
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useClickOutside: (ref: React.RefObject<HTMLElement>, handler: () => void) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -1929,8 +1929,7 @@ declare const CandidateNav: React__default.FC<TCandidateNav> & {
|
|
|
1929
1929
|
|
|
1930
1930
|
declare type TCandidateProfile = React.HTMLAttributes<HTMLDivElement> & Partial<ICollapseContext$1>;
|
|
1931
1931
|
|
|
1932
|
-
interface ICandidateProfileAvatar extends React.HTMLAttributes<HTMLDivElement
|
|
1933
|
-
avatar: IAvatar$1;
|
|
1932
|
+
interface ICandidateProfileAvatar extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onClick'>, IAvatar$1 {
|
|
1934
1933
|
score?: IRatingBadge$1['score'];
|
|
1935
1934
|
}
|
|
1936
1935
|
|
package/package.json
CHANGED