ixbrl-viewer 1.4.43__py3-none-any.whl → 1.4.44__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.

@@ -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
 
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '1.4.43'
16
- __version_tuple__ = version_tuple = (1, 4, 43)
15
+ __version__ = version = '1.4.44'
16
+ __version_tuple__ = version_tuple = (1, 4, 44)
@@ -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=False,
87
- guiDefault=None
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=False,
96
- guiDefault=None
95
+ guiVisible=True,
96
+ guiDefault=False
97
97
  )
98
98
  ]
99
99
  GUI_FEATURE_CONFIGS = [c for c in FEATURE_CONFIGS if c.guiVisible]