chayns-api 1.2.0-9 → 2.0.0

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.
Files changed (158) hide show
  1. package/.babelrc +30 -30
  2. package/.eslintrc +17 -17
  3. package/.github/workflows/deploy_docs.yml +28 -28
  4. package/.github/workflows/publish.yml +21 -21
  5. package/LICENSE +21 -21
  6. package/README.md +54 -54
  7. package/dist/cjs/calls/dialogs/date.js +34 -34
  8. package/dist/cjs/calls/index.js +108 -108
  9. package/dist/cjs/calls/sendMessage.js +8 -8
  10. package/dist/cjs/calls/visibilityChangeListener.js +4 -4
  11. package/dist/cjs/components/AppDialogWrapper.js +2 -2
  12. package/dist/cjs/components/ChaynsProvider.js +1 -1
  13. package/dist/cjs/components/ErrorBoundary.js +1 -1
  14. package/dist/cjs/components/withCompatMode.js +3 -3
  15. package/dist/cjs/hooks/geoLocationListener.js +4 -4
  16. package/dist/cjs/hooks/scrollListener.js +8 -8
  17. package/dist/cjs/hooks/useAccessToken.js +3 -3
  18. package/dist/cjs/hooks/useCurrentPage.js +2 -2
  19. package/dist/cjs/hooks/useCustomData.js +2 -2
  20. package/dist/cjs/hooks/useDevice.js +2 -2
  21. package/dist/cjs/hooks/useDialogState.js +4 -4
  22. package/dist/cjs/hooks/useEnvironment.js +2 -2
  23. package/dist/cjs/hooks/useFunctions.js +2 -2
  24. package/dist/cjs/hooks/useIsAdminMode.js +2 -2
  25. package/dist/cjs/hooks/useLanguage.js +2 -2
  26. package/dist/cjs/hooks/usePages.js +4 -4
  27. package/dist/cjs/hooks/useParameters.js +2 -2
  28. package/dist/cjs/hooks/useSite.js +2 -2
  29. package/dist/cjs/hooks/useUser.js +2 -2
  30. package/dist/cjs/hooks/useValues.js +2 -2
  31. package/dist/cjs/hooks/windowMetricsListener.js +4 -4
  32. package/dist/cjs/host/ChaynsHost.js +1 -1
  33. package/dist/cjs/host/iframe/HostIframe.js +2 -2
  34. package/dist/cjs/host/module/ModuleHost.js +1 -1
  35. package/dist/cjs/host/module/utils/loadComponent.js +2 -5
  36. package/dist/cjs/index.js +13 -1
  37. package/dist/cjs/types/IChaynsReact.js +11 -5
  38. package/dist/cjs/util/bindChaynsApi.js +12 -0
  39. package/dist/cjs/util/heightHelper.js +1 -1
  40. package/dist/cjs/util/initModuleFederationSharing.js +32 -32
  41. package/dist/cjs/wrapper/AppWrapper.js +1 -1
  42. package/dist/cjs/wrapper/FrameWrapper.js +1 -1
  43. package/dist/cjs/wrapper/ModuleFederationWrapper.js +1 -1
  44. package/dist/cjs/wrapper/StaticChaynsApi.js +6 -3
  45. package/dist/esm/calls/dialogs/date.js +34 -34
  46. package/dist/esm/calls/index.js +108 -108
  47. package/dist/esm/calls/sendMessage.js +8 -8
  48. package/dist/esm/calls/visibilityChangeListener.js +4 -4
  49. package/dist/esm/components/AppDialogWrapper.js +1 -1
  50. package/dist/esm/components/withCompatMode.js +2 -2
  51. package/dist/esm/handler/DialogHandler.js +1 -1
  52. package/dist/esm/hooks/geoLocationListener.js +4 -4
  53. package/dist/esm/hooks/scrollListener.js +8 -8
  54. package/dist/esm/hooks/useAccessToken.js +3 -3
  55. package/dist/esm/hooks/useCurrentPage.js +2 -2
  56. package/dist/esm/hooks/useCustomData.js +2 -2
  57. package/dist/esm/hooks/useDevice.js +2 -2
  58. package/dist/esm/hooks/useDialogState.js +4 -4
  59. package/dist/esm/hooks/useEnvironment.js +2 -2
  60. package/dist/esm/hooks/useFunctions.js +2 -2
  61. package/dist/esm/hooks/useIsAdminMode.js +2 -2
  62. package/dist/esm/hooks/useLanguage.js +2 -2
  63. package/dist/esm/hooks/usePages.js +4 -4
  64. package/dist/esm/hooks/useParameters.js +2 -2
  65. package/dist/esm/hooks/useSite.js +2 -2
  66. package/dist/esm/hooks/useUser.js +2 -2
  67. package/dist/esm/hooks/useValues.js +2 -2
  68. package/dist/esm/hooks/windowMetricsListener.js +4 -4
  69. package/dist/esm/host/iframe/HostIframe.js +1 -1
  70. package/dist/esm/host/module/utils/loadComponent.js +1 -4
  71. package/dist/esm/index.js +2 -1
  72. package/dist/esm/types/IChaynsReact.js +10 -4
  73. package/dist/esm/util/bindChaynsApi.js +5 -0
  74. package/dist/esm/util/initModuleFederationSharing.js +32 -31
  75. package/dist/esm/wrapper/AppWrapper.js +1 -1
  76. package/dist/esm/wrapper/FrameWrapper.js +1 -1
  77. package/dist/esm/wrapper/StaticChaynsApi.js +6 -3
  78. package/dist/types/calls/dialogs/alert.d.ts +1 -1
  79. package/dist/types/calls/dialogs/chaynsDialog.d.ts +24 -24
  80. package/dist/types/calls/dialogs/close.d.ts +1 -1
  81. package/dist/types/calls/dialogs/communication.d.ts +3 -3
  82. package/dist/types/calls/dialogs/confirm.d.ts +13 -13
  83. package/dist/types/calls/dialogs/date.d.ts +96 -96
  84. package/dist/types/calls/dialogs/dropUpAlert.d.ts +5 -5
  85. package/dist/types/calls/dialogs/fileSelect.d.ts +16 -16
  86. package/dist/types/calls/dialogs/iFrame.d.ts +10 -10
  87. package/dist/types/calls/dialogs/index.d.ts +14 -14
  88. package/dist/types/calls/dialogs/input.d.ts +15 -15
  89. package/dist/types/calls/dialogs/mediaSelect.d.ts +8 -8
  90. package/dist/types/calls/dialogs/open.d.ts +1 -1
  91. package/dist/types/calls/dialogs/select.d.ts +6 -6
  92. package/dist/types/calls/dialogs/signature.d.ts +7 -7
  93. package/dist/types/calls/dialogs/toast.d.ts +1 -1
  94. package/dist/types/calls/dialogs/utils/callback.d.ts +1 -1
  95. package/dist/types/calls/dialogs/utils/is.d.ts +4 -4
  96. package/dist/types/calls/getUserInfo.d.ts +9 -9
  97. package/dist/types/calls/index.d.ts +255 -255
  98. package/dist/types/calls/sendMessage.d.ts +13 -13
  99. package/dist/types/calls/visibilityChangeListener.d.ts +9 -9
  100. package/dist/types/components/AppDialogWrapper.d.ts +5 -5
  101. package/dist/types/components/ChaynsContext.d.ts +3 -3
  102. package/dist/types/components/ChaynsProvider.d.ts +11 -11
  103. package/dist/types/components/ErrorBoundary.d.ts +13 -13
  104. package/dist/types/components/WaitUntil.d.ts +7 -7
  105. package/dist/types/components/moduleWrapper.d.ts +4 -4
  106. package/dist/types/components/withCompatMode.d.ts +14 -14
  107. package/dist/types/components/withHydrationBoundary.d.ts +17 -17
  108. package/dist/types/constants/hydrationContext.d.ts +9 -9
  109. package/dist/types/constants/index.d.ts +1 -1
  110. package/dist/types/constants/languages.d.ts +12 -12
  111. package/dist/types/handler/DialogHandler.d.ts +24 -24
  112. package/dist/types/helper/apiListenerHelper.d.ts +6 -6
  113. package/dist/types/hooks/geoLocationListener.d.ts +18 -18
  114. package/dist/types/hooks/index.d.ts +17 -17
  115. package/dist/types/hooks/scrollListener.d.ts +28 -28
  116. package/dist/types/hooks/useAccessToken.d.ts +6 -6
  117. package/dist/types/hooks/useCurrentPage.d.ts +7 -7
  118. package/dist/types/hooks/useCustomData.d.ts +4 -4
  119. package/dist/types/hooks/useDevice.d.ts +5 -5
  120. package/dist/types/hooks/useDialogState.d.ts +9 -9
  121. package/dist/types/hooks/useEnvironment.d.ts +5 -5
  122. package/dist/types/hooks/useFunctions.d.ts +5 -5
  123. package/dist/types/hooks/useIsAdminMode.d.ts +4 -4
  124. package/dist/types/hooks/useLanguage.d.ts +5 -5
  125. package/dist/types/hooks/usePages.d.ts +18 -18
  126. package/dist/types/hooks/useParameters.d.ts +5 -5
  127. package/dist/types/hooks/useSite.d.ts +5 -5
  128. package/dist/types/hooks/useUser.d.ts +5 -5
  129. package/dist/types/hooks/useValues.d.ts +5 -5
  130. package/dist/types/hooks/windowMetricsListener.d.ts +11 -11
  131. package/dist/types/host/ChaynsHost.d.ts +29 -29
  132. package/dist/types/host/iframe/HostIframe.d.ts +26 -26
  133. package/dist/types/host/iframe/utils/useUpdateData.d.ts +3 -3
  134. package/dist/types/host/module/ModuleHost.d.ts +28 -28
  135. package/dist/types/host/module/utils/loadComponent.d.ts +3 -3
  136. package/dist/types/index.d.ts +20 -19
  137. package/dist/types/types/IChaynsReact.d.ts +896 -890
  138. package/dist/types/types/dialog.d.ts +41 -41
  139. package/dist/types/util/appCall.d.ts +2 -2
  140. package/dist/types/util/bindChaynsApi.d.ts +1 -0
  141. package/dist/types/util/deviceHelper.d.ts +9 -9
  142. package/dist/types/util/heightHelper.d.ts +1 -1
  143. package/dist/types/util/initModuleFederationSharing.d.ts +3 -1
  144. package/dist/types/util/is.d.ts +5 -5
  145. package/dist/types/util/postIframeForm.d.ts +1 -1
  146. package/dist/types/util/transferNestedFunctions.d.ts +1 -1
  147. package/dist/types/util/url.d.ts +1 -1
  148. package/dist/types/wrapper/AppWrapper.d.ts +19 -19
  149. package/dist/types/wrapper/FrameWrapper.d.ts +15 -15
  150. package/dist/types/wrapper/ModuleFederationWrapper.d.ts +10 -10
  151. package/dist/types/wrapper/SsrWrapper.d.ts +11 -11
  152. package/dist/types/wrapper/StaticChaynsApi.d.ts +16 -16
  153. package/package.json +88 -88
  154. package/toolkit.config.js +20 -20
  155. package/tsconfig.json +56 -56
  156. package/dist/cjs/host/module/utils/useDynamicScript.js +0 -59
  157. package/dist/esm/host/module/utils/useDynamicScript.js +0 -50
  158. package/dist/types/host/module/utils/useDynamicScript.d.ts +0 -9
@@ -1,6 +1,6 @@
1
1
  import { useContextSelector } from 'use-context-selector';
2
2
  import { ChaynsContext } from '../components/ChaynsContext';
3
- /**
4
- * @category Hooks
3
+ /**
4
+ * @category Hooks
5
5
  */
6
6
  export const useLanguage = () => useContextSelector(ChaynsContext, v => v === null || v === void 0 ? void 0 : v.language);
@@ -1,8 +1,8 @@
1
1
  import { useContextSelector } from 'use-context-selector';
2
2
  import { ChaynsContext } from '../components/ChaynsContext';
3
3
  import { moduleWrapper } from '../components/moduleWrapper';
4
- /**
5
- * @category Hooks
4
+ /**
5
+ * @category Hooks
6
6
  */
7
7
  export const usePages = function () {
8
8
  let {
@@ -16,8 +16,8 @@ export const usePages = function () {
16
16
  }
17
17
  return pages;
18
18
  };
19
- /**
20
- * @category Hooks
19
+ /**
20
+ * @category Hooks
21
21
  */
22
22
  export const usePage = _ref => {
23
23
  let {
@@ -1,6 +1,6 @@
1
1
  import { useContextSelector } from 'use-context-selector';
2
2
  import { ChaynsContext } from '../components/ChaynsContext';
3
- /**
4
- * @category Hooks
3
+ /**
4
+ * @category Hooks
5
5
  */
6
6
  export const useParameters = () => useContextSelector(ChaynsContext, v => (v === null || v === void 0 ? void 0 : v.parameters) || []);
@@ -1,6 +1,6 @@
1
1
  import { useContextSelector } from 'use-context-selector';
2
2
  import { ChaynsContext } from '../components/ChaynsContext';
3
- /**
4
- * @category Hooks
3
+ /**
4
+ * @category Hooks
5
5
  */
6
6
  export const useSite = () => useContextSelector(ChaynsContext, v => v === null || v === void 0 ? void 0 : v.site);
@@ -1,6 +1,6 @@
1
1
  import { useContextSelector } from 'use-context-selector';
2
2
  import { ChaynsContext } from '../components/ChaynsContext';
3
- /**
4
- * @category Hooks
3
+ /**
4
+ * @category Hooks
5
5
  */
6
6
  export const useUser = () => useContextSelector(ChaynsContext, v => (v === null || v === void 0 ? void 0 : v.user) || {});
@@ -1,7 +1,7 @@
1
1
  import { useContextSelector } from 'use-context-selector';
2
2
  import { ChaynsContext } from '../components/ChaynsContext';
3
- /**
4
- * @category Hooks
3
+ /**
4
+ * @category Hooks
5
5
  */
6
6
  export const useValues = () => {
7
7
  const t = useContextSelector(ChaynsContext, v => v || {});
@@ -2,8 +2,8 @@ import { useContextSelector } from 'use-context-selector';
2
2
  import { useCallback, useEffect, useRef, useState } from 'react';
3
3
  import { ChaynsFunctionsContext } from '../components/ChaynsContext';
4
4
  import { ScreenSize } from '../types/IChaynsReact';
5
- /**
6
- * @category Hooks
5
+ /**
6
+ * @category Hooks
7
7
  */
8
8
  export const useWindowMetricsListener = () => {
9
9
  const addListener = useContextSelector(ChaynsFunctionsContext, v => v.addWindowMetricsListener);
@@ -18,8 +18,8 @@ export const useWindowMetricsListener = () => {
18
18
  // eslint-disable-next-line react-hooks/exhaustive-deps
19
19
  }, []);
20
20
  };
21
- /**
22
- * @category Hooks
21
+ /**
22
+ * @category Hooks
23
23
  */
24
24
  export const useWindowMetrics = function () {
25
25
  let {
@@ -1,4 +1,4 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
1
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
2
2
  import React, { useEffect, useRef } from 'react';
3
3
  import * as comlink from 'comlink';
4
4
  import postIframeForm from '../../util/postIframeForm';
@@ -16,7 +16,7 @@ export const loadModule = function (scope, module, url) {
16
16
  console.error(`[chayns-api] call registerRemote with force for scope ${scope}. url: ${url}`);
17
17
  }
18
18
  registerRemotes([{
19
- shareScope: 'chayns-api2',
19
+ shareScope: url.endsWith('v2.remoteEntry.js') ? 'chayns-api' : 'default',
20
20
  name: scope,
21
21
  entry: url,
22
22
  alias: scope
@@ -68,7 +68,6 @@ const loadComponent = function (scope, module, url) {
68
68
  loadShareSync('react', {
69
69
  resolver: shareOptions => {
70
70
  resolve(shareOptions);
71
- console.log("shareOptions", shareOptions);
72
71
  return shareOptions[0];
73
72
  }
74
73
  });
@@ -81,12 +80,10 @@ const loadComponent = function (scope, module, url) {
81
80
  return semver.gt(version, hostVersion) && semver.satisfies(version, requiredVersion) || scope === from.split('-').join('_');
82
81
  });
83
82
  if (!matchReactVersion || environment !== 'production' || process.env.NODE_ENV === 'development' || Module.default.version !== 2) {
84
- console.log("use compat mode for", scope, module);
85
83
  return {
86
84
  default: Module.default.CompatComponent
87
85
  };
88
86
  }
89
- console.log("use direct component for", scope, module);
90
87
  return {
91
88
  default: Module.default.Component
92
89
  };
package/dist/esm/index.js CHANGED
@@ -17,4 +17,5 @@ export { default as DialogHandler } from './handler/DialogHandler';
17
17
  import * as _dialog from './calls/dialogs/index';
18
18
  export { _dialog as dialog };
19
19
  export * from './types/IChaynsReact';
20
- export * from './util/initModuleFederationSharing';
20
+ export * from './util/initModuleFederationSharing';
21
+ export * from './util/bindChaynsApi';
@@ -51,12 +51,12 @@ export let ScreenSize = /*#__PURE__*/function (ScreenSize) {
51
51
  return ScreenSize;
52
52
  }({});
53
53
 
54
- /**
55
- * @ignore
54
+ /**
55
+ * @ignore
56
56
  */
57
57
 
58
- /**
59
- * @ignore
58
+ /**
59
+ * @ignore
60
60
  */
61
61
 
62
62
  export let AccessMode = /*#__PURE__*/function (AccessMode) {
@@ -161,6 +161,12 @@ export let FloatingButtonPosition = /*#__PURE__*/function (FloatingButtonPositio
161
161
  FloatingButtonPosition[FloatingButtonPosition["Left"] = 2] = "Left";
162
162
  return FloatingButtonPosition;
163
163
  }({});
164
+ export let FloatingButtonAnimation = /*#__PURE__*/function (FloatingButtonAnimation) {
165
+ FloatingButtonAnimation["None"] = "none";
166
+ FloatingButtonAnimation["FadeIn"] = "fade-in";
167
+ FloatingButtonAnimation["Pulse"] = "pulse";
168
+ return FloatingButtonAnimation;
169
+ }({});
164
170
  export let SharingApp = /*#__PURE__*/function (SharingApp) {
165
171
  SharingApp[SharingApp["Mail"] = 0] = "Mail";
166
172
  SharingApp[SharingApp["WhatsApp"] = 1] = "WhatsApp";
@@ -0,0 +1,5 @@
1
+ import { StaticChaynsApi } from "../index";
2
+ export const bindChaynsApi = fun => (values, functions) => {
3
+ new StaticChaynsApi(values, functions);
4
+ return fun;
5
+ };
@@ -1,36 +1,37 @@
1
1
  import React from 'react';
2
2
  import ReactDOM from 'react-dom';
3
- export const initModuleFederationSharing = () => {
3
+ export const initModuleFederationSharing = _ref => {
4
+ let {
5
+ name
6
+ } = _ref;
4
7
  // forces single instance of module federation runtime
5
- if (!globalThis.moduleFederationRuntime) {
6
- var _process$env$__PACKAG;
7
- globalThis.moduleFederationRuntime = require('@module-federation/enhanced/runtime');
8
- globalThis.moduleFederationScopes = {
9
- registeredScopes: {},
10
- moduleMap: {},
11
- componentMap: {}
12
- };
13
- const {
14
- init
15
- } = globalThis.moduleFederationRuntime;
16
-
17
- // init also should only be called once
18
- init({
19
- // will be set by chayns-toolkit via DefinePlugin
20
- name: (_process$env$__PACKAG = process.env.__PACKAGE_NAME__) !== null && _process$env$__PACKAG !== void 0 ? _process$env$__PACKAG : '',
21
- remotes: [],
22
- shared: {
23
- react: {
24
- version: React.version,
25
- scope: 'chayns-api2',
26
- lib: () => React
27
- },
28
- 'react-dom': {
29
- version: ReactDOM.version,
30
- scope: 'chayns-api2',
31
- lib: () => ReactDOM
32
- }
33
- }
34
- });
8
+ if (globalThis.moduleFederationRuntime) {
9
+ return;
35
10
  }
11
+ globalThis.moduleFederationRuntime = require('@module-federation/enhanced/runtime');
12
+ globalThis.moduleFederationScopes = {
13
+ registeredScopes: {},
14
+ moduleMap: {},
15
+ componentMap: {}
16
+ };
17
+ const {
18
+ init
19
+ } = globalThis.moduleFederationRuntime;
20
+ init({
21
+ name: name !== null && name !== void 0 ? name : '',
22
+ remotes: [],
23
+ shared: {
24
+ react: {
25
+ version: React.version,
26
+ scope: 'chayns-api',
27
+ lib: () => React
28
+ },
29
+ 'react-dom': {
30
+ version: React.version,
31
+ // intended, because react dom.version is not identical to package json react version (hash in version)
32
+ scope: 'chayns-api',
33
+ lib: () => ReactDOM
34
+ }
35
+ }
36
+ });
36
37
  };
@@ -1,4 +1,4 @@
1
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
1
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
2
2
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
3
3
  function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
4
4
  /* eslint-disable */
@@ -1,4 +1,4 @@
1
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
1
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
2
2
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
3
3
  function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
4
4
  /* eslint-disable @typescript-eslint/no-non-null-assertion */
@@ -1,4 +1,4 @@
1
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
1
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
2
2
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
3
3
  function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
4
4
  import { moduleWrapper } from '../components/moduleWrapper';
@@ -6,8 +6,9 @@ import { AppName } from '../types/IChaynsReact';
6
6
  import getDeviceInfo from '../util/deviceHelper';
7
7
  import { AppWrapper } from './AppWrapper';
8
8
  import { FrameWrapper } from './FrameWrapper';
9
+ import { ModuleFederationWrapper } from "./ModuleFederationWrapper";
9
10
  class StaticChaynsApi {
10
- constructor() {
11
+ constructor(values, functions) {
11
12
  var _deviceInfo$app$name, _deviceInfo$app;
12
13
  _defineProperty(this, "getUser", () => this._wrapper.values.user);
13
14
  _defineProperty(this, "getSite", () => this._wrapper.values.site);
@@ -19,7 +20,9 @@ class StaticChaynsApi {
19
20
  _defineProperty(this, "getEnvironment", () => this._wrapper.values.environment);
20
21
  let wrapper;
21
22
  const deviceInfo = getDeviceInfo(navigator.userAgent, '');
22
- if ([AppName.Chayns, AppName.ChaynsLauncher, AppName.Sidekick, AppName.TobitChat].includes((_deviceInfo$app$name = (_deviceInfo$app = deviceInfo.app) === null || _deviceInfo$app === void 0 ? void 0 : _deviceInfo$app.name) !== null && _deviceInfo$app$name !== void 0 ? _deviceInfo$app$name : AppName.Unknown) && window.self === window.top) {
23
+ if (values && functions) {
24
+ wrapper = new ModuleFederationWrapper(values, functions);
25
+ } else if ([AppName.Chayns, AppName.ChaynsLauncher, AppName.Sidekick, AppName.TobitChat].includes((_deviceInfo$app$name = (_deviceInfo$app = deviceInfo.app) === null || _deviceInfo$app === void 0 ? void 0 : _deviceInfo$app.name) !== null && _deviceInfo$app$name !== void 0 ? _deviceInfo$app$name : AppName.Unknown) && window.self === window.top) {
23
26
  wrapper = new AppWrapper();
24
27
  } else {
25
28
  wrapper = new FrameWrapper();
@@ -1 +1 @@
1
- export declare function alert(title?: string, message?: string): Promise<any> | "unsupported";
1
+ export declare function alert(title?: string, message?: string): Promise<any> | "unsupported";
@@ -1,24 +1,24 @@
1
- export declare const buttonText: {
2
- YES: string;
3
- NO: string;
4
- OK: string;
5
- CANCEL: string;
6
- };
7
- export declare const buttonType: {
8
- CANCEL: number;
9
- NEGATIVE: number;
10
- POSITIVE: number;
11
- };
12
- export declare const dialogAction: {
13
- ALERT_CONFIRM: number;
14
- INPUT: number;
15
- SELECT: number;
16
- DATE: number;
17
- ADVANCED_DATE: number;
18
- DROP_UP_ALERT: number;
19
- MEDIA_SELECT: number;
20
- FILE_SELECT: number;
21
- SIGNATURE: number;
22
- IFRAME: number;
23
- };
24
- export declare function chaynsDialog(config: any): Promise<any> | "unsupported";
1
+ export declare const buttonText: {
2
+ YES: string;
3
+ NO: string;
4
+ OK: string;
5
+ CANCEL: string;
6
+ };
7
+ export declare const buttonType: {
8
+ CANCEL: number;
9
+ NEGATIVE: number;
10
+ POSITIVE: number;
11
+ };
12
+ export declare const dialogAction: {
13
+ ALERT_CONFIRM: number;
14
+ INPUT: number;
15
+ SELECT: number;
16
+ DATE: number;
17
+ ADVANCED_DATE: number;
18
+ DROP_UP_ALERT: number;
19
+ MEDIA_SELECT: number;
20
+ FILE_SELECT: number;
21
+ SIGNATURE: number;
22
+ IFRAME: number;
23
+ };
24
+ export declare function chaynsDialog(config: any): Promise<any> | "unsupported";
@@ -1 +1 @@
1
- export declare function close(): Promise<any>;
1
+ export declare function close(): Promise<any>;
@@ -1,3 +1,3 @@
1
- export declare function sendData(data: any, isApiEvent: any): Promise<any>;
2
- export declare function addDialogDataListener(callback: any, getApiEvents?: boolean): boolean;
3
- export declare function removeDialogDataListener(callback: any, getApiEvents?: boolean): boolean;
1
+ export declare function sendData(data: any, isApiEvent: any): Promise<any>;
2
+ export declare function addDialogDataListener(callback: any, getApiEvents?: boolean): boolean;
3
+ export declare function removeDialogDataListener(callback: any, getApiEvents?: boolean): boolean;
@@ -1,13 +1,13 @@
1
- import { DialogButtonOld } from "../../types/dialog";
2
- type Confirm = {
3
- headline?: string;
4
- text?: string;
5
- buttons?: DialogButtonOld[] | {
6
- buttons?: DialogButtonOld[];
7
- links?: DialogButtonOld[];
8
- };
9
- links?: unknown;
10
- select?: unknown;
11
- };
12
- export declare function confirm(title?: string, message?: string, config?: Confirm): Promise<any> | "unsupported";
13
- export {};
1
+ import { DialogButtonOld } from "../../types/dialog";
2
+ type Confirm = {
3
+ headline?: string;
4
+ text?: string;
5
+ buttons?: DialogButtonOld[] | {
6
+ buttons?: DialogButtonOld[];
7
+ links?: DialogButtonOld[];
8
+ };
9
+ links?: unknown;
10
+ select?: unknown;
11
+ };
12
+ export declare function confirm(title?: string, message?: string, config?: Confirm): Promise<any> | "unsupported";
13
+ export {};
@@ -1,96 +1,96 @@
1
- import { DialogButtonOld, DialogTextBlock, IntervalItem, WeekDayIntervalObject } from "../../types/dialog";
2
- /**
3
- * The config object for date dialog
4
- * @typedef {Object} dateConfig
5
- * @property {Date} preSelect - The date object which should be preselected.
6
- * @property {Date} minDate - The min date which you could select.
7
- * @property {Date} maxDate - The max date which you could select.
8
- * @property {dateDialogType} dateType - The type of dialog you want to display.
9
- * @property {number} minuteIntervall - The interval for special minutes, possible are 2, 3, 4, 5, 6, 12, 15, 20, 30. Default is 1.
10
- * @property {string} message - The message that is displayed above the date dialog, only in apps supported
11
- * @property {string} title - The title that is displayed above the message, only in apps supported
12
- */
13
- /**
14
- * This call will open a date select dialog.
15
- * <div>Call: 30</div>
16
- * @param {dateConfig} config - Define the configuration of this call
17
- * @return {Promise} contains a timestamp as result
18
- * @example chayns.dialog.date({
19
- * 'dateType': chayns.dialog.dateType.DATE_TIME,
20
- * 'preSelect': new Date(2018, 6, 14, 0, 0, 0),
21
- * 'minDate': new Date(2018, 6, 1, 15, 0, 0),
22
- * 'maxDate': new Date(2019, 6, 1, 0, 23, 0),
23
- * 'minuteInterval': 15
24
- * ).then(function (data) {
25
- * console.log(data);
26
- * });
27
- */
28
- type DateConfig = {
29
- title?: string;
30
- message?: string;
31
- buttons?: DialogButtonOld[];
32
- minDate?: Date | number;
33
- maxDate?: Date | number;
34
- minuteInterval?: number;
35
- preSelect?: Date | undefined | number;
36
- multiselect?: boolean;
37
- disabledDates?: Date[] | number[];
38
- textBlocks?: DialogTextBlock[];
39
- yearSelect?: boolean;
40
- monthSelect?: boolean;
41
- interval?: boolean;
42
- minInterval?: number;
43
- maxInterval?: number;
44
- disabledIntervals?: Array<IntervalItem>;
45
- disabledWeekDayIntervals?: Array<WeekDayIntervalObject>[7];
46
- getLocalTime?: boolean;
47
- dateType?: number;
48
- autoSelectDate?: boolean;
49
- };
50
- export declare function date(config?: DateConfig): Promise<any>;
51
- type preSelectObj = {
52
- start?: number | undefined | Date;
53
- end?: number | undefined | Date;
54
- };
55
- type preSelect = preSelectObj | Date | undefined | number | number[];
56
- type AdvancedDateConfig = {
57
- title?: string;
58
- message?: string;
59
- buttons?: DialogButtonOld[];
60
- minDate?: Date | number;
61
- maxDate?: Date | number;
62
- minuteInterval?: number;
63
- preSelect?: preSelect;
64
- multiselect?: boolean;
65
- disabledDates?: Date[] | number[];
66
- textBlocks?: DialogTextBlock[];
67
- yearSelect?: boolean;
68
- monthSelect?: boolean;
69
- interval?: boolean;
70
- minInterval?: number;
71
- maxInterval?: number;
72
- disabledIntervals?: Array<IntervalItem>;
73
- disabledWeekDayIntervals?: Array<WeekDayIntervalObject>[7];
74
- getLocalTime?: boolean;
75
- dateType?: number;
76
- autoSelectDate?: boolean;
77
- };
78
- export declare function advancedDate(config?: AdvancedDateConfig): Promise<unknown>;
79
- /**
80
- * @typedef {number} dateDialogType
81
- */
82
- /**
83
- * Enum for date dialog
84
- * <div>DATE will open a dialog where you can select a special day</div>
85
- * <div>TIME will open a dialog where you can only select a special time</div>
86
- * <div>DATE_TIME will open a dialog where you can select a special time on a special day</div>
87
- * @readonly
88
- * @enum {dateDialogType}
89
- * @type {{DATE: number, TIME: number, DATE_TIME: number}}
90
- */
91
- export declare const dateType: {
92
- DATE: number;
93
- TIME: number;
94
- DATE_TIME: number;
95
- };
96
- export {};
1
+ import { DialogButtonOld, DialogTextBlock, IntervalItem, WeekDayIntervalObject } from "../../types/dialog";
2
+ /**
3
+ * The config object for date dialog
4
+ * @typedef {Object} dateConfig
5
+ * @property {Date} preSelect - The date object which should be preselected.
6
+ * @property {Date} minDate - The min date which you could select.
7
+ * @property {Date} maxDate - The max date which you could select.
8
+ * @property {dateDialogType} dateType - The type of dialog you want to display.
9
+ * @property {number} minuteIntervall - The interval for special minutes, possible are 2, 3, 4, 5, 6, 12, 15, 20, 30. Default is 1.
10
+ * @property {string} message - The message that is displayed above the date dialog, only in apps supported
11
+ * @property {string} title - The title that is displayed above the message, only in apps supported
12
+ */
13
+ /**
14
+ * This call will open a date select dialog.
15
+ * <div>Call: 30</div>
16
+ * @param {dateConfig} config - Define the configuration of this call
17
+ * @return {Promise} contains a timestamp as result
18
+ * @example chayns.dialog.date({
19
+ * 'dateType': chayns.dialog.dateType.DATE_TIME,
20
+ * 'preSelect': new Date(2018, 6, 14, 0, 0, 0),
21
+ * 'minDate': new Date(2018, 6, 1, 15, 0, 0),
22
+ * 'maxDate': new Date(2019, 6, 1, 0, 23, 0),
23
+ * 'minuteInterval': 15
24
+ * ).then(function (data) {
25
+ * console.log(data);
26
+ * });
27
+ */
28
+ type DateConfig = {
29
+ title?: string;
30
+ message?: string;
31
+ buttons?: DialogButtonOld[];
32
+ minDate?: Date | number;
33
+ maxDate?: Date | number;
34
+ minuteInterval?: number;
35
+ preSelect?: Date | undefined | number;
36
+ multiselect?: boolean;
37
+ disabledDates?: Date[] | number[];
38
+ textBlocks?: DialogTextBlock[];
39
+ yearSelect?: boolean;
40
+ monthSelect?: boolean;
41
+ interval?: boolean;
42
+ minInterval?: number;
43
+ maxInterval?: number;
44
+ disabledIntervals?: Array<IntervalItem>;
45
+ disabledWeekDayIntervals?: Array<WeekDayIntervalObject>[7];
46
+ getLocalTime?: boolean;
47
+ dateType?: number;
48
+ autoSelectDate?: boolean;
49
+ };
50
+ export declare function date(config?: DateConfig): Promise<any>;
51
+ type preSelectObj = {
52
+ start?: number | undefined | Date;
53
+ end?: number | undefined | Date;
54
+ };
55
+ type preSelect = preSelectObj | Date | undefined | number | number[];
56
+ type AdvancedDateConfig = {
57
+ title?: string;
58
+ message?: string;
59
+ buttons?: DialogButtonOld[];
60
+ minDate?: Date | number;
61
+ maxDate?: Date | number;
62
+ minuteInterval?: number;
63
+ preSelect?: preSelect;
64
+ multiselect?: boolean;
65
+ disabledDates?: Date[] | number[];
66
+ textBlocks?: DialogTextBlock[];
67
+ yearSelect?: boolean;
68
+ monthSelect?: boolean;
69
+ interval?: boolean;
70
+ minInterval?: number;
71
+ maxInterval?: number;
72
+ disabledIntervals?: Array<IntervalItem>;
73
+ disabledWeekDayIntervals?: Array<WeekDayIntervalObject>[7];
74
+ getLocalTime?: boolean;
75
+ dateType?: number;
76
+ autoSelectDate?: boolean;
77
+ };
78
+ export declare function advancedDate(config?: AdvancedDateConfig): Promise<unknown>;
79
+ /**
80
+ * @typedef {number} dateDialogType
81
+ */
82
+ /**
83
+ * Enum for date dialog
84
+ * <div>DATE will open a dialog where you can select a special day</div>
85
+ * <div>TIME will open a dialog where you can only select a special time</div>
86
+ * <div>DATE_TIME will open a dialog where you can select a special time on a special day</div>
87
+ * @readonly
88
+ * @enum {dateDialogType}
89
+ * @type {{DATE: number, TIME: number, DATE_TIME: number}}
90
+ */
91
+ export declare const dateType: {
92
+ DATE: number;
93
+ TIME: number;
94
+ DATE_TIME: number;
95
+ };
96
+ export {};
@@ -1,5 +1,5 @@
1
- type DropUpAlert = {
2
- callType?: number;
3
- };
4
- export declare function dropUpAlert(dialog?: DropUpAlert): Promise<unknown>;
5
- export {};
1
+ type DropUpAlert = {
2
+ callType?: number;
3
+ };
4
+ export declare function dropUpAlert(dialog?: DropUpAlert): Promise<unknown>;
5
+ export {};
@@ -1,16 +1,16 @@
1
- import { DialogButtonOld } from "../../types/dialog";
2
- export declare const fileType: {
3
- IMAGE: string;
4
- VIDEO: string;
5
- AUDIO: string;
6
- DOCUMENT: string[];
7
- };
8
- type FileSelectInput = {
9
- buttons?: DialogButtonOld[];
10
- callType?: number;
11
- multiselect?: boolean;
12
- directory?: boolean;
13
- chaynsToken?: string;
14
- };
15
- export declare function fileSelect(dialog?: FileSelectInput): Promise<unknown>;
16
- export {};
1
+ import { DialogButtonOld } from "../../types/dialog";
2
+ export declare const fileType: {
3
+ IMAGE: string;
4
+ VIDEO: string;
5
+ AUDIO: string;
6
+ DOCUMENT: string[];
7
+ };
8
+ type FileSelectInput = {
9
+ buttons?: DialogButtonOld[];
10
+ callType?: number;
11
+ multiselect?: boolean;
12
+ directory?: boolean;
13
+ chaynsToken?: string;
14
+ };
15
+ export declare function fileSelect(dialog?: FileSelectInput): Promise<unknown>;
16
+ export {};
@@ -1,10 +1,10 @@
1
- import { DialogButtonOld } from "../../types/dialog";
2
- type iFrameDialog = {
3
- buttons?: DialogButtonOld[];
4
- callType?: number;
5
- tappIframeName?: string;
6
- url: string;
7
- };
8
- export declare function iFrame(dialog?: iFrameDialog): Promise<unknown>;
9
- export declare function _chaynsCallResponder(obj: any): void;
10
- export {};
1
+ import { DialogButtonOld } from "../../types/dialog";
2
+ type iFrameDialog = {
3
+ buttons?: DialogButtonOld[];
4
+ callType?: number;
5
+ tappIframeName?: string;
6
+ url: string;
7
+ };
8
+ export declare function iFrame(dialog?: iFrameDialog): Promise<unknown>;
9
+ export declare function _chaynsCallResponder(obj: any): void;
10
+ export {};