ixbrl-viewer 1.4.51__py3-none-any.whl → 1.4.53__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/viewer/dist/ixbrlviewer.js +1 -1
- iXBRLViewerPlugin/viewer/src/html/footnote-details.html +1 -1
- iXBRLViewerPlugin/viewer/src/js/footnote.js +6 -0
- iXBRLViewerPlugin/viewer/src/js/inspector.js +3 -1
- iXBRLViewerPlugin/viewer/src/js/viewer.js +8 -7
- iXBRLViewerPlugin/viewer/src/less/inspector.less +14 -13
- iXBRLViewerPlugin/viewer/src/less/viewer.less +58 -61
- {ixbrl_viewer-1.4.51.dist-info → ixbrl_viewer-1.4.53.dist-info}/METADATA +1 -1
- {ixbrl_viewer-1.4.51.dist-info → ixbrl_viewer-1.4.53.dist-info}/RECORD +15 -15
- {ixbrl_viewer-1.4.51.dist-info → ixbrl_viewer-1.4.53.dist-info}/LICENSE +0 -0
- {ixbrl_viewer-1.4.51.dist-info → ixbrl_viewer-1.4.53.dist-info}/NOTICE +0 -0
- {ixbrl_viewer-1.4.51.dist-info → ixbrl_viewer-1.4.53.dist-info}/WHEEL +0 -0
- {ixbrl_viewer-1.4.51.dist-info → ixbrl_viewer-1.4.53.dist-info}/entry_points.txt +0 -0
- {ixbrl_viewer-1.4.51.dist-info → ixbrl_viewer-1.4.53.dist-info}/top_level.txt +0 -0
|
@@ -3,7 +3,7 @@ See COPYRIGHT.md for copyright information
|
|
|
3
3
|
-->
|
|
4
4
|
|
|
5
5
|
<div>
|
|
6
|
-
<table class="fact-properties">
|
|
6
|
+
<table class="property-table fact-properties">
|
|
7
7
|
<tr class="value">
|
|
8
8
|
<th data-i18n="footnotes.footnote">Footnote</th>
|
|
9
9
|
<td><span class="value"></span> <button class="show-all inline-button">[...]</button></td>
|
|
@@ -21,6 +21,12 @@ export class Footnote {
|
|
|
21
21
|
return this.textContent();
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
readableValueHTML() {
|
|
25
|
+
const span = document.createElement("span");
|
|
26
|
+
span.append(document.createTextNode(this.textContent()));
|
|
27
|
+
return span;
|
|
28
|
+
}
|
|
29
|
+
|
|
24
30
|
isTextBlock() {
|
|
25
31
|
return false;
|
|
26
32
|
}
|
|
@@ -1208,7 +1208,7 @@ export class Inspector {
|
|
|
1208
1208
|
const valueHTML = item.readableValueHTML();
|
|
1209
1209
|
const tr = $('tr.value', context);
|
|
1210
1210
|
const valueSpan = tr.find('td .value').empty();
|
|
1211
|
-
if (!item.isNumeric() && !showAll) {
|
|
1211
|
+
if (!(item instanceof Fact && item.isNumeric()) && !showAll) {
|
|
1212
1212
|
const vv = wrapLabel(valueHTML.textContent, 120);
|
|
1213
1213
|
if (vv.length > 1) {
|
|
1214
1214
|
tr.addClass("truncated");
|
|
@@ -1463,6 +1463,7 @@ export class Inspector {
|
|
|
1463
1463
|
}
|
|
1464
1464
|
else {
|
|
1465
1465
|
$('#inspector').removeClass('no-fact-selected').removeClass("hidden-fact").removeClass("html-hidden-fact");
|
|
1466
|
+
$('#inspector .tags').show();
|
|
1466
1467
|
|
|
1467
1468
|
$('#inspector .fact-inspector')
|
|
1468
1469
|
.empty()
|
|
@@ -1512,6 +1513,7 @@ export class Inspector {
|
|
|
1512
1513
|
else if (cf instanceof Footnote) {
|
|
1513
1514
|
$('#inspector').addClass('footnote-mode');
|
|
1514
1515
|
$('#inspector .footnote-details .footnote-facts').empty().append(this._footnoteFactsHTML(cf));
|
|
1516
|
+
$('#inspector .tags').hide();
|
|
1515
1517
|
}
|
|
1516
1518
|
$('.fact-details').localize();
|
|
1517
1519
|
}
|
|
@@ -605,7 +605,7 @@ export class Viewer {
|
|
|
605
605
|
}
|
|
606
606
|
|
|
607
607
|
clearHighlighting() {
|
|
608
|
-
$("body", this._iframes.contents()).find(".ixbrl-element
|
|
608
|
+
$("body", this._iframes.contents()).find(".ixbrl-element").removeClass("ixbrl-selected").removeClass("ixbrl-related").removeClass("ixbrl-linked-highlight");
|
|
609
609
|
}
|
|
610
610
|
|
|
611
611
|
_ixIdsForElement(e) {
|
|
@@ -702,15 +702,17 @@ export class Viewer {
|
|
|
702
702
|
return this._ixNodeMap[vuid].wrapperNodes;
|
|
703
703
|
}
|
|
704
704
|
|
|
705
|
-
|
|
706
|
-
|
|
705
|
+
// Returns a jQuery node list containing the primary wrapper node for each
|
|
706
|
+
// vuid provided
|
|
707
|
+
primaryElementsForItemIds(vuids) {
|
|
708
|
+
return $(vuids.map(vuid => this.elementsForItemId(vuid).first().get(0)));
|
|
707
709
|
}
|
|
708
710
|
|
|
709
711
|
/*
|
|
710
712
|
* Add or remove a class to an item (fact or footnote) and any continuation elements
|
|
711
713
|
*/
|
|
712
714
|
changeItemClass(vuid, highlightClass, removeClass) {
|
|
713
|
-
const elements = this.
|
|
715
|
+
const elements = this.primaryElementsForItemIds([vuid].concat(this.itemContinuationMap[vuid]))
|
|
714
716
|
if (removeClass) {
|
|
715
717
|
elements.removeClass(highlightClass);
|
|
716
718
|
}
|
|
@@ -757,7 +759,7 @@ export class Viewer {
|
|
|
757
759
|
if (ixn !== undefined ) {
|
|
758
760
|
const item = reportSet.getItemById(ixn.id);
|
|
759
761
|
if (item !== undefined) {
|
|
760
|
-
const elements = viewer.
|
|
762
|
+
const elements = viewer.primaryElementsForItemIds(ixn.chainIXIds());
|
|
761
763
|
const i = groups[item.conceptQName().prefix];
|
|
762
764
|
if (i !== undefined) {
|
|
763
765
|
elements.addClass("ixbrl-highlight-" + i);
|
|
@@ -765,10 +767,9 @@ export class Viewer {
|
|
|
765
767
|
}
|
|
766
768
|
}
|
|
767
769
|
});
|
|
768
|
-
$(".ixbrl-sub-element", this._contents).addClass("ixbrl-highlight");
|
|
769
770
|
}
|
|
770
771
|
else {
|
|
771
|
-
$(".ixbrl-element
|
|
772
|
+
$(".ixbrl-element", this._contents).removeClass(
|
|
772
773
|
(i, className) => (className.match (/(^|\s)ixbrl-highlight\S*/g) || []).join(' ')
|
|
773
774
|
);
|
|
774
775
|
}
|
|
@@ -689,19 +689,6 @@
|
|
|
689
689
|
}
|
|
690
690
|
}
|
|
691
691
|
|
|
692
|
-
.select-icon {
|
|
693
|
-
float: right;
|
|
694
|
-
.square-button();
|
|
695
|
-
.clickable();
|
|
696
|
-
|
|
697
|
-
&:first-of-type {
|
|
698
|
-
margin-left: 0.5rem;
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
&::before {
|
|
702
|
-
.icon-select();
|
|
703
|
-
}
|
|
704
|
-
}
|
|
705
692
|
|
|
706
693
|
.more-results {
|
|
707
694
|
.clickable();
|
|
@@ -1297,6 +1284,20 @@
|
|
|
1297
1284
|
.fact-list-item {
|
|
1298
1285
|
.block-list-item();
|
|
1299
1286
|
|
|
1287
|
+
.select-icon {
|
|
1288
|
+
float: right;
|
|
1289
|
+
.square-button();
|
|
1290
|
+
.clickable();
|
|
1291
|
+
|
|
1292
|
+
&:first-of-type {
|
|
1293
|
+
margin-left: 0.5rem;
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
&::before {
|
|
1297
|
+
.icon-select();
|
|
1298
|
+
}
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1300
1301
|
.title {
|
|
1301
1302
|
color: var(--colour-text-title);
|
|
1302
1303
|
font-weight: bold;
|
|
@@ -16,16 +16,22 @@
|
|
|
16
16
|
--colour-related-fact: @colour-related-fact;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
.
|
|
20
|
-
|
|
21
|
-
// For example: overrides highlighting applied inline to alternate table rows.
|
|
22
|
-
background-color: var(--colour-highlight-default) !important; // Override inline styles
|
|
19
|
+
// To ensure highlighting takes place, !important is used to override inline styles.
|
|
20
|
+
// For example: overrides highlighting applied inline to alternate table rows.
|
|
23
21
|
|
|
24
|
-
|
|
22
|
+
.ixbrl-highlight {
|
|
23
|
+
&:not(.ixbrl-no-highlight),
|
|
24
|
+
& .ixbrl-sub-element:not(.ixbrl-no-highlight) {
|
|
25
|
+
background-color: var(--colour-highlight-default) !important; // Override inline styles
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&:not(.ixbrl-no-highlight).ixbrl-highlight-1,
|
|
29
|
+
&.ixbrl-highlight-1 .ixbrl-sub-element:not(.ixbrl-no-highlight) {
|
|
25
30
|
background-color: var(--colour-highlight-1) !important; // Override inline styles
|
|
26
31
|
}
|
|
27
32
|
|
|
28
|
-
|
|
33
|
+
&:not(.ixbrl-no-highlight) .ixbrl-highlight-2,
|
|
34
|
+
&.ixbrl-highlight-2 .ixbrl-sub-element:not(.ixbrl-no-highlight) {
|
|
29
35
|
background-color: var(--colour-highlight-2) !important; // Override inline styles
|
|
30
36
|
}
|
|
31
37
|
}
|
|
@@ -38,84 +44,75 @@
|
|
|
38
44
|
background-color: var(--colour-highlight-2);
|
|
39
45
|
}
|
|
40
46
|
|
|
41
|
-
.review .ixbrl-highlight
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
// untagged highlighting defined above.
|
|
45
|
-
background-color: var(--colour-highlight-default) !important; // Override inline styles
|
|
46
|
-
|
|
47
|
-
&.ixbrl-highlight-1 {
|
|
47
|
+
.review .ixbrl-highlight {
|
|
48
|
+
&:not(.ixbrl-no-highlight).ixbrl-highlight-1,
|
|
49
|
+
&.ixbrl-highlight-1 .ixbrl-sub-element:not(.ixbrl-no-highlight) {
|
|
48
50
|
background-color: var(--colour-highlight-default) !important; // Override inline styles
|
|
49
51
|
}
|
|
50
52
|
|
|
51
|
-
|
|
53
|
+
&:not(.ixbrl-no-highlight) .ixbrl-highlight-2,
|
|
54
|
+
&.ixbrl-highlight-2 .ixbrl-sub-element:not(.ixbrl-no-highlight) {
|
|
52
55
|
background-color: var(--colour-highlight-default) !important; // Override inline styles
|
|
53
56
|
}
|
|
54
57
|
}
|
|
55
58
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
&:not(.ixbrl-no-highlight)
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
}
|
|
59
|
+
// Apply related fact highlighting (used for calc contributors)
|
|
60
|
+
&.ixbrl-related {
|
|
61
|
+
&:not(.ixbrl-no-highlight),
|
|
62
|
+
.ixbrl-sub-element:not(.ixbrl-no-highlight) {
|
|
63
|
+
outline: solid 0.125em var(--colour-related-fact);
|
|
64
|
+
outline-offset: 0.0625em;
|
|
63
65
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
&:hover:not(.ixbrl-selected) {
|
|
67
|
-
outline: dashed 0.125em var(--colour-primary-focus);
|
|
68
|
-
outline-offset: 0.0625em;
|
|
69
|
-
}
|
|
66
|
+
td&, th& {
|
|
67
|
+
outline-offset: -0.0625em;
|
|
70
68
|
}
|
|
71
69
|
}
|
|
72
70
|
}
|
|
73
71
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
outline: dashed 0.125em var(--colour-related-fact);
|
|
72
|
+
// Apply linked fact highlighting (used when hovering on facts in inspector)
|
|
73
|
+
&.ixbrl-linked-highlight {
|
|
74
|
+
&:not(.ixbrl-no-highlight),
|
|
75
|
+
.ixbrl-sub-element:not(.ixbrl-no-highlight) {
|
|
76
|
+
outline: dashed 0.125em var(--colour-linked-fact);
|
|
77
|
+
outline-offset: 0.0625em;
|
|
81
78
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
}
|
|
79
|
+
td&, th& {
|
|
80
|
+
outline-offset: -0.0625em;
|
|
85
81
|
}
|
|
86
82
|
}
|
|
87
83
|
}
|
|
88
84
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
85
|
+
// Apply dashed outline to iXBRL elements on hover
|
|
86
|
+
// Should override previous rule
|
|
87
|
+
.ixbrl-element:not(.ixbrl-no-highlight),
|
|
88
|
+
.ixbrl-sub-element:not(.ixbrl-no-highlight) {
|
|
89
|
+
&:hover {
|
|
90
|
+
outline: dashed 0.125em var(--colour-primary-focus);
|
|
91
|
+
outline-offset: 0.0625em;
|
|
92
|
+
cursor: pointer;
|
|
96
93
|
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
outline: dashed 0.125em var(--colour-primary-focus) !important;
|
|
100
|
-
outline-offset: -0.0625em !important;
|
|
94
|
+
td&, th& {
|
|
95
|
+
outline-offset: -0.0625em;
|
|
101
96
|
}
|
|
102
97
|
}
|
|
103
|
-
|
|
104
|
-
&.ixbrl-related {
|
|
105
|
-
outline-offset: -0.0625em !important;
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
.ixbrl-related.ixbrl-linked-highlight:not(.ixbrl-no-highlight),
|
|
110
|
-
.ixbrl-linked-highlight:not(.ixbrl-no-highlight) {
|
|
111
|
-
.linked-highlight-text();
|
|
112
98
|
}
|
|
113
99
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
.
|
|
100
|
+
// Apply solid outline to selected elements
|
|
101
|
+
&.ixbrl-selected {
|
|
102
|
+
&:not(.ixbrl-no-highlight),
|
|
103
|
+
.ixbrl-sub-element:not(.ixbrl-no-highlight) {
|
|
104
|
+
// This rule needs to override the previous one so that already selected
|
|
105
|
+
// elements don't get a dashed line on hover
|
|
106
|
+
&,
|
|
107
|
+
&:hover {
|
|
108
|
+
outline: solid 0.125em var(--colour-primary-focus);
|
|
109
|
+
outline-offset: 0.0625em;
|
|
117
110
|
|
|
118
|
-
|
|
111
|
+
td&, th& {
|
|
112
|
+
outline-offset: -0.0625em;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
119
116
|
}
|
|
120
117
|
|
|
121
118
|
div.ixbrl-table-handle {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
iXBRLViewerPlugin/__init__.py,sha256=Uk8Azqk53UTsUJT22LgR-irtQ9RJkA2yaTxqD-IFZyM,16662
|
|
2
|
-
iXBRLViewerPlugin/_version.py,sha256=
|
|
2
|
+
iXBRLViewerPlugin/_version.py,sha256=hqdPVRUMbqym2XJkeOLmAOZiYMHSDi91JbptV8gv8tQ,413
|
|
3
3
|
iXBRLViewerPlugin/constants.py,sha256=DMyEKzoJZPN36vINiNF9wiP7PPofQg0ZLF0H2CP-ns4,3866
|
|
4
4
|
iXBRLViewerPlugin/featureConfig.py,sha256=551aLjiGAkoxsgFDMBJT8s3nVaF787kgbRjFumTTsBE,255
|
|
5
5
|
iXBRLViewerPlugin/iXBRLViewer.py,sha256=7IqbLuapCla5_c-lSM4KiKgSezbioKulJ5pa4ZEPejs,30643
|
|
@@ -12,12 +12,12 @@ iXBRLViewerPlugin/viewer/version.js,sha256=7b5si8UmaS7QqALQIP-wJ0I8onKFox8VyaAiU
|
|
|
12
12
|
iXBRLViewerPlugin/viewer/webpack.common.js,sha256=hpXufjShXAESQh8Ds7ViJ_tbr8XSb7EdqQLRvyu_mQg,1691
|
|
13
13
|
iXBRLViewerPlugin/viewer/webpack.dev.js,sha256=R9AwY_TBrg9otvXpDxT1UsGg5eMqi4aXW7C7EIsHzZk,551
|
|
14
14
|
iXBRLViewerPlugin/viewer/webpack.prod.js,sha256=vfLowWC1EOty0zbq9P-usGaJ3w-JoERpJrYaE9MfoSE,499
|
|
15
|
-
iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js,sha256=
|
|
15
|
+
iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js,sha256=qSRMkf4m06qbYBS4VkR4ccZjtFR7-3pfoa3Xc-EKEWI,889907
|
|
16
16
|
iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js.LICENSE.txt,sha256=Ye_YmUQH4CCOb6Ksrap5lsJC7aZuNZbQnvLs7njZPc0,1832
|
|
17
17
|
iXBRLViewerPlugin/viewer/src/data/utr.json,sha256=HWeZDLQuFunB7kmrP4evfhjMWIVgN8sc89U5Yogy5iA,13322
|
|
18
18
|
iXBRLViewerPlugin/viewer/src/html/fact-details.html,sha256=r3cPuOzcosgBkYl0jfmRUGjYnLgv6Eu0IeTMmUHY4Ak,2863
|
|
19
19
|
iXBRLViewerPlugin/viewer/src/html/footer-logo.html,sha256=8c91oB4B1JhAIhTvdjjhvq6lJB6WNpBWw-lrsP7IBDw,233
|
|
20
|
-
iXBRLViewerPlugin/viewer/src/html/footnote-details.html,sha256=
|
|
20
|
+
iXBRLViewerPlugin/viewer/src/html/footnote-details.html,sha256=EjP3KHyUgQcbiYpwXGClBb2OXiw86GKlDucTSKQbHd4,311
|
|
21
21
|
iXBRLViewerPlugin/viewer/src/html/inspector.html,sha256=sBBBptaF9VxqKq8pOZkXSTZ9SFCJFyrV1Nk5Rjw_ssk,28049
|
|
22
22
|
iXBRLViewerPlugin/viewer/src/i18n/cy/balancetypes.json,sha256=yj0WO6sFU4GCciYUBWjzvvfqrBh869doeOC2Pp5EI1Y,3
|
|
23
23
|
iXBRLViewerPlugin/viewer/src/i18n/cy/currencies.json,sha256=ft1LSR8Ikbuetr1iQ87W9_-gQSGEfJ2Y5z7D8j8Mau4,295
|
|
@@ -100,11 +100,11 @@ iXBRLViewerPlugin/viewer/src/js/fact.js,sha256=JczMGMw77NsdeKvjkJZ-mj7-zAX1TCfK7
|
|
|
100
100
|
iXBRLViewerPlugin/viewer/src/js/fact.test.js,sha256=Jkdd_khlu_nF1H0ojXNviqrYjQQRqS-vvT3MWjHXbWE,24320
|
|
101
101
|
iXBRLViewerPlugin/viewer/src/js/factset.js,sha256=VwJSiIVra3IO5Zwz5LV4aQj5D_Q7tPAtlpQEPUioKU8,5120
|
|
102
102
|
iXBRLViewerPlugin/viewer/src/js/factset.test.js,sha256=WNpm9EE1Eu3DkguUubN2nXnHWY9TIzQdJ6LuidRCHHY,8877
|
|
103
|
-
iXBRLViewerPlugin/viewer/src/js/footnote.js,sha256=
|
|
103
|
+
iXBRLViewerPlugin/viewer/src/js/footnote.js,sha256=YPj7GQAdTC2KPSHAZSWF2z_gnJoJPQupusq3qcIwjhs,770
|
|
104
104
|
iXBRLViewerPlugin/viewer/src/js/identifiers.js,sha256=gcGitF1CfiyiUvzWDG6INnFDIBi5jXdBgiqCB8Ip0YE,2260
|
|
105
105
|
iXBRLViewerPlugin/viewer/src/js/identifiers.test.js,sha256=eu2TkHVpuRItIyNdNAuoITnpGFwwAicqMynf0dFreRk,2112
|
|
106
106
|
iXBRLViewerPlugin/viewer/src/js/index.js,sha256=frm9U9Am133B4SkzY_ejgImK9t9cr_Er6dVrQMjjO5k,468
|
|
107
|
-
iXBRLViewerPlugin/viewer/src/js/inspector.js,sha256=
|
|
107
|
+
iXBRLViewerPlugin/viewer/src/js/inspector.js,sha256=xXWNzqaQIhxHH-KoVo3z438lysjBvqeUA_UCrt1H9Lw,64079
|
|
108
108
|
iXBRLViewerPlugin/viewer/src/js/inspector.test.js,sha256=7tqnxbjn6RCZ24L_JNo_Ws2NOvmLRWsUVh1DHOO78hA,10071
|
|
109
109
|
iXBRLViewerPlugin/viewer/src/js/interval.js,sha256=ZEIbH4uwTIvF1jmulEWnJI5ZD1AamgKtkyplOwlcrv0,1889
|
|
110
110
|
iXBRLViewerPlugin/viewer/src/js/interval.test.js,sha256=pLbukwlcS38ycDJaNYV_9pAca7wiprunXHqD4TkHEi8,4577
|
|
@@ -142,7 +142,7 @@ iXBRLViewerPlugin/viewer/src/js/util.js,sha256=RLY89DcDimC3QncKF9zcQssWoCt2WiEo2
|
|
|
142
142
|
iXBRLViewerPlugin/viewer/src/js/util.test.js,sha256=t6sgV6rTL3aXQMN3iIVe8XxTAOCn1UYHKr_kD6tjI7A,6495
|
|
143
143
|
iXBRLViewerPlugin/viewer/src/js/utr.js,sha256=0oMasZ9OMGGI_6BQwxLRrXQT3voESWylv-ldGaS_aEA,581
|
|
144
144
|
iXBRLViewerPlugin/viewer/src/js/validationreport.js,sha256=zWA9_8sWavX2Fi8fwEyDPABxWL_XSzvNQ21O1Qu2ayY,644
|
|
145
|
-
iXBRLViewerPlugin/viewer/src/js/viewer.js,sha256=
|
|
145
|
+
iXBRLViewerPlugin/viewer/src/js/viewer.js,sha256=c_dUTiz6LxffRJOXl-6Tp9Zygv5PZtdH2zgYd9vU4gg,35491
|
|
146
146
|
iXBRLViewerPlugin/viewer/src/js/viewerOptions.js,sha256=wJbPXEVuCmmTM6NvNQs4-1gibRT1wzbDr2XVrX2cSqo,139
|
|
147
147
|
iXBRLViewerPlugin/viewer/src/less/accordian.less,sha256=XhfcABGSqxr18vX3Oz7p77Tp0Au8EWj3yY2_cWxMKyI,682
|
|
148
148
|
iXBRLViewerPlugin/viewer/src/less/block-list.less,sha256=Pw81p9mW6T6LdmpIG_ci-gvtQSDS07ZTlzB-H_Zp7KU,776
|
|
@@ -158,7 +158,7 @@ iXBRLViewerPlugin/viewer/src/less/dialog.less,sha256=R3Vu_rG8VgCL3deoja6XfRrPIbP
|
|
|
158
158
|
iXBRLViewerPlugin/viewer/src/less/fonts.less,sha256=IamL4X-5uDuDM_Ob-kGrZKKxfCwVRk6C1hkRMwY8ESY,226
|
|
159
159
|
iXBRLViewerPlugin/viewer/src/less/form-controls.less,sha256=H4_CwDhpxPzrORy2-3FF4zh50qJmMwlJJ4hBXLELTP0,2085
|
|
160
160
|
iXBRLViewerPlugin/viewer/src/less/icons.less.njk,sha256=M-l5TC5MZTu69xD9bFjlgq7RHCmGoX_gTw1k4MDJeiU,253
|
|
161
|
-
iXBRLViewerPlugin/viewer/src/less/inspector.less,sha256=
|
|
161
|
+
iXBRLViewerPlugin/viewer/src/less/inspector.less,sha256=IwhvTek8hsxbRA-tAHKdHs-K5yUCXfAHYobGJQ2FcUk,28353
|
|
162
162
|
iXBRLViewerPlugin/viewer/src/less/loader.less,sha256=i9JlRVlJ5jODeU2VeHX_t__9eKgaRgvksE4ZWVUG5d8,1216
|
|
163
163
|
iXBRLViewerPlugin/viewer/src/less/menu.less,sha256=iDsVQczWeX9r93nOKhtvZHZI6cSMdcTT4rrP8uJ6_c4,2611
|
|
164
164
|
iXBRLViewerPlugin/viewer/src/less/summary.less,sha256=kBs3KlIg7NnQ_ojIYKg1HExr5VuAx54EwvaDuOX-tEM,1799
|
|
@@ -166,7 +166,7 @@ iXBRLViewerPlugin/viewer/src/less/tabs.less,sha256=-iW6559n1NttKSpsOHixZU_pyADie
|
|
|
166
166
|
iXBRLViewerPlugin/viewer/src/less/text-block-viewer.less,sha256=CYwgDxPHXmdlw-mqysbsovTV4rUXvcgb8Cp2qvUhOPA,499
|
|
167
167
|
iXBRLViewerPlugin/viewer/src/less/text-mixins.less,sha256=pYeQjz6JptSyUTxoVwfNebMx4JfQwxqZKI1fhV3wydo,250
|
|
168
168
|
iXBRLViewerPlugin/viewer/src/less/validation-report.less,sha256=HWkYEWxny-_zAYrwPXwAXuNCbThMRyomhu6KteUAjEg,351
|
|
169
|
-
iXBRLViewerPlugin/viewer/src/less/viewer.less,sha256=
|
|
169
|
+
iXBRLViewerPlugin/viewer/src/less/viewer.less,sha256=Fb-3aBNs36rErnZZAALZ_73InZXHSWSOPJVilhXV6b8,4591
|
|
170
170
|
iXBRLViewerPlugin/viewer/tools/build-font.js,sha256=Q-Uh0o6Uj2fkKd0zjS7rbVV2mkNydmEWGpkg0uWVir4,818
|
|
171
171
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
172
172
|
tests/puppeteer/puppeteer_test_run_via_intellij.jpg,sha256=xkFc4lziUkeRxUbhmNSGl1Pte4uQyeMLQY9eiRdHfwQ,80858
|
|
@@ -188,10 +188,10 @@ tests/unit_tests/iXBRLViewerPlugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
188
188
|
tests/unit_tests/iXBRLViewerPlugin/mock_arelle.py,sha256=fQKJGwceaEVaxvqV9tyuvT6DJB5s1X3-oSMjbFMKlS8,1301
|
|
189
189
|
tests/unit_tests/iXBRLViewerPlugin/test_iXBRLViewer.py,sha256=2beDs9kf0wRZFw9NM-dYm4j1zlxRybFj7f1JpwUTttQ,33756
|
|
190
190
|
tests/unit_tests/iXBRLViewerPlugin/test_xhtmlserialize.py,sha256=kdrg4i-YXnYAGl9TLWEACPQF0V69OAMXdXLYJwefsH0,12521
|
|
191
|
-
ixbrl_viewer-1.4.
|
|
192
|
-
ixbrl_viewer-1.4.
|
|
193
|
-
ixbrl_viewer-1.4.
|
|
194
|
-
ixbrl_viewer-1.4.
|
|
195
|
-
ixbrl_viewer-1.4.
|
|
196
|
-
ixbrl_viewer-1.4.
|
|
197
|
-
ixbrl_viewer-1.4.
|
|
191
|
+
ixbrl_viewer-1.4.53.dist-info/LICENSE,sha256=TZJhu77S_2-WQcPAkuIAlQiuuiNqVcuHBjd7z3Y5S08,16645
|
|
192
|
+
ixbrl_viewer-1.4.53.dist-info/METADATA,sha256=Tv31u7aFMhYEnyidX3EMRliH1gC2ZQI4-Hv-ELEIwnk,15797
|
|
193
|
+
ixbrl_viewer-1.4.53.dist-info/NOTICE,sha256=-SHDY0OY7s4gm4Rdk5AB3nbnUsrdHEHPdJuGFR_vuM4,566
|
|
194
|
+
ixbrl_viewer-1.4.53.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
195
|
+
ixbrl_viewer-1.4.53.dist-info/entry_points.txt,sha256=2XUzP20WGwxdvnugdBybUBwAB3xf_zvrOR5W_smFz_4,65
|
|
196
|
+
ixbrl_viewer-1.4.53.dist-info/top_level.txt,sha256=h8MkrMhC_t2-KbfS1oxJVnFAbn5NZJH8END_BL40mv8,24
|
|
197
|
+
ixbrl_viewer-1.4.53.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|