ixbrl-viewer 1.4.69__py3-none-any.whl → 1.4.71__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/number-matcher.js +5 -1
- iXBRLViewerPlugin/viewer/src/js/number-matcher.test.js +4 -0
- {ixbrl_viewer-1.4.69.dist-info → ixbrl_viewer-1.4.71.dist-info}/METADATA +2 -2
- {ixbrl_viewer-1.4.69.dist-info → ixbrl_viewer-1.4.71.dist-info}/RECORD +11 -11
- {ixbrl_viewer-1.4.69.dist-info → ixbrl_viewer-1.4.71.dist-info}/WHEEL +0 -0
- {ixbrl_viewer-1.4.69.dist-info → ixbrl_viewer-1.4.71.dist-info}/entry_points.txt +0 -0
- {ixbrl_viewer-1.4.69.dist-info → ixbrl_viewer-1.4.71.dist-info}/licenses/LICENSE.md +0 -0
- {ixbrl_viewer-1.4.69.dist-info → ixbrl_viewer-1.4.71.dist-info}/licenses/NOTICE +0 -0
- {ixbrl_viewer-1.4.69.dist-info → ixbrl_viewer-1.4.71.dist-info}/top_level.txt +0 -0
|
@@ -90,6 +90,10 @@ const note = 'note' + ws + '\\d{1,3}';
|
|
|
90
90
|
const level = 'level' + ws + '\\d{1,3}';
|
|
91
91
|
const page = 'page' + ws + '\\d{1,3}';
|
|
92
92
|
const tier = 'tier' + ws + '\\d{1,3}';
|
|
93
|
+
const act = 'act' + ws + 'of' + ws + year; // e.g. 'SECURITIES EXCHANGE ACT OF 1934'
|
|
94
|
+
// Note that this is a superset of "isoDate" but "dateMatch" appears before "do_not_want" so it won't exclude ISO dates.
|
|
95
|
+
const phone_number = '\\d+-\\d+[-\\d]*' // e.g. 275-3125. Also covers employer number (e.g. 47-2509828).
|
|
96
|
+
const form_name = '(?:10|8)-(?:k|q)' // e.g. '10-K'
|
|
93
97
|
|
|
94
98
|
const months_ended = r_or([number_word, '\\d+']) + ws + 'months ended';
|
|
95
99
|
|
|
@@ -98,7 +102,7 @@ const month_day_year = month_num + '/' + day_with_0 + '/' + year;
|
|
|
98
102
|
const month_year = month_num + '/\\d\\d';
|
|
99
103
|
|
|
100
104
|
const do_not_want = r_or([section, topic, form, asc, item, rule, note, level, page,
|
|
101
|
-
tier, months_ended, month_day_year, month_year]);
|
|
105
|
+
tier, act, phone_number, form_name, months_ended, month_day_year, month_year]);
|
|
102
106
|
|
|
103
107
|
const number_separator = r_or([r_maybe(ws + hyphen + ws), ws]);
|
|
104
108
|
const number_word_string = number_word + r_zero_or_more(number_separator + number_word);
|
|
@@ -112,12 +112,16 @@ describe("Number match replace", () => {
|
|
|
112
112
|
var numbers = [
|
|
113
113
|
[ 'Sept 20th, 2019', '[[Sept 20th, 2019]]' ],
|
|
114
114
|
[ 'abcd 37 abcd', 'abcd [[37]] abcd' ],
|
|
115
|
+
[ '2010-01-01', '[[2010-01-01]]' ],
|
|
115
116
|
// Test "do not want" filtering
|
|
116
117
|
[ 'abcd topic 37 abcd', 'abcd topic 37 abcd' ],
|
|
117
118
|
[ 'abcd topic 37 93 abcd', 'abcd topic 37 [[93]] abcd' ],
|
|
118
119
|
[ 'section 123(a)', 'section 123(a)' ],
|
|
119
120
|
[ 'section 123a', 'section 123a' ],
|
|
120
121
|
[ 'section 123', 'section 123' ],
|
|
122
|
+
[ 'securities exchange act of 1934', 'securities exchange act of 1934' ],
|
|
123
|
+
[ '10-K', '10-K' ],
|
|
124
|
+
[ '274-3125', '274-3125' ],
|
|
121
125
|
// Doesn't match due to end guard
|
|
122
126
|
[ '401(k)', '401(k)' ],
|
|
123
127
|
[ 'N RM100', 'N [[RM100]]' ],
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ixbrl-viewer
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.71
|
|
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-Expression: Apache-2.0
|
|
@@ -37,7 +37,7 @@ Requires-Dist: flake8==7.3.0; extra == "dev"
|
|
|
37
37
|
Requires-Dist: lxml-stubs==0.5.1; extra == "dev"
|
|
38
38
|
Requires-Dist: mypy==1.16.1; extra == "dev"
|
|
39
39
|
Requires-Dist: pytest==8.4.1; extra == "dev"
|
|
40
|
-
Requires-Dist: typing-extensions==4.14.
|
|
40
|
+
Requires-Dist: typing-extensions==4.14.1; extra == "dev"
|
|
41
41
|
Dynamic: license-file
|
|
42
42
|
|
|
43
43
|
# 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=xOLDAFzPz12cE6oa7jOuyoqNN4chg7ABwEunZHtylK8,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,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=DnRLurvzXlCibE70P5Za35yV3FumzjSUqoRGI6vgjLU,942482
|
|
16
16
|
iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js.LICENSE.txt,sha256=LtlhXpjEorsiefz-usoFDNTZC_le1KyOKPWgb3RWIq8,1832
|
|
17
17
|
iXBRLViewerPlugin/viewer/src/data/utr.json,sha256=32ZuovUvTOiCiXnxQH1fyOlgLEbah8DhUInqxZNIjFc,20159
|
|
18
18
|
iXBRLViewerPlugin/viewer/src/html/fact-details.html,sha256=r3cPuOzcosgBkYl0jfmRUGjYnLgv6Eu0IeTMmUHY4Ak,2863
|
|
@@ -155,8 +155,8 @@ iXBRLViewerPlugin/viewer/src/js/menu.js,sha256=oodODQ7D-2DjX-fiLKyD3OvftEkyOhg23
|
|
|
155
155
|
iXBRLViewerPlugin/viewer/src/js/messagebox.js,sha256=p9W10KslmfxWtdSA0cNJBaoAiAHHqXicAXG8JT9ljdg,1435
|
|
156
156
|
iXBRLViewerPlugin/viewer/src/js/moment-jest.js,sha256=ARWtMMXf_WelYJ4NksOsFLwsKrqsPrXb5Sqfn1NNCWI,1481
|
|
157
157
|
iXBRLViewerPlugin/viewer/src/js/number-matcher-preprocess.test.js,sha256=0DaUAwIvcpf_sBGmqileotZo9lj1xEAUwhmiNyYj_3s,3939
|
|
158
|
-
iXBRLViewerPlugin/viewer/src/js/number-matcher.js,sha256=
|
|
159
|
-
iXBRLViewerPlugin/viewer/src/js/number-matcher.test.js,sha256=
|
|
158
|
+
iXBRLViewerPlugin/viewer/src/js/number-matcher.js,sha256=kbuFOQV1Fmveb3JLwm5WcDvihYO1TZZVnr43FUwqGDo,6540
|
|
159
|
+
iXBRLViewerPlugin/viewer/src/js/number-matcher.test.js,sha256=_oUrVphaYPA800TNl8sBXyHsZhEWLBSX1ZP6XPeSIGc,4265
|
|
160
160
|
iXBRLViewerPlugin/viewer/src/js/outline.js,sha256=WqkRuc6FgtRm_pleLDuaTMZfb1kYMkbnGAUXGlS8Jek,6585
|
|
161
161
|
iXBRLViewerPlugin/viewer/src/js/outline.test.js,sha256=PaUzfy675G04YcjY8CcFDLCWi87Xx2hjqh1pogdetYY,13661
|
|
162
162
|
iXBRLViewerPlugin/viewer/src/js/period.js,sha256=qTSLapuLwK_Rky0cNZ16ms0o04xSVH_vUBAGdJ8Cx4s,2238
|
|
@@ -208,10 +208,10 @@ iXBRLViewerPlugin/viewer/src/less/text-mixins.less,sha256=pYeQjz6JptSyUTxoVwfNeb
|
|
|
208
208
|
iXBRLViewerPlugin/viewer/src/less/validation-report.less,sha256=HWkYEWxny-_zAYrwPXwAXuNCbThMRyomhu6KteUAjEg,351
|
|
209
209
|
iXBRLViewerPlugin/viewer/src/less/viewer.less,sha256=piLepb_LJUQw0iDfpXtrHI1Wts9L4tbKvAc3ZDtZi-Q,5598
|
|
210
210
|
iXBRLViewerPlugin/viewer/tools/build-font.js,sha256=Q-Uh0o6Uj2fkKd0zjS7rbVV2mkNydmEWGpkg0uWVir4,818
|
|
211
|
-
ixbrl_viewer-1.4.
|
|
212
|
-
ixbrl_viewer-1.4.
|
|
213
|
-
ixbrl_viewer-1.4.
|
|
214
|
-
ixbrl_viewer-1.4.
|
|
215
|
-
ixbrl_viewer-1.4.
|
|
216
|
-
ixbrl_viewer-1.4.
|
|
217
|
-
ixbrl_viewer-1.4.
|
|
211
|
+
ixbrl_viewer-1.4.71.dist-info/licenses/LICENSE.md,sha256=FOClHlBMDtwKei0tOJ7pv8WZ_HuQJMNYD1az3NpK73o,16647
|
|
212
|
+
ixbrl_viewer-1.4.71.dist-info/licenses/NOTICE,sha256=-SHDY0OY7s4gm4Rdk5AB3nbnUsrdHEHPdJuGFR_vuM4,566
|
|
213
|
+
ixbrl_viewer-1.4.71.dist-info/METADATA,sha256=cqr-mlHGNpy27ltR1jlX4UWRV7qit6e6_QRSZKBspX0,18490
|
|
214
|
+
ixbrl_viewer-1.4.71.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
215
|
+
ixbrl_viewer-1.4.71.dist-info/entry_points.txt,sha256=2XUzP20WGwxdvnugdBybUBwAB3xf_zvrOR5W_smFz_4,65
|
|
216
|
+
ixbrl_viewer-1.4.71.dist-info/top_level.txt,sha256=iQGm144gaJwCPqPDGQHi8umPFRQAvQShVKDk3JQv3JE,18
|
|
217
|
+
ixbrl_viewer-1.4.71.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|