@pexelize/react-editor 2.1.0 → 2.1.1
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.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -67,8 +67,8 @@ interface Module {
|
|
|
67
67
|
id: string;
|
|
68
68
|
/** Display name */
|
|
69
69
|
name: string;
|
|
70
|
-
/** Category for grouping */
|
|
71
|
-
category
|
|
70
|
+
/** Category for grouping (optional) */
|
|
71
|
+
category?: string;
|
|
72
72
|
/** Module mode - "email" or "web" (editor compatibility) */
|
|
73
73
|
mode: "email" | "web";
|
|
74
74
|
/** Module type - "standard" or "synced" (sync behavior) */
|
package/package.json
CHANGED