@radishland/runtime 0.0.2 → 0.0.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.
@@ -125,7 +125,6 @@ setTimeout(() => {
125
125
  detail: {
126
126
  property,
127
127
  identifier,
128
- handled: false,
129
128
  },
130
129
  });
131
130
  entry.dispatchEvent(bindRequest);
package/client/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export { HandlerRegistry } from "./handler-registry.ts";
2
- export * from "./reactivity.ts";
3
- export * from "./handlers.ts";
1
+ export { HandlerRegistry } from "./handler-registry.d.ts";
2
+ export * from "./reactivity.d.ts";
3
+ export * from "./handlers.d.ts";
package/client/types.d.ts CHANGED
@@ -34,7 +34,6 @@ type BindableProperty = "checked" | "value";
34
34
  export type BindRequestDetail = {
35
35
  property: BindableProperty;
36
36
  identifier: string;
37
- handled: boolean;
38
37
  };
39
38
 
40
39
  export interface AutonomousCustomElement {
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@radishland/runtime",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "description": "The Radish runtime",
6
6
  "author": "Frédéric Crozatier",
7
7
  "license": "MIT",
8
8
  "scripts": {
9
9
  "build": "tsc",
10
- "prepublishOnly": "pnpm build && cp src/types.d.ts client/"
10
+ "prepublishOnly": "pnpm build && deno run -A dts-path-rewriting.ts && cp src/types.d.ts client/"
11
11
  },
12
12
  "main": "./client/index.js",
13
13
  "exports": {