ixbrl-viewer 1.4.43__py3-none-any.whl → 1.4.45__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 +6 -1
- iXBRLViewerPlugin/_version.py +2 -2
- iXBRLViewerPlugin/constants.py +6 -6
- iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js +1 -1
- iXBRLViewerPlugin/viewer/src/i18n/cy/translation.json +1 -1
- iXBRLViewerPlugin/viewer/src/i18n/es/translation.json +1 -1
- iXBRLViewerPlugin/viewer/src/js/inspector.js +1 -1
- iXBRLViewerPlugin/viewer/src/js/theme.js +24 -11
- iXBRLViewerPlugin/viewer/src/js/util.js +1 -0
- iXBRLViewerPlugin/viewer/src/less/colours-dark-mode.less +3 -3
- iXBRLViewerPlugin/viewer/src/less/colours.less +3 -3
- {ixbrl_viewer-1.4.43.dist-info → ixbrl_viewer-1.4.45.dist-info}/METADATA +1 -1
- {ixbrl_viewer-1.4.43.dist-info → ixbrl_viewer-1.4.45.dist-info}/RECORD +19 -19
- tests/puppeteer/framework/page_objects/doc_frame.js +3 -3
- {ixbrl_viewer-1.4.43.dist-info → ixbrl_viewer-1.4.45.dist-info}/LICENSE +0 -0
- {ixbrl_viewer-1.4.43.dist-info → ixbrl_viewer-1.4.45.dist-info}/NOTICE +0 -0
- {ixbrl_viewer-1.4.43.dist-info → ixbrl_viewer-1.4.45.dist-info}/WHEEL +0 -0
- {ixbrl_viewer-1.4.43.dist-info → ixbrl_viewer-1.4.45.dist-info}/entry_points.txt +0 -0
- {ixbrl_viewer-1.4.43.dist-info → ixbrl_viewer-1.4.45.dist-info}/top_level.txt +0 -0
iXBRLViewerPlugin/__init__.py
CHANGED
|
@@ -241,6 +241,12 @@ def iXBRLViewerSaveCommand(cntlr):
|
|
|
241
241
|
return
|
|
242
242
|
dialog = SaveViewerDialog(cntlr)
|
|
243
243
|
dialog.render()
|
|
244
|
+
features = {
|
|
245
|
+
feature: True
|
|
246
|
+
for feature in dialog.features()
|
|
247
|
+
}
|
|
248
|
+
pluginData(cntlr).builder = IXBRLViewerBuilder(cntlr, features=features)
|
|
249
|
+
processModel(cntlr, modelXbrl)
|
|
244
250
|
if dialog.accepted and dialog.filename():
|
|
245
251
|
generateViewer(
|
|
246
252
|
cntlr=cntlr,
|
|
@@ -248,7 +254,6 @@ def iXBRLViewerSaveCommand(cntlr):
|
|
|
248
254
|
viewerURL=dialog.scriptUrl(),
|
|
249
255
|
copyScript=dialog.copyScript(),
|
|
250
256
|
zipViewerOutput=dialog.zipViewerOutput(),
|
|
251
|
-
features=dialog.features(),
|
|
252
257
|
)
|
|
253
258
|
|
|
254
259
|
|
iXBRLViewerPlugin/_version.py
CHANGED
iXBRLViewerPlugin/constants.py
CHANGED
|
@@ -80,20 +80,20 @@ FEATURE_CONFIGS = [
|
|
|
80
80
|
FeatureConfig(
|
|
81
81
|
key='search_on_startup',
|
|
82
82
|
label='Search on startup',
|
|
83
|
-
description='Show the search pane by default on startup',
|
|
83
|
+
description='Show the search pane by default on startup.',
|
|
84
84
|
cliAction='store_true',
|
|
85
85
|
cliDefault=None,
|
|
86
|
-
guiVisible=
|
|
87
|
-
guiDefault=
|
|
86
|
+
guiVisible=True,
|
|
87
|
+
guiDefault=False
|
|
88
88
|
),
|
|
89
89
|
FeatureConfig(
|
|
90
90
|
key='highlight_facts_on_startup',
|
|
91
91
|
label='Highlight facts on startup',
|
|
92
|
-
description='Default "Highlight all facts" to on',
|
|
92
|
+
description='Default "Highlight all facts" to on.',
|
|
93
93
|
cliAction='store_true',
|
|
94
94
|
cliDefault=None,
|
|
95
|
-
guiVisible=
|
|
96
|
-
guiDefault=
|
|
95
|
+
guiVisible=True,
|
|
96
|
+
guiDefault=False
|
|
97
97
|
)
|
|
98
98
|
]
|
|
99
99
|
GUI_FEATURE_CONFIGS = [c for c in FEATURE_CONFIGS if c.guiVisible]
|