@pie-players/pie-assessment-toolkit 0.3.69 → 0.3.71
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 +3 -0
- package/dist/components/ItemToolBar.custom-element.js +1 -1
- package/dist/components/PieAssessmentToolkit.custom-element.js +7 -7
- package/dist/components/SectionToolBar.custom-element.js +1 -1
- package/dist/components/chunks/ItemToolBar-byq80z42.js +40 -0
- package/dist/components/chunks/ItemToolBar-d36g3aw4.js +49 -0
- package/dist/services/HighlightCoordinator.d.ts +5 -1
- package/dist/services/HighlightCoordinator.js +5 -8
- package/dist/services/ToolRegistry.d.ts +14 -0
- package/dist/services/ToolkitCoordinator.d.ts +23 -13
- package/dist/services/ToolkitCoordinator.js +373 -66
- package/dist/services/tool-providers/CortexToolProvider.d.ts +2 -7
- package/dist/services/tool-providers/DesmosToolProvider.d.ts +2 -7
- package/dist/services/tool-providers/DesmosToolProvider.js +1 -1
- package/dist/services/tool-providers/GeoGebraToolProvider.d.ts +2 -7
- package/dist/services/tool-providers/LazyCalculatorToolProvider.d.ts +1 -1
- package/dist/services/tool-request.d.ts +1 -0
- package/dist/services/tool-request.js +4 -0
- package/package.json +16 -16
- package/dist/components/chunks/ItemToolBar-pe5szfyx.js +0 -46
- package/dist/components/chunks/ItemToolBar-rd7te9r0.js +0 -51
package/README.md
CHANGED
|
@@ -911,6 +911,9 @@ const services = coordinator.getServiceBundle();
|
|
|
911
911
|
coordinator.isToolEnabled('textToSpeech'); // Check if tool is enabled
|
|
912
912
|
coordinator.getToolConfig('textToSpeech'); // Get tool-specific config
|
|
913
913
|
coordinator.updateToolConfig('textToSpeech', { rate: 1.5 }); // Update tool config
|
|
914
|
+
|
|
915
|
+
// Final teardown by the owner that constructed the coordinator
|
|
916
|
+
await coordinator.dispose();
|
|
914
917
|
```
|
|
915
918
|
|
|
916
919
|
### Direct Service Access
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{a}from"./chunks/ItemToolBar-
|
|
1
|
+
import{a}from"./chunks/ItemToolBar-byq80z42.js";import"./chunks/ItemToolBar-d36g3aw4.js";export{a as default};
|