@paged-media/plugin-api 0.2.1-canary.0 → 0.2.2-canary.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/editor.d.ts +4 -0
- package/package.json +1 -1
package/dist/editor.d.ts
CHANGED
|
@@ -106,6 +106,10 @@ export interface ToolContribution {
|
|
|
106
106
|
group: ToolGroupId;
|
|
107
107
|
section: ToolSectionId;
|
|
108
108
|
order?: number;
|
|
109
|
+
/** Slot position hint within the section (B-14): the rail orders
|
|
110
|
+
* slots by the minimum slotOrder across a group's members; absent
|
|
111
|
+
* = first-seen registration order (late bundles trail). */
|
|
112
|
+
slotOrder?: number;
|
|
109
113
|
isGroupDefault?: boolean;
|
|
110
114
|
cursor?: CursorSpec;
|
|
111
115
|
/** Handler factory the host mounts when the tool activates. Absent
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paged-media/plugin-api",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2-canary.0",
|
|
4
4
|
"description": "The Paged plugin contract: manifest, bundle lifecycle, the BundleHost surface, and the contribution + engine wire types. Type-only.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|