senangwebs-tour 1.0.7 → 1.0.9
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/README.md +2 -1
- package/dist/swt-editor.js +445 -37
- package/dist/swt-editor.js.map +1 -1
- package/dist/swt-editor.min.js +1 -1
- package/package.json +1 -1
- package/src/editor/js/editor.js +95 -2
- package/src/editor/js/event-emitter.js +257 -0
- package/src/editor/js/export-manager.js +47 -1
- package/src/editor/js/ui-controller.js +18 -2
package/README.md
CHANGED
|
@@ -585,7 +585,8 @@ setTimeout(() => {
|
|
|
585
585
|
- **ES6 Module Architecture** - Six-controller pattern with clear separation
|
|
586
586
|
- **Sourcemaps** - Debug original ES6 source in browser DevTools
|
|
587
587
|
- **Two Init Modes** - Declarative (HTML) or Programmatic (JS API)
|
|
588
|
-
- **Event System** -
|
|
588
|
+
- **Comprehensive Event System** - 30+ events including unified `change` event for any modification
|
|
589
|
+
- **Load/Export API** - `generateJSON()` and `loadJSON()` for round-trip data management
|
|
589
590
|
- **Global Access** - All classes attached to `window` for console debugging
|
|
590
591
|
|
|
591
592
|
## Browser Compatibility
|