demio-ui 1.0.38 → 1.0.40
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 +1 -0
- 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 +1 -0
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
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;
|
|
@@ -234,6 +235,7 @@ type Props = {
|
|
|
234
235
|
childClass: string;
|
|
235
236
|
children: React__default.ReactNode;
|
|
236
237
|
content: React__default.ReactNode;
|
|
238
|
+
isOpen: boolean;
|
|
237
239
|
};
|
|
238
240
|
declare const Popover: FC<Props>;
|
|
239
241
|
|