Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Rework on Input #580

Merged
merged 43 commits into from
Aug 5, 2019
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
0a1610b
:bug: fixes both #455 and #513
Jul 10, 2019
81e04bb
:pencil: paper work
Jul 10, 2019
e4b0999
:ok_hand: improve the error handling
Jul 15, 2019
df2ebbb
:white_check_mark: fix tests
Jul 15, 2019
13603ed
:bug: fix the state and props
Jul 15, 2019
6fc03e7
:lipstick: use className instead of inline style
Jul 15, 2019
e34ff96
:construction:
Jul 17, 2019
139f451
:alembic: text mode
Jul 23, 2019
364b899
:zap: purecomponent
Jul 23, 2019
e9154a3
Merge remote-tracking branch 'refs/remotes/origin/input-fix'
Jul 24, 2019
be37a27
add missing props handling
Jul 24, 2019
2b5a049
:white_check_mark: add input integration tests
Jul 25, 2019
f5c6ad1
:wrench: add headless mode
Jul 25, 2019
e30dc05
input and state case migration
Jul 25, 2019
5e041f8
:bug: fix missing init value
Jul 25, 2019
9cb0698
:bug: add condition on value init
Jul 26, 2019
a2a75b8
:bug: number mode will be speical
Jul 31, 2019
e98295b
removed unit tests as the implementation is not the same
Jul 31, 2019
41a859e
fix merge conflict
Aug 1, 2019
29aaa7d
Merge branch 'master' into input-fix
byronz Aug 1, 2019
044ce1a
Merge branch 'master' into input-fix
Aug 1, 2019
c33714c
Merge branch 'input-fix' of github.com:plotly/dash-core-components in…
Aug 1, 2019
e08b46a
:hocho: remove css for input
Aug 1, 2019
0aba021
Revert ":hocho: remove css for input"
Aug 1, 2019
7a7a8ad
:construction: tmp save
Aug 1, 2019
dad188d
Merge remote-tracking branch 'origin/input-fix' into input-fix
Aug 1, 2019
443028e
:construction:
Aug 1, 2019
44bb0dc
:lipstick: polish
Aug 1, 2019
91691a3
:camera_flash: check percy snapshots
Aug 2, 2019
6c16f72
:alembic: test percy
Aug 2, 2019
efe3a36
add missing percy config
Aug 2, 2019
1d9eec1
:alembic: reset
Aug 2, 2019
01e47c2
add jobs back
Aug 2, 2019
314a612
:lipstick: polish
Aug 2, 2019
4cca0f2
Update
byronz Aug 2, 2019
1f4a3fb
play with percy snapshots
Aug 2, 2019
a914bb4
Merge remote-tracking branch 'origin/input-fix' into input-fix
Aug 2, 2019
80d520f
:bug: fix the non number mode
Aug 2, 2019
e94cada
fix the test
Aug 2, 2019
05c7013
modified testcases
Aug 2, 2019
53a480f
clean up
Aug 5, 2019
a089ab4
clean up
Aug 5, 2019
148280f
reset
Aug 5, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix the test
  • Loading branch information
byron committed Aug 2, 2019
commit e94cadafae878c73752e28e7c9af01afb4c2245d
1 change: 0 additions & 1 deletion tests/integration/input/test_number_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ def test_inni010_valid_numbers(dash_duo, ninput_app):
for num, op in (
("1.0", lambda x: int(float(x))), # limitation of js/json
("10e10", lambda x: int(float(x))),
("1E308", lambda x: int(float(x))),
("-1.0001", float),
(str(sys.float_info.max), float),
(str(sys.float_info.min), float),
Expand Down