@netless/forge-slide 0.1.1-alpha.6 → 0.1.1-alpha.7
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/Slide.d.ts +1 -0
- package/dist/Slide.d.ts.map +1 -1
- package/dist/SlideApplication.d.ts.map +1 -1
- package/dist/index.esm.js +6 -0
- package/dist/index.esm.js.map +2 -2
- package/dist/index.js +6 -0
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
- package/src/Slide.ts +1 -0
- package/src/SlideApplication.ts +5 -0
package/dist/index.js
CHANGED
|
@@ -66595,6 +66595,7 @@ var SlideForge = class extends import_eventemitter314.default {
|
|
|
66595
66595
|
view;
|
|
66596
66596
|
permissions;
|
|
66597
66597
|
footView;
|
|
66598
|
+
sideBarView;
|
|
66598
66599
|
/**
|
|
66599
66600
|
* 当前页面索引, 从 0 开始
|
|
66600
66601
|
*/
|
|
@@ -67098,6 +67099,11 @@ var SlideApplication = class extends import_forge_room4.AbstractApplication {
|
|
|
67098
67099
|
return that.footer.root;
|
|
67099
67100
|
}
|
|
67100
67101
|
});
|
|
67102
|
+
Object.defineProperty(this.emitter, "sidebarView", {
|
|
67103
|
+
get() {
|
|
67104
|
+
return that.sideBar.root;
|
|
67105
|
+
}
|
|
67106
|
+
});
|
|
67101
67107
|
Object.defineProperty(this.emitter, "pageIndex", {
|
|
67102
67108
|
get() {
|
|
67103
67109
|
return that.currentSlideIndex;
|