Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: wojtekmaj/react-pdf
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.2.0
Choose a base ref
...
head repository: wojtekmaj/react-pdf
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.3.0
Choose a head ref
  • 17 commits
  • 79 files changed
  • 2 contributors

Commits on Jul 21, 2023

  1. Verified

    This commit was signed with the committer’s verified signature.
    MrAlias Tyler Yahn
    Copy the full SHA
    db43c90 View commit details
  2. Verified

    This commit was signed with the committer’s verified signature.
    MrAlias Tyler Yahn
    Copy the full SHA
    38f3d38 View commit details
  3. Verified

    This commit was signed with the committer’s verified signature.
    MrAlias Tyler Yahn
    Copy the full SHA
    31cc658 View commit details
  4. Verified

    This commit was signed with the committer’s verified signature.
    MrAlias Tyler Yahn
    Copy the full SHA
    c58e968 View commit details

Commits on Jul 22, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    96f017c View commit details

Commits on Jul 25, 2023

  1. Verified

    This commit was signed with the committer’s verified signature.
    MrAlias Tyler Yahn
    Copy the full SHA
    adb4cc1 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c58c571 View commit details
  3. Improve propTypes

    wojtekmaj committed Jul 25, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    53e4761 View commit details
  4. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    3fc1ee9 View commit details

Commits on Jul 26, 2023

  1. Copy the full SHA
    c94f80f View commit details
  2. Copy the full SHA
    cb8978b View commit details

Commits on Jul 27, 2023

  1. Copy the full SHA
    b3b2dc6 View commit details
  2. Add watch command

    wojtekmaj committed Jul 27, 2023
    Copy the full SHA
    6fb4810 View commit details
  3. Copy the full SHA
    2859170 View commit details
  4. Copy the full SHA
    549e606 View commit details
  5. Copy the full SHA
    8b30331 View commit details
  6. v7.3.0

    wojtekmaj committed Jul 27, 2023
    Copy the full SHA
    c7414fe View commit details
Showing with 1,997 additions and 773 deletions.
  1. +111 −63 README.md
  2. +0 −33 copy-styles.ts
  3. +24 −10 package.json
  4. +2 −2 sample/create-react-app-5/src/Sample.tsx
  5. +2 −1 sample/create-react-app-5/src/index.tsx
  6. +2 −2 sample/parcel2/Sample.tsx
  7. +2 −1 sample/parcel2/index.tsx
  8. +2 −2 sample/vite3/Sample.tsx
  9. +2 −1 sample/vite3/index.tsx
  10. +2 −3 sample/vite3/package.json
  11. +0 −17 sample/vite3/scripts/copy-cmaps.ts
  12. +0 −20 sample/vite3/scripts/copy-standard-fonts.ts
  13. +23 −0 sample/vite3/vite.config.ts
  14. +263 −1 sample/vite3/yarn.lock
  15. +2 −2 sample/vite4/Sample.tsx
  16. +2 −1 sample/vite4/index.tsx
  17. +2 −3 sample/vite4/package.json
  18. +0 −17 sample/vite4/scripts/copy-cmaps.ts
  19. +0 −20 sample/vite4/scripts/copy-standard-fonts.ts
  20. +23 −0 sample/vite4/vite.config.ts
  21. +263 −1 sample/vite4/yarn.lock
  22. +2 −2 sample/webpack5/Sample.tsx
  23. +2 −1 sample/webpack5/index.tsx
  24. +6 −6 src/Document.spec.tsx
  25. +9 −9 src/Document.tsx
  26. +1 −1 src/DocumentContext.tsx
  27. +2 −2 src/LinkService.ts
  28. +1 −7 src/Message.tsx
  29. +6 −6 src/Outline.spec.tsx
  30. +12 −10 src/Outline.tsx
  31. +1 −1 src/OutlineContext.tsx
  32. +6 −6 src/OutlineItem.spec.tsx
  33. +5 −21 src/OutlineItem.tsx
  34. +7 −7 src/Page.spec.tsx
  35. +17 −14 src/Page.tsx
  36. +8 −8 src/Page/AnnotationLayer.spec.tsx
  37. +5 −5 src/Page/AnnotationLayer.tsx
  38. +6 −6 src/Page/PageCanvas.spec.tsx
  39. +4 −10 src/Page/PageCanvas.tsx
  40. +6 −6 src/Page/PageSVG.spec.tsx
  41. +4 −4 src/Page/PageSVG.tsx
  42. +7 −7 src/Page/TextLayer.spec.tsx
  43. +4 −4 src/Page/TextLayer.tsx
  44. +1 −1 src/PageContext.tsx
  45. +1 −1 src/Ref.spec.ts
  46. +7 −7 src/StructTree.spec.tsx
  47. +5 −5 src/StructTree.tsx
  48. +3 −17 src/StructTreeItem.tsx
  49. +7 −7 src/Thumbnail.spec.tsx
  50. +9 −7 src/Thumbnail.tsx
  51. +1 −1 src/index.spec.ts
  52. +11 −11 src/index.test.ts
  53. +12 −12 src/index.ts
  54. +1 −1 src/shared/hooks/useCachedValue.ts
  55. +1 −1 src/shared/hooks/useDocumentContext.ts
  56. +1 −1 src/shared/hooks/useOutlineContext.ts
  57. +1 −1 src/shared/hooks/usePageContext.ts
  58. +8 −12 src/shared/propTypes.ts
  59. +3 −3 src/shared/structTreeUtils.ts
  60. +3 −3 src/shared/types.ts
  61. +1 −1 src/shared/utils.spec.ts
  62. +1 −1 src/shared/utils.ts
  63. +1 −7 test/AnnotationOptions.tsx
  64. +2 −2 test/CustomRenderer.tsx
  65. +0 −12 test/LayerOptions.tsx
  66. +1 −10 test/LoadingOptions.tsx
  67. +2 −10 test/PassingOptions.tsx
  68. +13 −15 test/Test.tsx
  69. +1 −21 test/ViewOptions.tsx
  70. +1 −1 test/index.tsx
  71. +3 −4 test/package.json
  72. +0 −19 test/scripts/copy-cmaps.ts
  73. +0 −22 test/scripts/copy-standard-fonts.ts
  74. +0 −38 test/shared/propTypes.ts
  75. +1 −1 test/shared/types.ts
  76. +96 −1 test/shared/utils.ts
  77. +20 −1 test/vite.config.ts
  78. +283 −17 test/yarn.lock
  79. +648 −156 yarn.lock
Loading