ixbrl-viewer 1.4.4__py3-none-any.whl → 1.4.6__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 +3 -2
- iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js +1 -1
- iXBRLViewerPlugin/viewer/src/js/ixbrlviewer.js +282 -267
- iXBRLViewerPlugin/viewer/src/js/report.js +197 -195
- iXBRLViewerPlugin/viewer/src/js/reportset.js +4 -5
- {ixbrl_viewer-1.4.4.dist-info → ixbrl_viewer-1.4.6.dist-info}/METADATA +52 -14
- {ixbrl_viewer-1.4.4.dist-info → ixbrl_viewer-1.4.6.dist-info}/RECORD +14 -14
- {ixbrl_viewer-1.4.4.dist-info → ixbrl_viewer-1.4.6.dist-info}/WHEEL +1 -1
- tests/unit_tests/iXBRLViewerPlugin/mock_arelle.py +1 -0
- {ixbrl_viewer-1.4.4.dist-info → ixbrl_viewer-1.4.6.dist-info}/LICENSE +0 -0
- {ixbrl_viewer-1.4.4.dist-info → ixbrl_viewer-1.4.6.dist-info}/NOTICE +0 -0
- {ixbrl_viewer-1.4.4.dist-info → ixbrl_viewer-1.4.6.dist-info}/entry_points.txt +0 -0
- {ixbrl_viewer-1.4.4.dist-info → ixbrl_viewer-1.4.6.dist-info}/top_level.txt +0 -0
iXBRLViewerPlugin/_version.py
CHANGED
iXBRLViewerPlugin/iXBRLViewer.py
CHANGED
|
@@ -15,10 +15,11 @@ from copy import deepcopy
|
|
|
15
15
|
from typing import Optional, Union
|
|
16
16
|
|
|
17
17
|
import pycountry
|
|
18
|
-
from arelle import
|
|
18
|
+
from arelle import XbrlConst
|
|
19
19
|
from arelle.ModelDocument import Type
|
|
20
20
|
from arelle.ModelRelationshipSet import ModelRelationshipSet
|
|
21
21
|
from arelle.ModelValue import QName, INVALIDixVALUE
|
|
22
|
+
from arelle.ModelXbrl import ModelXbrl
|
|
22
23
|
from arelle.UrlUtil import isHttpUrl
|
|
23
24
|
from arelle.ValidateXbrlCalcs import inferredDecimals
|
|
24
25
|
from lxml import etree
|
|
@@ -82,7 +83,7 @@ class IXBRLViewerBuilderError(Exception):
|
|
|
82
83
|
|
|
83
84
|
class IXBRLViewerBuilder:
|
|
84
85
|
|
|
85
|
-
def __init__(self, reports:
|
|
86
|
+
def __init__(self, reports: list[ModelXbrl], basenameSuffix: str = ''):
|
|
86
87
|
self.nsmap = NamespaceMap()
|
|
87
88
|
self.roleMap = NamespaceMap()
|
|
88
89
|
self.reports = reports
|