@elliemae/ds-truncated-tooltip-text 3.46.4 → 3.46.6

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.
@@ -1,4 +1,3 @@
1
- import type { WeakValidationMap } from 'react';
2
1
  import type { DSPropTypesSchema } from '@elliemae/ds-props-helpers';
3
2
  export declare namespace DSTruncateTextWithTooltipT {
4
3
  interface DefaultProps {
@@ -1 +1 @@
1
- export declare const Text: import("styled-components").StyledComponent<"span", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"span">, never>;
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.4",
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.4",
41
- "@elliemae/ds-props-helpers": "3.46.4",
42
- "@elliemae/ds-popper": "3.46.4",
43
- "@elliemae/ds-system": "3.46.4",
44
- "@elliemae/ds-tooltip-v3": "3.46.4"
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.4"
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;