@powerhousedao/connect 1.0.0-dev.241 → 1.0.0-dev.243
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/assets/{app-OVm0Zlli.css → app-D3TxLTK-.css} +45 -1
- package/dist/assets/{app-Cx6yVoWZ.js → app-OhsW1euo.js} +5848 -5815
- package/dist/assets/{app-loader-CAYRtGE1.js → app-loader-A6VDzgXS.js} +35 -16
- package/dist/assets/{app-loader-Vi763_LE.css → app-loader-CjrEwupY.css} +46 -4
- package/dist/assets/{ccip-R0KrJfPl.js → ccip-DzPI63xu.js} +3 -3
- package/dist/assets/{content-CqOHLc-O.js → content-BxH7jEK7.js} +5 -5
- package/dist/assets/{index-C4nkPxsU.js → index-BZxn24lR.js} +4 -4
- package/dist/assets/{index-DsyWXJcL.js → index-CJeYWUG4.js} +3 -3
- package/dist/assets/{index-svE1s-4x.js → index-D-8e_JCN.js} +3 -3
- package/dist/assets/{main.BHov_sDD.js → main.cdpmF4Pk.js} +1 -1
- package/dist/index.html +1 -1
- package/dist/modules/@powerhousedao/reactor-browser/{chunk-JEDWG5AH.js → chunk-4LZZ55AN.js} +1 -1
- package/dist/modules/@powerhousedao/reactor-browser/{chunk-YEIWJWUR.js → chunk-6AXML2S3.js} +1 -1
- package/dist/modules/@powerhousedao/reactor-browser/{chunk-UJU4RHH3.js → chunk-P46ZMPJ3.js} +1 -1
- package/dist/modules/@powerhousedao/reactor-browser/{chunk-SHKY62YH.js → chunk-POMUCSTC.js} +10 -6
- package/dist/modules/@powerhousedao/reactor-browser/{chunk-DO4ZK6HR.js → chunk-YOX3ZAET.js} +9 -6
- package/dist/modules/@powerhousedao/reactor-browser/context/index.js +2 -2
- package/dist/modules/@powerhousedao/reactor-browser/context/read-mode.js +2 -2
- package/dist/modules/@powerhousedao/reactor-browser/hooks/index.js +3 -3
- package/dist/modules/@powerhousedao/reactor-browser/hooks/useDriveActions.js +2 -2
- package/dist/modules/@powerhousedao/reactor-browser/hooks/useDriveActionsWithUiNodes.js +3 -3
- package/dist/modules/@powerhousedao/reactor-browser/index.js +5 -5
- package/dist/modules/@powerhousedao/reactor-browser/reactor.js +2 -2
- package/dist/vite-envs.sh +1 -1
- package/package.json +7 -8
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/app-
|
|
1
|
+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/app-OhsW1euo.js","assets/main.cdpmF4Pk.js","assets/app-D3TxLTK-.css"])))=>i.map(i=>d[i]);
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __typeError = (msg) => {
|
|
4
4
|
throw TypeError(msg);
|
|
@@ -11,7 +11,7 @@ var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot
|
|
|
11
11
|
var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
|
|
12
12
|
var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "access private method"), method);
|
|
13
13
|
var _tags, _levelString, _errorHandler, _ConsoleLogger_instances, levelValue_get, _getDocumentModelModule, _drives, _ReadModeService_instances, parseGraphQLErrors_fn, fetchDrive_fn, _a, _ServiceWorkerManager_instances, handleServiceWorkerMessage_fn, handleServiceWorker_fn;
|
|
14
|
-
import { _ as __vitePreload } from "./main.
|
|
14
|
+
import { _ as __vitePreload } from "./main.cdpmF4Pk.js";
|
|
15
15
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
16
16
|
import { useState, useEffect, Suspense, lazy } from "react";
|
|
17
17
|
function _mergeNamespaces(n, m) {
|
|
@@ -23807,6 +23807,13 @@ class MemoryStorage {
|
|
|
23807
23807
|
this.documents[documentId] = document;
|
|
23808
23808
|
return Promise.resolve();
|
|
23809
23809
|
}
|
|
23810
|
+
get(documentId) {
|
|
23811
|
+
const document = this.documents[documentId];
|
|
23812
|
+
if (!document) {
|
|
23813
|
+
throw new Error(`Document with id ${documentId} not found`);
|
|
23814
|
+
}
|
|
23815
|
+
return Promise.resolve(document);
|
|
23816
|
+
}
|
|
23810
23817
|
////////////////////////////////
|
|
23811
23818
|
// IDriveStorage
|
|
23812
23819
|
////////////////////////////////
|
|
@@ -23817,12 +23824,8 @@ class MemoryStorage {
|
|
|
23817
23824
|
const manifest = this.getDriveManifest(drive);
|
|
23818
23825
|
return Promise.resolve([...manifest.documentIds]);
|
|
23819
23826
|
}
|
|
23820
|
-
|
|
23821
|
-
|
|
23822
|
-
if (!document) {
|
|
23823
|
-
throw new Error(`Document with id ${id} not found`);
|
|
23824
|
-
}
|
|
23825
|
-
return document;
|
|
23827
|
+
getDocument(driveId, id) {
|
|
23828
|
+
return this.get(id);
|
|
23826
23829
|
}
|
|
23827
23830
|
async saveDocument(drive, id, document) {
|
|
23828
23831
|
this.documents[id] = document;
|
|
@@ -25075,6 +25078,9 @@ function Danger(props) {
|
|
|
25075
25078
|
function DescendenceModified(props) {
|
|
25076
25079
|
return jsxs("svg", { ...props, width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [jsx("rect", { x: "1.5", y: "1.5", width: "13", height: "13", rx: "3.5", stroke: "currentcolor" }), jsx("rect", { x: "4", y: "7", width: "2", height: "2", rx: "1", fill: "currentcolor" }), jsx("rect", { x: "7", y: "7", width: "2", height: "2", rx: "1", fill: "currentcolor" }), jsx("rect", { x: "10", y: "7", width: "2", height: "2", rx: "1", fill: "currentcolor" })] });
|
|
25077
25080
|
}
|
|
25081
|
+
function Disconnect(props) {
|
|
25082
|
+
return jsx("svg", { ...props, viewBox: "0 0 13 12", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: jsx("path", { d: "M12.6604 5.9939C12.6604 5.6259 12.3618 5.32723 11.9938 5.32723H5.99377V3.32723L3.32711 5.9939L5.99377 8.66056V6.66056H11.9938C12.3618 6.66056 12.6604 6.3619 12.6604 5.9939ZM10.6604 2.66056C10.6604 1.1879 9.46644 -0.00610352 7.99377 -0.00610352H2.66044C1.18777 -0.00610352 -0.00622559 1.1879 -0.00622559 2.66056V9.32723C-0.00622559 10.7999 1.18777 11.9939 2.66044 11.9939H7.99377C9.46644 11.9939 10.6604 10.7999 10.6604 9.32723C10.6604 8.95923 10.3618 8.66056 9.99377 8.66056C9.62577 8.66056 9.32711 8.95923 9.32711 9.32723C9.32711 10.0639 8.73044 10.6606 7.99377 10.6606H2.66044C1.92377 10.6606 1.32711 10.0639 1.32711 9.32723V2.66056C1.32711 1.9239 1.92377 1.32723 2.66044 1.32723H7.99377C8.73044 1.32723 9.32711 1.9239 9.32711 2.66056C9.32711 3.02856 9.62577 3.32723 9.99377 3.32723C10.3618 3.32723 10.6604 3.02856 10.6604 2.66056Z", fill: "currentcolor" }) });
|
|
25083
|
+
}
|
|
25078
25084
|
function Discord(props) {
|
|
25079
25085
|
return jsxs("svg", { ...props, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [jsx("path", { d: "M6.646 7.31348C6.28467 7.31348 6 7.63014 6 8.01681C6 8.40214 6.29133 8.72014 6.646 8.72014C7.00667 8.72014 7.29133 8.40214 7.29133 8.01681C7.29867 7.62948 7.00667 7.31348 6.646 7.31348ZM8.958 7.31348C8.59667 7.31348 8.312 7.63014 8.312 8.01681C8.312 8.40214 8.60333 8.72014 8.958 8.72014C9.31867 8.72014 9.60333 8.40214 9.60333 8.01681C9.60267 7.62948 9.31867 7.31348 8.958 7.31348Z", fill: "currentcolor" }), jsx("path", { d: "M11.4978 2.99902H4.12721C3.97881 2.9994 3.83193 3.02901 3.69496 3.08615C3.558 3.1433 3.43363 3.22686 3.32896 3.33207C3.22428 3.43728 3.14136 3.56207 3.08492 3.69933C3.02848 3.83659 2.99962 3.98362 3 4.13202V11.568C3 12.195 3.506 12.701 4.12721 12.701H10.3642L10.0718 11.6827L10.7764 12.3374L11.4416 12.9534L12.625 13.999V4.13202C12.6254 3.98362 12.5965 3.83659 12.5401 3.69933C12.4836 3.56207 12.4007 3.43728 12.2961 3.33207C12.1914 3.22686 12.067 3.1433 11.93 3.08615C11.7931 3.02901 11.6462 2.9994 11.4978 2.99902ZM9.37421 10.182C9.37421 10.182 9.17621 9.94581 9.01179 9.73565C9.732 9.53187 10.007 9.08144 10.007 9.08144C9.78121 9.22965 9.567 9.33502 9.37421 9.40681C8.67235 9.70055 7.89942 9.78071 7.15221 9.63723C6.87612 9.583 6.60558 9.50354 6.344 9.39987C6.20605 9.34746 6.07198 9.28536 5.94279 9.21402C5.926 9.20187 5.90979 9.19723 5.89358 9.18623C5.88491 9.18211 5.87721 9.17619 5.871 9.16887C5.772 9.11444 5.717 9.07623 5.717 9.07623C5.717 9.07623 5.981 9.51623 6.67979 9.72523C6.51479 9.93365 6.311 10.182 6.311 10.182C5.09579 10.1432 4.63437 9.34602 4.63437 9.34602C4.63437 7.57502 5.42637 6.13981 5.42637 6.13981C6.21837 5.54523 6.97158 5.56202 6.97158 5.56202L7.02658 5.62802C6.03658 5.9146 5.57979 6.34881 5.57979 6.34881C5.57979 6.34881 5.70137 6.28281 5.90458 6.1896C6.49279 5.93139 6.96 5.8596 7.15279 5.84281C7.18579 5.8376 7.21358 5.83181 7.24658 5.83181C8.20023 5.7033 9.16994 5.88453 10.0128 6.34881C10.0128 6.34881 9.578 5.9366 8.643 5.6506L8.72 5.5626C8.72 5.5626 9.47379 5.54581 10.2652 6.14039C10.2652 6.14039 11.0572 7.5756 11.0572 9.3466C11.0572 9.34602 10.59 10.1432 9.37421 10.182Z", fill: "currentcolor" })] });
|
|
25080
25086
|
}
|
|
@@ -25096,6 +25102,9 @@ function Ellipsis(props) {
|
|
|
25096
25102
|
function Error$1(props) {
|
|
25097
25103
|
return jsx("svg", { ...props, viewBox: "0 0 16 16", fill: "currentcolor", children: jsx("path", { d: "M8.00846 1.33203C4.32646 1.33203 1.3418 4.3167 1.3418 7.9987C1.3418 11.6807 4.32646 14.6654 8.00846 14.6654C11.6905 14.6654 14.6751 11.6807 14.6751 7.9987C14.6751 4.3167 11.6905 1.33203 8.00846 1.33203ZM8.00846 4.66536C8.37646 4.66536 8.67513 4.96403 8.67513 5.33203V8.66536C8.67513 9.03336 8.37646 9.33203 8.00846 9.33203C7.64046 9.33203 7.3418 9.03336 7.3418 8.66536V5.33203C7.3418 4.96403 7.64046 4.66536 8.00846 4.66536ZM8.00846 9.9987C8.37646 9.9987 8.67513 10.2974 8.67513 10.6654C8.67513 11.0334 8.37646 11.332 8.00846 11.332C7.64046 11.332 7.3418 11.0334 7.3418 10.6654C7.3418 10.2974 7.64046 9.9987 8.00846 9.9987Z" }) });
|
|
25098
25104
|
}
|
|
25105
|
+
function Ethscan(props) {
|
|
25106
|
+
return jsxs("svg", { ...props, viewBox: "0 0 14 14", fill: "none", children: [jsx("path", { d: "M2.95373 6.63309C2.95374 6.55555 2.96907 6.47878 2.99884 6.40718C3.02861 6.33558 3.07222 6.27056 3.12719 6.21587C3.18215 6.16117 3.24737 6.11787 3.31912 6.08845C3.39086 6.05903 3.46771 6.04407 3.54525 6.04444L4.52593 6.04764C4.68229 6.04764 4.83225 6.10975 4.94282 6.22032C5.05338 6.33089 5.1155 6.48085 5.1155 6.63721V10.3457C5.22595 10.3129 5.36731 10.278 5.52286 10.2414C5.63062 10.216 5.72667 10.155 5.79541 10.0682C5.86416 9.98147 5.90158 9.87401 5.9016 9.7633V5.16356C5.9016 5.00719 5.96371 4.85721 6.07428 4.74663C6.18484 4.63605 6.3348 4.5739 6.49118 4.57387H7.47483C7.63121 4.5739 7.78117 4.63605 7.89173 4.74663C8.00229 4.85721 8.0644 5.00719 8.0644 5.16356V9.43286C8.0644 9.43286 8.31049 9.33328 8.55005 9.2321C8.63907 9.19445 8.71504 9.13142 8.76847 9.05088C8.8219 8.97033 8.85043 8.87584 8.8505 8.77919V3.68957C8.8505 3.53322 8.91261 3.38328 9.02315 3.27272C9.13369 3.16215 9.28362 3.10002 9.43997 3.09999H10.4226C10.5789 3.10015 10.7287 3.16233 10.8391 3.27288C10.9496 3.38343 11.0116 3.5333 11.0116 3.68957V7.88069C11.8635 7.2633 12.7269 6.52069 13.412 5.62781C13.5114 5.4982 13.5772 5.346 13.6035 5.18479C13.6298 5.02358 13.6157 4.85837 13.5626 4.7039C13.2455 3.79145 12.7413 2.95526 12.0825 2.24883C11.4236 1.5424 10.6245 0.981296 9.73636 0.601415C8.84819 0.221534 7.8905 0.0312452 6.92458 0.0427266C5.95865 0.054208 5.00576 0.267206 4.12687 0.668091C3.24799 1.06898 2.46247 1.64892 1.82058 2.37081C1.17869 3.0927 0.694563 3.94064 0.399186 4.86037C0.103809 5.78009 0.00368315 6.75136 0.105216 7.712C0.206748 8.67265 0.507703 9.60152 0.988822 10.4392C1.07264 10.5837 1.19596 10.7013 1.3443 10.7781C1.49263 10.8549 1.65981 10.8879 1.8262 10.873C2.01208 10.8566 2.24351 10.8335 2.51867 10.8012C2.63843 10.7876 2.74899 10.7304 2.8293 10.6405C2.90961 10.5506 2.95406 10.4344 2.95419 10.3138V6.63309", fill: "currentcolor" }), jsx("path", { d: "M2.93274 12.5804C3.9685 13.3339 5.19251 13.7862 6.46936 13.8872C7.74621 13.9882 9.02612 13.7341 10.1675 13.1528C11.3088 12.5716 12.2672 11.6859 12.9364 10.5938C13.6057 9.50176 13.9598 8.24582 13.9595 6.96498C13.9595 6.80474 13.9521 6.64701 13.9415 6.48975C11.4047 10.2732 6.72085 12.0419 2.93274 12.5804Z", fill: "currentcolor" })] });
|
|
25107
|
+
}
|
|
25099
25108
|
function Exclamation(props) {
|
|
25100
25109
|
return jsxs("svg", { ...props, viewBox: "0 0 16 16", fill: "currentcolor", children: [jsx("path", { d: "M9 4C9 3.448 8.552 3 8 3C7.448 3 7 3.448 7 4V9C7 9.552 7.448 10 8 10C8.552 10 9 9.552 9 9V4Z" }), jsx("path", { d: "M9 12C9 11.448 8.552 11 8 11C7.448 11 7 11.448 7 12C7 12.552 7.448 13 8 13C8.552 13 9 12.552 9 12Z" })] });
|
|
25101
25110
|
}
|
|
@@ -25222,6 +25231,9 @@ function Removed(props) {
|
|
|
25222
25231
|
function RenownHover(props) {
|
|
25223
25232
|
return jsxs("svg", { ...props, viewBox: "0 0 71 19", fill: "currentcolor", children: [jsx("path", { d: "M53.6211 18.4887V9.0342H56.435V10.8096H56.4923C56.7377 10.181 57.1085 9.70244 57.6047 9.37398C58.101 9.03986 58.6981 8.8728 59.3962 8.8728C60.4105 8.8728 61.2039 9.1871 61.7765 9.8157C62.3546 10.4443 62.6436 11.3164 62.6436 12.432V18.4887H59.7397V13.0776C59.7397 12.5283 59.6007 12.1007 59.3225 11.7949C59.0499 11.4835 58.6654 11.3277 58.1692 11.3277C57.6784 11.3277 57.2803 11.4976 56.9749 11.8374C56.6695 12.1772 56.5168 12.6161 56.5168 13.1541V18.4887H53.6211Z" }), jsx("path", { d: "M53.097 9.03394L50.7412 18.4884H47.6164L46.1522 12.075H46.0949L44.6389 18.4884H41.5632L39.1992 9.03394H42.1195L43.3056 15.7532H43.3628L44.7861 9.03394H47.551L48.9906 15.7532H49.0479L50.234 9.03394H53.097Z" }), jsx("path", { d: "M37.8661 17.3926C37.0427 18.2591 35.9084 18.6923 34.4632 18.6923C33.0181 18.6923 31.8838 18.2591 31.0604 17.3926C30.2369 16.5205 29.8252 15.3086 29.8252 13.7569C29.8252 12.2336 30.2424 11.033 31.0767 10.1552C31.9111 9.2718 33.0399 8.83008 34.4632 8.83008C35.892 8.83008 37.0208 9.26896 37.8497 10.1467C38.6841 11.0188 39.1013 12.2222 39.1013 13.7569C39.1013 15.3143 38.6896 16.5262 37.8661 17.3926ZM33.2117 15.7702C33.5116 16.2402 33.9288 16.4752 34.4632 16.4752C34.9977 16.4752 35.4148 16.2402 35.7148 15.7702C36.0147 15.2945 36.1647 14.6234 36.1647 13.7569C36.1647 12.9131 36.012 12.2506 35.7066 11.7692C35.4012 11.2878 34.9868 11.0472 34.4632 11.0472C33.9343 11.0472 33.5171 11.2878 33.2117 11.7692C32.9118 12.2449 32.7618 12.9075 32.7618 13.7569C32.7618 14.6234 32.9118 15.2945 33.2117 15.7702Z" }), jsx("path", { d: "M20.0088 18.4887V9.0342H22.8227V10.8096H22.88C23.1254 10.181 23.4962 9.70244 23.9924 9.37398C24.4887 9.03986 25.0858 8.8728 25.7838 8.8728C26.7982 8.8728 27.5916 9.1871 28.1642 9.8157C28.7423 10.4443 29.0313 11.3164 29.0313 12.432V18.4887H26.1274V13.0776C26.1274 12.5283 25.9883 12.1007 25.7102 11.7949C25.4376 11.4835 25.0531 11.3277 24.5569 11.3277C24.0661 11.3277 23.668 11.4976 23.3626 11.8374C23.0572 12.1772 22.9045 12.6161 22.9045 13.1541V18.4887H20.0088Z" }), jsx("path", { d: "M14.7486 10.9707C14.2851 10.9707 13.8952 11.1321 13.5789 11.4549C13.2626 11.7777 13.0854 12.1911 13.0472 12.6951H16.4337C16.4064 12.1741 16.2374 11.7579 15.9265 11.4464C15.6212 11.1293 15.2285 10.9707 14.7486 10.9707ZM16.4991 15.5153H19.1167C18.9749 16.4837 18.5141 17.2567 17.7343 17.8343C16.9599 18.4063 15.9838 18.6923 14.8059 18.6923C13.3662 18.6923 12.2374 18.2591 11.4194 17.3926C10.6014 16.5262 10.1924 15.3313 10.1924 13.8079C10.1924 12.2845 10.5987 11.0755 11.4112 10.1807C12.2237 9.28029 13.3226 8.83008 14.7077 8.83008C16.0656 8.83008 17.1481 9.26047 17.9552 10.1213C18.7677 10.9764 19.174 12.1231 19.174 13.5616V14.4195H13.0145V14.6064C13.0145 15.184 13.1835 15.6541 13.5216 16.0165C13.8597 16.3733 14.3015 16.5517 14.8468 16.5517C15.2503 16.5517 15.5993 16.461 15.8938 16.2798C16.1883 16.0929 16.3901 15.8381 16.4991 15.5153Z" }), jsx("path", { d: "M3.00205 8.58396V12.0667H4.7771C5.32789 12.0667 5.7587 11.911 6.06954 11.5995C6.38038 11.2881 6.5358 10.8662 6.5358 10.3338C6.5358 9.80718 6.37492 9.38528 6.05318 9.06815C5.73143 8.74535 5.30335 8.58396 4.76892 8.58396H3.00205ZM3.00205 14.1989V18.4886H0V6.23096H5.07158C6.53307 6.23096 7.65373 6.5849 8.43355 7.29278C9.21337 8.00066 9.60328 8.99453 9.60328 10.2744C9.60328 11.0446 9.42605 11.7439 9.07159 12.3725C8.71712 12.9955 8.2236 13.4514 7.59101 13.7402L9.94684 18.4886H6.5767L4.55624 14.1989H3.00205Z" }), jsx("path", { d: "M65.7255 0.211478C65.0841 2.46724 63.3737 4.2455 61.2041 4.90969C60.932 4.99366 60.932 5.39096 61.2041 5.47492C63.3725 6.13912 65.0841 7.91738 65.7255 10.1731C65.8056 10.4551 66.1932 10.4551 66.2745 10.1731C66.9159 7.91738 68.6263 6.13912 70.7959 5.47492C71.068 5.39096 71.068 4.99366 70.7959 4.90969C68.6276 4.2455 66.9159 2.46724 66.2745 0.211478C66.1944 -0.0704925 65.8068 -0.0704925 65.7255 0.211478Z", fill: "#21FFB4" })] });
|
|
25224
25233
|
}
|
|
25234
|
+
function RenownLight(props) {
|
|
25235
|
+
return jsxs("svg", { ...props, width: "83", height: "22", viewBox: "0 0 83 22", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [jsx("path", { d: "M62.6841 21.7601V10.6326H65.9736V12.7221H66.0405C66.3274 11.9823 66.7609 11.4191 67.341 11.0325C67.9212 10.6393 68.6192 10.4426 69.4352 10.4426C70.621 10.4426 71.5486 10.8125 72.2179 11.5524C72.8937 12.2922 73.2316 13.3187 73.2316 14.6317V21.7601H69.8369V15.3915C69.8369 14.745 69.6743 14.2418 69.3492 13.8819C69.0304 13.5153 68.581 13.332 68.0009 13.332C67.4271 13.332 66.9617 13.5319 66.6047 13.9319C66.2477 14.3318 66.0692 14.8483 66.0692 15.4815V21.7601H62.6841Z", fill: "currentcolor" }), jsx("path", { d: "M62.0713 10.6328L59.3173 21.7603H55.6644L53.9527 14.212H53.8858L52.1837 21.7603H48.5882L45.8246 10.6328H49.2384L50.625 18.5411H50.6919L52.3558 10.6328H55.5879L57.2709 18.5411H57.3379L58.7245 10.6328H62.0713Z", fill: "currentcolor" }), jsx("path", { d: "M44.2662 20.4703C43.3036 21.4901 41.9775 22 40.2882 22C38.5988 22 37.2728 21.4901 36.3102 20.4703C35.3475 19.4439 34.8662 18.0176 34.8662 16.1913C34.8662 14.3984 35.3539 12.9853 36.3293 11.9522C37.3047 10.9125 38.6243 10.3926 40.2882 10.3926C41.9584 10.3926 43.2781 10.9091 44.2471 11.9422C45.2224 12.9687 45.7101 14.385 45.7101 16.1913C45.7101 18.0242 45.2288 19.4506 44.2662 20.4703ZM38.8251 18.5608C39.1757 19.114 39.6634 19.3906 40.2882 19.3906C40.9129 19.3906 41.4006 19.114 41.7512 18.5608C42.1019 18.0009 42.2772 17.2111 42.2772 16.1913C42.2772 15.1982 42.0987 14.4184 41.7417 13.8518C41.3847 13.2853 40.9002 13.002 40.2882 13.002C39.6698 13.002 39.1821 13.2853 38.8251 13.8518C38.4745 14.4117 38.2992 15.1915 38.2992 16.1913C38.2992 17.2111 38.4745 18.0009 38.8251 18.5608Z", fill: "currentcolor" }), jsx("path", { d: "M23.3906 21.7601V10.6326H26.6801V12.7221H26.7471C27.034 11.9823 27.4675 11.4191 28.0476 11.0325C28.6277 10.6393 29.3258 10.4426 30.1418 10.4426C31.3275 10.4426 32.2551 10.8125 32.9245 11.5524C33.6002 12.2922 33.9381 13.3187 33.9381 14.6317V21.7601H30.5434V15.3915C30.5434 14.745 30.3808 14.2418 30.0557 13.8819C29.737 13.5153 29.2875 13.332 28.7074 13.332C28.1336 13.332 27.6683 13.5319 27.3113 13.9319C26.9543 14.3318 26.7758 14.8483 26.7758 15.4815V21.7601H23.3906Z", fill: "currentcolor" }), jsx("path", { d: "M17.2414 12.912C16.6995 12.912 16.2437 13.102 15.8739 13.4819C15.5042 13.8618 15.297 14.3484 15.2524 14.9416H19.2113C19.1794 14.3284 18.9818 13.8385 18.6184 13.4719C18.2614 13.0986 17.8024 12.912 17.2414 12.912ZM19.2878 18.2608H22.3478C22.182 19.4006 21.6433 20.3104 20.7317 20.9902C19.8264 21.6634 18.6853 22 17.3083 22C15.6253 22 14.3057 21.4901 13.3494 20.4703C12.3932 19.4506 11.915 18.0442 11.915 16.2513C11.915 14.4583 12.39 13.0353 13.3399 11.9822C14.2897 10.9225 15.5743 10.3926 17.1936 10.3926C18.7809 10.3926 20.0464 10.8991 20.9899 11.9122C21.9398 12.9187 22.4147 14.2684 22.4147 15.9613V16.9711H15.2141V17.1911C15.2141 17.8709 15.4117 18.4241 15.807 18.8507C16.2022 19.2706 16.7186 19.4806 17.3561 19.4806C17.8279 19.4806 18.2359 19.3739 18.5801 19.1606C18.9244 18.9407 19.1603 18.6408 19.2878 18.2608Z", fill: "currentcolor" }), jsx("path", { d: "M3.50945 10.1029V14.202H5.58452C6.2284 14.202 6.73202 14.0187 7.0954 13.6521C7.45878 13.2855 7.64047 12.789 7.64047 12.1624C7.64047 11.5426 7.4524 11.046 7.07628 10.6728C6.70015 10.2928 6.19971 10.1029 5.57496 10.1029H3.50945ZM3.50945 16.7114V21.7603H0V7.3335H5.92877C7.63728 7.3335 8.94735 7.75007 9.85897 8.58322C10.7706 9.41637 11.2264 10.5861 11.2264 12.0924C11.2264 12.9989 11.0192 13.8221 10.6049 14.5619C10.1905 15.2951 9.61354 15.8316 8.87403 16.1715L11.628 21.7603H7.68828L5.32633 16.7114H3.50945Z", fill: "currentcolor" }), jsx("path", { d: "M76.834 0.248901C76.0842 2.90384 74.0847 4.99678 71.5484 5.77851C71.2303 5.87734 71.2303 6.34494 71.5484 6.44376C74.0833 7.22549 76.0842 9.31844 76.834 11.9734C76.9277 12.3052 77.3807 12.3052 77.4758 11.9734C78.2257 9.31844 80.2251 7.22549 82.7614 6.44376C83.0795 6.34494 83.0795 5.87734 82.7614 5.77851C80.2266 4.99678 78.2257 2.90384 77.4758 0.248901C77.3821 -0.0829669 76.9291 -0.0829669 76.834 0.248901Z", fill: "url(#paint0_linear_2120_7894)" }), jsx("defs", { children: jsxs("linearGradient", { id: "paint0_linear_2120_7894", x1: "77.1549", y1: "-0.768932", x2: "72.2552", y2: "11.3783", gradientUnits: "userSpaceOnUse", children: [jsx("stop", { stopColor: "#21FFB4" }), jsx("stop", { offset: "1", stopColor: "#0080FF" })] }) })] });
|
|
25236
|
+
}
|
|
25225
25237
|
function Renown(props) {
|
|
25226
25238
|
return jsxs("svg", { ...props, viewBox: "0 0 71 19", fill: "currentcolor", children: [jsx("path", { d: "M53.6211 18.4887V9.0342H56.435V10.8096H56.4923C56.7377 10.181 57.1085 9.70244 57.6047 9.37398C58.101 9.03986 58.6981 8.8728 59.3962 8.8728C60.4105 8.8728 61.2039 9.1871 61.7765 9.8157C62.3546 10.4443 62.6436 11.3164 62.6436 12.432V18.4887H59.7397V13.0776C59.7397 12.5283 59.6007 12.1007 59.3225 11.7949C59.0499 11.4835 58.6654 11.3277 58.1692 11.3277C57.6784 11.3277 57.2803 11.4976 56.9749 11.8374C56.6695 12.1772 56.5168 12.6161 56.5168 13.1541V18.4887H53.6211Z" }), jsx("path", { d: "M53.097 9.03394L50.7412 18.4884H47.6164L46.1522 12.075H46.0949L44.6389 18.4884H41.5632L39.1992 9.03394H42.1195L43.3056 15.7532H43.3628L44.7861 9.03394H47.551L48.9906 15.7532H49.0479L50.234 9.03394H53.097Z" }), jsx("path", { d: "M37.8661 17.3926C37.0427 18.2591 35.9084 18.6923 34.4632 18.6923C33.0181 18.6923 31.8838 18.2591 31.0604 17.3926C30.2369 16.5205 29.8252 15.3086 29.8252 13.7569C29.8252 12.2336 30.2424 11.033 31.0767 10.1552C31.9111 9.2718 33.0399 8.83008 34.4632 8.83008C35.892 8.83008 37.0208 9.26896 37.8497 10.1467C38.6841 11.0188 39.1013 12.2222 39.1013 13.7569C39.1013 15.3143 38.6896 16.5262 37.8661 17.3926ZM33.2117 15.7702C33.5116 16.2402 33.9288 16.4752 34.4632 16.4752C34.9977 16.4752 35.4148 16.2402 35.7148 15.7702C36.0147 15.2945 36.1647 14.6234 36.1647 13.7569C36.1647 12.9131 36.012 12.2506 35.7066 11.7692C35.4012 11.2878 34.9868 11.0472 34.4632 11.0472C33.9343 11.0472 33.5171 11.2878 33.2117 11.7692C32.9118 12.2449 32.7618 12.9075 32.7618 13.7569C32.7618 14.6234 32.9118 15.2945 33.2117 15.7702Z" }), jsx("path", { d: "M20.0088 18.4887V9.0342H22.8227V10.8096H22.88C23.1254 10.181 23.4962 9.70244 23.9924 9.37398C24.4887 9.03986 25.0858 8.8728 25.7838 8.8728C26.7982 8.8728 27.5916 9.1871 28.1642 9.8157C28.7423 10.4443 29.0313 11.3164 29.0313 12.432V18.4887H26.1274V13.0776C26.1274 12.5283 25.9883 12.1007 25.7102 11.7949C25.4376 11.4835 25.0531 11.3277 24.5569 11.3277C24.0661 11.3277 23.668 11.4976 23.3626 11.8374C23.0572 12.1772 22.9045 12.6161 22.9045 13.1541V18.4887H20.0088Z" }), jsx("path", { d: "M14.7486 10.9707C14.2851 10.9707 13.8952 11.1321 13.5789 11.4549C13.2626 11.7777 13.0854 12.1911 13.0472 12.6951H16.4337C16.4064 12.1741 16.2374 11.7579 15.9265 11.4464C15.6212 11.1293 15.2285 10.9707 14.7486 10.9707ZM16.4991 15.5153H19.1167C18.9749 16.4837 18.5141 17.2567 17.7343 17.8343C16.9599 18.4063 15.9838 18.6923 14.8059 18.6923C13.3662 18.6923 12.2374 18.2591 11.4194 17.3926C10.6014 16.5262 10.1924 15.3313 10.1924 13.8079C10.1924 12.2845 10.5987 11.0755 11.4112 10.1807C12.2237 9.28029 13.3226 8.83008 14.7077 8.83008C16.0656 8.83008 17.1481 9.26047 17.9552 10.1213C18.7677 10.9764 19.174 12.1231 19.174 13.5616V14.4195H13.0145V14.6064C13.0145 15.184 13.1835 15.6541 13.5216 16.0165C13.8597 16.3733 14.3015 16.5517 14.8468 16.5517C15.2503 16.5517 15.5993 16.461 15.8938 16.2798C16.1883 16.0929 16.3901 15.8381 16.4991 15.5153Z" }), jsx("path", { d: "M3.00205 8.58396V12.0667H4.7771C5.32789 12.0667 5.7587 11.911 6.06954 11.5995C6.38038 11.2881 6.5358 10.8662 6.5358 10.3338C6.5358 9.80718 6.37492 9.38528 6.05318 9.06815C5.73143 8.74535 5.30335 8.58396 4.76892 8.58396H3.00205ZM3.00205 14.1989V18.4886H0V6.23096H5.07158C6.53307 6.23096 7.65373 6.5849 8.43355 7.29278C9.21337 8.00066 9.60328 8.99453 9.60328 10.2744C9.60328 11.0446 9.42605 11.7439 9.07159 12.3725C8.71712 12.9955 8.2236 13.4514 7.59101 13.7402L9.94684 18.4886H6.5767L4.55624 14.1989H3.00205Z" }), jsx("path", { d: "M65.7255 0.211478C65.0841 2.46724 63.3737 4.2455 61.2041 4.90969C60.932 4.99366 60.932 5.39096 61.2041 5.47492C63.3725 6.13912 65.0841 7.91738 65.7255 10.1731C65.8056 10.4551 66.1932 10.4551 66.2745 10.1731C66.9159 7.91738 68.6263 6.13912 70.7959 5.47492C71.068 5.39096 71.068 4.99366 70.7959 4.90969C68.6276 4.2455 66.9159 2.46724 66.2745 0.211478C66.1944 -0.0704925 65.8068 -0.0704925 65.7255 0.211478Z" })] });
|
|
25227
25239
|
}
|
|
@@ -25322,6 +25334,7 @@ const iconComponents = {
|
|
|
25322
25334
|
CrossCircle,
|
|
25323
25335
|
Danger,
|
|
25324
25336
|
DescendenceModified,
|
|
25337
|
+
Disconnect,
|
|
25325
25338
|
Discord,
|
|
25326
25339
|
DownloadFile,
|
|
25327
25340
|
Drive,
|
|
@@ -25329,6 +25342,7 @@ const iconComponents = {
|
|
|
25329
25342
|
Edit,
|
|
25330
25343
|
Ellipsis,
|
|
25331
25344
|
Error: Error$1,
|
|
25345
|
+
Ethscan,
|
|
25332
25346
|
Exclamation,
|
|
25333
25347
|
ExportCsv,
|
|
25334
25348
|
ExportJson,
|
|
@@ -25371,6 +25385,7 @@ const iconComponents = {
|
|
|
25371
25385
|
Reload,
|
|
25372
25386
|
Removed,
|
|
25373
25387
|
RenownHover,
|
|
25388
|
+
RenownLight,
|
|
25374
25389
|
Renown,
|
|
25375
25390
|
Ring,
|
|
25376
25391
|
Save,
|
|
@@ -25530,7 +25545,7 @@ const nodeOptionsMap = {
|
|
|
25530
25545
|
};
|
|
25531
25546
|
const name = "@powerhousedao/connect";
|
|
25532
25547
|
const productName = "Powerhouse-Connect";
|
|
25533
|
-
const version$1 = "1.0.0-dev.
|
|
25548
|
+
const version$1 = "1.0.0-dev.243";
|
|
25534
25549
|
const description = "Powerhouse Connect";
|
|
25535
25550
|
const main = "./dist/index.html";
|
|
25536
25551
|
const type = "module";
|
|
@@ -25541,7 +25556,7 @@ const author = "acaldas@powerhouse.inc";
|
|
|
25541
25556
|
const repository = { "type": "git", "url": "git+https://github.com/powerhouse-inc/document-model-electron.git" };
|
|
25542
25557
|
const bugs = { "url": "https://github.com/powerhouse-inc/document-model-electron/issues" };
|
|
25543
25558
|
const homepage = "https://github.com/powerhouse-inc/document-model-electron#readme";
|
|
25544
|
-
const scripts = { "build:tsc": "tsc --build", "start": "electron-forge start", "package": "electron-forge package", "make": "PH_CONNECT_BASE_HREF=./ electron-forge make", "make:mac": "PH_CONNECT_BASE_HREF=./ electron-forge make -p darwin", "make:linux": "PH_CONNECT_BASE_HREF=./ electron-forge make -p linux", "make:windows": "PH_CONNECT_BASE_HREF=./ electron-forge make -p win32", "publish:electron": "electron-forge publish", "prepublishOnly": "npm run build", "lint": "eslint .", "lint:fix": "eslint --fix .", "lint:nx": "eslint --quiet --fix .", "format": 'prettier --write "**/*.+(js|ts|jsx|tsx|json)"', "dev": "vite -c vite.renderer.config.mts", "dev:
|
|
25559
|
+
const scripts = { "build:tsc": "tsc --build", "start": "electron-forge start", "package": "electron-forge package", "make": "PH_CONNECT_BASE_HREF=./ electron-forge make", "make:mac": "PH_CONNECT_BASE_HREF=./ electron-forge make -p darwin", "make:linux": "PH_CONNECT_BASE_HREF=./ electron-forge make -p linux", "make:windows": "PH_CONNECT_BASE_HREF=./ electron-forge make -p win32", "publish:electron": "electron-forge publish", "prepublishOnly": "npm run build", "lint": "eslint .", "lint:fix": "eslint --fix .", "lint:nx": "eslint --quiet --fix .", "format": 'prettier --write "**/*.+(js|ts|jsx|tsx|json)"', "dev": "vite -c vite.renderer.config.mts", "dev:nocache": "rm -rf node_modules/.vite && rm -rf node_modules/.cache && npm run dev", "prebuild": "tsc --build --noEmit", "build": "NODE_OPTIONS=--max-old-space-size=6144 vite build -c vite.renderer.config.mts", "preview:web": "vite preview -c vite.renderer.config.mts", "e2e": "playwright test", "cy:open": "cypress open", "build:service-worker": "tsc --build ./tsconfig.sw.json" };
|
|
25545
25560
|
const devDependencies = { "@electron-forge/cli": "^6.1.1", "@electron-forge/maker-deb": "^6.1.1", "@electron-forge/maker-rpm": "^6.1.1", "@electron-forge/maker-squirrel": "^6.1.1", "@electron-forge/maker-zip": "^6.1.1", "@electron-forge/plugin-vite": "^6.1.1", "@electron-forge/publisher-electron-release-server": "^6.2.1", "@electron-forge/publisher-github": "^7.2.0", "@electron-forge/shared-types": "^7.7.0", "@playwright/test": "^1.41.2", "@powerhousedao/builder-tools": "workspace:*", "@powerhousedao/common": "workspace:*", "@powerhousedao/config": "workspace:*", "@powerhousedao/design-system": "workspace:*", "@powerhousedao/reactor-browser": "workspace:*", "@powerhousedao/scalars": "workspace:*", "@rollup/plugin-node-resolve": "^15.2.3", "@sentry/browser": "^9.1.0", "@sentry/react": "^7.109.0", "@sentry/vite-plugin": "^2.22.2", "@tailwindcss/vite": "^4.0.9", "@tanstack/react-virtual": "^3.8.1", "@types/node": "^22.13.10", "@types/react": "^18.2.79", "@types/react-dom": "^18.2.18", "@types/uuid": "^9.0.7", "@types/wicg-file-system-access": "^2020.9.6", "@vitejs/plugin-basic-ssl": "^1.2.0", "@vitejs/plugin-react": "^4.2.1", "asar": "^3.2.0", "did-key-creator": "^1.2.0", "document-drive": "workspace:*", "document-model": "workspace:*", "electron": "30.0.0", "electron-is-dev": "^3.0.1", "electron-playwright-helpers": "^1.7.1", "electron-squirrel-startup": "^1.0.0", "electron-store": "^8.1.0", "esbuild": "^0.24.0", "graphql": "^16.8.1", "graphql-request": "^6.1.0", "i18next": "^23.7.6", "jotai": "^2.1.0", "jotai-effect": "^1.1.6", "localforage": "^1.10.0", "lz-string": "^1.5.0", "playwright": "^1.41.2", "playwright-core": "^1.41.2", "react": "^18.2.0", "react-dom": "^18.2.0", "react-error-boundary": "^4.0.11", "react-hotkeys-hook": "^4.5.0", "react-i18next": "^13.5.0", "react-router-dom": "^6.11.2", "tailwind-merge": "^3.0.2", "tailwindcss": "^4.0.9", "uuid": "^9.0.1", "viem": "^2.8.13", "vite": "^6.2.2", "vite-envs": "^4.4.11", "vite-plugin-html": "^3.2.2", "vite-plugin-node-polyfills": "^0.23.0", "vite-plugin-svgr": "^4.2.0", "vite-tsconfig-paths": "^4.3.2", "xvfb-maybe": "^0.2.1" };
|
|
25546
25561
|
const optionalDependencies = { "@esbuild/linux-x64": "^0.21.4", "@rollup/rollup-linux-x64-musl": "4.14.3" };
|
|
25547
25562
|
const packageJson = {
|
|
@@ -28335,6 +28350,14 @@ const _BrowserStorage = class _BrowserStorage {
|
|
|
28335
28350
|
const db = await this.db;
|
|
28336
28351
|
await db.setItem(this.buildDocumentKey(documentId), document);
|
|
28337
28352
|
}
|
|
28353
|
+
async get(documentId) {
|
|
28354
|
+
const db = await this.db;
|
|
28355
|
+
const document = await db.getItem(this.buildDocumentKey(documentId));
|
|
28356
|
+
if (!document) {
|
|
28357
|
+
throw new Error(`Document with id ${documentId} not found`);
|
|
28358
|
+
}
|
|
28359
|
+
return document;
|
|
28360
|
+
}
|
|
28338
28361
|
////////////////////////////////
|
|
28339
28362
|
// IDriveStorage
|
|
28340
28363
|
////////////////////////////////
|
|
@@ -28355,11 +28378,7 @@ const _BrowserStorage = class _BrowserStorage {
|
|
|
28355
28378
|
return manifest.documentIds;
|
|
28356
28379
|
}
|
|
28357
28380
|
async getDocument(driveId, id) {
|
|
28358
|
-
|
|
28359
|
-
if (!document) {
|
|
28360
|
-
throw new Error(`Document with id ${id} not found`);
|
|
28361
|
-
}
|
|
28362
|
-
return document;
|
|
28381
|
+
return this.get(id);
|
|
28363
28382
|
}
|
|
28364
28383
|
async createDocument(drive, id, document) {
|
|
28365
28384
|
await this.create(id, document);
|
|
@@ -31112,7 +31131,7 @@ if (window.__VITE_ENVS.MODE === "development") {
|
|
|
31112
31131
|
} else {
|
|
31113
31132
|
serviceWorkerManager.registerServiceWorker(false);
|
|
31114
31133
|
}
|
|
31115
|
-
const App = lazy(() => __vitePreload(() => import("./app-
|
|
31134
|
+
const App = lazy(() => __vitePreload(() => import("./app-OhsW1euo.js").then((n) => n.aN), true ? __vite__mapDeps([0,1,2]) : void 0));
|
|
31116
31135
|
const AppLoader = /* @__PURE__ */ jsx(Suspense, { children: /* @__PURE__ */ jsx(App, {}) });
|
|
31117
31136
|
const appLoader = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
31118
31137
|
__proto__: null,
|
|
@@ -1493,6 +1493,10 @@
|
|
|
1493
1493
|
height: 20px;
|
|
1494
1494
|
}
|
|
1495
1495
|
|
|
1496
|
+
.h-\[22px\] {
|
|
1497
|
+
height: 22px;
|
|
1498
|
+
}
|
|
1499
|
+
|
|
1496
1500
|
.h-\[28px\] {
|
|
1497
1501
|
height: 28px;
|
|
1498
1502
|
}
|
|
@@ -1681,6 +1685,10 @@
|
|
|
1681
1685
|
width: 68px;
|
|
1682
1686
|
}
|
|
1683
1687
|
|
|
1688
|
+
.w-\[83px\] {
|
|
1689
|
+
width: 83px;
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1684
1692
|
.w-\[114px\] {
|
|
1685
1693
|
width: 114px;
|
|
1686
1694
|
}
|
|
@@ -2023,16 +2031,24 @@
|
|
|
2023
2031
|
row-gap: 15px;
|
|
2024
2032
|
}
|
|
2025
2033
|
|
|
2034
|
+
:where(.divide-y > :not(:last-child)) {
|
|
2035
|
+
--tw-divide-y-reverse: 0;
|
|
2036
|
+
border-bottom-style: var(--tw-border-style);
|
|
2037
|
+
border-top-style: var(--tw-border-style);
|
|
2038
|
+
border-top-width: calc(1px * var(--tw-divide-y-reverse));
|
|
2039
|
+
border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2042
|
+
:where(.divide-gray-200 > :not(:last-child)) {
|
|
2043
|
+
border-color: var(--color-gray-200);
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2026
2046
|
.truncate {
|
|
2027
2047
|
text-overflow: ellipsis;
|
|
2028
2048
|
white-space: nowrap;
|
|
2029
2049
|
overflow: hidden;
|
|
2030
2050
|
}
|
|
2031
2051
|
|
|
2032
|
-
.overflow-hidden {
|
|
2033
|
-
overflow: hidden;
|
|
2034
|
-
}
|
|
2035
|
-
|
|
2036
2052
|
.overflow-scroll {
|
|
2037
2053
|
overflow: scroll;
|
|
2038
2054
|
}
|
|
@@ -2776,6 +2792,10 @@
|
|
|
2776
2792
|
opacity: .8;
|
|
2777
2793
|
}
|
|
2778
2794
|
|
|
2795
|
+
.opacity-100 {
|
|
2796
|
+
opacity: 1;
|
|
2797
|
+
}
|
|
2798
|
+
|
|
2779
2799
|
.shadow {
|
|
2780
2800
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
|
|
2781
2801
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -2893,6 +2913,11 @@
|
|
|
2893
2913
|
transition-duration: 75ms;
|
|
2894
2914
|
}
|
|
2895
2915
|
|
|
2916
|
+
.duration-150 {
|
|
2917
|
+
--tw-duration: .15s;
|
|
2918
|
+
transition-duration: .15s;
|
|
2919
|
+
}
|
|
2920
|
+
|
|
2896
2921
|
.duration-200 {
|
|
2897
2922
|
--tw-duration: .2s;
|
|
2898
2923
|
transition-duration: .2s;
|
|
@@ -3437,6 +3462,10 @@
|
|
|
3437
3462
|
color: var(--color-gray-900);
|
|
3438
3463
|
}
|
|
3439
3464
|
|
|
3465
|
+
.hover\:text-red-700:hover {
|
|
3466
|
+
color: var(--color-red-700);
|
|
3467
|
+
}
|
|
3468
|
+
|
|
3440
3469
|
.hover\:text-red-900:hover {
|
|
3441
3470
|
color: var(--color-red-900);
|
|
3442
3471
|
}
|
|
@@ -3581,6 +3610,10 @@
|
|
|
3581
3610
|
opacity: .5;
|
|
3582
3611
|
}
|
|
3583
3612
|
|
|
3613
|
+
.active\:opacity-70:active {
|
|
3614
|
+
opacity: .7;
|
|
3615
|
+
}
|
|
3616
|
+
|
|
3584
3617
|
.active\:opacity-75:active {
|
|
3585
3618
|
opacity: .75;
|
|
3586
3619
|
}
|
|
@@ -4732,6 +4765,10 @@
|
|
|
4732
4765
|
overflow: auto;
|
|
4733
4766
|
}
|
|
4734
4767
|
|
|
4768
|
+
.overflow-hidden {
|
|
4769
|
+
overflow: hidden;
|
|
4770
|
+
}
|
|
4771
|
+
|
|
4735
4772
|
.rounded-2xl {
|
|
4736
4773
|
border-radius: var(--radius-2xl);
|
|
4737
4774
|
}
|
|
@@ -5189,6 +5226,11 @@ input[type="number"] {
|
|
|
5189
5226
|
inherits: false;
|
|
5190
5227
|
initial-value: 0;
|
|
5191
5228
|
}
|
|
5229
|
+
@property --tw-divide-y-reverse {
|
|
5230
|
+
syntax: "*";
|
|
5231
|
+
inherits: false;
|
|
5232
|
+
initial-value: 0;
|
|
5233
|
+
}
|
|
5192
5234
|
@property --tw-border-style {
|
|
5193
5235
|
syntax: "*";
|
|
5194
5236
|
inherits: false;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { aD as BaseError, aE as getUrl, aF as stringify, aG as decodeErrorResult, aH as isAddressEqual, aI as call, aJ as concat, aK as encodeAbiParameters, aL as HttpRequestError, aM as isHex } from "./app-
|
|
2
|
-
import "./main.
|
|
1
|
+
import { aD as BaseError, aE as getUrl, aF as stringify, aG as decodeErrorResult, aH as isAddressEqual, aI as call, aJ as concat, aK as encodeAbiParameters, aL as HttpRequestError, aM as isHex } from "./app-OhsW1euo.js";
|
|
2
|
+
import "./main.cdpmF4Pk.js";
|
|
3
3
|
import "react/jsx-runtime";
|
|
4
|
-
import "./app-loader-
|
|
4
|
+
import "./app-loader-A6VDzgXS.js";
|
|
5
5
|
import "react";
|
|
6
6
|
import "@powerhousedao/reactor-browser";
|
|
7
7
|
import "react-dom";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsx, jsxs, Fragment as Fragment$1 } from "react/jsx-runtime";
|
|
2
|
-
import { t as twMerge, B as Button, m as mergeClassNameProps, E as ERROR, M as MISSING, C as CONFLICT, S as SUCCESS, h as SYNCING, I as INITIAL_SYNC, i as ConnectDropdownMenu, u as useOnClickOutside, j as useEventListener, k as useCopyToClipboard, l as Select, n as ENSAvatar, P as Provider, o as Root3, T as Trigger, p as Portal, q as Content2, v as validateInitialState, w as validateStateSchemaName, x as validateModules, y as useUnwrappedReactor, z as useConnectDid, A as useConnectCrypto, D as useTranslation, F as useModal, G as useAtomValue, H as themeAtom, J as useUser, K as useUserPermissions, L as useUiNodes, N as exportFile, O as useGetDocumentModelModule, Q as addActionContext, U as signOperation, V as useDocumentDriveServer, W as useHotkeys, X as useGetEditor, Y as isSameDocument, Z as useNavigate, _ as ErrorBoundary, $ as DriveLayout, a0 as SearchBar, a1 as useAsyncReactor, a2 as useFilteredDocumentModels, a3 as useDriveEditor, a4 as useDocumentDriveById } from "./app-
|
|
2
|
+
import { t as twMerge, B as Button, m as mergeClassNameProps, E as ERROR, M as MISSING, C as CONFLICT, S as SUCCESS, h as SYNCING, I as INITIAL_SYNC, i as ConnectDropdownMenu, u as useOnClickOutside, j as useEventListener, k as useCopyToClipboard, l as Select, n as ENSAvatar, P as Provider, o as Root3, T as Trigger, p as Portal, q as Content2, v as validateInitialState, w as validateStateSchemaName, x as validateModules, y as useUnwrappedReactor, z as useConnectDid, A as useConnectCrypto, D as useTranslation, F as useModal, G as useAtomValue, H as themeAtom, J as useUser, K as useUserPermissions, L as useUiNodes, N as exportFile, O as useGetDocumentModelModule, Q as addActionContext, U as signOperation, V as useDocumentDriveServer, W as useHotkeys, X as useGetEditor, Y as isSameDocument, Z as useNavigate, _ as ErrorBoundary, $ as DriveLayout, a0 as SearchBar, a1 as useAsyncReactor, a2 as useFilteredDocumentModels, a3 as useDriveEditor, a4 as useDocumentDriveById } from "./app-OhsW1euo.js";
|
|
3
3
|
import * as React from "react";
|
|
4
4
|
import React__default, { useState, useCallback, useMemo, useEffect, Fragment, useRef, useLayoutEffect, memo as memo$1, createElement, useSyncExternalStore, Suspense } from "react";
|
|
5
|
-
import { _ as Icon, aX as getDimensions, aY as READ, aZ as nodeOptionsMap, a_ as defaultFileOptions, a$ as DELETE, b0 as RENAME, b1 as WRITE, b2 as DUPLICATE, b3 as defaultFolderOptions, b4 as garbageCollect, b5 as sortOperations, b6 as UI_NODE, aO as DRIVE, ay as FILE, b7 as undo, b8 as redo, ac as logger, b9 as useDocumentDispatch, aP as FOLDER, ak as driveDocumentModelModule } from "./app-loader-
|
|
5
|
+
import { _ as Icon, aX as getDimensions, aY as READ, aZ as nodeOptionsMap, a_ as defaultFileOptions, a$ as DELETE, b0 as RENAME, b1 as WRITE, b2 as DUPLICATE, b3 as defaultFolderOptions, b4 as garbageCollect, b5 as sortOperations, b6 as UI_NODE, aO as DRIVE, ay as FILE, b7 as undo, b8 as redo, ac as logger, b9 as useDocumentDispatch, aP as FOLDER, ak as driveDocumentModelModule } from "./app-loader-A6VDzgXS.js";
|
|
6
6
|
import { useDocument, useDocumentEditorProps } from "@powerhousedao/reactor-browser";
|
|
7
7
|
import { useUiNodesContext, FILE as FILE$1 } from "@powerhousedao/reactor-browser/hooks/useUiNodesContext";
|
|
8
8
|
import { useDriveActionsWithUiNodes } from "@powerhousedao/reactor-browser/hooks/useDriveActionsWithUiNodes";
|
|
@@ -10,8 +10,7 @@ import { useDriveContext, DriveContextProvider } from "@powerhousedao/reactor-br
|
|
|
10
10
|
import "@powerhousedao/reactor-browser/uiNodes/constants";
|
|
11
11
|
import { makeDriveDocumentStateHook } from "@powerhousedao/reactor-browser/hooks/document-state";
|
|
12
12
|
import { flushSync } from "react-dom";
|
|
13
|
-
import "./main.
|
|
14
|
-
const ConnectLoaderVideo = "/assets/connect-loader-CvOC68Ih.mp4";
|
|
13
|
+
import "./main.cdpmF4Pk.js";
|
|
15
14
|
const PaginationButton = ({ active = false, ...props }) => {
|
|
16
15
|
const className = twMerge("h-8 min-w-8 border border-solid border-gray-300 bg-white px-3 py-1 text-xs text-gray-900 hover:bg-gray-100", !active && "border-0");
|
|
17
16
|
return jsx(Button, { color: "light", size: "small", ...mergeClassNameProps(props, className), children: props.children });
|
|
@@ -98,6 +97,7 @@ const useWindowSize = () => {
|
|
|
98
97
|
}, []);
|
|
99
98
|
return windowSize;
|
|
100
99
|
};
|
|
100
|
+
const ConnectLoaderVideo = "/assets/connect-loader-CvOC68Ih.mp4";
|
|
101
101
|
function AnimatedLoader(props) {
|
|
102
102
|
var _a, _b;
|
|
103
103
|
const { style, size = 100, ...delegatedProps } = props;
|
|
@@ -3930,7 +3930,7 @@ function Content() {
|
|
|
3930
3930
|
);
|
|
3931
3931
|
});
|
|
3932
3932
|
}, [selectedDriveNode, selectedNode, addFile]);
|
|
3933
|
-
return /* @__PURE__ */ jsx("div", { className: "flex h-full flex-col overflow-
|
|
3933
|
+
return /* @__PURE__ */ jsx("div", { className: "flex h-full flex-col overflow-hidden", id: "content-view", children: fileNodeDocument ? /* @__PURE__ */ jsx(DocumentEditorContainer, {}, fileNodeDocument.documentId) : selectedDriveNode ? /* @__PURE__ */ jsx(DriveEditorContainer, {}, selectedDriveNode.id) : null });
|
|
3934
3934
|
}
|
|
3935
3935
|
export {
|
|
3936
3936
|
Content as default
|
|
@@ -10,10 +10,10 @@ var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot
|
|
|
10
10
|
var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
|
|
11
11
|
var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "access private method"), method);
|
|
12
12
|
var _DB_NAME, _STORE_NAME, _KEY, _db, _BrowserKeyStorage_instances, useStore_fn, _subtleCrypto, _keyPair, _keyPairStorage, _did, _ConnectCrypto_instances, initCrypto_fn, initialize_fn, parseDid_fn, generateECDSAKeyPair_fn, exportKeyPair_fn, importKeyPair_fn, _sign, _verify, _store, _namespace, _BaseStorage_instances, buildKey_fn, _baseUrl, _store2, _connectId, _eventEmitter, _Renown_instances, updateUser_fn, getCredential_fn;
|
|
13
|
-
import { _ as __vitePreload } from "./main.
|
|
14
|
-
import { aW as getAugmentedNamespace, $ as getDefaultExportFromCjs, ah as connectConfig, ac as logger } from "./app-loader-
|
|
15
|
-
import { e as eventsExports, R as RENOWN_URL, g as getEnsInfo } from "./app-
|
|
16
|
-
import { d, c, b, f, a, r, s } from "./app-
|
|
13
|
+
import { _ as __vitePreload } from "./main.cdpmF4Pk.js";
|
|
14
|
+
import { aW as getAugmentedNamespace, $ as getDefaultExportFromCjs, ah as connectConfig, ac as logger } from "./app-loader-A6VDzgXS.js";
|
|
15
|
+
import { e as eventsExports, R as RENOWN_URL, g as getEnsInfo } from "./app-OhsW1euo.js";
|
|
16
|
+
import { d, c, b, f, a, r, s } from "./app-OhsW1euo.js";
|
|
17
17
|
import "react/jsx-runtime";
|
|
18
18
|
import "react";
|
|
19
19
|
import "@powerhousedao/reactor-browser";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/app-loader-
|
|
2
|
-
import { _ as __vitePreload } from "./main.
|
|
1
|
+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/app-loader-A6VDzgXS.js","assets/main.cdpmF4Pk.js","assets/app-loader-CjrEwupY.css"])))=>i.map(i=>d[i]);
|
|
2
|
+
import { _ as __vitePreload } from "./main.cdpmF4Pk.js";
|
|
3
3
|
import { createRoot } from "react-dom/client";
|
|
4
4
|
async function renderApp(element) {
|
|
5
|
-
const AppLoader = await __vitePreload(() => import("./app-loader-
|
|
5
|
+
const AppLoader = await __vitePreload(() => import("./app-loader-A6VDzgXS.js").then((n) => n.c9), true ? __vite__mapDeps([0,1,2]) : void 0);
|
|
6
6
|
createRoot(element).render(AppLoader.default);
|
|
7
7
|
}
|
|
8
8
|
const AppElement = document.getElementById("app");
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { t as twMerge, a5 as clsx, a6 as get, a7 as set, a8 as appendErrors, a9 as useFormContext, aa as Primitive, ab as cva, ac as FormProvider, ad as Controller, ae as Slot, af as useForm, ag as Root2, ah as List, ai as Trigger, aj as Content, ak as setModelName, al as setModelId, am as setModelDescription, an as setModelExtension, ao as setAuthorName, ap as setAuthorWebsite, aq as setStateSchema, ar as setInitialState, as as addModule, at as setModuleName, au as deleteModule, av as addOperation, aw as setOperationName, ax as setOperationSchema, ay as setOperationDescription, az as deleteOperation, aA as addOperationError, aB as deleteOperationError, aC as setOperationErrorName } from "./app-
|
|
3
|
-
import { ba as inspect$1, bb as GraphQLError$1, bc as getNamedType, bd as invariant$2, be as isInputObjectType, bf as isScalarType, bg as isObjectType, bh as isInterfaceType, bi as isUnionType, bj as isEnumType, bk as print, bl as isPrintableAsBlockString, bm as Kind, bn as astFromValue$1, bo as DEFAULT_DEPRECATION_REASON, bp as isSpecifiedDirective, bq as isSpecifiedScalarType, br as isIntrospectionType, bs as z, bt as GraphQLScalarType, Z as pascalCase, bu as parse, bv as visit, bw as buildASTSchema, bx as extendSchema, by as getNullableType, bz as isListType, $ as getDefaultExportFromCjs, bA as snakeCase, bB as constantCase, bC as isAbstractType, bD as BREAK, bE as GraphQLInputObjectType, bF as GraphQLList, bG as GraphQLEnumType, bH as GraphQLObjectType, bI as GraphQLInterfaceType, bJ as SchemaMetaFieldDef, bK as TypeMetaFieldDef, bL as TypeNameMetaFieldDef, bM as isCompositeType, bN as isOutputType, bO as isInputType, bP as GraphQLBoolean, bQ as assertAbstractType, bR as doTypesOverlap, bS as DirectiveLocation, bT as specifiedRules$1, bU as NoUnusedFragmentsRule$1, bV as ExecutableDefinitionsRule$1, bW as validate$2, bX as validateSchema, bY as GraphQLID, bZ as GraphQLString, b_ as GraphQLFloat, b$ as GraphQLInt, c0 as GraphQLDirective, c1 as GraphQLUnionType, c2 as isNonNullType, c3 as GraphQLNonNull, c4 as isNamedType, c5 as isLeafType, c6 as GraphQLSchema, c7 as buildSchema, c8 as sentenceCase, am as hashKey } from "./app-loader-
|
|
2
|
+
import { t as twMerge, a5 as clsx, a6 as get, a7 as set, a8 as appendErrors, a9 as useFormContext, aa as Primitive, ab as cva, ac as FormProvider, ad as Controller, ae as Slot, af as useForm, ag as Root2, ah as List, ai as Trigger, aj as Content, ak as setModelName, al as setModelId, am as setModelDescription, an as setModelExtension, ao as setAuthorName, ap as setAuthorWebsite, aq as setStateSchema, ar as setInitialState, as as addModule, at as setModuleName, au as deleteModule, av as addOperation, aw as setOperationName, ax as setOperationSchema, ay as setOperationDescription, az as deleteOperation, aA as addOperationError, aB as deleteOperationError, aC as setOperationErrorName } from "./app-OhsW1euo.js";
|
|
3
|
+
import { ba as inspect$1, bb as GraphQLError$1, bc as getNamedType, bd as invariant$2, be as isInputObjectType, bf as isScalarType, bg as isObjectType, bh as isInterfaceType, bi as isUnionType, bj as isEnumType, bk as print, bl as isPrintableAsBlockString, bm as Kind, bn as astFromValue$1, bo as DEFAULT_DEPRECATION_REASON, bp as isSpecifiedDirective, bq as isSpecifiedScalarType, br as isIntrospectionType, bs as z, bt as GraphQLScalarType, Z as pascalCase, bu as parse, bv as visit, bw as buildASTSchema, bx as extendSchema, by as getNullableType, bz as isListType, $ as getDefaultExportFromCjs, bA as snakeCase, bB as constantCase, bC as isAbstractType, bD as BREAK, bE as GraphQLInputObjectType, bF as GraphQLList, bG as GraphQLEnumType, bH as GraphQLObjectType, bI as GraphQLInterfaceType, bJ as SchemaMetaFieldDef, bK as TypeMetaFieldDef, bL as TypeNameMetaFieldDef, bM as isCompositeType, bN as isOutputType, bO as isInputType, bP as GraphQLBoolean, bQ as assertAbstractType, bR as doTypesOverlap, bS as DirectiveLocation, bT as specifiedRules$1, bU as NoUnusedFragmentsRule$1, bV as ExecutableDefinitionsRule$1, bW as validate$2, bX as validateSchema, bY as GraphQLID, bZ as GraphQLString, b_ as GraphQLFloat, b$ as GraphQLInt, c0 as GraphQLDirective, c1 as GraphQLUnionType, c2 as isNonNullType, c3 as GraphQLNonNull, c4 as isNamedType, c5 as isLeafType, c6 as GraphQLSchema, c7 as buildSchema, c8 as sentenceCase, am as hashKey } from "./app-loader-A6VDzgXS.js";
|
|
4
4
|
import * as React from "react";
|
|
5
5
|
import React__default, { forwardRef, useRef, useCallback, useImperativeHandle, useEffect, useState, createContext, useContext, memo, useId, useMemo } from "react";
|
|
6
|
-
import "./main.
|
|
6
|
+
import "./main.cdpmF4Pk.js";
|
|
7
7
|
import "@powerhousedao/reactor-browser";
|
|
8
8
|
import "react-dom";
|
|
9
9
|
import "@powerhousedao/reactor-browser/hooks/useUiNodesContext";
|
|
@@ -99,7 +99,7 @@ const __vitePreload = function preload(baseModule, deps, importerUrl) {
|
|
|
99
99
|
return baseModule().catch(handlePreloadError);
|
|
100
100
|
});
|
|
101
101
|
};
|
|
102
|
-
__vitePreload(() => import("./index-
|
|
102
|
+
__vitePreload(() => import("./index-CJeYWUG4.js"), true ? [] : void 0);
|
|
103
103
|
export {
|
|
104
104
|
__vitePreload as _
|
|
105
105
|
};
|
package/dist/index.html
CHANGED
|
@@ -97,4 +97,4 @@
|
|
|
97
97
|
"@powerhousedao/reactor-browser/utils/index": "/modules/@powerhousedao/reactor-browser/utils/index.js",
|
|
98
98
|
"@powerhousedao/reactor-browser/utils/signature": "/modules/@powerhousedao/reactor-browser/utils/signature.js"
|
|
99
99
|
}
|
|
100
|
-
}</script><script type="module" crossorigin="" src="/assets/main.
|
|
100
|
+
}</script><script type="module" crossorigin="" src="/assets/main.cdpmF4Pk.js"></script></head><body><div id="app"></div></body></html>
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
ReactorBuilder,
|
|
5
5
|
memory_default,
|
|
6
6
|
mergeOperations
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-YOX3ZAET.js";
|
|
8
8
|
import {
|
|
9
9
|
__commonJS,
|
|
10
10
|
__require,
|
|
@@ -2221,6 +2221,14 @@ var BrowserStorage = class _BrowserStorage {
|
|
|
2221
2221
|
const db = await this.db;
|
|
2222
2222
|
await db.setItem(this.buildDocumentKey(documentId), document);
|
|
2223
2223
|
}
|
|
2224
|
+
async get(documentId) {
|
|
2225
|
+
const db = await this.db;
|
|
2226
|
+
const document = await db.getItem(this.buildDocumentKey(documentId));
|
|
2227
|
+
if (!document) {
|
|
2228
|
+
throw new Error(`Document with id ${documentId} not found`);
|
|
2229
|
+
}
|
|
2230
|
+
return document;
|
|
2231
|
+
}
|
|
2224
2232
|
////////////////////////////////
|
|
2225
2233
|
// IDriveStorage
|
|
2226
2234
|
////////////////////////////////
|
|
@@ -2241,11 +2249,7 @@ var BrowserStorage = class _BrowserStorage {
|
|
|
2241
2249
|
return manifest.documentIds;
|
|
2242
2250
|
}
|
|
2243
2251
|
async getDocument(driveId, id) {
|
|
2244
|
-
|
|
2245
|
-
if (!document) {
|
|
2246
|
-
throw new Error(`Document with id ${id} not found`);
|
|
2247
|
-
}
|
|
2248
|
-
return document;
|
|
2252
|
+
return this.get(id);
|
|
2249
2253
|
}
|
|
2250
2254
|
async createDocument(drive, id, document) {
|
|
2251
2255
|
await this.create(id, document);
|
|
@@ -1670,6 +1670,13 @@ var MemoryStorage = class {
|
|
|
1670
1670
|
this.documents[documentId] = document;
|
|
1671
1671
|
return Promise.resolve();
|
|
1672
1672
|
}
|
|
1673
|
+
get(documentId) {
|
|
1674
|
+
const document = this.documents[documentId];
|
|
1675
|
+
if (!document) {
|
|
1676
|
+
throw new Error(`Document with id ${documentId} not found`);
|
|
1677
|
+
}
|
|
1678
|
+
return Promise.resolve(document);
|
|
1679
|
+
}
|
|
1673
1680
|
////////////////////////////////
|
|
1674
1681
|
// IDriveStorage
|
|
1675
1682
|
////////////////////////////////
|
|
@@ -1680,12 +1687,8 @@ var MemoryStorage = class {
|
|
|
1680
1687
|
const manifest = this.getDriveManifest(drive);
|
|
1681
1688
|
return Promise.resolve([...manifest.documentIds]);
|
|
1682
1689
|
}
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
if (!document) {
|
|
1686
|
-
throw new Error(`Document with id ${id} not found`);
|
|
1687
|
-
}
|
|
1688
|
-
return document;
|
|
1690
|
+
getDocument(driveId, id) {
|
|
1691
|
+
return this.get(id);
|
|
1689
1692
|
}
|
|
1690
1693
|
async saveDocument(drive, id, document) {
|
|
1691
1694
|
this.documents[id] = document;
|
|
@@ -3,10 +3,10 @@ import {
|
|
|
3
3
|
ReadModeContext,
|
|
4
4
|
ReadModeContextProvider,
|
|
5
5
|
useReadModeContext
|
|
6
|
-
} from "../chunk-
|
|
6
|
+
} from "../chunk-P46ZMPJ3.js";
|
|
7
7
|
import "../chunk-OVGOA2P5.js";
|
|
8
8
|
import "../chunk-P6NJ6IAQ.js";
|
|
9
|
-
import "../chunk-
|
|
9
|
+
import "../chunk-YOX3ZAET.js";
|
|
10
10
|
import "../chunk-FQF4YAVC.js";
|
|
11
11
|
import "../chunk-2ESYSVXG.js";
|
|
12
12
|
export {
|
|
@@ -2,10 +2,10 @@ import {
|
|
|
2
2
|
ReadModeContext,
|
|
3
3
|
ReadModeContextProvider,
|
|
4
4
|
useReadModeContext
|
|
5
|
-
} from "../chunk-
|
|
5
|
+
} from "../chunk-P46ZMPJ3.js";
|
|
6
6
|
import "../chunk-OVGOA2P5.js";
|
|
7
7
|
import "../chunk-P6NJ6IAQ.js";
|
|
8
|
-
import "../chunk-
|
|
8
|
+
import "../chunk-YOX3ZAET.js";
|
|
9
9
|
import "../chunk-FQF4YAVC.js";
|
|
10
10
|
import "../chunk-2ESYSVXG.js";
|
|
11
11
|
export {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import "../chunk-DKDARAJS.js";
|
|
2
2
|
import {
|
|
3
3
|
useDriveActionsWithUiNodes
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-4LZZ55AN.js";
|
|
5
5
|
import {
|
|
6
6
|
useDriveActions
|
|
7
|
-
} from "../chunk-
|
|
7
|
+
} from "../chunk-6AXML2S3.js";
|
|
8
8
|
import {
|
|
9
9
|
DriveContextProvider,
|
|
10
10
|
useDriveContext
|
|
@@ -57,7 +57,7 @@ import {
|
|
|
57
57
|
useUserPermissions
|
|
58
58
|
} from "../chunk-OVGOA2P5.js";
|
|
59
59
|
import "../chunk-P6NJ6IAQ.js";
|
|
60
|
-
import "../chunk-
|
|
60
|
+
import "../chunk-YOX3ZAET.js";
|
|
61
61
|
import "../chunk-FQF4YAVC.js";
|
|
62
62
|
import "../chunk-YWKVPJNL.js";
|
|
63
63
|
import "../chunk-2X2M6BYG.js";
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
useDriveActionsWithUiNodes
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-4LZZ55AN.js";
|
|
4
|
+
import "../chunk-6AXML2S3.js";
|
|
5
5
|
import "../chunk-XBTEGV5M.js";
|
|
6
6
|
import "../chunk-RGIB4DD4.js";
|
|
7
7
|
import "../chunk-7OQWVUC5.js";
|
|
8
8
|
import "../chunk-ZL5IPB6D.js";
|
|
9
|
-
import "../chunk-
|
|
9
|
+
import "../chunk-YOX3ZAET.js";
|
|
10
10
|
import "../chunk-FQF4YAVC.js";
|
|
11
11
|
import "../chunk-2ESYSVXG.js";
|
|
12
12
|
export {
|