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

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: ixbrl-viewer
3
- Version: 1.4.57
3
+ Version: 1.4.58
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
@@ -41,24 +41,61 @@ Requires-Dist: typing-extensions==4.12.2; extra == "dev"
41
41
 
42
42
  # Arelle iXBRL Viewer
43
43
 
44
+ [![PyPI](https://img.shields.io/pypi/v/ixbrl-viewer)](https://pypi.org/project/ixbrl-viewer/)
45
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/ixbrl-viewer)](https://pypi.org/project/ixbrl-viewer/)
46
+ [![NPM Version](https://img.shields.io/npm/v/ixbrl-viewer)](https://www.npmjs.com/package/ixbrl-viewer)
47
+ [![Read the Docs](https://img.shields.io/readthedocs/arelle-ixbrl-viewer)](https://arelle-ixbrl-viewer.readthedocs.io/)
48
+
44
49
  ![ixbrl-viewer](https://raw.githubusercontent.com/Arelle/ixbrl-viewer/master/examples/ixbrl-viewer-demo.gif)
45
50
 
51
+ ## Table of Contents
52
+
53
+ - [Arelle iXBRL Viewer](#arelle-ixbrl-viewer)
54
+ - [Table of Contents](#table-of-contents)
55
+ - [Description](#description)
56
+ - [Documentation](#documentation)
57
+ - [Installation](#installation)
58
+ - [Accessing the JavaScript viewer application](#accessing-the-javascript-viewer-application)
59
+ - [Accessing via the CDN](#accessing-via-the-cdn)
60
+ - [Accessing via Github](#accessing-via-github)
61
+ - [Building the JavaScript locally](#building-the-javascript-locally)
62
+ - [JavaScript Versioning](#javascript-versioning)
63
+ - [Producing an ixbrl-viewer via the Arelle GUI](#producing-an-ixbrl-viewer-via-the-arelle-gui)
64
+ - [Preparing an iXBRL file via the GUI](#preparing-an-ixbrl-file-via-the-gui)
65
+ - [Preparing an iXBRL document set using the Arelle GUI](#preparing-an-ixbrl-document-set-using-the-arelle-gui)
66
+ - [Producing an ixbrl-viewer via the Arelle command line](#producing-an-ixbrl-viewer-via-the-arelle-command-line)
67
+ - [Preparing an iXBRL file via the command line](#preparing-an-ixbrl-file-via-the-command-line)
68
+ - [Preparing an iXBRL document set](#preparing-an-ixbrl-document-set)
69
+ - [Using build-viewer.py](#using-build-viewerpy)
70
+ - [Stub viewer mode](#stub-viewer-mode)
71
+ - [Optional Features](#optional-features)
72
+ - [Feature: Review Mode](#feature-review-mode)
73
+ - [Runtime config](#runtime-config)
74
+ - [Disable viewer loading](#disable-viewer-loading)
75
+ - [Running tests](#running-tests)
76
+ - [Running unit tests](#running-unit-tests)
77
+ - [Running Puppeteer tests](#running-puppeteer-tests)
78
+ - [👥 Contributors](#-contributors)
79
+ - [License](#license)
80
+
81
+ ## Description
82
+
46
83
  The [Arelle](https://arelle.org/) iXBRL Viewer allows [Inline XBRL](https://www.xbrl.org/ixbrl) (or iXBRL) reports to be
47
84
  viewed interactively in a web browser. The viewer allows users to access the tagged XBRL data embedded in an iXBRL
48
85
  report. Key features include:
49
86
 
50
- * Full text search on taxonomy labels and references
51
- * View full details of tagged facts
52
- * Export tables to Excel
53
- * Visualize and navigate calculation relationships
54
- * Produce on-the-fly graphs using XBRL data
87
+ - Full text search on taxonomy labels and references
88
+ - View full details of tagged facts
89
+ - Export tables to Excel
90
+ - Visualize and navigate calculation relationships
91
+ - Produce on-the-fly graphs using XBRL data
55
92
 
56
93
  A sample viewer is provided in the [examples](https://github.com/Arelle/ixbrl-viewer/blob/master/examples/README.md) for those interested.
57
94
 
58
95
  The viewer project consists of two components:
59
96
 
60
- * A plugin for the [Arelle](https://www.arelle.org) XBRL tool
61
- * The Javascript viewer application
97
+ - A plugin for the [Arelle](https://www.arelle.org) XBRL tool
98
+ - The Javascript viewer application
62
99
 
63
100
  In order to view an iXBRL report in the viewer, it must first be prepared using
64
101
  the Arelle plugin. The preparation process updates the iXBRL file to include:
@@ -77,6 +114,12 @@ in a separate file. See Stub Viewer Mode below.
77
114
  The JavaScript viewer application is a single JavaScript file called ixbrlviewer.js. It
78
115
  contains all of the JavaScript that runs the viewer functionality.
79
116
 
117
+ ## Documentation
118
+
119
+ Need help with the Arelle iXBRL Viewer? Go check out [our documentation][read-the-docs].
120
+
121
+ [read-the-docs]: https://arelle-ixbrl-viewer.readthedocs.io/
122
+
80
123
  ## Installation
81
124
 
82
125
  The Python portion of this repo is developed using Python 3.12.
@@ -173,9 +216,9 @@ python3 Arelle/arelleCmdLine.py --plugins=<path to iXBRLViewerPlugin> -f ixbrl-r
173
216
 
174
217
  Notes:
175
218
 
176
- * "Arelle/arelleCmdLine.py" should be the path to your installation of Arelle
177
- * The plugin path needs to an absolute file path to the ixbrl-viewer plugin
178
- * The viewer url can be one of the following:
219
+ - "Arelle/arelleCmdLine.py" should be the path to your installation of Arelle
220
+ - The plugin path needs to an absolute file path to the ixbrl-viewer plugin
221
+ - The viewer url can be one of the following:
179
222
 
180
223
  1. `https://cdn.jsdelivr.net/npm/ixbrl-viewer@<version>/iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js`
181
224
  2. A relative url to the downloaded ixviewer.js from github
@@ -205,18 +248,18 @@ python3 Arelle/arelleCmdLine.py --plugins '/path/to/iXBRLViewerPlugin|inlineXbrl
205
248
 
206
249
  Notes:
207
250
 
208
- * The first file specified is the "primary" file, and should be opened in a
251
+ - The first file specified is the "primary" file, and should be opened in a
209
252
  browser to use the viewer. The other files will be loaded in separate tabs
210
253
  within the viewer.
211
- * "Arelle/arelleCmdLine.py" should be the path to your installation of Arelle
212
- * The plugin path needs to an absolute file path to the ixbrl-viewer plugin
213
- * The viewer url can be one of the following:
254
+ - "Arelle/arelleCmdLine.py" should be the path to your installation of Arelle
255
+ - The plugin path needs to an absolute file path to the ixbrl-viewer plugin
256
+ - The viewer url can be one of the following:
214
257
 
215
258
  1. `https://cdn.jsdelivr.net/npm/ixbrl-viewer@<version>/iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js`
216
259
  2. A relative url to the downloaded ixviewer.js from github
217
260
  3. A relative url to the locally built ixviewer.js
218
261
 
219
- * Due to browser security restrictions, the resulting viewer cannot be loaded
262
+ - Due to browser security restrictions, the resulting viewer cannot be loaded
220
263
  directly from `file:` URLs; it must be served by a web server.
221
264
 
222
265
  ### Using build-viewer.py
@@ -263,11 +306,12 @@ The downside of this mode is that due to browser security restrictions, the
263
306
  viewer cannot be loaded directly from files (using `file:` URLs); they must be
264
307
  served by a web server.
265
308
 
266
- # Optional Features
309
+ ## Optional Features
267
310
 
268
311
  Some features are disabled by default but can be enabled at generation time or with query parameters.
269
312
 
270
313
  To enable features:
314
+
271
315
  - Via CLI: `--viewer-feature-{feature name}`
272
316
  - Via query parameter:`?{feature name}=true`
273
317
 
@@ -286,7 +330,8 @@ This table uses the 'review' feature as an example to demonstrate how these opti
286
330
  | `review` | `true` | `enabled` |
287
331
  | `review` | `false` | `disabled` |
288
332
 
289
- ## Feature: Review Mode
333
+ ### Feature: Review Mode
334
+
290
335
  ![ixbrl-viewer](https://raw.githubusercontent.com/Arelle/ixbrl-viewer/master/examples/review-mode.png)
291
336
 
292
337
  A review mode is available that is intended to assist in reviewing partially tagged or incomplete documents.
@@ -296,7 +341,7 @@ This mode replaces the namespace-based highlighting with optional highlighting b
296
341
  |---------------------------|----------------|
297
342
  | `--viewer-feature-review` | `?review=true` |
298
343
 
299
- # Runtime config
344
+ ## Runtime config
300
345
 
301
346
  When launched, the viewer will check for the existence of
302
347
  `ixbrlviewer.config.json` in the same directory as `ixbrlviewer.js`. If found,
@@ -304,36 +349,36 @@ this will be loaded and used to configure the viewer.
304
349
 
305
350
  The file supports the following keys:
306
351
 
307
- * `features` - a JSON object containing defaults for features. These will be
352
+ - `features` - a JSON object containing defaults for features. These will be
308
353
  overridden by features defined at generation time, and then by query
309
354
  parameters, as defined above.
310
355
 
311
- * `skin` - a JSON object supporting the following keys:
356
+ - `skin` - a JSON object supporting the following keys:
312
357
 
313
- * `stylesheetUrl` - a URL to additional CSS definitions.
314
- * `faviconUrl` - a URL to an icon file to be used as the favicon for the viewer.
315
- * `footerLogoHtml` - a fragment of HTML that will be included in place of the standard footer logo.
358
+ - `stylesheetUrl` - a URL to additional CSS definitions.
359
+ - `faviconUrl` - a URL to an icon file to be used as the favicon for the viewer.
360
+ - `footerLogoHtml` - a fragment of HTML that will be included in place of the standard footer logo.
316
361
 
317
- * `taxonomyNames` - a JSON object where:
362
+ - `taxonomyNames` - a JSON object where:
318
363
 
319
- * Keys are strings that will be treated as a regular expression to match
364
+ - Keys are strings that will be treated as a regular expression to match
320
365
  against a namespace.
321
- * Values are an array of (prefix, name) where "prefix" is the preferred
366
+ - Values are an array of (prefix, name) where "prefix" is the preferred
322
367
  namespace prefix for the namespace, and "name" is a short descriptive
323
368
  name for the taxonomy.
324
369
 
325
370
  Relative URLs defined in the config file are resolved relative to the config file.
326
371
 
327
- # Disable viewer loading
372
+ ## Disable viewer loading
328
373
 
329
374
  Loading of the viewer can be disabled by specifying `?disable-viewer` as a
330
375
  query parameter. This will leave the iXBRL document loaded in the browser, but
331
376
  without any viewer functionality. In the case of an iXBRL document set, or
332
377
  multi-document viewer, the first document will be shown.
333
378
 
334
- # Running tests
379
+ ## Running tests
335
380
 
336
- ## Running unit tests
381
+ ### Running unit tests
337
382
 
338
383
  In order to run the javascript unit tests make sure that you have installed all of the npm requirements.
339
384
 
@@ -343,7 +388,7 @@ In order to run the python unit tests make sure that you have pip installed requ
343
388
 
344
389
  Run the following command to run python unit tests: `pytest tests/unit_tests`
345
390
 
346
- ## Running Puppeteer tests
391
+ ### Running Puppeteer tests
347
392
 
348
393
  All commands should be run from repository root
349
394
 
@@ -360,16 +405,31 @@ All commands should be run from repository root
360
405
  npm run puppeteerServe
361
406
  ```
362
407
 
363
- * This command generates the `ixbrlviewer.js`, uses Arelle to generate several test files, then serves the files via a nodejs http-server.
364
- * Currently changes to application code require restarting this step to take effect.
408
+ - This command generates the `ixbrlviewer.js`, uses Arelle to generate several test files, then serves the files via a nodejs http-server.
409
+ - Currently changes to application code require restarting this step to take effect.
365
410
  4. Start the puppeteer tests
366
- * [Terminal 2]:
411
+ - [Terminal 2]:
367
412
 
368
413
  ```shell
369
414
  npm run test:puppeteer
370
415
  ```
371
416
 
372
- * IDE:
373
- * Many of the IDE's on the market can run tests via the UI. The following is an example configuration for intellij. Once set you can right-click on the test name or file and select the run option.
417
+ - IDE:
418
+ - Many of the IDE's on the market can run tests via the UI. The following is an example configuration for intellij. Once set you can right-click on the test name or file and select the run option.
374
419
  ![ixbrl-viewer](https://raw.githubusercontent.com/Arelle/ixbrl-viewer/master/tests/puppeteer/puppeteer_test_run_via_intellij.jpg)
375
- * Debug runs with breakpoints are also typically supported.
420
+ - Debug runs with breakpoints are also typically supported.
421
+
422
+ ## 👥 Contributors
423
+
424
+ <div align="center">
425
+ <a href="https://github.com/Arelle/ixbrl-viewer/graphs/contributors">
426
+ <img src="https://contrib.rocks/image?repo=Arelle/ixbrl-viewer&max=100&columns=10" style="margin: 5px;" />
427
+ </a>
428
+ <p>Join our community and become a contributor today! 🚀 </p>
429
+ </div>
430
+
431
+ ## License
432
+
433
+ [Apache License 2.0][license]
434
+
435
+ [license]: https://arelle-ixbrl-viewer.readthedocs.io/en/latest/license.html
@@ -1,5 +1,5 @@
1
1
  iXBRLViewerPlugin/__init__.py,sha256=263DtPKBXeTomSI-4SeE7gTX0ak16GiIB9DFOoxBK3k,16839
2
- iXBRLViewerPlugin/_version.py,sha256=8vrT45E61hUlDnjsrOc-dsFkkIwvQngI3pbjUOKkY_I,413
2
+ iXBRLViewerPlugin/_version.py,sha256=OF8B-jB5E6X8vWdJZCXFPGEyWeShabvlHPsWHhAFpKg,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=34lhh9zIgJJmxvtc6TiKqdbtNU1f777tDaXLRXQTKeU,892175
15
+ iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js,sha256=HuqndRvD-E_nZlyZXvpmmN508y4Js6MqX_0cQkr1HMM,891146
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
@@ -104,12 +104,12 @@ 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=6MNFlTC7Q0GK68STY_pPiDKtM8hBCAdKJ4FRmz5W9Qo,64386
107
+ iXBRLViewerPlugin/viewer/src/js/inspector.js,sha256=1KcowABva0axon8vGkmOts6fWqL2H9OWOz0hLbhk_Ms,64855
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
111
- iXBRLViewerPlugin/viewer/src/js/ixbrlviewer.js,sha256=IQQg6IHWwITJu8QqEQlrTBig5_nCXbJmEsz6u7yxLdY,17793
112
- iXBRLViewerPlugin/viewer/src/js/ixbrlviewer.test.js,sha256=eqp8hNamp7LMv1zyZxshLFkERZ0Es-jkKozXDcEG9qk,6973
111
+ iXBRLViewerPlugin/viewer/src/js/ixbrlviewer.js,sha256=RoL4oMy1CoT1F_3XmbseXDzo8L8o_82UszgiNg-OWOM,17819
112
+ iXBRLViewerPlugin/viewer/src/js/ixbrlviewer.test.js,sha256=A0XR7EtwRC9TFgnhnq8VFrOdXUNDSCOrnFY06QZ64b4,7004
113
113
  iXBRLViewerPlugin/viewer/src/js/ixnode.js,sha256=TMPGn62flpQVLaY0Zz_ASgLtq2M3OGLpyxYK5fF1CpA,1611
114
114
  iXBRLViewerPlugin/viewer/src/js/menu.js,sha256=oodODQ7D-2DjX-fiLKyD3OvftEkyOhg23tsesz3DvoE,3693
115
115
  iXBRLViewerPlugin/viewer/src/js/messagebox.js,sha256=p9W10KslmfxWtdSA0cNJBaoAiAHHqXicAXG8JT9ljdg,1435
@@ -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=gvkbohUxHdiqW0by0yBBtDM1NPUftuIth4bx1yfh_9c,7919
141
+ iXBRLViewerPlugin/viewer/src/js/util.js,sha256=VL8qZkC1qM4RzfXd2q0vm3WNBGv7OlvxrOSK06HKGjs,8033
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=NOel5t1s6583_9m2RZcamOVloX-Vxh7hdg0Wo26Dk9k,35785
145
+ iXBRLViewerPlugin/viewer/src/js/viewer.js,sha256=onePZ2dcoGq1tk-gj4z20cDEf-0kNRjTU-WzcRkRTkA,35912
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=w24n-yBpYujMdk-lznwmh2m_InwopbNNHIgYIw1s1VA,28771
161
+ iXBRLViewerPlugin/viewer/src/less/inspector.less,sha256=D4pjgT0a-CWgDEC1owOBqPVr2-dGPZnAfLkxY201YnQ,26481
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
@@ -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.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,,
191
+ ixbrl_viewer-1.4.58.dist-info/LICENSE.md,sha256=FOClHlBMDtwKei0tOJ7pv8WZ_HuQJMNYD1az3NpK73o,16647
192
+ ixbrl_viewer-1.4.58.dist-info/METADATA,sha256=Thtnsk8jiw1I79PPCm594Xyfwjqke2C9h-MHRaaRaww,18469
193
+ ixbrl_viewer-1.4.58.dist-info/NOTICE,sha256=-SHDY0OY7s4gm4Rdk5AB3nbnUsrdHEHPdJuGFR_vuM4,566
194
+ ixbrl_viewer-1.4.58.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
195
+ ixbrl_viewer-1.4.58.dist-info/entry_points.txt,sha256=2XUzP20WGwxdvnugdBybUBwAB3xf_zvrOR5W_smFz_4,65
196
+ ixbrl_viewer-1.4.58.dist-info/top_level.txt,sha256=h8MkrMhC_t2-KbfS1oxJVnFAbn5NZJH8END_BL40mv8,24
197
+ ixbrl_viewer-1.4.58.dist-info/RECORD,,