ixbrl-viewer 1.4.58__py3-none-any.whl → 1.4.60__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 +9 -4
- iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js +1 -1
- iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js.LICENSE.txt +4 -4
- iXBRLViewerPlugin/viewer/src/js/inspector.js +3 -4
- iXBRLViewerPlugin/viewer/src/js/util.js +1 -0
- {ixbrl_viewer-1.4.58.dist-info → ixbrl_viewer-1.4.60.dist-info}/METADATA +3 -3
- {ixbrl_viewer-1.4.58.dist-info → ixbrl_viewer-1.4.60.dist-info}/RECORD +12 -12
- {ixbrl_viewer-1.4.58.dist-info → ixbrl_viewer-1.4.60.dist-info}/WHEEL +1 -1
- {ixbrl_viewer-1.4.58.dist-info → ixbrl_viewer-1.4.60.dist-info}/LICENSE.md +0 -0
- {ixbrl_viewer-1.4.58.dist-info → ixbrl_viewer-1.4.60.dist-info}/NOTICE +0 -0
- {ixbrl_viewer-1.4.58.dist-info → ixbrl_viewer-1.4.60.dist-info}/entry_points.txt +0 -0
- {ixbrl_viewer-1.4.58.dist-info → ixbrl_viewer-1.4.60.dist-info}/top_level.txt +0 -0
|
@@ -11,16 +11,16 @@ https://github.com/nodeca/pako/blob/main/LICENSE
|
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
/*!
|
|
14
|
-
* @kurkle/color v0.3.
|
|
14
|
+
* @kurkle/color v0.3.4
|
|
15
15
|
* https://github.com/kurkle/color#readme
|
|
16
|
-
* (c)
|
|
16
|
+
* (c) 2024 Jukka Kurkela
|
|
17
17
|
* Released under the MIT License
|
|
18
18
|
*/
|
|
19
19
|
|
|
20
20
|
/*!
|
|
21
|
-
* Chart.js v4.4.
|
|
21
|
+
* Chart.js v4.4.8
|
|
22
22
|
* https://www.chartjs.org
|
|
23
|
-
* (c)
|
|
23
|
+
* (c) 2025 Chart.js Contributors
|
|
24
24
|
* Released under the MIT License
|
|
25
25
|
*/
|
|
26
26
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import $ from 'jquery'
|
|
4
4
|
import i18next from 'i18next';
|
|
5
5
|
import jqueryI18next from 'jquery-i18next';
|
|
6
|
-
import {formatNumber, wrapLabel, truncateLabel, runGenerator, SHOW_FACT, HIGHLIGHT_COLORS, viewerUniqueId, GLOSSARY_URL, FEATURE_HOME_LINK_URL, FEATURE_HOME_LINK_LABEL, FEATURE_SEARCH_ON_STARTUP, FEATURE_HIGHLIGHT_FACTS_ON_STARTUP, STORAGE_APP_LANGUAGE, STORAGE_HIGHLIGHT_FACTS, STORAGE_HOME_LINK_QUERY} from "./util.js";
|
|
6
|
+
import {formatNumber, wrapLabel, truncateLabel, runGenerator, SHOW_FACT, HIGHLIGHT_COLORS, viewerUniqueId, GLOSSARY_URL, FEATURE_HOME_LINK_URL, FEATURE_HOME_LINK_LABEL, FEATURE_SEARCH_ON_STARTUP, FEATURE_HIGHLIGHT_FACTS_ON_STARTUP, STORAGE_APP_LANGUAGE, STORAGE_HIGHLIGHT_FACTS, STORAGE_HOME_LINK_QUERY, FEATURE_HIDE_CALCULATION_MODE_OPTION} from "./util.js";
|
|
7
7
|
import { ReportSearch } from "./search.js";
|
|
8
8
|
import { IXBRLChart } from './chart.js';
|
|
9
9
|
import { ViewerOptions } from './viewerOptions.js';
|
|
@@ -304,9 +304,8 @@ export class Inspector {
|
|
|
304
304
|
}
|
|
305
305
|
|
|
306
306
|
// Options
|
|
307
|
-
this.
|
|
308
|
-
|
|
309
|
-
if (this._reportSet.usesCalculations()) {
|
|
307
|
+
if (this._reportSet.usesCalculations() && !this._iv.isFeatureEnabled(FEATURE_HIDE_CALCULATION_MODE_OPTION)) {
|
|
308
|
+
this._optionsMenu.addLabel(i18next.t("menu.options"));
|
|
310
309
|
this._optionsMenu.addCheckboxItem(i18next.t("calculation.useCalculations11"), (useCalc11) => this.setCalculationMode(useCalc11), "calculation-mode", "select-language", this._useCalc11);
|
|
311
310
|
}
|
|
312
311
|
}
|
|
@@ -25,6 +25,7 @@ export const FEATURE_SUPPORT_LINK = 'support_link';
|
|
|
25
25
|
export const FEATURE_SURVEY_LINK = 'survey_link';
|
|
26
26
|
export const FEATURE_SEARCH_ON_STARTUP = 'search_on_startup';
|
|
27
27
|
export const FEATURE_HIGHLIGHT_FACTS_ON_STARTUP = 'highlight_facts_on_startup';
|
|
28
|
+
export const FEATURE_HIDE_CALCULATION_MODE_OPTION = 'hide_calculation_mode_option';
|
|
28
29
|
|
|
29
30
|
export const IXBRL_VIEWER_DATASET_PREFIX = 'ixbrlViewer';
|
|
30
31
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: ixbrl-viewer
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.60
|
|
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
|
|
@@ -33,10 +33,10 @@ Requires-Dist: lxml<6,>=4
|
|
|
33
33
|
Provides-Extra: arelle
|
|
34
34
|
Requires-Dist: arelle_release==2.*; extra == "arelle"
|
|
35
35
|
Provides-Extra: dev
|
|
36
|
-
Requires-Dist: flake8==7.1.
|
|
36
|
+
Requires-Dist: flake8==7.1.2; extra == "dev"
|
|
37
37
|
Requires-Dist: lxml-stubs==0.5.1; extra == "dev"
|
|
38
38
|
Requires-Dist: mypy==1.15.0; extra == "dev"
|
|
39
|
-
Requires-Dist: pytest==8.3.
|
|
39
|
+
Requires-Dist: pytest==8.3.5; extra == "dev"
|
|
40
40
|
Requires-Dist: typing-extensions==4.12.2; extra == "dev"
|
|
41
41
|
|
|
42
42
|
# Arelle iXBRL Viewer
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
iXBRLViewerPlugin/__init__.py,sha256=263DtPKBXeTomSI-4SeE7gTX0ak16GiIB9DFOoxBK3k,16839
|
|
2
|
-
iXBRLViewerPlugin/_version.py,sha256=
|
|
2
|
+
iXBRLViewerPlugin/_version.py,sha256=wJa5RctBJkWmbXSLmtguR6GcB-8B1gh-LAKQtqBvhyE,513
|
|
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,8 +12,8 @@ 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=
|
|
16
|
-
iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js.LICENSE.txt,sha256=
|
|
15
|
+
iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js,sha256=iJ2Ypk_ueerB5eUhjOQ0GEV0KYfMrId09Ow2nq6qAYo,893678
|
|
16
|
+
iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js.LICENSE.txt,sha256=jlPihgbpUHlsiIZWnbvMWuK6B3JBOx1STSa-gvwTbkQ,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
|
|
@@ -104,7 +104,7 @@ iXBRLViewerPlugin/viewer/src/js/footnote.js,sha256=YPj7GQAdTC2KPSHAZSWF2z_gnJoJP
|
|
|
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=DrvaX6I17l_uuz90Ttfa7QH2AUg8dyMpI7DlOVctD7w,64964
|
|
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
|
|
@@ -138,7 +138,7 @@ 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=j3XmVxM9p9qvE5taLOlWBDKDVmJvGBM0zsscgC2aIU0,8117
|
|
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
|
|
@@ -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.60.dist-info/LICENSE.md,sha256=FOClHlBMDtwKei0tOJ7pv8WZ_HuQJMNYD1az3NpK73o,16647
|
|
192
|
+
ixbrl_viewer-1.4.60.dist-info/METADATA,sha256=eFse7xlAVH6s7lcMHM6AqHklsC1o79LQE2A9hhDtGOQ,18469
|
|
193
|
+
ixbrl_viewer-1.4.60.dist-info/NOTICE,sha256=-SHDY0OY7s4gm4Rdk5AB3nbnUsrdHEHPdJuGFR_vuM4,566
|
|
194
|
+
ixbrl_viewer-1.4.60.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
195
|
+
ixbrl_viewer-1.4.60.dist-info/entry_points.txt,sha256=2XUzP20WGwxdvnugdBybUBwAB3xf_zvrOR5W_smFz_4,65
|
|
196
|
+
ixbrl_viewer-1.4.60.dist-info/top_level.txt,sha256=h8MkrMhC_t2-KbfS1oxJVnFAbn5NZJH8END_BL40mv8,24
|
|
197
|
+
ixbrl_viewer-1.4.60.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|