khiops-visualization 11.14.2 → 11.14.4
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 -2
- package/khiops-webcomponents.bundle.js +2 -2
- package/main.js +1 -1
- package/package.json +1 -1
- package/polyfills.js +1 -1
package/README.md
CHANGED
|
@@ -174,6 +174,7 @@ The components can be customized using the `setConfig()` method with the followi
|
|
|
174
174
|
| -------------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
|
|
175
175
|
| showProjectTab | boolean | Show or hide project's tab | true |
|
|
176
176
|
| showLogo | boolean | Show or hide header's logo | true |
|
|
177
|
+
| selectTabName | string | Select the active tab on load. Accepted values for visualization: `PREPARATION`, `TEXT_PREPARATION`, `TREE_PREPARATION`, `PREPARATION_2D`, `MODELING`, `EVALUATION`, `PROJECT`. Accepted values for covisualization: `AXIS`, `CONTEXT`, `PROJECT` | |
|
|
177
178
|
| appSource | string | Specify app source for metrics | WEB |
|
|
178
179
|
| trackerId | string | Matomo tracker id | |
|
|
179
180
|
| onFileOpen | Callback | Callback when a file is open | |
|
|
@@ -186,8 +187,8 @@ The components can be customized using the `setConfig()` method with the followi
|
|
|
186
187
|
|
|
187
188
|
The components expect specific data structures. TypeScript interfaces are available for reference:
|
|
188
189
|
|
|
189
|
-
- 📊 **VisualizationDatas**: [View Interface](https://github.com/KhiopsML/khiops-visualization/blob/
|
|
190
|
-
- 🔗 **CovisualizationDatas**: [View Interface](https://github.com/KhiopsML/khiops-visualization/blob/
|
|
190
|
+
- 📊 **VisualizationDatas**: [View Interface](https://github.com/KhiopsML/khiops-visualization/blob/main/src/app/khiops-visualization/interfaces/app-datas.interface.ts)
|
|
191
|
+
- 🔗 **CovisualizationDatas**: [View Interface](https://github.com/KhiopsML/khiops-visualization/blob/main/src/app/khiops-covisualization/interfaces/app-datas.interface.ts)
|
|
191
192
|
|
|
192
193
|
> 💡 **Tip**: Use these TypeScript interfaces in your project for better type safety and IntelliSense support.
|
|
193
194
|
|