@etsoo/notificationbase 1.1.8 → 1.1.9
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/lib/Notification.d.ts +7 -1
- package/package.json +1 -1
- package/src/Notification.ts +7 -2
package/lib/Notification.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { DataTypes } from '@etsoo/shared';
|
|
1
2
|
/**
|
|
2
3
|
* Display align
|
|
3
4
|
*/
|
|
@@ -102,7 +103,12 @@ export interface NotificationParameters {
|
|
|
102
103
|
/**
|
|
103
104
|
* Notification props supported for calls
|
|
104
105
|
*/
|
|
105
|
-
export declare type NotificationCallProps =
|
|
106
|
+
export declare type NotificationCallProps = {
|
|
107
|
+
/**
|
|
108
|
+
* Input component properties
|
|
109
|
+
*/
|
|
110
|
+
inputProps?: DataTypes.StringRecord;
|
|
111
|
+
};
|
|
106
112
|
/**
|
|
107
113
|
* Notification render props
|
|
108
114
|
*/
|
package/package.json
CHANGED
package/src/Notification.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Utils } from '@etsoo/shared';
|
|
1
|
+
import { DataTypes, Utils } from '@etsoo/shared';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Display align
|
|
@@ -112,7 +112,12 @@ export interface NotificationParameters {
|
|
|
112
112
|
/**
|
|
113
113
|
* Notification props supported for calls
|
|
114
114
|
*/
|
|
115
|
-
export type NotificationCallProps =
|
|
115
|
+
export type NotificationCallProps = {
|
|
116
|
+
/**
|
|
117
|
+
* Input component properties
|
|
118
|
+
*/
|
|
119
|
+
inputProps?: DataTypes.StringRecord;
|
|
120
|
+
};
|
|
116
121
|
|
|
117
122
|
/**
|
|
118
123
|
* Notification render props
|