-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(detection): Ignore invisible nodes when extracting text under mouse #561
feat(detection): Ignore invisible nodes when extracting text under mouse #561
Conversation
5459476
to
12db918
Compare
Will completely change this to be based on snowpack soon! |
12db918
to
98ae30c
Compare
1a3fe7a
to
c48843c
Compare
98ae30c
to
62961c9
Compare
c48843c
to
6f87467
Compare
62961c9
to
66fdff6
Compare
6f87467
to
12bb6a2
Compare
47afb7f
to
7c7851b
Compare
Codecov Report
@@ Coverage Diff @@
## main #561 +/- ##
=======================================
Coverage ? 37.50%
=======================================
Files ? 3
Lines ? 1384
Branches ? 18
=======================================
Hits ? 519
Misses ? 865
Partials ? 0 Continue to review full report at Codecov.
|
7c7851b
to
8d2c396
Compare
12bb6a2
to
c611667
Compare
8d2c396
to
6bd752e
Compare
6bd752e
to
1260f33
Compare
Specifically, ignore `display: none` and `visibility: hidden`. This change is also the first unit tested change so contains the initial configuration of testing. (See #159 for details on decisions). Testing Stack: @web/test-runner + Mocha/Chai/Sinon + Puppeteer Headless Chrome. Works with vscode debugging for fast test driven development. With --coverage flag, we get a coverage report that we can upload to codecov. Fixes #366 Fixes #159
1260f33
to
73d825a
Compare
## [2.0.0](v1.2.6...v2.0.0) (2021-07-17) ### ⚠ BREAKING CHANGES * This version includes optional chaining requiring Chrome >=80 ### Features * Force Google Docs to use HTML mode instead of canvas mode ([#596](#596)) ([94b60a6](94b60a6)), closes [#593](#593) * **detection:** Ignore invisible nodes when extracting text under mouse ([#561](#561)) ([cb97f36](cb97f36)), closes [#159](#159) [#366](#366) [#159](#159) ### Bug Fixes * **dict:** Update dictionaries to latest versions. ([#581](#581)) ([77189c3](77189c3)) * Skip text processing when range is null ([#598](#598)) ([ae55bff](ae55bff)), closes [#386](#386) ### Code Refactoring * Migrate from webpack to snowpack for build step ([#583](#583)) ([1bdd3d3](1bdd3d3))
🎉 This PR is included in version 2.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Specifically, ignore
display: none
andvisibility: hidden
.This change is also the first unit tested change so contains the initial
configuration of testing. (See #159 for details on decisions).
Testing Stack: @web/test-runner + Mocha/Chai/Sinon + Puppeteer Headless Chrome.
Works with vscode debugging for fast test driven development.
Fixes #366
Fixes #159