Add comprehensive installation and setup documentation

- Add GETTING_STARTED.md with quick start guide and development modes
- Add INSTALL.sh automated installation script
- Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md
- Add QUICK_REFERENCE.md for common commands
- Add SETUP_GUIDE.md with detailed setup instructions
- Update README.md with improved project overview
- Add did-wallet app dependencies and node_modules
This commit is contained in:
Dorian
2026-01-27 17:18:21 +00:00
parent a81f655133
commit 0d073fa89e
22658 changed files with 4494151 additions and 6 deletions
+3
View File
@@ -0,0 +1,3 @@
(function (root, factory) {(typeof module === 'object' && module.exports) ? module.exports = factory() : root.ProgressEvents = factory()}(typeof self !== 'undefined' ? self : this, function () {
"use strict";var ProgressEvents=(()=>{var a=Object.defineProperty;var l=Object.getOwnPropertyDescriptor;var p=Object.getOwnPropertyNames;var h=Object.prototype.hasOwnProperty;var n=(e,t)=>{for(var i in t)a(e,i,{get:t[i],enumerable:!0})},r=(e,t,i,d)=>{if(t&&typeof t=="object"||typeof t=="function")for(let s of p(t))!h.call(e,s)&&s!==i&&a(e,s,{get:()=>t[s],enumerable:!(d=l(t,s))||d.enumerable});return e};var x=e=>r(a({},"__esModule",{value:!0}),e);var o={};n(o,{CustomProgressEvent:()=>c});var c=class extends Event{type;detail;constructor(t,i){super(t),this.type=t,this.detail=i}};return x(o);})();
return ProgressEvents}));
+43
View File
@@ -0,0 +1,43 @@
/**
* Progress events are emitted during long running operations
*/
export interface ProgressEvent<T extends string = any, D = unknown> {
/**
* The event type
*/
type: T;
/**
* Context-specific event information
*/
detail: D;
}
/**
* An implementation of the ProgressEvent interface, this is essentially
* a typed `CustomEvent` with a `type` property that lets us disambiguate
* events passed to `progress` callbacks.
*/
export declare class CustomProgressEvent<D = unknown, T extends string = any> extends Event implements ProgressEvent<T, D> {
type: T;
detail: D;
constructor(type: T, detail?: D);
}
/**
* Define an `onProgress` callback that can be invoked with `ProgressEvent`s
*
* @example
*
* ```typescript
* type MyOperationProgressEvents =
* ProgressEvent<'operation:start'> |
* ProgressEvent<'operation:success', Result> |
* ProgressEvent<'operation:error', Error>
*
* export interface MyOperationOptions extends ProgressOptions<MyOperationProgressEvents> {
* // define options here
* }
* ```
*/
export interface ProgressOptions<Event extends ProgressEvent = any> {
onProgress?: (evt: Event) => void;
}
//# sourceMappingURL=index.d.ts.map
+1
View File
@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,aAAa,CAAC,CAAC,SAAS,MAAM,GAAG,GAAG,EAAE,CAAC,GAAG,OAAO;IAChE;;OAEG;IACH,IAAI,EAAE,CAAC,CAAA;IAEP;;OAEG;IACH,MAAM,EAAE,CAAC,CAAA;CACV;AAED;;;;GAIG;AACH,qBAAa,mBAAmB,CAAC,CAAC,GAAG,OAAO,EAAE,CAAC,SAAS,MAAM,GAAG,GAAG,CAAE,SAAQ,KAAM,YAAW,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC;IACzG,IAAI,EAAE,CAAC,CAAA;IACP,MAAM,EAAE,CAAC,CAAA;gBAEH,IAAI,EAAE,CAAC,EAAE,MAAM,CAAC,EAAE,CAAC;CAOjC;AAED;;;;;;;;;;;;;;;GAeG;AACH,MAAM,WAAW,eAAe,CAAC,KAAK,SAAS,aAAa,GAAG,GAAG;IAChE,UAAU,CAAC,EAAE,CAAC,GAAG,EAAE,KAAK,KAAK,IAAI,CAAA;CAClC"}
+16
View File
@@ -0,0 +1,16 @@
/**
* An implementation of the ProgressEvent interface, this is essentially
* a typed `CustomEvent` with a `type` property that lets us disambiguate
* events passed to `progress` callbacks.
*/
export class CustomProgressEvent extends Event {
type;
detail;
constructor(type, detail) {
super(type);
this.type = type;
// @ts-expect-error detail may be undefined
this.detail = detail;
}
}
//# sourceMappingURL=index.js.map
+1
View File
@@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAeA;;;;GAIG;AACH,MAAM,OAAO,mBAAyD,SAAQ,KAAK;IAC1E,IAAI,CAAG;IACP,MAAM,CAAG;IAEhB,YAAa,IAAO,EAAE,MAAU;QAC9B,KAAK,CAAC,IAAI,CAAC,CAAA;QAEX,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;QAChB,2CAA2C;QAC3C,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;CACF"}
+8
View File
@@ -0,0 +1,8 @@
{
"CustomProgressEvent": "https://achingbrain.github.io/progress-events/classes/CustomProgressEvent.html",
".:CustomProgressEvent": "https://achingbrain.github.io/progress-events/classes/CustomProgressEvent.html",
"ProgressEvent": "https://achingbrain.github.io/progress-events/interfaces/ProgressEvent.html",
".:ProgressEvent": "https://achingbrain.github.io/progress-events/interfaces/ProgressEvent.html",
"ProgressOptions": "https://achingbrain.github.io/progress-events/interfaces/ProgressOptions.html",
".:ProgressOptions": "https://achingbrain.github.io/progress-events/interfaces/ProgressOptions.html"
}