chayns-api 1.0.30 → 1.0.32-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 (128) 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 +10 -10
  8. package/dist/cjs/calls/index.js +98 -98
  9. package/dist/cjs/calls/sendMessage.js +8 -8
  10. package/dist/cjs/calls/visibilityChangeListener.js +4 -4
  11. package/dist/cjs/hooks/geoLocationListener.js +4 -4
  12. package/dist/cjs/hooks/scrollListener.js +8 -8
  13. package/dist/cjs/hooks/useAccessToken.js +2 -2
  14. package/dist/cjs/hooks/useCurrentPage.js +2 -2
  15. package/dist/cjs/hooks/useCustomData.js +2 -2
  16. package/dist/cjs/hooks/useDevice.js +2 -2
  17. package/dist/cjs/hooks/useDialogState.js +4 -4
  18. package/dist/cjs/hooks/useEnvironment.js +2 -2
  19. package/dist/cjs/hooks/useFunctions.js +2 -2
  20. package/dist/cjs/hooks/useIsAdminMode.js +2 -2
  21. package/dist/cjs/hooks/useLanguage.js +2 -2
  22. package/dist/cjs/hooks/usePages.js +4 -4
  23. package/dist/cjs/hooks/useParameters.js +2 -2
  24. package/dist/cjs/hooks/useSite.js +2 -2
  25. package/dist/cjs/hooks/useUser.js +2 -2
  26. package/dist/cjs/hooks/useValues.js +2 -2
  27. package/dist/cjs/hooks/windowMetricsListener.js +4 -4
  28. package/dist/cjs/host/module/utils/loadComponent.js +1 -1
  29. package/dist/cjs/index.js +1 -0
  30. package/dist/cjs/util/comlinkHelper.js +40 -0
  31. package/dist/cjs/util/handleDialogMapping.js +1 -0
  32. package/dist/cjs/util/transferNestedFunctions.js +36 -0
  33. package/dist/esm/calls/dialogs/date.js +34 -34
  34. package/dist/esm/calls/index.js +98 -98
  35. package/dist/esm/calls/sendMessage.js +8 -8
  36. package/dist/esm/calls/visibilityChangeListener.js +4 -4
  37. package/dist/esm/hooks/geoLocationListener.js +4 -4
  38. package/dist/esm/hooks/scrollListener.js +8 -8
  39. package/dist/esm/hooks/useAccessToken.js +2 -2
  40. package/dist/esm/hooks/useCurrentPage.js +2 -2
  41. package/dist/esm/hooks/useCustomData.js +2 -2
  42. package/dist/esm/hooks/useDevice.js +2 -2
  43. package/dist/esm/hooks/useDialogState.js +4 -4
  44. package/dist/esm/hooks/useEnvironment.js +2 -2
  45. package/dist/esm/hooks/useFunctions.js +2 -2
  46. package/dist/esm/hooks/useIsAdminMode.js +2 -2
  47. package/dist/esm/hooks/useLanguage.js +2 -2
  48. package/dist/esm/hooks/usePages.js +4 -4
  49. package/dist/esm/hooks/useParameters.js +2 -2
  50. package/dist/esm/hooks/useSite.js +2 -2
  51. package/dist/esm/hooks/useUser.js +2 -2
  52. package/dist/esm/hooks/useValues.js +2 -2
  53. package/dist/esm/hooks/windowMetricsListener.js +4 -4
  54. package/dist/esm/host/module/utils/loadComponent.js +1 -1
  55. package/dist/esm/index.js +1 -0
  56. package/dist/esm/util/comlinkHelper.js +33 -0
  57. package/dist/esm/util/handleDialogMapping.js +0 -0
  58. package/dist/esm/util/transferNestedFunctions.js +32 -0
  59. package/dist/types/calls/dialogs/alert.d.ts +1 -1
  60. package/dist/types/calls/dialogs/chaynsDialog.d.ts +24 -24
  61. package/dist/types/calls/dialogs/close.d.ts +1 -1
  62. package/dist/types/calls/dialogs/communication.d.ts +3 -3
  63. package/dist/types/calls/dialogs/confirm.d.ts +13 -13
  64. package/dist/types/calls/dialogs/date.d.ts +96 -96
  65. package/dist/types/calls/dialogs/dropUpAlert.d.ts +5 -5
  66. package/dist/types/calls/dialogs/fileSelect.d.ts +16 -16
  67. package/dist/types/calls/dialogs/iFrame.d.ts +10 -10
  68. package/dist/types/calls/dialogs/index.d.ts +14 -14
  69. package/dist/types/calls/dialogs/input.d.ts +15 -15
  70. package/dist/types/calls/dialogs/mediaSelect.d.ts +8 -8
  71. package/dist/types/calls/dialogs/open.d.ts +1 -1
  72. package/dist/types/calls/dialogs/select.d.ts +6 -6
  73. package/dist/types/calls/dialogs/signature.d.ts +7 -7
  74. package/dist/types/calls/dialogs/toast.d.ts +1 -1
  75. package/dist/types/calls/dialogs/utils/callback.d.ts +1 -1
  76. package/dist/types/calls/dialogs/utils/is.d.ts +4 -4
  77. package/dist/types/calls/getUserInfo.d.ts +9 -9
  78. package/dist/types/calls/index.d.ts +237 -237
  79. package/dist/types/calls/sendMessage.d.ts +13 -13
  80. package/dist/types/calls/visibilityChangeListener.d.ts +9 -9
  81. package/dist/types/components/AppDialogWrapper.d.ts +5 -5
  82. package/dist/types/components/ChaynsContext.d.ts +3 -3
  83. package/dist/types/components/ChaynsProvider.d.ts +14 -14
  84. package/dist/types/components/WaitUntil.d.ts +7 -7
  85. package/dist/types/components/withCompatMode.d.ts +13 -13
  86. package/dist/types/handler/DialogHandler.d.ts +18 -18
  87. package/dist/types/helper/apiListenerHelper.d.ts +6 -6
  88. package/dist/types/hooks/geoLocationListener.d.ts +18 -18
  89. package/dist/types/hooks/index.d.ts +17 -17
  90. package/dist/types/hooks/scrollListener.d.ts +28 -28
  91. package/dist/types/hooks/useAccessToken.d.ts +5 -5
  92. package/dist/types/hooks/useCurrentPage.d.ts +4 -4
  93. package/dist/types/hooks/useCustomData.d.ts +4 -4
  94. package/dist/types/hooks/useDevice.d.ts +5 -5
  95. package/dist/types/hooks/useDialogState.d.ts +9 -9
  96. package/dist/types/hooks/useEnvironment.d.ts +5 -5
  97. package/dist/types/hooks/useFunctions.d.ts +5 -5
  98. package/dist/types/hooks/useIsAdminMode.d.ts +4 -4
  99. package/dist/types/hooks/useLanguage.d.ts +5 -5
  100. package/dist/types/hooks/usePages.d.ts +18 -18
  101. package/dist/types/hooks/useParameters.d.ts +5 -5
  102. package/dist/types/hooks/useSite.d.ts +5 -5
  103. package/dist/types/hooks/useUser.d.ts +5 -5
  104. package/dist/types/hooks/useValues.d.ts +5 -5
  105. package/dist/types/hooks/windowMetricsListener.d.ts +11 -11
  106. package/dist/types/host/ChaynsHost.d.ts +30 -30
  107. package/dist/types/host/iframe/HostIframe.d.ts +26 -26
  108. package/dist/types/host/iframe/utils/useUpdateData.d.ts +3 -3
  109. package/dist/types/host/module/ModuleHost.d.ts +27 -27
  110. package/dist/types/host/module/utils/loadComponent.d.ts +1 -1
  111. package/dist/types/host/module/utils/useDynamicScript.d.ts +9 -9
  112. package/dist/types/index.d.ts +18 -17
  113. package/dist/types/types/IChaynsReact.d.ts +761 -761
  114. package/dist/types/types/dialog.d.ts +41 -41
  115. package/dist/types/util/appCall.d.ts +2 -2
  116. package/dist/types/util/comlinkHelper.d.ts +1 -0
  117. package/dist/types/util/deviceHelper.d.ts +7 -7
  118. package/dist/types/util/handleDialogMapping.d.ts +0 -0
  119. package/dist/types/util/heightHelper.d.ts +1 -1
  120. package/dist/types/util/postIframeForm.d.ts +1 -1
  121. package/dist/types/util/transferNestedFunctions.d.ts +1 -0
  122. package/dist/types/util/url.d.ts +1 -1
  123. package/dist/types/wrapper/AppWrapper.d.ts +22 -22
  124. package/dist/types/wrapper/FrameWrapper.d.ts +15 -15
  125. package/dist/types/wrapper/ModuleFederationWrapper.d.ts +10 -10
  126. package/dist/types/wrapper/SsrWrapper.d.ts +11 -11
  127. package/package.json +76 -76
  128. package/tsconfig.json +56 -56
@@ -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 { useWindowMetrics } from './windowMetricsListener';
5
- /**
6
- * @category Hooks
5
+ /**
6
+ * @category Hooks
7
7
  */
8
8
  export const useScrollListener = () => {
9
9
  const addListener = useContextSelector(ChaynsFunctionsContext, v => v.addScrollListener);
@@ -18,8 +18,8 @@ export const useScrollListener = () => {
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 useScrollPosition = function () {
25
25
  let {
@@ -46,8 +46,8 @@ export const useScrollPosition = function () {
46
46
  }, [getScrollPosition]);
47
47
  return value;
48
48
  };
49
- /**
50
- * @category Hooks
49
+ /**
50
+ * @category Hooks
51
51
  */
52
52
  export const useScrollOffsetTop = function () {
53
53
  let {
@@ -69,8 +69,8 @@ export const useScrollOffsetTop = function () {
69
69
  }
70
70
  return 0;
71
71
  };
72
- /**
73
- * @category Hooks
72
+ /**
73
+ * @category Hooks
74
74
  */
75
75
  export const useScrollOffsetBottom = function () {
76
76
  let {
@@ -2,8 +2,8 @@ import { useEffect, useState } from "react";
2
2
  import { useContextSelector } from "use-context-selector";
3
3
  import { ChaynsFunctionsContext } from "../components/ChaynsContext";
4
4
 
5
- /**
6
- * @category Hooks
5
+ /**
6
+ * @category Hooks
7
7
  */
8
8
  export const useAccessToken = accessToken => {
9
9
  const [token, setToken] = useState(null);
@@ -1,7 +1,7 @@
1
1
  import { useContextSelector } from 'use-context-selector';
2
2
  import { ChaynsContext } from '../components/ChaynsContext';
3
3
 
4
- /**
5
- * @category Hooks
4
+ /**
5
+ * @category Hooks
6
6
  */
7
7
  export const useCurrentPage = () => useContextSelector(ChaynsContext, v => v === null || v === void 0 ? void 0 : v.currentPage);
@@ -1,7 +1,7 @@
1
1
  import { useContextSelector } from 'use-context-selector';
2
2
  import { ChaynsContext } from '../components/ChaynsContext';
3
3
 
4
- /**
5
- * @category Hooks
4
+ /**
5
+ * @category Hooks
6
6
  */
7
7
  export const useCustomData = () => useContextSelector(ChaynsContext, v => v === null || v === void 0 ? void 0 : v.customData);
@@ -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 useDevice = () => useContextSelector(ChaynsContext, v => v === null || v === void 0 ? void 0 : v.device);
@@ -1,8 +1,8 @@
1
1
  import { useContextSelector } from 'use-context-selector';
2
2
  import { ChaynsContext, ChaynsFunctionsContext } from '../components/ChaynsContext';
3
3
 
4
- /**
5
- * @category Hooks
4
+ /**
5
+ * @category Hooks
6
6
  */
7
7
  export const useDialogState = () => {
8
8
  const setResult = useContextSelector(ChaynsFunctionsContext, v => v === null || v === void 0 ? void 0 : v.setDialogResult);
@@ -20,8 +20,8 @@ export const useDialogState = () => {
20
20
  };
21
21
  };
22
22
 
23
- /**
24
- * @category Hooks
23
+ /**
24
+ * @category Hooks
25
25
  */
26
26
  export const useDialogData = () => {
27
27
  const inputData = useContextSelector(ChaynsContext, v => {
@@ -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 useEnvironment = () => useContextSelector(ChaynsContext, v => v === null || v === void 0 ? void 0 : v.environment);
@@ -1,7 +1,7 @@
1
1
  import { useContextSelector } from "use-context-selector";
2
2
  import { ChaynsFunctionsContext } from "../components/ChaynsContext";
3
- /**
4
- * @category Hooks
3
+ /**
4
+ * @category Hooks
5
5
  */
6
6
  export const useFunctions = () => {
7
7
  const t = useContextSelector(ChaynsFunctionsContext, f => f || {});
@@ -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 useIsAdminMode = () => {
7
7
  var _useContextSelector;
@@ -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/ChaynsProvider";
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 {
@@ -48,7 +48,7 @@ export default function loadComponent(scope, module, url) {
48
48
  const matchReactVersion = requiredVersion && semver.satisfies(hostVersion, requiredVersion) && !Object.keys(__webpack_share_scopes__.default.react).some(version => {
49
49
  return semver.gt(version, hostVersion) && semver.satisfies(version, requiredVersion);
50
50
  });
51
- if (!matchReactVersion || environment !== 'production') {
51
+ if (!matchReactVersion || environment !== 'production' || process.env.NODE_ENV === 'development') {
52
52
  return {
53
53
  default: Module.default.CompatComponent
54
54
  };
package/dist/esm/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ import './util/transferNestedFunctions';
1
2
  export { default as ChaynsProvider } from './components/ChaynsProvider';
2
3
  export { default as getDeviceInfo, getScreenSize, getClientDeviceInfo } from './util/deviceHelper';
3
4
  export { default as ChaynsHost } from './host/ChaynsHost';
@@ -0,0 +1,33 @@
1
+ import * as Comlink from 'comlink';
2
+ const isProxy = obj => {
3
+ var _obj$create;
4
+ return obj[Comlink.proxyMarker] || (obj === null || obj === void 0 ? void 0 : (_obj$create = obj.create) === null || _obj$create === void 0 ? void 0 : _obj$create[Comlink.proxyMarker]);
5
+ };
6
+ export default function initComlinkTransferHandler() {
7
+ Comlink.transferHandlers.set('FUNCTION', {
8
+ // @ts-ignore
9
+ canHandle: obj => {
10
+ if (isProxy(obj) || typeof obj !== 'object') return false;
11
+ Object.entries(obj).forEach(_ref => {
12
+ let [k, v] = _ref;
13
+ if (typeof v === 'function' && !isProxy(v)) {
14
+ return true;
15
+ }
16
+ });
17
+ return typeof obj === 'function';
18
+ },
19
+ // @ts-ignore
20
+ serialize: obj => {
21
+ const {
22
+ port1,
23
+ port2
24
+ } = new MessageChannel();
25
+ Comlink.expose(obj, port1);
26
+ return [port2, [port2]];
27
+ },
28
+ deserialize: port => {
29
+ port.start();
30
+ return Comlink.wrap(port);
31
+ }
32
+ });
33
+ }
File without changes
@@ -0,0 +1,32 @@
1
+ // @ts-nocheck
2
+ import * as Comlink from 'comlink';
3
+ Comlink.transferHandlers.set("FUNCTION", {
4
+ canHandle: obj => {
5
+ return typeof obj === "object" && Object.values(obj).some(x => typeof x === 'function');
6
+ },
7
+ serialize(obj) {
8
+ obj._functionKeys = [];
9
+ const ports = [];
10
+ Object.entries(obj).forEach(_ref => {
11
+ let [k, v] = _ref;
12
+ if (typeof v === 'function') {
13
+ const {
14
+ port1,
15
+ port2
16
+ } = new MessageChannel();
17
+ obj._functionKeys.push(k);
18
+ Comlink.expose(obj[k], port1);
19
+ obj[k] = port2;
20
+ ports.push(port2);
21
+ }
22
+ });
23
+ return [obj, ports];
24
+ },
25
+ deserialize(obj) {
26
+ obj._functionKeys.forEach(x => {
27
+ obj[x].start();
28
+ obj[x] = Comlink.wrap(obj[x]);
29
+ });
30
+ return obj;
31
+ }
32
+ });
@@ -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 {};