Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In the current keyboard layout implementation, All the keys fixed to same width. The disadvantage of it is when applying fixed width for a keys key which has many characters in it, The key wraps inside the fixed width. Because of that the keyboard layout breaks.

...

Grapheme Splitter does not handle all the test cases,  For some inputs, it is not determining the character length rightcorrectly. Also there was no docs about it's test coverage on a for a  specific language.

Code Block
languagejs
Case 1 
"प्र"
Expected value of character length 1
Actual value through grapheme splitter is 2

Case 2
க்ஷௌ
Expected value of character length 1
Actual value through grapheme splitter is 2

...

It needs to dynamic based on user input to input-box. Currently the maxlength max length is set as 51. ( 26 character + 25 Comma )

...