Jay
Jay
Example ``` const CoercedDate = coerce(date(),string(), (dateString) => { return new Date(dateString); }); const UserId = string(); const User = object({ createdAt: CoercedDate, name: string() }); const facilityValidator = object({...
The following two scenario doesn't seem to work when using `Describe`. Both of them says ``` Type 'Struct' is not assignable to type 'Describe'. Types of property 'TYPE' are incompatible....
@swederik, @dannyrb This PR addresses #2493, where annotation tool dialog text input doesn't get autofocus when the dialog is shown. The fix adds `autoFocus` attribute to the `TextInput` component, which...
This fixes a problem described in [OHIF-2443](https://github.com/OHIF/Viewers/issues/2443) * add useCallback with proper dependencies to ImageThumbnail.js fetchImagePromise, setImagePromise and purgeCancelablePromise @swederik
When creating a dialog using modalFactory modalFactory({ overlayClose: "false" }) and the "prop=overlayClose" property is added to the attribute element.attr(prop, config[prop]); the attribute becomes lowercase "overlayclose" in the attrs object...
Invalid zoom in Chrome when touch/pen/tablet input devices is plugged into a desktop/laptop computer
When the touch/pen/tablet input devices is plugged in and drivers installed, the detect-zoom.js interpret the current desktop computer as a mobile device because of the ontouchstart event. The _zoomWebkitMobile() is...