ixbrl-viewer 1.4.17__py3-none-any.whl → 1.4.18__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/html/inspector.html +5 -2
- iXBRLViewerPlugin/viewer/src/i18n/en/translation.json +2 -2
- iXBRLViewerPlugin/viewer/src/i18n/es/translation.json +2 -2
- iXBRLViewerPlugin/viewer/src/js/fact.js +4 -0
- iXBRLViewerPlugin/viewer/src/js/inspector.js +17 -3
- iXBRLViewerPlugin/viewer/src/js/report.js +4 -0
- iXBRLViewerPlugin/viewer/src/less/block-list.less +5 -0
- iXBRLViewerPlugin/viewer/src/less/components.less +3 -1
- iXBRLViewerPlugin/viewer/src/less/inspector.less +10 -4
- {ixbrl_viewer-1.4.17.dist-info → ixbrl_viewer-1.4.18.dist-info}/METADATA +2 -2
- {ixbrl_viewer-1.4.17.dist-info → ixbrl_viewer-1.4.18.dist-info}/RECORD +20 -20
- tests/unit_tests/iXBRLViewerPlugin/test_iXBRLViewer.py +11 -6
- {ixbrl_viewer-1.4.17.dist-info → ixbrl_viewer-1.4.18.dist-info}/LICENSE +0 -0
- {ixbrl_viewer-1.4.17.dist-info → ixbrl_viewer-1.4.18.dist-info}/NOTICE +0 -0
- {ixbrl_viewer-1.4.17.dist-info → ixbrl_viewer-1.4.18.dist-info}/WHEEL +0 -0
- {ixbrl_viewer-1.4.17.dist-info → ixbrl_viewer-1.4.18.dist-info}/entry_points.txt +0 -0
- {ixbrl_viewer-1.4.17.dist-info → ixbrl_viewer-1.4.18.dist-info}/top_level.txt +0 -0
|
@@ -183,8 +183,11 @@ See COPYRIGHT.md for copyright information
|
|
|
183
183
|
<p class="title" data-i18n="inspector.noFactSelected">No Fact Selected</p>
|
|
184
184
|
</div>
|
|
185
185
|
<div class="fact-selected-only">
|
|
186
|
-
<div class="
|
|
187
|
-
|
|
186
|
+
<div class="tags">
|
|
187
|
+
<div class="target-document"></div>
|
|
188
|
+
<div class="hidden-fact-tag" data-i18n="inspector.hiddenFact">Hidden Fact</div>
|
|
189
|
+
<div class="html-hidden-fact-tag" data-i18n="inspector.concealedFact">Concealed Fact</div>
|
|
190
|
+
</div>
|
|
188
191
|
<div class="collapsible-section">
|
|
189
192
|
<div class="fact-inspector collapsible-body">
|
|
190
193
|
</div>
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"calculation": {
|
|
3
3
|
"calculated-total": "Calculated",
|
|
4
|
-
"calculations11": "Calculations v1.1",
|
|
5
4
|
"concept": "Concept",
|
|
6
5
|
"consistent-duplicate-facts-present": "{{nfacts}} consistent duplicate facts present",
|
|
7
6
|
"inconsistent-duplicate-facts-present": "{{nfacts}} inconsistent duplicate facts present",
|
|
8
7
|
"maximum": "Maximum",
|
|
9
8
|
"mininum": "Minimum",
|
|
10
9
|
"reported-total": "Reported",
|
|
11
|
-
"reported-value": "Reported value"
|
|
10
|
+
"reported-value": "Reported value",
|
|
11
|
+
"useCalculations11": "Use Calculations v1.1"
|
|
12
12
|
},
|
|
13
13
|
"common": {
|
|
14
14
|
"accuracyInfinite": "Infinite precision",
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"calculation": {
|
|
3
3
|
"calculated-total": "",
|
|
4
|
-
"calculations11": "",
|
|
5
4
|
"concept": "",
|
|
6
5
|
"consistent-duplicate-facts-present": "",
|
|
7
6
|
"inconsistent-duplicate-facts-present": "",
|
|
8
7
|
"maximum": "",
|
|
9
8
|
"mininum": "",
|
|
10
9
|
"reported-total": "",
|
|
11
|
-
"reported-value": ""
|
|
10
|
+
"reported-value": "",
|
|
11
|
+
"useCalculations11": ""
|
|
12
12
|
},
|
|
13
13
|
"common": {
|
|
14
14
|
"accuracyInfinite": "Precisió infinita",
|
|
@@ -210,6 +210,7 @@ export class Inspector {
|
|
|
210
210
|
if (this._reportSet.filingDocuments()) {
|
|
211
211
|
this._optionsMenu.addDownloadButton("Download filing documents", this._reportSet.filingDocuments())
|
|
212
212
|
}
|
|
213
|
+
this._optionsMenu.addCheckboxItem(i18next.t("calculation.useCalculations11"), (useCalc11) => this.setCalculationMode(useCalc11), "calculation-mode", "select-language", this._useCalc11);
|
|
213
214
|
}
|
|
214
215
|
this._iv.callPluginMethod("extendDisplayOptionsMenu", this._optionsMenu);
|
|
215
216
|
}
|
|
@@ -218,7 +219,6 @@ export class Inspector {
|
|
|
218
219
|
const iv = this._iv;
|
|
219
220
|
this._toolbarMenu.reset();
|
|
220
221
|
this._toolbarMenu.addCheckboxItem(i18next.t("toolbar.xbrlElements"), (checked) => this.highlightAllTags(checked), "highlight-tags", null, this._iv.options.highlightTagsOnStartup);
|
|
221
|
-
this._toolbarMenu.addCheckboxItem(i18next.t("calculation.calculations11"), (useCalc11) => this.setCalculationMode(useCalc11), "calculation-mode", "select-language", this._useCalc11);
|
|
222
222
|
if (iv.isReviewModeEnabled()) {
|
|
223
223
|
this._toolbarMenu.addCheckboxItem("Untagged Numbers", function (checked) {
|
|
224
224
|
const body = iv.viewer.contents().find("body");
|
|
@@ -313,15 +313,21 @@ export class Inspector {
|
|
|
313
313
|
.appendTo(row);
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
|
+
const tags = $("<div></div>").addClass("tags").appendTo(row);
|
|
317
|
+
if (f.targetDocument() !== null) {
|
|
318
|
+
$('<div class="hidden"></div>')
|
|
319
|
+
.text(f.targetDocument())
|
|
320
|
+
.appendTo(tags);
|
|
321
|
+
}
|
|
316
322
|
if (f.isHidden()) {
|
|
317
323
|
$('<div class="hidden"></div>')
|
|
318
324
|
.text(i18next.t("search.hiddenFact"))
|
|
319
|
-
.appendTo(
|
|
325
|
+
.appendTo(tags);
|
|
320
326
|
}
|
|
321
327
|
else if (f.isHTMLHidden()) {
|
|
322
328
|
$('<div class="hidden"></div>')
|
|
323
329
|
.text(i18next.t("search.concealedFact"))
|
|
324
|
-
.appendTo(
|
|
330
|
+
.appendTo(tags);
|
|
325
331
|
}
|
|
326
332
|
return row;
|
|
327
333
|
}
|
|
@@ -1076,6 +1082,14 @@ export class Inspector {
|
|
|
1076
1082
|
$('#inspector').addClass('html-hidden-fact');
|
|
1077
1083
|
}
|
|
1078
1084
|
|
|
1085
|
+
const target = cf.targetDocument();
|
|
1086
|
+
if (target !== null) {
|
|
1087
|
+
$('#inspector .target-document').text(target).show();
|
|
1088
|
+
}
|
|
1089
|
+
else {
|
|
1090
|
+
$('#inspector .target-document').hide();
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1079
1093
|
}
|
|
1080
1094
|
else if (cf instanceof Footnote) {
|
|
1081
1095
|
$('#inspector').addClass('footnote-mode');
|
|
@@ -38,6 +38,10 @@ export class XBRLReport {
|
|
|
38
38
|
return this.reportSet.factsForReport(this);
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
+
targetDocument() {
|
|
42
|
+
return this._reportData.target ?? null;
|
|
43
|
+
}
|
|
44
|
+
|
|
41
45
|
getChildRelationships(conceptName, arcrole) {
|
|
42
46
|
const rels = {}
|
|
43
47
|
const elrs = this._reportData.rels[arcrole] || {};
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
// See COPYRIGHT.md for copyright information
|
|
2
2
|
|
|
3
3
|
.tag {
|
|
4
|
-
display:
|
|
4
|
+
display: inline-block;
|
|
5
5
|
text-transform: uppercase;
|
|
6
6
|
font-weight: bold;
|
|
7
7
|
background-color: @background-tag;
|
|
8
8
|
padding: 0.15em 0.5em;
|
|
9
9
|
color: #fff;
|
|
10
10
|
border-radius: 0.3em;
|
|
11
|
+
margin: 0.2rem 0.3rem 0.2rem 0;
|
|
12
|
+
white-space: nowrap;
|
|
11
13
|
}
|
|
12
14
|
|
|
13
15
|
.clickable {
|
|
@@ -676,13 +676,19 @@
|
|
|
676
676
|
top: 1px;
|
|
677
677
|
}
|
|
678
678
|
|
|
679
|
-
.
|
|
680
|
-
.html-hidden-fact-tag {
|
|
681
|
-
.tag();
|
|
682
|
-
|
|
679
|
+
.inspector-body-fact .tags {
|
|
683
680
|
position: absolute;
|
|
684
681
|
top: 1.5rem;
|
|
685
682
|
right: 0.9rem;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.target-document {
|
|
686
|
+
.tag();
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.hidden-fact-tag,
|
|
690
|
+
.html-hidden-fact-tag {
|
|
691
|
+
.tag();
|
|
686
692
|
|
|
687
693
|
&.html-hidden-fact-tag {
|
|
688
694
|
background-color: #c63018;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ixbrl-viewer
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.18
|
|
4
4
|
Summary: The Arelle iXBRL Viewer allows iXBRL reports to be viewed interactively in a web browser.
|
|
5
5
|
Author-email: "arelle.org" <support@arelle.org>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -38,7 +38,7 @@ Provides-Extra: dev
|
|
|
38
38
|
Requires-Dist: flake8 ==7.0.0 ; extra == 'dev'
|
|
39
39
|
Requires-Dist: lxml-stubs ==0.5.1 ; extra == 'dev'
|
|
40
40
|
Requires-Dist: mypy ==1.8.0 ; extra == 'dev'
|
|
41
|
-
Requires-Dist: pytest ==
|
|
41
|
+
Requires-Dist: pytest ==8.0.0 ; extra == 'dev'
|
|
42
42
|
Requires-Dist: typing-extensions ==4.9.0 ; extra == 'dev'
|
|
43
43
|
|
|
44
44
|
# Arelle iXBRL Viewer
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
iXBRLViewerPlugin/__init__.py,sha256=b8_eShZkOtWQMdnsUXuikslSPiKQYRF7NrjhZXH58Dk,15968
|
|
2
|
-
iXBRLViewerPlugin/_version.py,sha256=
|
|
2
|
+
iXBRLViewerPlugin/_version.py,sha256=r9jU7e9KVokBZ5b6gwAXjZoeuugW7f-LVwwDz1isUw4,413
|
|
3
3
|
iXBRLViewerPlugin/constants.py,sha256=gXwZxPp5PJETC-sOvLxOToSe5pIjmQv2WMhZMNoPpKw,1062
|
|
4
4
|
iXBRLViewerPlugin/featureConfig.py,sha256=tOViPYmN32i2uIf_T9HGgbkkv41VoTpTjqhn4w9rTgw,194
|
|
5
|
-
iXBRLViewerPlugin/iXBRLViewer.py,sha256=
|
|
5
|
+
iXBRLViewerPlugin/iXBRLViewer.py,sha256=MU6VGmbASl4Zi8aJVg9PCSZjT4r6syiz-zIz7zRGZ8I,28064
|
|
6
6
|
iXBRLViewerPlugin/stubviewer.html,sha256=hc5BeIR7y3ojGRux_Hy5oqEAHdlQ34kk3lL5eH-B4AU,158
|
|
7
7
|
iXBRLViewerPlugin/ui.py,sha256=OismWQzm_T16j-6O8cfGZ7qLMKIMIA36rRlb9mbOOh0,10512
|
|
8
8
|
iXBRLViewerPlugin/xhtmlserialize.py,sha256=2fV88KD5XOXqDzYaQgovbvuUQINF0n6E-6Nw174zniY,6771
|
|
@@ -11,17 +11,17 @@ iXBRLViewerPlugin/viewer/version.js,sha256=7b5si8UmaS7QqALQIP-wJ0I8onKFox8VyaAiU
|
|
|
11
11
|
iXBRLViewerPlugin/viewer/webpack.common.js,sha256=AsiOVAW2XbmSNjv6Kl6LC4VUM2rA9UyQ8vwhz_1jb1Y,1320
|
|
12
12
|
iXBRLViewerPlugin/viewer/webpack.dev.js,sha256=R9AwY_TBrg9otvXpDxT1UsGg5eMqi4aXW7C7EIsHzZk,551
|
|
13
13
|
iXBRLViewerPlugin/viewer/webpack.prod.js,sha256=vfLowWC1EOty0zbq9P-usGaJ3w-JoERpJrYaE9MfoSE,499
|
|
14
|
-
iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js,sha256=
|
|
14
|
+
iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js,sha256=6CEz1_FjCZzmu0NiGx4l5ZR6KnxUw0q4btEv8RvLckU,845595
|
|
15
15
|
iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js.LICENSE.txt,sha256=eA5xbvB65RVR5QmweqeHe4sYtW3dzEmgLhUDFOGr9m4,1697
|
|
16
16
|
iXBRLViewerPlugin/viewer/src/html/fact-details.html,sha256=P9BJw1OK4nIYfoT4KPwW1WP94ZeD7v1nisvSKMeSnU8,1495
|
|
17
17
|
iXBRLViewerPlugin/viewer/src/html/footnote-details.html,sha256=9I7y0KM7xsPzbiZheuHkm1k4nHNXD8S9qxvD_Y0I1Us,278
|
|
18
|
-
iXBRLViewerPlugin/viewer/src/html/inspector.html,sha256=
|
|
18
|
+
iXBRLViewerPlugin/viewer/src/html/inspector.html,sha256=viK2p_IXUuMT0QuwzfeianAp5aoif8hw1Hfu6YnyO1g,19251
|
|
19
19
|
iXBRLViewerPlugin/viewer/src/i18n/en/currencies.json,sha256=p2vXnQcaRWX3tDY8E52AaIeKhbmcNNhPfTBHlL5AL_U,315
|
|
20
20
|
iXBRLViewerPlugin/viewer/src/i18n/en/referenceparts.json,sha256=rp0p7aWt0U2Ny3ai_fadZhdV-LWx-9-tgKWQmggoewM,207
|
|
21
|
-
iXBRLViewerPlugin/viewer/src/i18n/en/translation.json,sha256=
|
|
21
|
+
iXBRLViewerPlugin/viewer/src/i18n/en/translation.json,sha256=D-bX8cfF8YPKU3a2JLVHTtsaBmWU3IipF94ye5N8DTE,4607
|
|
22
22
|
iXBRLViewerPlugin/viewer/src/i18n/es/currencies.json,sha256=YzzYkYpUAgYFBDROUosaxoVbft5zPXKJ4zI9Zb2nsqQ,171
|
|
23
23
|
iXBRLViewerPlugin/viewer/src/i18n/es/referenceparts.json,sha256=X6l9IS1w9LSItMaS14q9gqDIu1jaeHthuhOogaBLRTI,237
|
|
24
|
-
iXBRLViewerPlugin/viewer/src/i18n/es/translation.json,sha256=
|
|
24
|
+
iXBRLViewerPlugin/viewer/src/i18n/es/translation.json,sha256=w9tixvaB0wPKXd6VfeBdzskZvqIL3D9FVuY1rvnb6e4,3999
|
|
25
25
|
iXBRLViewerPlugin/viewer/src/icons/arrow-down.svg,sha256=FjlACizI1NEMLQMyeVSfwsnP1t63HnGBQhmiFLgqDCI,403
|
|
26
26
|
iXBRLViewerPlugin/viewer/src/icons/arrow-up.svg,sha256=-1ZLPAkpGUH4btofeJ_YLyw04dzoWNi_QAm6LK6yYh8,403
|
|
27
27
|
iXBRLViewerPlugin/viewer/src/icons/calculator.svg,sha256=W86RLdi2jge2dvL1LciTYXBTymaZZEE_IoIzspVjcVI,1543
|
|
@@ -69,7 +69,7 @@ iXBRLViewerPlugin/viewer/src/js/concept.js,sha256=49NXm5jJnakLe2QDsG2Vo5Jf1QDuaj
|
|
|
69
69
|
iXBRLViewerPlugin/viewer/src/js/concept.test.js,sha256=ZQHRJSxrDo4iB9srYxdmpLtgqFP1iWiCIKrezLIgthw,2543
|
|
70
70
|
iXBRLViewerPlugin/viewer/src/js/dialog.js,sha256=09uGcyAcaWLyMyUNDmP9XqYKsuDiAAEIQUM6YLwG_j4,1058
|
|
71
71
|
iXBRLViewerPlugin/viewer/src/js/docOrderIndex.js,sha256=rhNooqCDRU0f8Sb-adHnwqF7kq6vJA_rskGh6oPqdx8,674
|
|
72
|
-
iXBRLViewerPlugin/viewer/src/js/fact.js,sha256=
|
|
72
|
+
iXBRLViewerPlugin/viewer/src/js/fact.js,sha256=nBVLSpID_NsSORsOtWhiQY-bdVwNdfUCB5bLTj1KAWE,11308
|
|
73
73
|
iXBRLViewerPlugin/viewer/src/js/fact.test.js,sha256=-DVTQ1rr3uNwPCILZFE9iOUHtv6m86MIiBj0EyRgvWo,22681
|
|
74
74
|
iXBRLViewerPlugin/viewer/src/js/factset.js,sha256=VwJSiIVra3IO5Zwz5LV4aQj5D_Q7tPAtlpQEPUioKU8,5120
|
|
75
75
|
iXBRLViewerPlugin/viewer/src/js/factset.test.js,sha256=WNpm9EE1Eu3DkguUubN2nXnHWY9TIzQdJ6LuidRCHHY,8877
|
|
@@ -77,7 +77,7 @@ iXBRLViewerPlugin/viewer/src/js/footnote.js,sha256=jZreicIBPAtBjbpoRbLnkSs8fHdCY
|
|
|
77
77
|
iXBRLViewerPlugin/viewer/src/js/identifiers.js,sha256=gcGitF1CfiyiUvzWDG6INnFDIBi5jXdBgiqCB8Ip0YE,2260
|
|
78
78
|
iXBRLViewerPlugin/viewer/src/js/identifiers.test.js,sha256=eu2TkHVpuRItIyNdNAuoITnpGFwwAicqMynf0dFreRk,2112
|
|
79
79
|
iXBRLViewerPlugin/viewer/src/js/index.js,sha256=SdxunWx8kNw0-vwwnr58-ac1-eQIE1__Ll7ekNNK79E,232
|
|
80
|
-
iXBRLViewerPlugin/viewer/src/js/inspector.js,sha256=
|
|
80
|
+
iXBRLViewerPlugin/viewer/src/js/inspector.js,sha256=ZgEQw6zrxk2P9U4gqQRbPInv2lLZDZTaAv_AeiOWZ9o,48640
|
|
81
81
|
iXBRLViewerPlugin/viewer/src/js/inspector.test.js,sha256=AQjbwTllw_dZfovCfjfHWtt0kdjzDnoXw-mQ0IrHKWk,10086
|
|
82
82
|
iXBRLViewerPlugin/viewer/src/js/interact.min.js,sha256=Yk0ZkCU3IZ0heGijAgUiNVkZ1Djq-MjvbS32DBSrdIs,85048
|
|
83
83
|
iXBRLViewerPlugin/viewer/src/js/interval.js,sha256=ZEIbH4uwTIvF1jmulEWnJI5ZD1AamgKtkyplOwlcrv0,1889
|
|
@@ -96,7 +96,7 @@ iXBRLViewerPlugin/viewer/src/js/outline.test.js,sha256=PaUzfy675G04YcjY8CcFDLCWi
|
|
|
96
96
|
iXBRLViewerPlugin/viewer/src/js/period.js,sha256=D9zXSOr19trWCmHizgCe5DQ612HB6IlAWmI5Rh4I8ZM,2267
|
|
97
97
|
iXBRLViewerPlugin/viewer/src/js/period.test.js,sha256=nMamproI2VukUnO0wm3SKQA_rnjwNkwkzyn4uhke0kc,5417
|
|
98
98
|
iXBRLViewerPlugin/viewer/src/js/qname.js,sha256=6MqMBbgziuPPNHKS3UUGyYIgHWygaAIf0mcpK95hwT8,282
|
|
99
|
-
iXBRLViewerPlugin/viewer/src/js/report.js,sha256=
|
|
99
|
+
iXBRLViewerPlugin/viewer/src/js/report.js,sha256=z19Bngb_zj-C5AVVWxpbw3c4vgl6f_aMDkeaTvJyfK4,8772
|
|
100
100
|
iXBRLViewerPlugin/viewer/src/js/report.test.js,sha256=OpWSRo0oWQY2nwwD2u1L_y8APB9kjkJ4pV89WuTmVzo,5068
|
|
101
101
|
iXBRLViewerPlugin/viewer/src/js/reportset.js,sha256=4_f6zphwC2firfYeiX4gd4DyyvZ-MFMaq1Idej3nFK8,7832
|
|
102
102
|
iXBRLViewerPlugin/viewer/src/js/reportset.test.js,sha256=qzXGfqKlEu3pGk4m_iMwFdXsIxTCoRM7f4bUrYWIsUU,12558
|
|
@@ -115,19 +115,19 @@ iXBRLViewerPlugin/viewer/src/js/validationreport.js,sha256=zWA9_8sWavX2Fi8fwEyDP
|
|
|
115
115
|
iXBRLViewerPlugin/viewer/src/js/viewer.js,sha256=RKbFQT9_xkAUR5cXfs5DJ1sC6I-5m5IZ6-wePRgvBeo,34979
|
|
116
116
|
iXBRLViewerPlugin/viewer/src/js/viewerOptions.js,sha256=Cvj-gAhqNbdyoUAhUKt-EoTKVOcBR5OjG6y-11hF_hY,164
|
|
117
117
|
iXBRLViewerPlugin/viewer/src/less/accordian.less,sha256=-gabUSq2rMacPUujessTBffLgxyOeHMrs0m4aWXqBv8,592
|
|
118
|
-
iXBRLViewerPlugin/viewer/src/less/block-list.less,sha256=
|
|
118
|
+
iXBRLViewerPlugin/viewer/src/less/block-list.less,sha256=47W_AAUBHc7qnzftofYhmaTtREb8SlhHTMXHVlxSTEw,606
|
|
119
119
|
iXBRLViewerPlugin/viewer/src/less/calculation-inspector.less,sha256=glKlAbq_cVN9NBKSRKWjsT_pRnlBG-HNenIhNUlA_3E,1389
|
|
120
120
|
iXBRLViewerPlugin/viewer/src/less/chart.less,sha256=c0gCRiOtcx677TqMTgs4sOZxf0WjLbkdEL_aniNhGF4,777
|
|
121
121
|
iXBRLViewerPlugin/viewer/src/less/clearfix.less,sha256=p2RuEaUQZ8JecLn6nsKMao2Oj00CVMVdrCeeP-6eIjA,132
|
|
122
122
|
iXBRLViewerPlugin/viewer/src/less/colours.less,sha256=6s8THfcRbwNXxgB_-xUuSreix_DWpx9JhB6DwQdxfnQ,627
|
|
123
123
|
iXBRLViewerPlugin/viewer/src/less/common.less,sha256=eGHm56grsZ6VBeY-25YWD6U41sqI9vQc4HgdiFDfpdA,302
|
|
124
|
-
iXBRLViewerPlugin/viewer/src/less/components.less,sha256=
|
|
124
|
+
iXBRLViewerPlugin/viewer/src/less/components.less,sha256=8ftcRKE78ptM8NwBGSkH3lJHCz_XVZ8orOEFOP75eUY,411
|
|
125
125
|
iXBRLViewerPlugin/viewer/src/less/core.less,sha256=nMj7Yly0lyIll879Finuoc85fg8es8qcg5DVtMKp4Fo,99
|
|
126
126
|
iXBRLViewerPlugin/viewer/src/less/dialog.less,sha256=FfZyg0Z3Uwr8rKqvsGsSKcXYEVyDvy4WZ6Kz20LT6oA,1253
|
|
127
127
|
iXBRLViewerPlugin/viewer/src/less/fonts.less,sha256=IamL4X-5uDuDM_Ob-kGrZKKxfCwVRk6C1hkRMwY8ESY,226
|
|
128
128
|
iXBRLViewerPlugin/viewer/src/less/form-controls.less,sha256=do-QeU5g5I1bNL2cu1vhbiENLdR6_mtVFxN7wVL8Abs,1615
|
|
129
129
|
iXBRLViewerPlugin/viewer/src/less/icons.less.njk,sha256=M-l5TC5MZTu69xD9bFjlgq7RHCmGoX_gTw1k4MDJeiU,253
|
|
130
|
-
iXBRLViewerPlugin/viewer/src/less/inspector.less,sha256=
|
|
130
|
+
iXBRLViewerPlugin/viewer/src/less/inspector.less,sha256=hLL7kGHJccqnZnM4GorKukhAnS0jYKiNRodKaBVclK8,21577
|
|
131
131
|
iXBRLViewerPlugin/viewer/src/less/loader.less,sha256=f54JLiXuiZciifii6QcHEcPus6E-W6j9KYjuG8KFsM4,1184
|
|
132
132
|
iXBRLViewerPlugin/viewer/src/less/menu.less,sha256=StN8GZ1VnRzAVqxTGmatzhWGOnReuQlfx8fxCLoUjCY,2120
|
|
133
133
|
iXBRLViewerPlugin/viewer/src/less/summary.less,sha256=rGNbdoud-KUlrTts_I93xMwLA3bs_Jq-WMKqO2BM_0M,1638
|
|
@@ -155,12 +155,12 @@ tests/puppeteer/tools/generate.sh,sha256=jZ1Jac6KsuRo2nHuA2B9g9mZqr7tLjPJKJAUf0o
|
|
|
155
155
|
tests/unit_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
156
156
|
tests/unit_tests/iXBRLViewerPlugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
157
157
|
tests/unit_tests/iXBRLViewerPlugin/mock_arelle.py,sha256=fQKJGwceaEVaxvqV9tyuvT6DJB5s1X3-oSMjbFMKlS8,1301
|
|
158
|
-
tests/unit_tests/iXBRLViewerPlugin/test_iXBRLViewer.py,sha256=
|
|
158
|
+
tests/unit_tests/iXBRLViewerPlugin/test_iXBRLViewer.py,sha256=XSMbjEwof877OT2uwZ8mF8v_umWg39ySodOocQqP4XM,31447
|
|
159
159
|
tests/unit_tests/iXBRLViewerPlugin/test_xhtmlserialize.py,sha256=kdrg4i-YXnYAGl9TLWEACPQF0V69OAMXdXLYJwefsH0,12521
|
|
160
|
-
ixbrl_viewer-1.4.
|
|
161
|
-
ixbrl_viewer-1.4.
|
|
162
|
-
ixbrl_viewer-1.4.
|
|
163
|
-
ixbrl_viewer-1.4.
|
|
164
|
-
ixbrl_viewer-1.4.
|
|
165
|
-
ixbrl_viewer-1.4.
|
|
166
|
-
ixbrl_viewer-1.4.
|
|
160
|
+
ixbrl_viewer-1.4.18.dist-info/LICENSE,sha256=TZJhu77S_2-WQcPAkuIAlQiuuiNqVcuHBjd7z3Y5S08,16645
|
|
161
|
+
ixbrl_viewer-1.4.18.dist-info/METADATA,sha256=8P-M858fd8mWD8UWEfQC-Hk2BMVlixEIsq6Mpipn1S8,14755
|
|
162
|
+
ixbrl_viewer-1.4.18.dist-info/NOTICE,sha256=-SHDY0OY7s4gm4Rdk5AB3nbnUsrdHEHPdJuGFR_vuM4,566
|
|
163
|
+
ixbrl_viewer-1.4.18.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
164
|
+
ixbrl_viewer-1.4.18.dist-info/entry_points.txt,sha256=2XUzP20WGwxdvnugdBybUBwAB3xf_zvrOR5W_smFz_4,65
|
|
165
|
+
ixbrl_viewer-1.4.18.dist-info/top_level.txt,sha256=h8MkrMhC_t2-KbfS1oxJVnFAbn5NZJH8END_BL40mv8,24
|
|
166
|
+
ixbrl_viewer-1.4.18.dist-info/RECORD,,
|
|
@@ -328,7 +328,8 @@ class TestIXBRLViewer:
|
|
|
328
328
|
"filepath":'a.html',
|
|
329
329
|
"objectIndex":0,
|
|
330
330
|
"type":Type.INLINEXBRL,
|
|
331
|
-
}
|
|
331
|
+
},
|
|
332
|
+
ixdsTarget=None,
|
|
332
333
|
)
|
|
333
334
|
|
|
334
335
|
self.modelDocumentInlineSet = Mock(
|
|
@@ -353,7 +354,8 @@ class TestIXBRLViewer:
|
|
|
353
354
|
): [],
|
|
354
355
|
},
|
|
355
356
|
filepath=self.modelDocument.filepath,
|
|
356
|
-
type=Type.INLINEXBRLDOCUMENTSET
|
|
357
|
+
type=Type.INLINEXBRLDOCUMENTSET,
|
|
358
|
+
ixdsTarget=None,
|
|
357
359
|
)
|
|
358
360
|
|
|
359
361
|
error1 = logging.LogRecord("arelle", logging.ERROR, "", 0, "Error message", {}, None)
|
|
@@ -389,6 +391,7 @@ class TestIXBRLViewer:
|
|
|
389
391
|
info=info_effect,
|
|
390
392
|
modelDocument=self.modelDocument,
|
|
391
393
|
modelManager=self.modelManager,
|
|
394
|
+
ixdsTarget=None,
|
|
392
395
|
urlDocs=dict((
|
|
393
396
|
urlDocEntry('/filesystem/local-inline.htm', Type.INLINEXBRL),
|
|
394
397
|
urlDocEntry('https://example.com/remote-inline.htm', Type.INLINEXBRL),
|
|
@@ -419,6 +422,7 @@ class TestIXBRLViewer:
|
|
|
419
422
|
info=info_effect,
|
|
420
423
|
modelDocument=self.modelDocument,
|
|
421
424
|
modelManager=self.modelManager,
|
|
425
|
+
ixdsTarget=None,
|
|
422
426
|
urlDocs={}
|
|
423
427
|
)
|
|
424
428
|
self.modelXbrlDocSet = Mock(
|
|
@@ -430,6 +434,7 @@ class TestIXBRLViewer:
|
|
|
430
434
|
info=info_effect,
|
|
431
435
|
modelDocument=self.modelDocumentInlineSet,
|
|
432
436
|
modelManager=self.modelManager,
|
|
437
|
+
ixdsTarget=None,
|
|
433
438
|
urlDocs={}
|
|
434
439
|
)
|
|
435
440
|
|
|
@@ -450,7 +455,7 @@ class TestIXBRLViewer:
|
|
|
450
455
|
@patch('arelle.XbrlConst.conceptReference', 'http://www.xbrl.org/2003/arcrole/concept-reference')
|
|
451
456
|
def test_addConcept_simple_case(self):
|
|
452
457
|
builder = IXBRLViewerBuilder([self.modelXbrl_1])
|
|
453
|
-
builder.currentTargetReport = builder.newTargetReport()
|
|
458
|
+
builder.currentTargetReport = builder.newTargetReport(None)
|
|
454
459
|
builder.addSourceReport()["targetReports"].append(builder.currentTargetReport)
|
|
455
460
|
builder.addConcept(self.modelXbrl_1, self.cash_concept)
|
|
456
461
|
assert builder.taxonomyData["sourceReports"][0]["targetReports"][0].get('concepts').get('us-gaap:Cash')
|
|
@@ -467,7 +472,7 @@ class TestIXBRLViewer:
|
|
|
467
472
|
@patch('arelle.XbrlConst.summationItem', 'http://www.xbrl.org/2003/arcrole/summation-item')
|
|
468
473
|
def test_getRelationships_returns_a_rel(self):
|
|
469
474
|
builder = IXBRLViewerBuilder([self.modelXbrl_1])
|
|
470
|
-
builder.currentTargetReport = builder.newTargetReport()
|
|
475
|
+
builder.currentTargetReport = builder.newTargetReport(None)
|
|
471
476
|
result = builder.getRelationships(self.modelXbrl_1)
|
|
472
477
|
roleMap = builder.roleMap
|
|
473
478
|
siPrefix = roleMap.getPrefix('http://www.xbrl.org/2003/arcrole/summation-item')
|
|
@@ -479,7 +484,7 @@ class TestIXBRLViewer:
|
|
|
479
484
|
"""
|
|
480
485
|
elr = "http://example.com/unknownELR"
|
|
481
486
|
builder = IXBRLViewerBuilder([self.modelXbrl_1])
|
|
482
|
-
builder.currentTargetReport = builder.newTargetReport()
|
|
487
|
+
builder.currentTargetReport = builder.newTargetReport(None)
|
|
483
488
|
builder.addELR(self.modelXbrl_1, elr)
|
|
484
489
|
elrPrefix = builder.roleMap.getPrefix(elr)
|
|
485
490
|
assert builder.currentTargetReport.get('roleDefs').get(elrPrefix) is None
|
|
@@ -490,7 +495,7 @@ class TestIXBRLViewer:
|
|
|
490
495
|
"""
|
|
491
496
|
elr = "ELR"
|
|
492
497
|
builder = IXBRLViewerBuilder([self.modelXbrl_1])
|
|
493
|
-
builder.currentTargetReport = builder.newTargetReport()
|
|
498
|
+
builder.currentTargetReport = builder.newTargetReport(None)
|
|
494
499
|
builder.addELR(self.modelXbrl_1, elr)
|
|
495
500
|
elrPrefix = builder.roleMap.getPrefix(elr)
|
|
496
501
|
assert builder.currentTargetReport.get('roleDefs').get(elrPrefix).get("en") == "ELR Label"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|