ixbrl-viewer 1.4.55__py3-none-any.whl → 1.4.57__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/js/util.js +1 -1
- iXBRLViewerPlugin/viewer/src/js/viewer.js +8 -0
- iXBRLViewerPlugin/viewer/src/less/colours.less +3 -0
- iXBRLViewerPlugin/viewer/src/less/inspector.less +15 -0
- iXBRLViewerPlugin/viewer/src/less/viewer.less +28 -6
- ixbrl_viewer-1.4.55.dist-info/LICENSE → ixbrl_viewer-1.4.57.dist-info/LICENSE.md +8 -14
- {ixbrl_viewer-1.4.55.dist-info → ixbrl_viewer-1.4.57.dist-info}/METADATA +3 -3
- {ixbrl_viewer-1.4.55.dist-info → ixbrl_viewer-1.4.57.dist-info}/RECORD +14 -14
- {ixbrl_viewer-1.4.55.dist-info → ixbrl_viewer-1.4.57.dist-info}/NOTICE +0 -0
- {ixbrl_viewer-1.4.55.dist-info → ixbrl_viewer-1.4.57.dist-info}/WHEEL +0 -0
- {ixbrl_viewer-1.4.55.dist-info → ixbrl_viewer-1.4.57.dist-info}/entry_points.txt +0 -0
- {ixbrl_viewer-1.4.55.dist-info → ixbrl_viewer-1.4.57.dist-info}/top_level.txt +0 -0
|
@@ -14,7 +14,7 @@ export const CALC11_ARCROLE = "calc11";
|
|
|
14
14
|
export const GLOSSARY_URL = "https://xbrl.org/glossary/";
|
|
15
15
|
|
|
16
16
|
// The number of distinct highlight colors defined in inspector.less
|
|
17
|
-
export const HIGHLIGHT_COLORS =
|
|
17
|
+
export const HIGHLIGHT_COLORS = 6;
|
|
18
18
|
|
|
19
19
|
// Feature names
|
|
20
20
|
export const FEATURE_GUIDE_LINK = 'guide_link';
|
|
@@ -68,6 +68,8 @@ export class Viewer {
|
|
|
68
68
|
viewer._preProcessiXBRL($(this).contents().find("body").get(0), reportIndex, docIndex, false);
|
|
69
69
|
});
|
|
70
70
|
|
|
71
|
+
viewer._setContinuationMaps();
|
|
72
|
+
|
|
71
73
|
/* Call plugin promise for each document in turn */
|
|
72
74
|
(async function () {
|
|
73
75
|
for (const [docIndex, iframe] of viewer._iframes.toArray().entries()) {
|
|
@@ -345,6 +347,12 @@ export class Viewer {
|
|
|
345
347
|
this.itemContinuationMap = itemContinuationMap;
|
|
346
348
|
}
|
|
347
349
|
|
|
350
|
+
_setContinuationMaps() {
|
|
351
|
+
for (const [itemId, itemContinuations] of Object.entries(this.itemContinuationMap)) {
|
|
352
|
+
this._ixNodeMap[itemId].continuations = itemContinuations.map(id => this._ixNodeMap[id]);
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
|
|
348
356
|
_getOrCreateIXNode(vuid, nodes, docIndex, isHidden) {
|
|
349
357
|
// We may have already created an IXNode for this ID from a -sec-ix-hidden
|
|
350
358
|
// element
|
|
@@ -25,6 +25,9 @@
|
|
|
25
25
|
@colour-highlight-default: lighten(desaturate(spin(@colour-secondary, -0.5660), 31.1688), 34); // #beea8f
|
|
26
26
|
@colour-highlight-1: lighten(saturate(spin(@colour-tertiary, -25.3918), 17.2043), 36); // #dd73ff
|
|
27
27
|
@colour-highlight-2: lighten(saturate(spin(@colour-warning, 1.0810), 17.7215), 33); // #ffac29
|
|
28
|
+
@colour-highlight-3: #a6fff7;
|
|
29
|
+
@colour-highlight-4: #ff7467;
|
|
30
|
+
@colour-highlight-5: #7e84fF;
|
|
28
31
|
|
|
29
32
|
@colour-icon-grey: @colour-text;
|
|
30
33
|
|
|
@@ -34,6 +34,9 @@
|
|
|
34
34
|
--colour-foreground: @colour-foreground;
|
|
35
35
|
--colour-highlight-1: @colour-highlight-1;
|
|
36
36
|
--colour-highlight-2: @colour-highlight-2;
|
|
37
|
+
--colour-highlight-3: @colour-highlight-3;
|
|
38
|
+
--colour-highlight-4: @colour-highlight-4;
|
|
39
|
+
--colour-highlight-5: @colour-highlight-5;
|
|
37
40
|
--colour-highlight-default: @colour-highlight-default;
|
|
38
41
|
--colour-icon-grey: @colour-icon-grey;
|
|
39
42
|
--colour-linked-fact: @colour-linked-fact;
|
|
@@ -334,6 +337,18 @@
|
|
|
334
337
|
.sample-2 {
|
|
335
338
|
background: var(--colour-highlight-2);
|
|
336
339
|
}
|
|
340
|
+
|
|
341
|
+
.sample-3 {
|
|
342
|
+
background: var(--colour-highlight-3);
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.sample-4 {
|
|
346
|
+
background: var(--colour-highlight-4);
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.sample-5 {
|
|
350
|
+
background: var(--colour-highlight-5);
|
|
351
|
+
}
|
|
337
352
|
}
|
|
338
353
|
}
|
|
339
354
|
}
|
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
--colour-bg: @colour-bg;
|
|
9
9
|
--colour-highlight-1: @colour-highlight-1;
|
|
10
10
|
--colour-highlight-2: @colour-highlight-2;
|
|
11
|
+
--colour-highlight-3: @colour-highlight-3;
|
|
12
|
+
--colour-highlight-4: @colour-highlight-4;
|
|
13
|
+
--colour-highlight-5: @colour-highlight-5;
|
|
11
14
|
--colour-highlight-default: @colour-highlight-default;
|
|
12
15
|
--colour-linked-fact: @colour-linked-fact;
|
|
13
16
|
--colour-primary-focus: @colour-primary-focus;
|
|
@@ -30,10 +33,25 @@
|
|
|
30
33
|
background-color: var(--colour-highlight-1) !important; // Override inline styles
|
|
31
34
|
}
|
|
32
35
|
|
|
33
|
-
&:not(.ixbrl-no-highlight)
|
|
36
|
+
&:not(.ixbrl-no-highlight).ixbrl-highlight-2,
|
|
34
37
|
&.ixbrl-highlight-2 .ixbrl-sub-element:not(.ixbrl-no-highlight) {
|
|
35
38
|
background-color: var(--colour-highlight-2) !important; // Override inline styles
|
|
36
39
|
}
|
|
40
|
+
|
|
41
|
+
&:not(.ixbrl-no-highlight).ixbrl-highlight-3,
|
|
42
|
+
&.ixbrl-highlight-3 .ixbrl-sub-element:not(.ixbrl-no-highlight) {
|
|
43
|
+
background-color: var(--colour-highlight-3) !important; // Override inline styles
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&:not(.ixbrl-no-highlight).ixbrl-highlight-4,
|
|
47
|
+
&.ixbrl-highlight-4 .ixbrl-sub-element:not(.ixbrl-no-highlight) {
|
|
48
|
+
background-color: var(--colour-highlight-4) !important; // Override inline styles
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&:not(.ixbrl-no-highlight) .ixbrl-highlight-5,
|
|
52
|
+
&.ixbrl-highlight-5 .ixbrl-sub-element:not(.ixbrl-no-highlight) {
|
|
53
|
+
background-color: var(--colour-highlight-5) !important; // Override inline styles
|
|
54
|
+
}
|
|
37
55
|
}
|
|
38
56
|
|
|
39
57
|
.review.review-highlight-untagged-numbers .review-untagged-number {
|
|
@@ -46,14 +64,18 @@
|
|
|
46
64
|
|
|
47
65
|
.review .ixbrl-highlight {
|
|
48
66
|
&:not(.ixbrl-no-highlight).ixbrl-highlight-1,
|
|
49
|
-
|
|
67
|
+
&:not(.ixbrl-no-highlight).ixbrl-highlight-2,
|
|
68
|
+
&:not(.ixbrl-no-highlight).ixbrl-highlight-3,
|
|
69
|
+
&:not(.ixbrl-no-highlight).ixbrl-highlight-4,
|
|
70
|
+
&:not(.ixbrl-no-highlight).ixbrl-highlight-5,
|
|
71
|
+
&.ixbrl-highlight-1 .ixbrl-sub-element:not(.ixbrl-no-highlight),
|
|
72
|
+
&.ixbrl-highlight-2 .ixbrl-sub-element:not(.ixbrl-no-highlight),
|
|
73
|
+
&.ixbrl-highlight-3 .ixbrl-sub-element:not(.ixbrl-no-highlight),
|
|
74
|
+
&.ixbrl-highlight-4 .ixbrl-sub-element:not(.ixbrl-no-highlight),
|
|
75
|
+
&.ixbrl-highlight-5 .ixbrl-sub-element:not(.ixbrl-no-highlight) {
|
|
50
76
|
background-color: var(--colour-highlight-default) !important; // Override inline styles
|
|
51
77
|
}
|
|
52
78
|
|
|
53
|
-
&:not(.ixbrl-no-highlight) .ixbrl-highlight-2,
|
|
54
|
-
&.ixbrl-highlight-2 .ixbrl-sub-element:not(.ixbrl-no-highlight) {
|
|
55
|
-
background-color: var(--colour-highlight-default) !important; // Override inline styles
|
|
56
|
-
}
|
|
57
79
|
}
|
|
58
80
|
|
|
59
81
|
// Apply related fact highlighting (used for calc contributors)
|
|
@@ -1,22 +1,16 @@
|
|
|
1
|
+
# License
|
|
1
2
|
|
|
3
|
+
Copyright © 2019-present Workiva, Inc.
|
|
2
4
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Copyright 2019 Workiva Inc.
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
6
|
you may not use this file except in compliance with the License.
|
|
10
7
|
You may obtain a copy of the License at
|
|
8
|
+
<http://www.apache.org/licenses/LICENSE-2.0>
|
|
11
9
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
17
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
18
|
-
See the License for the specific language governing permissions and
|
|
19
|
-
limitations under the License.
|
|
10
|
+
Unless required by applicable law or agreed to in writing, software distributed
|
|
11
|
+
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
12
|
+
CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
13
|
+
specific language governing permissions and limitations under the License.
|
|
20
14
|
|
|
21
15
|
---
|
|
22
16
|
This ixbrl-viewer software includes a number of subcomponents with separate copyright notices and/or license
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: ixbrl-viewer
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.57
|
|
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
|
|
@@ -27,7 +27,7 @@ Classifier: Operating System :: OS Independent
|
|
|
27
27
|
Classifier: Topic :: Text Processing :: Markup :: XML
|
|
28
28
|
Requires-Python: >=3.9
|
|
29
29
|
Description-Content-Type: text/markdown
|
|
30
|
-
License-File: LICENSE
|
|
30
|
+
License-File: LICENSE.md
|
|
31
31
|
License-File: NOTICE
|
|
32
32
|
Requires-Dist: lxml<6,>=4
|
|
33
33
|
Provides-Extra: arelle
|
|
@@ -35,7 +35,7 @@ Requires-Dist: arelle_release==2.*; extra == "arelle"
|
|
|
35
35
|
Provides-Extra: dev
|
|
36
36
|
Requires-Dist: flake8==7.1.1; extra == "dev"
|
|
37
37
|
Requires-Dist: lxml-stubs==0.5.1; extra == "dev"
|
|
38
|
-
Requires-Dist: mypy==1.
|
|
38
|
+
Requires-Dist: mypy==1.15.0; extra == "dev"
|
|
39
39
|
Requires-Dist: pytest==8.3.4; extra == "dev"
|
|
40
40
|
Requires-Dist: typing-extensions==4.12.2; extra == "dev"
|
|
41
41
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
iXBRLViewerPlugin/__init__.py,sha256=263DtPKBXeTomSI-4SeE7gTX0ak16GiIB9DFOoxBK3k,16839
|
|
2
|
-
iXBRLViewerPlugin/_version.py,sha256=
|
|
2
|
+
iXBRLViewerPlugin/_version.py,sha256=8vrT45E61hUlDnjsrOc-dsFkkIwvQngI3pbjUOKkY_I,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,7 +12,7 @@ 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=34lhh9zIgJJmxvtc6TiKqdbtNU1f777tDaXLRXQTKeU,892175
|
|
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
|
|
@@ -138,11 +138,11 @@ iXBRLViewerPlugin/viewer/src/js/textblockviewer.js,sha256=lCAZeN_wrSwmYie_rwdeIF
|
|
|
138
138
|
iXBRLViewerPlugin/viewer/src/js/theme.js,sha256=dbh2lL1OQdTpcKRy9cLGyxcmjTejQMOn19xMITslNcg,1315
|
|
139
139
|
iXBRLViewerPlugin/viewer/src/js/unit.js,sha256=tqghHvLTm7uLIJ4mApNNXYv4AT37kGhAdIM7GAJxatU,3902
|
|
140
140
|
iXBRLViewerPlugin/viewer/src/js/unit.test.js,sha256=An7RSoNOurKYl6SEgRQu7w2stgP07jPFN8x0KjRupck,3220
|
|
141
|
-
iXBRLViewerPlugin/viewer/src/js/util.js,sha256=
|
|
141
|
+
iXBRLViewerPlugin/viewer/src/js/util.js,sha256=gvkbohUxHdiqW0by0yBBtDM1NPUftuIth4bx1yfh_9c,7919
|
|
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=NOel5t1s6583_9m2RZcamOVloX-Vxh7hdg0Wo26Dk9k,35785
|
|
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
|
|
@@ -150,7 +150,7 @@ iXBRLViewerPlugin/viewer/src/less/calculation-inspector.less,sha256=hbA5GV4yOe5E
|
|
|
150
150
|
iXBRLViewerPlugin/viewer/src/less/chart.less,sha256=pkPpkJ9ROV72UihWolbGuKBijuBoyFNdPQdAQa03qAM,901
|
|
151
151
|
iXBRLViewerPlugin/viewer/src/less/clearfix.less,sha256=p2RuEaUQZ8JecLn6nsKMao2Oj00CVMVdrCeeP-6eIjA,132
|
|
152
152
|
iXBRLViewerPlugin/viewer/src/less/colours-dark-mode.less,sha256=jfazvGGhxhnyWgSPgLNETrKc395NPnSQWcvM4_9VJVE,1530
|
|
153
|
-
iXBRLViewerPlugin/viewer/src/less/colours.less,sha256=
|
|
153
|
+
iXBRLViewerPlugin/viewer/src/less/colours.less,sha256=KV2Y9QI5RH1v8_27n3fosNxQeQH08YIAxgVC0HD6n_8,1685
|
|
154
154
|
iXBRLViewerPlugin/viewer/src/less/common.less,sha256=w_u99093g9ZJ-1WyEeKqAzzWg9alEKNfhIxyst8XQPA,315
|
|
155
155
|
iXBRLViewerPlugin/viewer/src/less/components.less,sha256=o_gE5ch8eai02j4hm2ZOxNtL2ufJNeHeTeipcvZI9NM,441
|
|
156
156
|
iXBRLViewerPlugin/viewer/src/less/core.less,sha256=658vCkq8xy15L5wp-MMvg4dj4gCyrT105NUkEc0HnSg,172
|
|
@@ -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=w24n-yBpYujMdk-lznwmh2m_InwopbNNHIgYIw1s1VA,28771
|
|
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=piLepb_LJUQw0iDfpXtrHI1Wts9L4tbKvAc3ZDtZi-Q,5598
|
|
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.57.dist-info/LICENSE.md,sha256=FOClHlBMDtwKei0tOJ7pv8WZ_HuQJMNYD1az3NpK73o,16647
|
|
192
|
+
ixbrl_viewer-1.4.57.dist-info/METADATA,sha256=tbji9fK33Od7V6FnzKn6bkRmfd-MW_oW0-J0zCrYX6U,15800
|
|
193
|
+
ixbrl_viewer-1.4.57.dist-info/NOTICE,sha256=-SHDY0OY7s4gm4Rdk5AB3nbnUsrdHEHPdJuGFR_vuM4,566
|
|
194
|
+
ixbrl_viewer-1.4.57.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
195
|
+
ixbrl_viewer-1.4.57.dist-info/entry_points.txt,sha256=2XUzP20WGwxdvnugdBybUBwAB3xf_zvrOR5W_smFz_4,65
|
|
196
|
+
ixbrl_viewer-1.4.57.dist-info/top_level.txt,sha256=h8MkrMhC_t2-KbfS1oxJVnFAbn5NZJH8END_BL40mv8,24
|
|
197
|
+
ixbrl_viewer-1.4.57.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|