ixbrl-viewer 1.4.27__py3-none-any.whl → 1.4.29__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/_version.py +2 -2
- iXBRLViewerPlugin/iXBRLViewer.py +2 -1
- iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js +1 -1
- iXBRLViewerPlugin/viewer/src/i18n/en/translation.json +1 -0
- iXBRLViewerPlugin/viewer/src/js/calculation.js +45 -32
- iXBRLViewerPlugin/viewer/src/js/inspector.js +6 -1
- iXBRLViewerPlugin/viewer/src/js/util.js +3 -0
- {ixbrl_viewer-1.4.27.dist-info → ixbrl_viewer-1.4.29.dist-info}/METADATA +5 -5
- {ixbrl_viewer-1.4.27.dist-info → ixbrl_viewer-1.4.29.dist-info}/RECORD +14 -14
- {ixbrl_viewer-1.4.27.dist-info → ixbrl_viewer-1.4.29.dist-info}/LICENSE +0 -0
- {ixbrl_viewer-1.4.27.dist-info → ixbrl_viewer-1.4.29.dist-info}/NOTICE +0 -0
- {ixbrl_viewer-1.4.27.dist-info → ixbrl_viewer-1.4.29.dist-info}/WHEEL +0 -0
- {ixbrl_viewer-1.4.27.dist-info → ixbrl_viewer-1.4.29.dist-info}/entry_points.txt +0 -0
- {ixbrl_viewer-1.4.27.dist-info → ixbrl_viewer-1.4.29.dist-info}/top_level.txt +0 -0
iXBRLViewerPlugin/_version.py
CHANGED
iXBRLViewerPlugin/iXBRLViewer.py
CHANGED
|
@@ -190,7 +190,7 @@ class IXBRLViewerBuilder:
|
|
|
190
190
|
|
|
191
191
|
for baseSetKey, baseSetModelLinks in report.baseSets.items():
|
|
192
192
|
arcrole, ELR, linkqname, arcqname = baseSetKey
|
|
193
|
-
if arcrole in (XbrlConst.summationItem, WIDER_NARROWER_ARCROLE, XbrlConst.parentChild, XbrlConst.dimensionDefault) and ELR is not None:
|
|
193
|
+
if arcrole in (XbrlConst.summationItem, XbrlConst.summationItem11, WIDER_NARROWER_ARCROLE, XbrlConst.parentChild, XbrlConst.dimensionDefault) and ELR is not None:
|
|
194
194
|
self.addELR(report, ELR)
|
|
195
195
|
rr = dict()
|
|
196
196
|
relSet = report.relationshipSet(arcrole, ELR)
|
|
@@ -395,6 +395,7 @@ class IXBRLViewerBuilder:
|
|
|
395
395
|
self.roleMap.getPrefix(XbrlConst.standardLabel, "std")
|
|
396
396
|
self.roleMap.getPrefix(XbrlConst.documentationLabel, "doc")
|
|
397
397
|
self.roleMap.getPrefix(XbrlConst.summationItem, "calc")
|
|
398
|
+
self.roleMap.getPrefix(XbrlConst.summationItem11, "calc11")
|
|
398
399
|
self.roleMap.getPrefix(XbrlConst.parentChild, "pres")
|
|
399
400
|
self.roleMap.getPrefix(XbrlConst.dimensionDefault, "d-d")
|
|
400
401
|
self.roleMap.getPrefix(WIDER_NARROWER_ARCROLE, "w-n")
|