dfh-ui-library 1.12.578 → 1.12.580
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.css +1 -1
- package/dist/cjs/index.css.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/History/NoteEvent.d.ts +4 -0
- package/dist/cjs/types/components/History/NoteEventView.d.ts +7 -0
- package/dist/cjs/types/components/Media/Icon/Icon.handler.d.ts +1 -1
- package/dist/cjs/types/components/Media/Icons/Icons.d.ts +1 -1
- package/dist/cjs/types/components/MonthPicker/MonthPicker.d.ts +4 -0
- package/dist/cjs/types/components/MonthPicker/index.d.ts +1 -0
- package/dist/cjs/types/shared/models/components/base.model.d.ts +1 -0
- package/dist/cjs/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.css.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/History/NoteEvent.d.ts +4 -0
- package/dist/esm/types/components/History/NoteEventView.d.ts +7 -0
- package/dist/esm/types/components/Media/Icon/Icon.handler.d.ts +1 -1
- package/dist/esm/types/components/Media/Icons/Icons.d.ts +1 -1
- package/dist/esm/types/components/MonthPicker/MonthPicker.d.ts +4 -0
- package/dist/esm/types/components/MonthPicker/index.d.ts +1 -0
- package/dist/esm/types/shared/models/components/base.model.d.ts +1 -0
- package/dist/esm/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
@@ -1,4 +1,4 @@
|
|
1
1
|
import React from "react";
|
2
2
|
export declare const handleIconColor: (_iconColor: string) => string;
|
3
3
|
export declare const handleIconHoverColor: (_iconHoverColor: string | undefined) => string;
|
4
|
-
export declare const handleIconTYpes: (_iconType: string | undefined, iconClasses?: string, imageUrl?: string, _color?: string) => React.JSX.Element | undefined;
|
4
|
+
export declare const handleIconTYpes: (_iconType: string | undefined, iconClasses?: string, imageUrl?: string, _color?: string, isAddUser?: boolean) => React.JSX.Element | undefined;
|
@@ -20,7 +20,7 @@ export declare const UserMenuSelectedIcon: ({ classes, onClick, ...props }: Icon
|
|
20
20
|
export declare const UserAvatarIcon: ({ classes, onClick, imageUrl, ...props }: IconProps) => React.JSX.Element;
|
21
21
|
export declare const CloseIcon: ({ classes, onClick, imageUrl, ...props }: IconProps) => React.JSX.Element;
|
22
22
|
export declare const ArrowBCIcon: ({ classes, onClick, ...props }: IconProps) => React.JSX.Element;
|
23
|
-
export declare const PlusIcon: ({ classes, onClick, ...props }: IconProps) => React.JSX.Element;
|
23
|
+
export declare const PlusIcon: ({ classes, onClick, isAddUser, ...props }: IconProps) => React.JSX.Element;
|
24
24
|
export declare const CalendarIcon: ({ classes, onClick, ...props }: IconProps) => React.JSX.Element;
|
25
25
|
export declare const SelectUserIcon: ({ classes, onClick, ...props }: IconProps) => React.JSX.Element;
|
26
26
|
export declare const TrashRedIcon: ({ classes, onClick, ...props }: IconProps) => React.JSX.Element;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from "./MonthPicker";
|
@@ -78,6 +78,7 @@ export interface IIconProps extends IAdditionalClassesProp, IIconTypeProp {
|
|
78
78
|
onMouseOver?: any;
|
79
79
|
onMouseOut?: any;
|
80
80
|
color?: string;
|
81
|
+
isAddUser?: boolean;
|
81
82
|
}
|
82
83
|
export interface IHookFormsInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
83
84
|
/**
|
@@ -71,6 +71,7 @@ export interface IconProps {
|
|
71
71
|
color?: string;
|
72
72
|
w?: string;
|
73
73
|
h?: string;
|
74
|
+
isAddUser?: boolean;
|
74
75
|
}
|
75
76
|
export interface AdditionalClassesProp {
|
76
77
|
/**
|
@@ -138,6 +139,7 @@ export interface ImagePreviewProps {
|
|
138
139
|
textClasses?: string;
|
139
140
|
handleImageLoad?: () => void;
|
140
141
|
defaultImageUrl?: string;
|
142
|
+
isAddUser?: boolean;
|
141
143
|
}
|
142
144
|
export interface ImageInputProps {
|
143
145
|
imageUrl?: string;
|
package/dist/index.d.ts
CHANGED
@@ -117,6 +117,7 @@ interface ImagePreviewProps {
|
|
117
117
|
textClasses?: string;
|
118
118
|
handleImageLoad?: () => void;
|
119
119
|
defaultImageUrl?: string;
|
120
|
+
isAddUser?: boolean;
|
120
121
|
}
|
121
122
|
interface ImageInputProps {
|
122
123
|
imageUrl?: string;
|
@@ -850,6 +851,7 @@ interface IIconProps extends IAdditionalClassesProp, IIconTypeProp {
|
|
850
851
|
onMouseOver?: any;
|
851
852
|
onMouseOut?: any;
|
852
853
|
color?: string;
|
854
|
+
isAddUser?: boolean;
|
853
855
|
}
|
854
856
|
interface IHookFormsInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
855
857
|
/**
|