chayns-api 1.0.15 → 1.0.16

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
@@ -105,6 +105,18 @@ Object.keys(_IChaynsReact).forEach(function (key) {
105
105
  }
106
106
  });
107
107
  });
108
+ var _DialogHandler = require("./handler/DialogHandler");
109
+ Object.keys(_DialogHandler).forEach(function (key) {
110
+ if (key === "default" || key === "__esModule") return;
111
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
112
+ if (key in exports && exports[key] === _DialogHandler[key]) return;
113
+ Object.defineProperty(exports, key, {
114
+ enumerable: true,
115
+ get: function () {
116
+ return _DialogHandler[key];
117
+ }
118
+ });
119
+ });
108
120
  var _dialog = _interopRequireWildcard(require("./calls/dialogs/index"));
109
121
  exports.dialog = _dialog;
110
122
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
package/dist/esm/index.js CHANGED
@@ -7,6 +7,7 @@ export * from './hooks';
7
7
  export * from './components/WaitUntil';
8
8
  export * from './types/IChaynsReact';
9
9
  export * from './components/withCompatMode';
10
+ export * from './handler/DialogHandler';
10
11
  import * as _dialog from './calls/dialogs/index';
11
12
  export { _dialog as dialog };
12
13
  export * from './types/IChaynsReact';
@@ -7,7 +7,6 @@ export default class DialogHandler {
7
7
  private readonly _config;
8
8
  private readonly _dispatchEvent;
9
9
  private readonly _addDataListener;
10
- private readonly _removeDataListener;
11
10
  private readonly listeners;
12
11
  constructor(config: any, open: any, close: any, dispatchEvent: any, addDataListener: any);
13
12
  open(): Promise<unknown>;
@@ -7,6 +7,7 @@ export * from './hooks';
7
7
  export * from './components/WaitUntil';
8
8
  export * from './types/IChaynsReact';
9
9
  export * from './components/withCompatMode';
10
+ export * from './handler/DialogHandler';
10
11
  export * as dialog from './calls/dialogs/index';
11
12
  export * from './types/IChaynsReact';
12
13
  declare const _default: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chayns-api",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "new chayns api",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",