@elliemae/ds-portal 3.33.0-next.0 → 3.33.0-next.1

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/dist/cjs/index.js CHANGED
@@ -17,7 +17,6 @@ var __copyProps = (to, from, except, desc) => {
17
17
  }
18
18
  return to;
19
19
  };
20
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
21
20
  var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
22
21
  // If the importer is in node compatibility mode or this is not an ESM
23
22
  // file that has been converted to a CommonJS file using a Babel-
@@ -29,10 +28,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
29
28
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
30
29
  var src_exports = {};
31
30
  __export(src_exports, {
32
- default: () => import_DSPortal.default
31
+ DSPortal: () => import_DSPortal.DSPortal
33
32
  });
34
33
  module.exports = __toCommonJS(src_exports);
35
34
  var React = __toESM(require("react"));
36
- __reExport(src_exports, require("./DSPortal.js"), module.exports);
37
- var import_DSPortal = __toESM(require("./DSPortal.js"));
35
+ var import_DSPortal = require("./DSPortal.js");
38
36
  //# sourceMappingURL=index.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/index.tsx", "../../../../../scripts/build/transpile/react-shim.js"],
4
- "sourcesContent": ["export * from './DSPortal.js';\nexport { default } from './DSPortal.js';\n", "import * as React from 'react';\nexport { React };\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,wBAAc,0BAAd;AACA,sBAAwB;",
4
+ "sourcesContent": ["export { DSPortal } from './DSPortal.js';\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,sBAAyB;",
6
6
  "names": []
7
7
  }
package/dist/esm/index.js CHANGED
@@ -1,7 +1,6 @@
1
1
  import * as React from "react";
2
- export * from "./DSPortal.js";
3
- import { default as default2 } from "./DSPortal.js";
2
+ import { DSPortal } from "./DSPortal.js";
4
3
  export {
5
- default2 as default
4
+ DSPortal
6
5
  };
7
6
  //# sourceMappingURL=index.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../src/index.tsx"],
4
- "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export * from './DSPortal.js';\nexport { default } from './DSPortal.js';\n"],
5
- "mappings": "AAAA,YAAY,WAAW;ACAvB,cAAc;AACd,SAAS,WAAAA,gBAAe;",
6
- "names": ["default"]
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export { DSPortal } from './DSPortal.js';\n"],
5
+ "mappings": "AAAA,YAAY,WAAW;ACAvB,SAAS,gBAAgB;",
6
+ "names": []
7
7
  }
@@ -1,2 +1 @@
1
- export * from './DSPortal.js';
2
- export { default } from './DSPortal.js';
1
+ export { DSPortal } from './DSPortal.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-portal",
3
- "version": "3.33.0-next.0",
3
+ "version": "3.33.0-next.1",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Portal",
6
6
  "files": [
@@ -35,13 +35,13 @@
35
35
  "indent": 4
36
36
  },
37
37
  "dependencies": {
38
- "@elliemae/ds-classnames": "3.33.0-next.0",
39
- "@elliemae/ds-utilities": "3.33.0-next.0"
38
+ "@elliemae/ds-classnames": "3.33.0-next.1",
39
+ "@elliemae/ds-utilities": "3.33.0-next.1"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@elliemae/pui-cli": "~9.0.0-next.31",
43
43
  "styled-components": "~5.3.9",
44
- "@elliemae/ds-monorepo-devops": "3.33.0-next.0"
44
+ "@elliemae/ds-monorepo-devops": "3.33.0-next.1"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "react": "^17.0.2",
@@ -1,18 +0,0 @@
1
- import React, { Component } from 'react';
2
- declare class DSPortal extends Component {
3
- static defaultProps: {
4
- onRender: () => null;
5
- };
6
- constructor(props: any);
7
- state: {
8
- isMounted: boolean;
9
- };
10
- componentDidMount(): void;
11
- componentDidUpdate(): void;
12
- componentWillUnmount(): void;
13
- createPortalContainer(): HTMLDivElement | null;
14
- renderNoPortal(): void;
15
- render(): React.ReactPortal | null;
16
- }
17
- export { DSPortal };
18
- export default DSPortal;