@elliemae/ds-truncated-tooltip-text 2.4.16 → 2.4.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-truncated-tooltip-text",
3
- "version": "2.4.16",
3
+ "version": "2.4.19",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Truncated Tooltip Text",
6
6
  "module": "./esm/index.js",
@@ -68,11 +68,11 @@
68
68
  "build": "node ../../scripts/build/build.js"
69
69
  },
70
70
  "dependencies": {
71
- "@elliemae/ds-popover": "2.4.16",
72
- "@elliemae/ds-popper": "2.4.16",
73
- "@elliemae/ds-props-helpers": "2.4.16",
74
- "@elliemae/ds-tooltip": "2.4.16",
75
- "@elliemae/ds-utilities": "2.4.16",
71
+ "@elliemae/ds-popover": "2.4.19",
72
+ "@elliemae/ds-popper": "2.4.19",
73
+ "@elliemae/ds-props-helpers": "2.4.19",
74
+ "@elliemae/ds-tooltip": "2.4.19",
75
+ "@elliemae/ds-utilities": "2.4.19",
76
76
  "prop-types": "~15.7.2",
77
77
  "react-desc": "~4.1.3"
78
78
  },
@@ -1,5 +1,4 @@
1
1
  /// <reference path="../../../../shared/typings/react-desc.d.ts" />
2
- /// <reference types="react" />
3
2
  declare const DSTruncatedTooltipText: {
4
3
  ({ containerProps, value, zIndex, ...otherTextProps }: {
5
4
  [x: string]: any;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import PropTypes from 'prop-types';
3
2
  declare const SimpleTruncatedTooltipText: {
4
3
  (props: any): JSX.Element;
@@ -7,7 +6,7 @@ declare const SimpleTruncatedTooltipText: {
7
6
  tooltipOptions: PropTypes.Requireable<object>;
8
7
  textOptions: PropTypes.Requireable<object>;
9
8
  /** Text that when truncated will trigger the tooltip interaction */
10
- value: PropTypes.Requireable<string | number | boolean | {} | PropTypes.ReactElementLike | PropTypes.ReactNodeArray>;
9
+ value: PropTypes.Requireable<string | number | boolean | PropTypes.ReactElementLike | PropTypes.ReactNodeArray>;
11
10
  /** Position of the tooltip */
12
11
  placement: PropTypes.Requireable<string>;
13
12
  /** Delay to show the tooltip */
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSTruncateTextWithTooltipT } from './propTypes';
3
2
  declare const DSTruncateTextWithTooltip: (props: DSTruncateTextWithTooltipT.Props) => JSX.Element;
4
3
  declare const DSTruncateTextWithTooltipWithSchema: import("@elliemae/ds-props-helpers/types/propTypes/types").DocumentedReactComponent<DSTruncateTextWithTooltipT.Props>;