@xyd-js/core 0.0.0-build-87368f8-20251101145203 → 0.0.0-build-c7bdbdb-20251129215505
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/CHANGELOG.md +1 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
- package/src/types/settings.ts +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1221,7 +1221,9 @@ interface Integrations {
|
|
|
1221
1221
|
/**
|
|
1222
1222
|
* Diagrams configuration
|
|
1223
1223
|
*/
|
|
1224
|
-
diagrams?: boolean
|
|
1224
|
+
diagrams?: boolean | {
|
|
1225
|
+
strategy?: 'img-png' | 'img-svg' | 'inline-svg' | 'pre-mermaid';
|
|
1226
|
+
};
|
|
1225
1227
|
/**
|
|
1226
1228
|
* Edit link configuration
|
|
1227
1229
|
*/
|
package/package.json
CHANGED
package/src/types/settings.ts
CHANGED