@powerhousedao/connect 6.0.0-dev.77 → 6.0.0-dev.79
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.
- package/dist/src/components/modal/modals/InspectorModal/InspectorModal.d.ts.map +1 -1
- package/dist/src/components/modal/modals/InspectorModal/useProcessorsInspector.d.ts +3 -0
- package/dist/src/components/modal/modals/InspectorModal/useProcessorsInspector.d.ts.map +1 -0
- package/dist/src/components/modal/modals/InspectorModal/useRemotesInspector.d.ts +2 -1
- package/dist/src/components/modal/modals/InspectorModal/useRemotesInspector.d.ts.map +1 -1
- package/dist/src/components/modal/modals/settings/package-manager.d.ts.map +1 -1
- package/dist/src/context/index.js +2324 -2028
- package/dist/src/hooks/index.js +2324 -2028
- package/dist/src/hooks/use-registry.d.ts +14 -0
- package/dist/src/hooks/use-registry.d.ts.map +1 -0
- package/dist/src/main.js +1924 -1434
- package/dist/src/pages/index.js +1924 -1434
- package/dist/src/store/index.js +1575 -1236
- package/dist/src/utils/index.js +2303 -2007
- package/dist/style.css +37 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +12 -12
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InspectorModal.d.ts","sourceRoot":"","sources":["../../../../../../src/components/modal/modals/InspectorModal/InspectorModal.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"InspectorModal.d.ts","sourceRoot":"","sources":["../../../../../../src/components/modal/modals/InspectorModal/InspectorModal.tsx"],"names":[],"mappings":"AAUA,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAmClC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useProcessorsInspector.d.ts","sourceRoot":"","sources":["../../../../../../src/components/modal/modals/InspectorModal/useProcessorsInspector.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AAIrF,wBAAgB,sBAAsB,IAAI,wBAAwB,GAAG,SAAS,CA6C7E"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import type { Remote } from "@powerhousedao/reactor-browser";
|
|
1
|
+
import type { ConnectionStateSnapshot, Remote } from "@powerhousedao/reactor-browser";
|
|
2
2
|
export declare function useRemotesInspector(): {
|
|
3
3
|
getRemotes: () => Promise<Remote[]>;
|
|
4
4
|
removeRemote: (name: string) => Promise<void>;
|
|
5
|
+
connectionStates: ReadonlyMap<string, ConnectionStateSnapshot>;
|
|
5
6
|
};
|
|
6
7
|
//# sourceMappingURL=useRemotesInspector.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useRemotesInspector.d.ts","sourceRoot":"","sources":["../../../../../../src/components/modal/modals/InspectorModal/useRemotesInspector.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"useRemotesInspector.d.ts","sourceRoot":"","sources":["../../../../../../src/components/modal/modals/InspectorModal/useRemotesInspector.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,uBAAuB,EACvB,MAAM,EACP,MAAM,gCAAgC,CAAC;AAOxC,wBAAgB,mBAAmB,IAAI;IACrC,UAAU,EAAE,MAAM,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC;IACpC,YAAY,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAC9C,gBAAgB,EAAE,WAAW,CAAC,MAAM,EAAE,uBAAuB,CAAC,CAAC;CAChE,CAsBA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"package-manager.d.ts","sourceRoot":"","sources":["../../../../../../src/components/modal/modals/settings/package-manager.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"package-manager.d.ts","sourceRoot":"","sources":["../../../../../../src/components/modal/modals/settings/package-manager.tsx"],"names":[],"mappings":"AAOA,OAAO,KAA+B,MAAM,OAAO,CAAC;AAqBpD,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAyEzC,CAAC"}
|