demio-ui 1.0.37 → 1.0.39
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/dist/cjs/index.js +2 -2
- package/dist/cjs/types/src/components/Input/Input.d.ts +1 -0
- package/dist/cjs/types/src/components/Popover/Popover.d.ts +2 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/types/src/components/Input/Input.d.ts +1 -0
- package/dist/esm/types/src/components/Popover/Popover.d.ts +2 -1
- package/dist/types.d.ts +3 -1
- package/package.json +1 -1
|
@@ -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
|
@@ -214,6 +214,7 @@ type Props$1 = {
|
|
|
214
214
|
errorMessage?: string;
|
|
215
215
|
hint?: string;
|
|
216
216
|
id: string;
|
|
217
|
+
inputWrapperClass?: string;
|
|
217
218
|
label?: string;
|
|
218
219
|
maxLength?: number;
|
|
219
220
|
name?: string;
|
|
@@ -231,8 +232,9 @@ declare const Input: React__default.ForwardRefExoticComponent<Props$1 & React__d
|
|
|
231
232
|
|
|
232
233
|
type Props = {
|
|
233
234
|
align: 'center' | 'start' | 'end';
|
|
234
|
-
|
|
235
|
+
childClass: string;
|
|
235
236
|
children: React__default.ReactNode;
|
|
237
|
+
content: React__default.ReactNode;
|
|
236
238
|
};
|
|
237
239
|
declare const Popover: FC<Props>;
|
|
238
240
|
|