demio-ui 1.0.37 → 1.0.38
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,8 +1,9 @@
|
|
|
1
1
|
import React, { FC } from 'react';
|
|
2
2
|
type Props = {
|
|
3
3
|
align: 'center' | 'start' | 'end';
|
|
4
|
-
|
|
4
|
+
childClass: string;
|
|
5
5
|
children: React.ReactNode;
|
|
6
|
+
content: React.ReactNode;
|
|
6
7
|
};
|
|
7
8
|
declare const Popover: FC<Props>;
|
|
8
9
|
export default Popover;
|
package/dist/types.d.ts
CHANGED
|
@@ -231,8 +231,9 @@ declare const Input: React__default.ForwardRefExoticComponent<Props$1 & React__d
|
|
|
231
231
|
|
|
232
232
|
type Props = {
|
|
233
233
|
align: 'center' | 'start' | 'end';
|
|
234
|
-
|
|
234
|
+
childClass: string;
|
|
235
235
|
children: React__default.ReactNode;
|
|
236
|
+
content: React__default.ReactNode;
|
|
236
237
|
};
|
|
237
238
|
declare const Popover: FC<Props>;
|
|
238
239
|
|