@limrun/ui 0.9.0-rc.11 → 0.9.0-rc.12

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 (66) hide show
  1. package/README.md +0 -9
  2. package/dist/components/remote-control.d.ts +28 -0
  3. package/dist/index.cjs +1 -1
  4. package/dist/index.d.ts +0 -2
  5. package/dist/index.js +965 -945
  6. package/package.json +2 -15
  7. package/src/components/remote-control.tsx +65 -1
  8. package/src/index.ts +0 -3
  9. package/vite.config.ts +2 -6
  10. package/dist/components/device-install/device-install-dialog.d.ts +0 -5
  11. package/dist/components/device-install/index.d.ts +0 -2
  12. package/dist/core/device-install/apple/client.d.ts +0 -17
  13. package/dist/core/device-install/apple/crypto.d.ts +0 -20
  14. package/dist/core/device-install/apple/gsa-srp.d.ts +0 -26
  15. package/dist/core/device-install/apple/index.d.ts +0 -5
  16. package/dist/core/device-install/apple/provisioning.d.ts +0 -161
  17. package/dist/core/device-install/apple/relay.d.ts +0 -29
  18. package/dist/core/device-install/index.d.ts +0 -4
  19. package/dist/core/device-install/operations/index.d.ts +0 -6
  20. package/dist/core/device-install/operations/limbuild-client.d.ts +0 -28
  21. package/dist/core/device-install/operations/operations.d.ts +0 -32
  22. package/dist/core/device-install/operations/relay-client.d.ts +0 -25
  23. package/dist/core/device-install/operations/relay-protocol.d.ts +0 -27
  24. package/dist/core/device-install/operations/usbmux.d.ts +0 -32
  25. package/dist/core/device-install/operations/webusb.d.ts +0 -21
  26. package/dist/core/device-install/storage/browser-storage.d.ts +0 -44
  27. package/dist/core/device-install/storage/index.d.ts +0 -1
  28. package/dist/core/device-install/types.d.ts +0 -48
  29. package/dist/device-install/index.cjs +0 -1
  30. package/dist/device-install/index.d.ts +0 -3
  31. package/dist/device-install/index.js +0 -78
  32. package/dist/device-install/react.cjs +0 -1
  33. package/dist/device-install/react.d.ts +0 -1
  34. package/dist/device-install/react.js +0 -4
  35. package/dist/device-install-dialog-CjH25hnN.js +0 -2
  36. package/dist/device-install-dialog-W5Xv9kWL.mjs +0 -443
  37. package/dist/device-install-dialog.css +0 -1
  38. package/dist/hooks/index.d.ts +0 -1
  39. package/dist/hooks/use-device-install.d.ts +0 -73
  40. package/dist/use-device-install-Y1u6vIBB.js +0 -31
  41. package/dist/use-device-install-sDVvby1V.mjs +0 -13627
  42. package/src/components/device-install/device-install-dialog.css +0 -325
  43. package/src/components/device-install/device-install-dialog.tsx +0 -495
  44. package/src/components/device-install/index.ts +0 -2
  45. package/src/core/device-install/apple/client.ts +0 -152
  46. package/src/core/device-install/apple/crypto.ts +0 -202
  47. package/src/core/device-install/apple/gsa-srp.ts +0 -127
  48. package/src/core/device-install/apple/index.ts +0 -5
  49. package/src/core/device-install/apple/provisioning.ts +0 -298
  50. package/src/core/device-install/apple/relay.ts +0 -221
  51. package/src/core/device-install/index.ts +0 -4
  52. package/src/core/device-install/operations/index.ts +0 -6
  53. package/src/core/device-install/operations/limbuild-client.ts +0 -104
  54. package/src/core/device-install/operations/operations.ts +0 -217
  55. package/src/core/device-install/operations/relay-client.ts +0 -255
  56. package/src/core/device-install/operations/relay-protocol.ts +0 -71
  57. package/src/core/device-install/operations/usbmux.ts +0 -270
  58. package/src/core/device-install/operations/webusb-dom.d.ts +0 -54
  59. package/src/core/device-install/operations/webusb.ts +0 -105
  60. package/src/core/device-install/storage/browser-storage.ts +0 -263
  61. package/src/core/device-install/storage/index.ts +0 -1
  62. package/src/core/device-install/types.ts +0 -65
  63. package/src/device-install/index.ts +0 -3
  64. package/src/device-install/react.ts +0 -1
  65. package/src/hooks/index.ts +0 -1
  66. package/src/hooks/use-device-install.ts +0 -1221
package/dist/index.d.ts CHANGED
@@ -3,5 +3,3 @@ export type { RemoteControlHandle } from './components/remote-control';
3
3
  export type { AxSnapshot, AxElement, AxRect, AxSelectors, AxPlatform } from './core/ax-tree';
4
4
  export type { AxStatus } from './core/ax-fetcher';
5
5
  export { axElementAtPoint, axElementSelectorExpression, axElementSummary, axElementsEqual, axSnapshotsEqual, clampAxFrameForScreen, normalizeAndroidTree, normalizeIosTree, AX_UNAVAILABLE_ERROR, } from './core/ax-tree';
6
- export { DeviceInstallDialog, DeviceInstallRelay } from './components/device-install';
7
- export { useDeviceInstall } from './hooks/use-device-install';