chayns-api 2.6.0 → 2.6.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.
@@ -83,6 +83,10 @@ export interface BaseDialog {
83
83
  config?: any;
84
84
  };
85
85
  hideDragHandle?: boolean;
86
+ onLinkClick?: (attributes: {
87
+ [key: string]: string;
88
+ }) => void;
89
+ footer?: string;
86
90
  }
87
91
  export type Dialog<T = object> = BaseDialog & (DialogAlert | DialogConfirm | DialogInput | DialogModule<T> | DialogIFrame<T> | DialogSelect | DialogDate | DialogToast | DialogSignature | DialogFileSelect);
88
92
  export interface DialogSignature {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chayns-api",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "description": "new chayns api",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",