@xyd-js/plugins 0.0.0-build-24d088f-20250815234949 → 0.0.0-build-5a844b8-20250816212844
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 +3 -3
- package/dist/index.d.ts +18 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# @xyd-js/plugins
|
|
2
2
|
|
|
3
|
-
## 0.0.0-build-
|
|
3
|
+
## 0.0.0-build-5a844b8-20250816212844
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- update all packages
|
|
8
8
|
- Updated dependencies
|
|
9
|
-
- @xyd-js/framework@0.0.0-build-
|
|
10
|
-
- @xyd-js/uniform@0.0.0-build-
|
|
9
|
+
- @xyd-js/framework@0.0.0-build-5a844b8-20250816212844
|
|
10
|
+
- @xyd-js/uniform@0.0.0-build-5a844b8-20250816212844
|
package/dist/index.d.ts
CHANGED
|
@@ -752,11 +752,29 @@ interface Integrations {
|
|
|
752
752
|
* Diagrams configuration
|
|
753
753
|
*/
|
|
754
754
|
diagrams?: boolean;
|
|
755
|
+
/**
|
|
756
|
+
* Edit link configuration
|
|
757
|
+
*/
|
|
758
|
+
editLink?: EditLink;
|
|
755
759
|
/**
|
|
756
760
|
* Custom apps directory.
|
|
757
761
|
*/
|
|
758
762
|
[".apps"]?: AppsDirectory;
|
|
759
763
|
}
|
|
764
|
+
interface EditLink {
|
|
765
|
+
/**
|
|
766
|
+
* The base URL for the edit link
|
|
767
|
+
*/
|
|
768
|
+
baseUrl: string;
|
|
769
|
+
/**
|
|
770
|
+
* The title for the edit link
|
|
771
|
+
*/
|
|
772
|
+
title?: string;
|
|
773
|
+
/**
|
|
774
|
+
* The icon for the edit link
|
|
775
|
+
*/
|
|
776
|
+
icon?: string;
|
|
777
|
+
}
|
|
760
778
|
/**
|
|
761
779
|
* Analytics configuration
|
|
762
780
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyd-js/plugins",
|
|
3
|
-
"version": "0.0.0-build-
|
|
3
|
+
"version": "0.0.0-build-5a844b8-20250816212844",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@xyd-js/uniform": "0.0.0-build-
|
|
14
|
+
"@xyd-js/uniform": "0.0.0-build-5a844b8-20250816212844"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@xyd-js/framework": "0.0.0-build-
|
|
17
|
+
"@xyd-js/framework": "0.0.0-build-5a844b8-20250816212844"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@vitest/coverage-v8": "^1.3.1",
|