@elliemae/ds-group-box 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-group-box",
3
- "version": "2.4.16",
3
+ "version": "2.4.19",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Group Box",
6
6
  "module": "./esm/index.js",
@@ -64,9 +64,9 @@
64
64
  "build": "node ../../scripts/build/build.js"
65
65
  },
66
66
  "dependencies": {
67
- "@elliemae/ds-classnames": "2.4.16",
68
- "@elliemae/ds-system": "2.4.16",
69
- "@elliemae/ds-truncated-tooltip-text": "2.4.16",
67
+ "@elliemae/ds-classnames": "2.4.19",
68
+ "@elliemae/ds-system": "2.4.19",
69
+ "@elliemae/ds-truncated-tooltip-text": "2.4.19",
70
70
  "@xstyled/styled-components": "~3.1.1",
71
71
  "prop-types": "~15.7.2",
72
72
  "react-desc": "~4.1.3"
@@ -1,11 +1,10 @@
1
- /// <reference types="react" />
2
1
  import PropTypes from 'prop-types';
3
2
  declare function ActionItem({ children }: {
4
3
  children: any;
5
4
  }): JSX.Element;
6
5
  declare namespace ActionItem {
7
6
  var propTypes: {
8
- children: PropTypes.Validator<string | number | boolean | {} | PropTypes.ReactElementLike | PropTypes.ReactNodeArray>;
7
+ children: PropTypes.Validator<string | number | boolean | PropTypes.ReactElementLike | PropTypes.ReactNodeArray>;
9
8
  };
10
9
  }
11
10
  export default ActionItem;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import PropTypes from 'prop-types';
3
2
  declare function Actions({ actions, centerActions, rightActions }: {
4
3
  actions?: never[] | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference path="../../../../shared/typings/react-desc.d.ts" />
2
- /// <reference types="react" />
3
2
  declare const DSGroupBox: {
4
3
  ({ containerProps, labelProps, rightActions, centerActions, type, asRow, onlyHeader, noBorder, noPadding, children: components, isMain, }: {
5
4
  containerProps?: {} | undefined;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import PropTypes from 'prop-types';
3
2
  declare function GroupBoxLabel({ borderBottom, children, noBorder, isMain, type, id }: {
4
3
  borderBottom: any;
@@ -10,7 +9,7 @@ declare function GroupBoxLabel({ borderBottom, children, noBorder, isMain, type,
10
9
  }): JSX.Element;
11
10
  declare namespace GroupBoxLabel {
12
11
  var propTypes: {
13
- children: PropTypes.Validator<string | number | boolean | {} | PropTypes.ReactElementLike | PropTypes.ReactNodeArray>;
12
+ children: PropTypes.Validator<string | number | boolean | PropTypes.ReactElementLike | PropTypes.ReactNodeArray>;
14
13
  type: PropTypes.Requireable<string>;
15
14
  borderBottom: PropTypes.Requireable<boolean>;
16
15
  isMain: PropTypes.Validator<boolean>;
@@ -1,11 +1,10 @@
1
- /// <reference types="react" />
2
1
  import PropTypes from 'prop-types';
3
2
  declare function LabelElement({ children }: {
4
3
  children: any;
5
4
  }): JSX.Element;
6
5
  declare namespace LabelElement {
7
6
  var propTypes: {
8
- children: PropTypes.Validator<string | number | boolean | {} | PropTypes.ReactElementLike | PropTypes.ReactNodeArray>;
7
+ children: PropTypes.Validator<string | number | boolean | PropTypes.ReactElementLike | PropTypes.ReactNodeArray>;
9
8
  };
10
9
  }
11
10
  export default LabelElement;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const DSGroupBoxHeader: ({ labelProps, rightActions, centerActions, type, noBorder, isMain, }: {
3
2
  labelProps?: {
4
3
  labelText: string;