@notionhq/custom-blocks-dev-shell 0.1.39 → 0.1.40
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/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Workers local shell</title>
|
|
7
|
-
<script type="module" crossorigin src="/assets/index-
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-WI6xPlZN.js"></script>
|
|
8
8
|
<link rel="stylesheet" crossorigin href="/assets/index-DpKdfNws.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
package/docs/bindings.md
CHANGED
|
@@ -14,12 +14,13 @@ are the ones in your worker's `src/data/*.json`
|
|
|
14
14
|
(format: [`data-sources.md`](./data-sources.md)); the toolbar shows a chip
|
|
15
15
|
per slot with its current binding state.
|
|
16
16
|
|
|
17
|
-
Picking a source auto-maps its properties
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
17
|
+
Picking a source auto-maps its properties. For each manifest property, only
|
|
18
|
+
schema properties of the same type are candidates. A property is a candidate
|
|
19
|
+
on an exact ID/key match (no trim or case folding) or a display name match
|
|
20
|
+
after trim and lowercasing. Bind when there is exactly one candidate;
|
|
21
|
+
anything ambiguous or absent stays unmapped. Re-picking a source resets the
|
|
22
|
+
slot's mappings and re-runs auto-map. Manual mapping offers only source
|
|
23
|
+
properties of exactly the required type — no coercion.
|
|
23
24
|
|
|
24
25
|
## Initialization & binding edits
|
|
25
26
|
|