@elliemae/ds-truncated-tooltip-text 3.46.4 → 3.46.6
Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
|
|
1
|
-
export declare const Text:
|
1
|
+
export declare const Text: any;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@elliemae/ds-truncated-tooltip-text",
|
3
|
-
"version": "3.46.
|
3
|
+
"version": "3.46.6",
|
4
4
|
"license": "MIT",
|
5
5
|
"description": "ICE MT - Dimsum - Truncated Tooltip Text",
|
6
6
|
"files": [
|
@@ -37,16 +37,16 @@
|
|
37
37
|
},
|
38
38
|
"dependencies": {
|
39
39
|
"prop-types": "~15.8.1",
|
40
|
-
"@elliemae/ds-popover": "3.46.
|
41
|
-
"@elliemae/ds-
|
42
|
-
"@elliemae/ds-
|
43
|
-
"@elliemae/ds-system": "3.46.
|
44
|
-
"@elliemae/ds-tooltip-v3": "3.46.
|
40
|
+
"@elliemae/ds-popover": "3.46.6",
|
41
|
+
"@elliemae/ds-popper": "3.46.6",
|
42
|
+
"@elliemae/ds-props-helpers": "3.46.6",
|
43
|
+
"@elliemae/ds-system": "3.46.6",
|
44
|
+
"@elliemae/ds-tooltip-v3": "3.46.6"
|
45
45
|
},
|
46
46
|
"devDependencies": {
|
47
47
|
"@elliemae/pui-cli": "9.0.0-next.50",
|
48
48
|
"styled-components": "~5.3.9",
|
49
|
-
"@elliemae/ds-monorepo-devops": "3.46.
|
49
|
+
"@elliemae/ds-monorepo-devops": "3.46.6"
|
50
50
|
},
|
51
51
|
"peerDependencies": {
|
52
52
|
"react": "^17.0.2",
|
@@ -1,37 +0,0 @@
|
|
1
|
-
import PropTypes from 'prop-types';
|
2
|
-
interface SimpleTruncatedTooltipTextProps {
|
3
|
-
containerProps?: Record<string, unknown>;
|
4
|
-
tooltipDelay?: number;
|
5
|
-
placement?: string;
|
6
|
-
value?: string | JSX.Element;
|
7
|
-
zIndex?: number;
|
8
|
-
tooltipOptions?: Record<string, unknown>;
|
9
|
-
textOptions?: Record<string, unknown>;
|
10
|
-
}
|
11
|
-
declare const SimpleTruncatedTooltipText: {
|
12
|
-
(props: SimpleTruncatedTooltipTextProps): import("react/jsx-runtime.js").JSX.Element;
|
13
|
-
propTypes: {
|
14
|
-
containerProps: PropTypes.Requireable<object>;
|
15
|
-
tooltipOptions: PropTypes.Requireable<object>;
|
16
|
-
textOptions: PropTypes.Requireable<object>;
|
17
|
-
/** Text that when truncated will trigger the tooltip interaction */
|
18
|
-
value: PropTypes.Requireable<NonNullable<PropTypes.ReactNodeLike>>;
|
19
|
-
/** Position of the tooltip */
|
20
|
-
placement: PropTypes.Requireable<string>;
|
21
|
-
/** Delay to show the tooltip */
|
22
|
-
tooltipDelay: PropTypes.Requireable<number>;
|
23
|
-
/** override default zIndex */
|
24
|
-
zIndex: PropTypes.Requireable<number>;
|
25
|
-
};
|
26
|
-
defaultProps: {
|
27
|
-
containerProps: {};
|
28
|
-
tooltipOptions: {};
|
29
|
-
textOptions: {};
|
30
|
-
value: string;
|
31
|
-
placement: string;
|
32
|
-
tooltipDelay: number;
|
33
|
-
};
|
34
|
-
};
|
35
|
-
export { SimpleTruncatedTooltipText };
|
36
|
-
export type { SimpleTruncatedTooltipTextProps };
|
37
|
-
export default SimpleTruncatedTooltipText;
|