dcp-client 5.0.4 → 5.1.1
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/.gitattributes +2 -0
- package/assets/dcp-client.css +16 -0
- package/assets/lucide/bug.svg +1 -0
- package/assets/lucide/circle-alert.svg +1 -0
- package/assets/lucide/hard-drive-upload.svg +1 -0
- package/assets/lucide/triangle-alert.svg +1 -0
- package/assets/x.svg +1 -0
- package/bin/dcp-config-value +2 -2
- package/bin/dcp-module-bundler +149 -0
- package/build/bundle +1 -1
- package/dcp-client.js +26 -13
- package/dist/dcp-client-bundle.js +1 -1
- package/dist/dcp-client-bundle.js.map +1 -1
- package/examples/nodejs/simple-job.js +3 -0
- package/index.js +359 -224
- package/index.py +1 -0
- package/lib/standaloneWorker.js +38 -3
- package/ns-map.js +1 -0
- package/os-basic.py +13 -0
- package/package.json +8 -3
- package/test-helpers/attempt-to-fetch.js +2 -2
- package/templates/alert-modal.html +0 -26
- package/templates/confirm-modal.html +0 -27
- package/templates/dcp-modal.css +0 -365
- package/templates/keystore-file-modal.html +0 -22
- package/templates/oauth-login-modal.html +0 -18
- package/templates/password-creation-modal.html +0 -29
- package/templates/password-entry-modal.html +0 -24
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<!-- DCP Keystore Password Modal -->
|
|
2
|
-
<div class="dcp-modal dcp-slide" id="dcp-modal-password" aria-hidden="true">
|
|
3
|
-
<div class="dcp-modal-overlay" tabindex="-1">
|
|
4
|
-
<div class="dcp-modal-container" role="dialog" aria-modal="true" aria-labelledby="dcp-modal-password-title">
|
|
5
|
-
<form id="dcp-modal-password-form" method="dialog"></form>
|
|
6
|
-
<div class="dcp-modal-header">
|
|
7
|
-
<a class="dcp-modal-logo-link" href="https://distributed.computer">
|
|
8
|
-
<img id="dcp-modal-logo" src="https://secure.distributed.computer/assets/dcp-logo-5db53cc2b8186a6c250379b20bcb5ed4926c433903a3441234f09ea40b3cea65.png"/>
|
|
9
|
-
</a>
|
|
10
|
-
</div>
|
|
11
|
-
<main class="dcp-modal-content" id="dcp-modal-password-content">
|
|
12
|
-
<h2 class="dcp-modal-title" id="dcp-modal-password-title">Passphrase Required</h2>
|
|
13
|
-
<p id="dcp-modal-password-prompt"></p>
|
|
14
|
-
<input form="dcp-modal-password-form" type="text" autocomplete="username" id='dcp-modal-password-hidden-username' style="display:none">
|
|
15
|
-
<div class="inlineinput">
|
|
16
|
-
<label>Passphrase</label>
|
|
17
|
-
<input form="dcp-modal-password-form" type="password" autocomplete="current-password" id="dcp-modal-password-input">
|
|
18
|
-
</div>
|
|
19
|
-
<button form="dcp-modal-password-form" id="dcp-modal-password-submit" type="submit">Submit</button>
|
|
20
|
-
</main>
|
|
21
|
-
</div>
|
|
22
|
-
</div>
|
|
23
|
-
</div>
|
|
24
|
-
|