@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.
@@ -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 = object;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/notificationbase",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "description": "TypeScript notification component for extending with all features described and partially implemented",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -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 = object;
115
+ export type NotificationCallProps = {
116
+ /**
117
+ * Input component properties
118
+ */
119
+ inputProps?: DataTypes.StringRecord;
120
+ };
116
121
 
117
122
  /**
118
123
  * Notification render props