Aakansha Doshi
Aakansha Doshi
Fix #142
Fix prevent submit prop bug and tests
``` @@ -286,7 +286,7 @@ tags = tags.filter(function (tag) { var tagDisplayValue = _this2._getTagDisplayValue(tag); if (typeof tagDisplayValue.trim === 'function') { - return tagDisplayValue.trim().length > 0; + return tagDisplayValue.trim().length >= 0;...
⚠️ This feature is in progress ⚠️ https://user-images.githubusercontent.com/11256141/183617740-df13f6df-04b9-441a-bbff-9742923a199f.mp4
As per UX, I feel it's not intuitive to disable selection and I am not sure why we are disabling selection, even when you right-click the element it gets selected....
This will later be even useful once we move to component based API - [ ] Improve Perf of context
Remove `renderFooter` prop and render it as a component instead, the api would for package consumers would be 👇🏻 ```js ``` Export `useDevice` hook so it can be used to...
Right now we are having mono repo (have multiple packages in same repo) but still not really as the dependencies are not as per the repo. We should start looking...
I tried using this library. to render a component inside shadow root but the click events in children, copy/paste event on the canvas(canvas is rendered inside shadow DOM) and custom...
Adding aria-label does announce it to screen readers but the container element on which the tooltip is shown, the text of that button for example won't be announced as shown...