@reltio/dashboard 1.4.2258 → 1.4.2259
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/bundle.js +1 -1
- package/package.json +4 -4
- package/types/components/src/AttributeListItem/AttributeListItem.d.ts +1 -0
- package/types/components/src/HOCs/withTooltip/withTooltip.d.ts +1 -0
- package/types/components/src/ReltioMap/components/TopRightMapControls/TopRightMapControls.d.ts +1 -0
- package/types/components/src/SmallIconButton/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reltio/dashboard",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2259",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE FILE",
|
|
5
5
|
"main": "bundle.js",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@reltio/components": "^1.4.
|
|
9
|
-
"@reltio/mdm-module": "^1.4.
|
|
10
|
-
"@reltio/mdm-sdk": "^1.4.
|
|
8
|
+
"@reltio/components": "^1.4.2219",
|
|
9
|
+
"@reltio/mdm-module": "^1.4.2057",
|
|
10
|
+
"@reltio/mdm-sdk": "^1.4.2017",
|
|
11
11
|
"object-hash": "^2.1.1"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
@@ -5,6 +5,7 @@ export declare const RecommendedIconWithTooltip: React.ForwardRefExoticComponent
|
|
|
5
5
|
tooltipTitle?: import("@mui/material").TooltipProps["title"];
|
|
6
6
|
tooltipPlacement?: import("@mui/material").TooltipProps["placement"];
|
|
7
7
|
showForDisabled?: boolean;
|
|
8
|
+
tooltipClassName?: string;
|
|
8
9
|
} & React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
9
10
|
type Data = Record<string, unknown> & {
|
|
10
11
|
attrType?: AttributeType;
|
|
@@ -4,6 +4,7 @@ type WithTooltipProps = {
|
|
|
4
4
|
tooltipTitle?: TooltipProps['title'];
|
|
5
5
|
tooltipPlacement?: TooltipProps['placement'];
|
|
6
6
|
showForDisabled?: boolean;
|
|
7
|
+
tooltipClassName?: string;
|
|
7
8
|
};
|
|
8
9
|
export declare const withTooltip: <Props, AdditionalProps>(Component: React.ComponentType<Props> | React.ElementType) => React.ForwardRefExoticComponent<React.PropsWithoutRef<WithTooltipProps & Props & AdditionalProps> & React.RefAttributes<HTMLElement>>;
|
|
9
10
|
export {};
|
package/types/components/src/ReltioMap/components/TopRightMapControls/TopRightMapControls.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export declare const ButtonWithTooltip: React.ForwardRefExoticComponent<Omit<{
|
|
|
4
4
|
tooltipTitle?: import("@mui/material").TooltipProps["title"];
|
|
5
5
|
tooltipPlacement?: import("@mui/material").TooltipProps["placement"];
|
|
6
6
|
showForDisabled?: boolean;
|
|
7
|
+
tooltipClassName?: string;
|
|
7
8
|
} & {
|
|
8
9
|
children?: React.ReactNode;
|
|
9
10
|
classes?: Partial<import("@mui/material/Button").ButtonClasses>;
|
|
@@ -3,6 +3,7 @@ declare const SmallIconButtonWithTooltip: import("react").ForwardRefExoticCompon
|
|
|
3
3
|
tooltipTitle?: import("@mui/material").TooltipProps["title"];
|
|
4
4
|
tooltipPlacement?: import("@mui/material").TooltipProps["placement"];
|
|
5
5
|
showForDisabled?: boolean;
|
|
6
|
+
tooltipClassName?: string;
|
|
6
7
|
} & Omit<Omit<import("@mui/material").IconButtonProps, "size"> & {
|
|
7
8
|
iconClassName?: string;
|
|
8
9
|
icon?: React.ElementType;
|