@ioca/react 1.1.6 → 1.1.7
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/css/index.css +1 -1
- package/lib/css/index.css.map +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/lib/types/index.d.ts +2 -0
- package/package.json +1 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -238,6 +238,7 @@ interface IDrawer extends HTMLAttributes<HTMLDivElement> {
|
|
|
238
238
|
footer?: ReactNode;
|
|
239
239
|
hideCloseButton?: boolean;
|
|
240
240
|
backdropClosable?: boolean;
|
|
241
|
+
keepDOM?: boolean;
|
|
241
242
|
onVisibleChange?: (visible: boolean) => void;
|
|
242
243
|
onClose?: () => void;
|
|
243
244
|
}
|
|
@@ -891,6 +892,7 @@ interface IVideo extends HTMLAttributes<HTMLVideoElement> {
|
|
|
891
892
|
height?: number | string;
|
|
892
893
|
width?: number | string;
|
|
893
894
|
useOriginControls?: boolean;
|
|
895
|
+
poster?: string;
|
|
894
896
|
timeProgressProps?: IProgress;
|
|
895
897
|
volumeProgressProps?: IProgress;
|
|
896
898
|
onFullScreenChange?: (fullscreen: boolean) => void;
|