@memoryblock/web 0.1.2 → 0.1.3

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 memoryblock
3
+ Copyright (c) 2026-present memoryblock
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
20
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
21
+ SOFTWARE.
package/README.md CHANGED
@@ -16,6 +16,7 @@ This package handles:
16
16
  * [**memoryblock**](https://www.npmjs.com/package/memoryblock) - The core engine interface and types.
17
17
  * [**@memoryblock/daemon**](https://www.npmjs.com/package/@memoryblock/daemon) - Background daemon manager.
18
18
  * [**@memoryblock/api**](https://www.npmjs.com/package/@memoryblock/api) - Core REST and WebSocket API server.
19
+ * [**@memoryblock/cli**](https://www.npmjs.com/package/@memoryblock/cli) - Command-line interface.
19
20
 
20
21
  **Integrations & Tooling**
21
22
  * [**@memoryblock/adapters**](https://www.npmjs.com/package/@memoryblock/adapters) - LLM adapters (OpenAI, Anthropic, Bedrock, etc).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memoryblock/web",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Front-end dashboard and Web UI for memoryblock.",
5
5
  "files": [
6
6
  "public/"
@@ -107,4 +107,4 @@ function formatDate(isoString) {
107
107
  const d = new Date(isoString);
108
108
  return d.toLocaleDateString(undefined, { year: 'numeric', month: 'short', day: 'numeric' })
109
109
  + ' ' + d.toLocaleTimeString(undefined, { hour: '2-digit', minute: '2-digit' });
110
- }
110
+ }
@@ -67,4 +67,4 @@ export async function tryAutoAuth() {
67
67
  } catch {
68
68
  return false;
69
69
  }
70
- }
70
+ }
@@ -441,4 +441,4 @@ function formatTokens(n) {
441
441
 
442
442
  function escapeHtml(str) {
443
443
  return str.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;');
444
- }
444
+ }
@@ -391,4 +391,4 @@ function escapeHtml(str) {
391
391
  return str.replace(/[&<>'"]/g, tag => ({
392
392
  '&': '&amp;', '<': '&lt;', '>': '&gt;', "'": '&#39;', '"': '&quot;'
393
393
  }[tag] || tag));
394
- }
394
+ }
@@ -105,4 +105,4 @@ export function showToast(message, duration = 3000) {
105
105
  toast.textContent = message;
106
106
  toast.classList.add('visible');
107
107
  setTimeout(() => toast.classList.remove('visible'), duration);
108
- }
108
+ }
@@ -360,4 +360,4 @@ function renderPluginFields(plugin) {
360
360
  <div class="plugin-settings-actions">
361
361
  <button class="btn-small plugin-save" data-id="${plugin.id}">save</button>
362
362
  </div>`;
363
- }
363
+ }
@@ -298,4 +298,4 @@ export function renderSetup(container, { api, onComplete }) {
298
298
  }
299
299
 
300
300
  render();
301
- }
301
+ }
package/public/index.html CHANGED
@@ -17,4 +17,4 @@
17
17
  <div id="app"></div>
18
18
  <script type="module" src="app.js"></script>
19
19
  </body>
20
- </html>
20
+ </html>
package/public/style.css CHANGED
@@ -1867,5 +1867,4 @@ input:focus, select:focus, textarea:focus { border-color: var(--accent); box-sha
1867
1867
  .chat-input-area.disabled-input textarea {
1868
1868
  cursor: not-allowed;
1869
1869
  background: var(--bg);
1870
- }
1871
-
1870
+ }