@zimyo/engage 0.3.19-pms → 0.3.20-hrms
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/feedback/appreciation/badge-master/badge-master.d.ts +4 -1
- package/dist/components/feedback/appreciation/list/appreciation-list.d.ts +1 -0
- package/dist/components/feedback/configration/feedback-configration.d.ts +4 -1
- package/dist/components/feedback/continuous-feedback/list/continuous-feedback-list.d.ts +1 -0
- package/dist/components/feedback/continuous-feedback/skill/skills-master.d.ts +4 -1
- package/dist/components/feedback/one-to-one/list/one-to-one-list.d.ts +1 -0
- package/dist/components/pip/pip-list.d.ts +1 -0
- package/dist/components/ui/empty/empty.d.ts +4 -1
- package/dist/components/ui/toggle-button/toggle-button.d.ts +3 -2
- package/dist/main.cjs +543 -310
- package/dist/main.js +99649 -84865
- package/dist/style.css +1 -1
- package/package.json +4 -4
|
@@ -2,4 +2,7 @@ export declare const MODAL_ACTION: {
|
|
|
2
2
|
CREATE: string;
|
|
3
3
|
EDIT: string;
|
|
4
4
|
};
|
|
5
|
-
export
|
|
5
|
+
export type Props = {
|
|
6
|
+
classes?: any;
|
|
7
|
+
};
|
|
8
|
+
export declare const BadgeMaster: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
export declare const Empty: ({ message, svgProps }: {
|
|
1
|
+
export declare const Empty: ({ message, height, width, svgProps, url }: {
|
|
2
2
|
message: string;
|
|
3
|
+
url?: string | any;
|
|
4
|
+
height?: string | number;
|
|
5
|
+
width?: string | number;
|
|
3
6
|
svgProps?: React.SVGProps<SVGSVGElement>;
|
|
4
7
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,8 +5,9 @@ type ToggleButtonType = {
|
|
|
5
5
|
value: any;
|
|
6
6
|
}[];
|
|
7
7
|
value?: any;
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
variant?: 'bordered' | 'default' | 'pills' | 'outline' | 'underline' | 'ghost';
|
|
9
|
+
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
10
|
+
onChangeTab?: ((event: React.MouseEvent<HTMLElement, MouseEvent> | undefined, value: any) => void);
|
|
10
11
|
};
|
|
11
12
|
export declare const CustomToggleButton: (props: ToggleButtonType) => import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
export {};
|