@xenosystem/blocks 0.4.1 → 0.5.0
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/auth/index.js +2 -0
- package/dist/chunk-2KG3PWR4.js +17 -0
- package/dist/chunk-DJJGZ6U4.js +215 -0
- package/dist/data/duckdb.d.ts +123 -0
- package/dist/data/duckdb.js +142 -0
- package/dist/data/index.d.ts +3255 -0
- package/dist/data/index.js +7185 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -1
- package/dist/ops/index.js +2 -1
- package/dist/time/index.d.ts +2261 -0
- package/dist/time/index.js +4658 -0
- package/dist/transport-B1cdciP8.d.ts +787 -0
- package/dist/trust/index.js +2 -0
- package/dist/{xterm-R3GIKSHA.js → xterm-R3ZKBPPC.js} +1 -0
- package/package.json +23 -3
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
* `/agent`. This root re-exports nothing on purpose: import the family you mount, so a product
|
|
5
5
|
* carries only it. Naming rule: `XENO PACKAGE NAMING - STANDARD.md`.
|
|
6
6
|
*/
|
|
7
|
-
declare const BLOCKS_VERSION = "0.
|
|
7
|
+
declare const BLOCKS_VERSION = "0.5.0";
|
|
8
8
|
|
|
9
9
|
export { BLOCKS_VERSION };
|
package/dist/index.js
CHANGED
package/dist/ops/index.js
CHANGED
|
@@ -6,6 +6,7 @@ import {
|
|
|
6
6
|
statusLabel,
|
|
7
7
|
terminalThemeVar
|
|
8
8
|
} from "../chunk-WE6A2DTY.js";
|
|
9
|
+
import "../chunk-2KG3PWR4.js";
|
|
9
10
|
|
|
10
11
|
// src/ops/console/panel.ts
|
|
11
12
|
import { createElement } from "react";
|
|
@@ -2709,7 +2710,7 @@ function createTerminalPanel(options = {}) {
|
|
|
2709
2710
|
});
|
|
2710
2711
|
let renderConfig = resolve(host.config ?? {});
|
|
2711
2712
|
const createEmulator = options.createEmulator ?? (async () => {
|
|
2712
|
-
const { createXtermEmulator } = await import("../xterm-
|
|
2713
|
+
const { createXtermEmulator } = await import("../xterm-R3ZKBPPC.js");
|
|
2713
2714
|
return createXtermEmulator({
|
|
2714
2715
|
fontSize: controller.getState().fontSize,
|
|
2715
2716
|
scrollback: controller.scrollback
|