ixbrl-viewer 1.4.39__py3-none-any.whl → 1.4.41__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 +25 -22
- iXBRLViewerPlugin/_version.py +2 -2
- iXBRLViewerPlugin/constants.py +86 -1
- iXBRLViewerPlugin/featureConfig.py +4 -1
- iXBRLViewerPlugin/iXBRLViewer.py +28 -14
- iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js +1 -1
- iXBRLViewerPlugin/viewer/i18next-parser.config.js +1 -1
- iXBRLViewerPlugin/viewer/src/html/fact-details.html +69 -38
- iXBRLViewerPlugin/viewer/src/html/footer-logo.html +4 -0
- iXBRLViewerPlugin/viewer/src/html/footnote-details.html +1 -1
- iXBRLViewerPlugin/viewer/src/html/inspector.html +318 -211
- iXBRLViewerPlugin/viewer/src/i18n/cy/balancetypes.json +1 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/currencies.json +13 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/datatypes.json +9 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/referenceparts.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/scale.json +16 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/translation.json +179 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/datatypes.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/labelroles.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/scale.json +16 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/translation.json +50 -25
- iXBRLViewerPlugin/viewer/src/i18n/es/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/es/datatypes.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/es/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/es/scale.json +16 -0
- iXBRLViewerPlugin/viewer/src/i18n/es/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/es/translation.json +66 -40
- iXBRLViewerPlugin/viewer/src/icons/dark-mode.svg +4 -0
- iXBRLViewerPlugin/viewer/src/img/arelle-dark.svg +179 -0
- iXBRLViewerPlugin/viewer/src/img/inline-viewer-dark.svg +59 -0
- iXBRLViewerPlugin/viewer/src/js/accordian.js +2 -1
- iXBRLViewerPlugin/viewer/src/js/aspect.js +18 -7
- iXBRLViewerPlugin/viewer/src/js/balance.js +14 -0
- iXBRLViewerPlugin/viewer/src/js/chart.js +10 -6
- iXBRLViewerPlugin/viewer/src/js/concept.js +28 -1
- iXBRLViewerPlugin/viewer/src/js/concept.test.js +23 -2
- iXBRLViewerPlugin/viewer/src/js/datatype.js +20 -0
- iXBRLViewerPlugin/viewer/src/js/datatype.test.js +62 -0
- iXBRLViewerPlugin/viewer/src/js/dialog.js +3 -1
- iXBRLViewerPlugin/viewer/src/js/fact.js +16 -0
- iXBRLViewerPlugin/viewer/src/js/fact.test.js +3 -0
- iXBRLViewerPlugin/viewer/src/js/index.js +11 -3
- iXBRLViewerPlugin/viewer/src/js/inspector.js +499 -121
- iXBRLViewerPlugin/viewer/src/js/inspector.test.js +1 -1
- iXBRLViewerPlugin/viewer/src/js/ixbrlviewer.js +128 -30
- iXBRLViewerPlugin/viewer/src/js/ixbrlviewer.test.js +133 -20
- iXBRLViewerPlugin/viewer/src/js/menu.js +21 -3
- iXBRLViewerPlugin/viewer/src/js/outline.js +2 -2
- iXBRLViewerPlugin/viewer/src/js/report.js +60 -8
- iXBRLViewerPlugin/viewer/src/js/report.test.js +51 -5
- iXBRLViewerPlugin/viewer/src/js/reportset.js +20 -0
- iXBRLViewerPlugin/viewer/src/js/reportset.test.js +3 -3
- iXBRLViewerPlugin/viewer/src/js/search.js +23 -2
- iXBRLViewerPlugin/viewer/src/js/search.test.js +2 -2
- iXBRLViewerPlugin/viewer/src/js/summary.js +14 -0
- iXBRLViewerPlugin/viewer/src/js/tableExport.js +2 -1
- iXBRLViewerPlugin/viewer/src/js/taxonomynamer.js +34 -0
- iXBRLViewerPlugin/viewer/src/js/taxonomynamer.test.js +32 -0
- iXBRLViewerPlugin/viewer/src/js/theme.js +36 -0
- iXBRLViewerPlugin/viewer/src/js/unit.js +17 -2
- iXBRLViewerPlugin/viewer/src/js/util.js +16 -16
- iXBRLViewerPlugin/viewer/src/js/viewer.js +13 -7
- iXBRLViewerPlugin/viewer/src/less/accordian.less +8 -4
- iXBRLViewerPlugin/viewer/src/less/block-list.less +12 -6
- iXBRLViewerPlugin/viewer/src/less/calculation-inspector.less +2 -2
- iXBRLViewerPlugin/viewer/src/less/chart.less +8 -5
- iXBRLViewerPlugin/viewer/src/less/colours-dark-mode.less +40 -0
- iXBRLViewerPlugin/viewer/src/less/colours.less +28 -21
- iXBRLViewerPlugin/viewer/src/less/common.less +1 -1
- iXBRLViewerPlugin/viewer/src/less/components.less +3 -3
- iXBRLViewerPlugin/viewer/src/less/core.less +2 -0
- iXBRLViewerPlugin/viewer/src/less/dialog.less +13 -10
- iXBRLViewerPlugin/viewer/src/less/form-controls.less +33 -11
- iXBRLViewerPlugin/viewer/src/less/inspector.less +538 -299
- iXBRLViewerPlugin/viewer/src/less/loader.less +2 -2
- iXBRLViewerPlugin/viewer/src/less/menu.less +33 -15
- iXBRLViewerPlugin/viewer/src/less/summary.less +16 -6
- iXBRLViewerPlugin/viewer/src/less/tabs.less +5 -5
- iXBRLViewerPlugin/viewer/src/less/text-mixins.less +2 -1
- iXBRLViewerPlugin/viewer/src/less/validation-report.less +1 -1
- iXBRLViewerPlugin/viewer/src/less/viewer.less +30 -18
- {ixbrl_viewer-1.4.39.dist-info → ixbrl_viewer-1.4.41.dist-info}/METADATA +33 -5
- {ixbrl_viewer-1.4.39.dist-info → ixbrl_viewer-1.4.41.dist-info}/RECORD +95 -66
- {ixbrl_viewer-1.4.39.dist-info → ixbrl_viewer-1.4.41.dist-info}/WHEEL +1 -1
- tests/puppeteer/framework/page_objects/doc_frame.js +1 -1
- tests/puppeteer/tests/fact_properties.test.js +4 -4
- tests/unit_tests/iXBRLViewerPlugin/test_iXBRLViewer.py +69 -28
- {ixbrl_viewer-1.4.39.dist-info → ixbrl_viewer-1.4.41.dist-info}/LICENSE +0 -0
- {ixbrl_viewer-1.4.39.dist-info → ixbrl_viewer-1.4.41.dist-info}/NOTICE +0 -0
- {ixbrl_viewer-1.4.39.dist-info → ixbrl_viewer-1.4.41.dist-info}/entry_points.txt +0 -0
- {ixbrl_viewer-1.4.39.dist-info → ixbrl_viewer-1.4.41.dist-info}/top_level.txt +0 -0
|
@@ -3,45 +3,76 @@ See COPYRIGHT.md for copyright information
|
|
|
3
3
|
-->
|
|
4
4
|
|
|
5
5
|
<div class="fact-details">
|
|
6
|
-
<
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
<
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
6
|
+
<dl>
|
|
7
|
+
<dt data-i18n="factDetails.concept">Concept</dt>
|
|
8
|
+
<dd>
|
|
9
|
+
<div class="std-label"></div>
|
|
10
|
+
<div class="documentation"></div>
|
|
11
|
+
</dd>
|
|
12
|
+
<dt id="dimensions-label" class="has-tooltip">
|
|
13
|
+
<span data-i18n="factDetails.dimensions">Dimensions</span>
|
|
14
|
+
<button class="tooltip-icon" data-tooltip-name="dimension" data-tooltip-glossary-link="true"></button>
|
|
15
|
+
</dt>
|
|
16
|
+
<dd>
|
|
17
|
+
<div id="dimensions"></div>
|
|
18
|
+
</dd>
|
|
19
|
+
<dt data-i18n="factDetails.properties">Properties</dt>
|
|
20
|
+
<dd>
|
|
21
|
+
<table class="property-table fact-properties">
|
|
22
|
+
<tr class="period">
|
|
23
|
+
<th class="has-tooltip">
|
|
24
|
+
<span data-i18n="factDetails.date">Date</span>
|
|
25
|
+
<button class="tooltip-icon" data-tooltip-name="period"></button>
|
|
26
|
+
</th>
|
|
27
|
+
<td></td>
|
|
28
|
+
</tr>
|
|
29
|
+
<tr class="value">
|
|
30
|
+
<th data-i18n="factDetails.factValue">Fact Value</th>
|
|
31
|
+
<td><span class="value"></span> <button class="show-all inline-button" aria-label="Show full text">[...]</button> <span class="expand-text-block"></td>
|
|
32
|
+
</tr>
|
|
33
|
+
<tr class="accuracy">
|
|
34
|
+
<th class="has-tooltip">
|
|
35
|
+
<span data-i18n="factDetails.accuracy">Accuracy</span>
|
|
36
|
+
<button class="tooltip-icon" data-tooltip-name="accuracy"></button>
|
|
37
|
+
</th>
|
|
38
|
+
<td></td>
|
|
39
|
+
</tr>
|
|
40
|
+
<tr class="scale">
|
|
41
|
+
<th class="has-tooltip">
|
|
42
|
+
<span data-i18n="factDetails.scale">Scale</span>
|
|
43
|
+
<button class="tooltip-icon" data-tooltip-name="scale"></button>
|
|
44
|
+
</th>
|
|
45
|
+
<td></td>
|
|
46
|
+
</tr>
|
|
47
|
+
<tr class="change">
|
|
48
|
+
<th data-i18n="factDetails.change">Change</th>
|
|
49
|
+
<td></td>
|
|
50
|
+
</tr>
|
|
51
|
+
<tr class="entity-identifier">
|
|
52
|
+
<th data-i18n="factDetails.entity">Entity</th>
|
|
53
|
+
<td></td>
|
|
54
|
+
</tr>
|
|
55
|
+
<tr class="concept">
|
|
56
|
+
<th class="has-tooltip">
|
|
57
|
+
<span data-i18n="factDetails.concept">Concept</span>
|
|
58
|
+
<button class="tooltip-icon" data-tooltip-name="concept" data-tooltip-glossary-link="#concept"></button>
|
|
59
|
+
</th>
|
|
60
|
+
<td><div><span class="text"></span><span class="filler"></span><button class="clipboard-copy copy-icon inline-button" title="Copy concept to clipboard"></button></div></td>
|
|
61
|
+
</tr>
|
|
62
|
+
<tr class="datatype">
|
|
63
|
+
<th data-i18n="factDetails.datatype">Type</th>
|
|
64
|
+
<td></td>
|
|
65
|
+
</tr>
|
|
66
|
+
<tr class="balance">
|
|
67
|
+
<th data-i18n="factDetails.balance">Balance</th>
|
|
68
|
+
<td></td>
|
|
69
|
+
</tr>
|
|
70
|
+
</table>
|
|
71
|
+
</dd>
|
|
72
|
+
</dl>
|
|
42
73
|
<div class="duplicates">
|
|
43
|
-
<
|
|
74
|
+
<button class="prev" title="Show previous duplicate"></button>
|
|
44
75
|
<span class="text"></span>
|
|
45
|
-
<
|
|
76
|
+
<button class="next" title="Show next duplicate"></button>
|
|
46
77
|
</div>
|
|
47
78
|
</div>
|
|
@@ -6,7 +6,7 @@ See COPYRIGHT.md for copyright information
|
|
|
6
6
|
<table class="fact-properties">
|
|
7
7
|
<tr class="value">
|
|
8
8
|
<th data-i18n="footnotes.footnote">Footnote</th>
|
|
9
|
-
<td><span class="value"></span> <
|
|
9
|
+
<td><span class="value"></span> <button class="show-all inline-button">[...]</button></td>
|
|
10
10
|
</tr>
|
|
11
11
|
</table>
|
|
12
12
|
</div>
|