Fit.UI icon indicating copy to clipboard operation
Fit.UI copied to clipboard

Fit.UI is a JavaScript based UI framework built on Object Oriented principles

Results 89 Fit.UI issues
Sort by recently updated
recently updated
newest added

See https://github.com/Jemt/Fit.UI/blob/23ce04121c17f56660c64d469602cd3e26eb0adc/Core/Events.js#L796 This does not seem right. Why would we reset the state of the mouse buttons or the target on which a mouse event occurred when the mouse leaves...

minor bug
consistency

The following example results in draggable object "jumping" 5px to the right and down when being dragged, due to the borders applied to the positioned parent. This only happens when...

minor bug

There is a known bug/issue with CKEditor not opening links when editor is in ReadOnly mode. ``` var ed = new Fit.Controls.Input(); ed.DesignMode(true); ed.Value("Hi, Visit Fit.UI today"); ed.Enabled(false); ed.Render(document.body); ```...

minor bug

Remove code related to support for legacy browsers - all versions of Internet Explorer and Edge 12-18 (which is based on IE while more recent versions are based on Chrome/Chromium).

enhancement
compatibility

Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.1 to 1.14.8. Commits 3d81dc3 Release version 1.14.8 of the npm package. 62e546a Drop confidential headers across schemes. 2ede36d Release version 1.14.7 of the npm package. 8b347cb...

dependencies

The DropDown control does not allow input value to be set from an OnFocus event handler: ``` dropdown.OnFocus(function(sender) { sender.SetInputValue("Hello world"); }); ``` This is actually by design, but not...

minor bug
consistency

Having a color picker would be useful. Either a traditional color picker, a palette, or something in between or a combination. This issue is created with the intend to gather...

enhancement

Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 5.0.0 to 5.0.1. Release notes Sourced from ansi-regex's releases. v5.0.1 Fixes (backport of 6.0.1 to v5) This is a backport of the minor ReDos vulnerability in ansi-regex@<6.0.1,...

dependencies

Recently a co-worker stumpled upon the following bug which was caused by two TreeViewNode instances with identical values. It was fairly difficult to figure out the cause of the problem...

minor bug

Fit.UI does not support Map. Example of cases where Map needs to be supported: Fit.Core.Clone Fit.Core.Merge Fit.Core.IsEqual Fit.Array.Count Fit.Array.Merge Fit.Array.Copy etc.. More on Map: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map This is marked as a...

bug
enhancement
compatibility