ixbrl-viewer 1.4.8__py3-none-any.whl → 1.4.10__py3-none-any.whl
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.
Potentially problematic release.
This version of ixbrl-viewer might be problematic. Click here for more details.
- iXBRLViewerPlugin/__init__.py +3 -0
- iXBRLViewerPlugin/_version.py +2 -2
- iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js +1 -1
- iXBRLViewerPlugin/viewer/src/js/aspect.js +1 -1
- iXBRLViewerPlugin/viewer/src/js/aspect.test.js +2 -1
- iXBRLViewerPlugin/viewer/src/js/chart.js +1 -1
- iXBRLViewerPlugin/viewer/src/js/chart.test.js +2 -2
- iXBRLViewerPlugin/viewer/src/js/concept.test.js +2 -2
- iXBRLViewerPlugin/viewer/src/js/fact.js +11 -24
- iXBRLViewerPlugin/viewer/src/js/fact.test.js +6 -11
- iXBRLViewerPlugin/viewer/src/js/factset.test.js +2 -4
- iXBRLViewerPlugin/viewer/src/js/inspector.test.js +2 -3
- iXBRLViewerPlugin/viewer/src/js/outline.test.js +3 -3
- iXBRLViewerPlugin/viewer/src/js/report.js +7 -3
- iXBRLViewerPlugin/viewer/src/js/report.test.js +2 -1
- iXBRLViewerPlugin/viewer/src/js/reportset.test.js +3 -3
- iXBRLViewerPlugin/viewer/src/js/unit.js +15 -33
- iXBRLViewerPlugin/viewer/src/js/unit.test.js +17 -24
- iXBRLViewerPlugin/viewer/src/js/util.js +18 -0
- {ixbrl_viewer-1.4.8.dist-info → ixbrl_viewer-1.4.10.dist-info}/METADATA +6 -2
- {ixbrl_viewer-1.4.8.dist-info → ixbrl_viewer-1.4.10.dist-info}/RECORD +26 -26
- {ixbrl_viewer-1.4.8.dist-info → ixbrl_viewer-1.4.10.dist-info}/WHEEL +1 -1
- {ixbrl_viewer-1.4.8.dist-info → ixbrl_viewer-1.4.10.dist-info}/LICENSE +0 -0
- {ixbrl_viewer-1.4.8.dist-info → ixbrl_viewer-1.4.10.dist-info}/NOTICE +0 -0
- {ixbrl_viewer-1.4.8.dist-info → ixbrl_viewer-1.4.10.dist-info}/entry_points.txt +0 -0
- {ixbrl_viewer-1.4.8.dist-info → ixbrl_viewer-1.4.10.dist-info}/top_level.txt +0 -0
iXBRLViewerPlugin/__init__.py
CHANGED
|
@@ -307,6 +307,9 @@ def load_plugin_url():
|
|
|
307
307
|
|
|
308
308
|
__pluginInfo__ = {
|
|
309
309
|
'name': 'ixbrl-viewer',
|
|
310
|
+
'aliases': [
|
|
311
|
+
'iXBRLViewerPlugin',
|
|
312
|
+
],
|
|
310
313
|
'version': '0.1',
|
|
311
314
|
'description': "iXBRL Viewer creator",
|
|
312
315
|
'license': 'License :: OSI Approved :: Apache License, Version 2.0 (Apache-2.0)',
|
iXBRLViewerPlugin/_version.py
CHANGED