@limrun/ui 0.9.0-rc.2 → 0.9.0-rc.5

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 (78) hide show
  1. package/README.md +0 -9
  2. package/dist/components/inspect-overlay.d.ts +33 -0
  3. package/dist/components/remote-control.d.ts +86 -0
  4. package/dist/core/ax-fetcher.d.ts +49 -0
  5. package/dist/core/ax-tree.d.ts +99 -0
  6. package/dist/index.cjs +1 -1
  7. package/dist/index.css +1 -1
  8. package/dist/index.d.ts +3 -2
  9. package/dist/index.js +1491 -777
  10. package/package.json +8 -17
  11. package/src/components/inspect-overlay.css +223 -0
  12. package/src/components/inspect-overlay.tsx +437 -0
  13. package/src/components/remote-control.tsx +547 -9
  14. package/src/core/ax-fetcher.test.ts +418 -0
  15. package/src/core/ax-fetcher.ts +377 -0
  16. package/src/core/ax-tree.test.ts +491 -0
  17. package/src/core/ax-tree.ts +416 -0
  18. package/src/demo.tsx +93 -10
  19. package/src/index.ts +17 -2
  20. package/vite.config.ts +2 -6
  21. package/vitest.config.ts +23 -0
  22. package/dist/components/device-install/device-install-dialog.d.ts +0 -5
  23. package/dist/components/device-install/index.d.ts +0 -2
  24. package/dist/core/device-install/apple/client.d.ts +0 -17
  25. package/dist/core/device-install/apple/crypto.d.ts +0 -20
  26. package/dist/core/device-install/apple/gsa-srp.d.ts +0 -26
  27. package/dist/core/device-install/apple/index.d.ts +0 -5
  28. package/dist/core/device-install/apple/provisioning.d.ts +0 -161
  29. package/dist/core/device-install/apple/relay.d.ts +0 -29
  30. package/dist/core/device-install/index.d.ts +0 -4
  31. package/dist/core/device-install/operations/index.d.ts +0 -6
  32. package/dist/core/device-install/operations/limbuild-client.d.ts +0 -28
  33. package/dist/core/device-install/operations/operations.d.ts +0 -32
  34. package/dist/core/device-install/operations/relay-client.d.ts +0 -25
  35. package/dist/core/device-install/operations/relay-protocol.d.ts +0 -27
  36. package/dist/core/device-install/operations/usbmux.d.ts +0 -32
  37. package/dist/core/device-install/operations/webusb.d.ts +0 -21
  38. package/dist/core/device-install/storage/browser-storage.d.ts +0 -43
  39. package/dist/core/device-install/storage/index.d.ts +0 -1
  40. package/dist/core/device-install/types.d.ts +0 -48
  41. package/dist/device-install/index.cjs +0 -1
  42. package/dist/device-install/index.d.ts +0 -3
  43. package/dist/device-install/index.js +0 -77
  44. package/dist/device-install/react.cjs +0 -1
  45. package/dist/device-install/react.d.ts +0 -1
  46. package/dist/device-install/react.js +0 -4
  47. package/dist/device-install-dialog-CSwQgbBm.js +0 -2
  48. package/dist/device-install-dialog-nThj775b.mjs +0 -395
  49. package/dist/device-install-dialog.css +0 -1
  50. package/dist/hooks/index.d.ts +0 -1
  51. package/dist/hooks/use-device-install.d.ts +0 -70
  52. package/dist/use-device-install-C1uVac59.mjs +0 -13541
  53. package/dist/use-device-install-Ca4jcVKU.js +0 -31
  54. package/src/components/device-install/device-install-dialog.css +0 -244
  55. package/src/components/device-install/device-install-dialog.tsx +0 -432
  56. package/src/components/device-install/index.ts +0 -2
  57. package/src/core/device-install/apple/client.ts +0 -152
  58. package/src/core/device-install/apple/crypto.ts +0 -202
  59. package/src/core/device-install/apple/gsa-srp.ts +0 -127
  60. package/src/core/device-install/apple/index.ts +0 -5
  61. package/src/core/device-install/apple/provisioning.ts +0 -298
  62. package/src/core/device-install/apple/relay.ts +0 -221
  63. package/src/core/device-install/index.ts +0 -4
  64. package/src/core/device-install/operations/index.ts +0 -6
  65. package/src/core/device-install/operations/limbuild-client.ts +0 -104
  66. package/src/core/device-install/operations/operations.ts +0 -217
  67. package/src/core/device-install/operations/relay-client.ts +0 -255
  68. package/src/core/device-install/operations/relay-protocol.ts +0 -71
  69. package/src/core/device-install/operations/usbmux.ts +0 -270
  70. package/src/core/device-install/operations/webusb-dom.d.ts +0 -54
  71. package/src/core/device-install/operations/webusb.ts +0 -105
  72. package/src/core/device-install/storage/browser-storage.ts +0 -251
  73. package/src/core/device-install/storage/index.ts +0 -1
  74. package/src/core/device-install/types.ts +0 -65
  75. package/src/device-install/index.ts +0 -3
  76. package/src/device-install/react.ts +0 -1
  77. package/src/hooks/index.ts +0 -1
  78. package/src/hooks/use-device-install.ts +0 -1067
@@ -1,65 +0,0 @@
1
- export type DeviceInstallLog = (message: string, detail?: string) => void;
2
-
3
- export type DeviceInstallStep = 'build' | 'usb' | 'pair' | 'install';
4
-
5
- export type DeviceInstallStepStatus = 'idle' | 'active' | 'complete' | 'error';
6
-
7
- export type DeviceInstallBusyAction = 'build' | 'usb' | 'pair' | 'install';
8
-
9
- export type DeviceInstallBuildStatus =
10
- | 'idle'
11
- | 'queued'
12
- | 'running'
13
- | 'succeeded'
14
- | 'failed'
15
- | 'cancelled';
16
-
17
- export type BuildLogLine = {
18
- type: 'command' | 'stdout' | 'stderr' | 'meta';
19
- data: string;
20
- };
21
-
22
- export type DeviceHello = {
23
- serialNumber?: string;
24
- productName?: string;
25
- manufacturerName?: string;
26
- productId: number;
27
- vendorId: number;
28
- };
29
-
30
- export type PairRecordPayload = {
31
- udid: string;
32
- pairRecordBase64: string;
33
- };
34
-
35
- export type StoredPairRecord = PairRecordPayload & {
36
- productName?: string;
37
- updatedAt: string;
38
- };
39
-
40
- export type ProvisioningProfileInfo = {
41
- name?: string;
42
- uuid?: string;
43
- teamID?: string;
44
- applicationIdentifier?: string;
45
- bundleID?: string;
46
- provisionedDevices: string[];
47
- expirationDate?: string;
48
- };
49
-
50
- export type StoredSigningAssets = {
51
- id: string;
52
- deviceUDID?: string;
53
- teamID?: string;
54
- bundleID: string;
55
- certificateID?: string;
56
- certificateP12Base64: string;
57
- certificateFileName?: string;
58
- certificatePassword: string;
59
- provisioningProfileBase64: string;
60
- profileFileName?: string;
61
- profile: ProvisioningProfileInfo;
62
- updatedAt: string;
63
- };
64
-
65
- export type PutSigningAssetsInput = Omit<StoredSigningAssets, 'id' | 'updatedAt'>;
@@ -1,3 +0,0 @@
1
- export * from '../core/device-install';
2
- export { DeviceInstallDialog, DeviceInstallRelay } from '../components/device-install';
3
- export { useDeviceInstall } from '../hooks/use-device-install';
@@ -1 +0,0 @@
1
- export { useDeviceInstall } from '../hooks/use-device-install';
@@ -1 +0,0 @@
1
- export * from './use-device-install';