@lynx-js/react 0.105.1 → 0.105.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +1 -1
  3. package/refresh/.turbo/turbo-build.log +1 -1
  4. package/refresh/package.json +1 -1
  5. package/runtime/lib/backgroundSnapshot.d.ts +1 -1
  6. package/runtime/lib/backgroundSnapshot.js +2 -2
  7. package/runtime/lib/backgroundSnapshot.js.map +1 -1
  8. package/runtime/lib/compat/initData.js +0 -2
  9. package/runtime/lib/compat/initData.js.map +1 -1
  10. package/runtime/lib/gesture/processGesture.js +3 -0
  11. package/runtime/lib/gesture/processGesture.js.map +1 -1
  12. package/runtime/lib/gesture/types.d.ts +2 -0
  13. package/runtime/lib/internal.d.ts +2 -1
  14. package/runtime/lib/internal.js +3 -2
  15. package/runtime/lib/internal.js.map +1 -1
  16. package/runtime/lib/lifecycle/destroy.js +1 -1
  17. package/runtime/lib/lifecycle/destroy.js.map +1 -1
  18. package/runtime/lib/lifecycle/{patchUpdate.d.ts → patch/commit.d.ts} +1 -3
  19. package/runtime/lib/lifecycle/{patchUpdate.js → patch/commit.js} +12 -56
  20. package/runtime/lib/lifecycle/patch/commit.js.map +1 -0
  21. package/runtime/lib/lifecycle/patch/snapshotPatch.js.map +1 -0
  22. package/runtime/lib/{snapshotPatchApply.js → lifecycle/patch/snapshotPatchApply.js} +1 -4
  23. package/runtime/lib/lifecycle/patch/snapshotPatchApply.js.map +1 -0
  24. package/runtime/lib/lifecycle/patch/updateMainThread.d.ts +3 -0
  25. package/runtime/lib/lifecycle/patch/updateMainThread.js +55 -0
  26. package/runtime/lib/lifecycle/patch/updateMainThread.js.map +1 -0
  27. package/runtime/lib/lifecycle/reload.js +1 -1
  28. package/runtime/lib/lifecycle/reload.js.map +1 -1
  29. package/runtime/lib/lifecycle/render.js.map +1 -1
  30. package/runtime/lib/list.js +1 -1
  31. package/runtime/lib/list.js.map +1 -1
  32. package/runtime/lib/lynx/component.js +3 -3
  33. package/runtime/lib/lynx/component.js.map +1 -1
  34. package/runtime/lib/lynx/dynamic-js.js +0 -1
  35. package/runtime/lib/lynx/dynamic-js.js.map +1 -1
  36. package/runtime/lib/lynx/env.js +1 -2
  37. package/runtime/lib/lynx/env.js.map +1 -1
  38. package/runtime/lib/lynx/lazy-bundle.js.map +1 -1
  39. package/runtime/lib/lynx/performance.js +1 -1
  40. package/runtime/lib/lynx/performance.js.map +1 -1
  41. package/runtime/lib/lynx/tt.d.ts +1 -0
  42. package/runtime/lib/lynx/tt.js +45 -4
  43. package/runtime/lib/lynx/tt.js.map +1 -1
  44. package/runtime/lib/lynx-api.d.ts +1 -1
  45. package/runtime/lib/lynx.d.ts +0 -1
  46. package/runtime/lib/lynx.js +4 -46
  47. package/runtime/lib/lynx.js.map +1 -1
  48. package/runtime/lib/snapshot/ref.d.ts +2 -2
  49. package/runtime/lib/snapshot/ref.js +6 -7
  50. package/runtime/lib/snapshot/ref.js.map +1 -1
  51. package/runtime/lib/snapshot.js +1 -1
  52. package/runtime/lib/snapshot.js.map +1 -1
  53. package/runtime/lib/worklet/functionCall.js.map +1 -1
  54. package/runtime/lib/worklet/hmr.js +1 -1
  55. package/runtime/lib/worklet/hmr.js.map +1 -1
  56. package/runtime/lib/worklet/runOnBackground.js.map +1 -1
  57. package/runtime/lib/worklet/workletRef.js +1 -1
  58. package/runtime/lib/worklet/workletRef.js.map +1 -1
  59. package/runtime/src/backgroundSnapshot.ts +3 -3
  60. package/runtime/src/compat/initData.ts +5 -6
  61. package/runtime/src/gesture/processGesture.ts +4 -0
  62. package/runtime/src/gesture/types.ts +2 -0
  63. package/runtime/src/internal.ts +4 -2
  64. package/runtime/src/lifecycle/destroy.ts +1 -1
  65. package/runtime/src/lifecycle/{patchUpdate.ts → patch/commit.ts} +18 -71
  66. package/runtime/src/{snapshotPatchApply.ts → lifecycle/patch/snapshotPatchApply.ts} +2 -2
  67. package/runtime/src/lifecycle/patch/updateMainThread.ts +69 -0
  68. package/runtime/src/lifecycle/reload.ts +1 -1
  69. package/runtime/src/lifecycle/render.ts +1 -1
  70. package/runtime/src/list.ts +1 -1
  71. package/runtime/src/lynx/component.ts +3 -3
  72. package/runtime/src/lynx/dynamic-js.ts +2 -3
  73. package/runtime/src/lynx/env.ts +2 -2
  74. package/runtime/src/lynx/lazy-bundle.ts +1 -1
  75. package/runtime/src/lynx/performance.ts +3 -2
  76. package/runtime/src/lynx/tt.ts +55 -6
  77. package/runtime/src/lynx-api.ts +1 -1
  78. package/runtime/src/lynx.ts +5 -55
  79. package/runtime/src/snapshot/ref.ts +6 -9
  80. package/runtime/src/snapshot.ts +1 -1
  81. package/runtime/src/worklet/functionCall.ts +1 -1
  82. package/runtime/src/worklet/hmr.ts +1 -1
  83. package/runtime/src/worklet/runOnBackground.ts +4 -4
  84. package/runtime/src/worklet/workletRef.ts +1 -1
  85. package/transform/dist/wasm.cjs +1 -1
  86. package/runtime/lib/lifecycle/patchUpdate.js.map +0 -1
  87. package/runtime/lib/snapshotPatch.js.map +0 -1
  88. package/runtime/lib/snapshotPatchApply.js.map +0 -1
  89. /package/runtime/lib/{snapshotPatch.d.ts → lifecycle/patch/snapshotPatch.d.ts} +0 -0
  90. /package/runtime/lib/{snapshotPatch.js → lifecycle/patch/snapshotPatch.js} +0 -0
  91. /package/runtime/lib/{snapshotPatchApply.d.ts → lifecycle/patch/snapshotPatchApply.d.ts} +0 -0
  92. /package/runtime/src/{snapshotPatch.ts → lifecycle/patch/snapshotPatch.ts} +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.