@bizdoc/core 1.7.0-next.3 → 1.7.0-next.7
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.
- package/README.md +4 -3
- package/assets/fonts/MaterialIcons-Regular.svg +2373 -2373
- package/assets/fonts/README.md +9 -9
- package/assets/fonts/codepoints +932 -932
- package/assets/fonts/material-icons.css +36 -36
- package/assets/themes/brown.min.css +83 -81
- package/assets/themes/dark.min.css +77 -75
- package/assets/themes/default.min.css +90 -88
- package/assets/themes/green.min.css +83 -81
- package/assets/themes/indigo.min.css +83 -81
- package/bundles/bizdoc-core.umd.js +1086 -1600
- package/bundles/bizdoc-core.umd.js.map +1 -1
- package/esm2015/lib/app.component.js +7 -13
- package/esm2015/lib/bizdoc.module.js +2 -37
- package/esm2015/lib/browse/filter/filter.component.js +2 -2
- package/esm2015/lib/core/configuration.js +1 -1
- package/esm2015/lib/core/controls/combination-picker-body.js +2 -2
- package/esm2015/lib/core/models.js +1 -1
- package/esm2015/lib/core/session.service.js +5 -9
- package/esm2015/lib/core/slots/slots.component.js +6 -4
- package/esm2015/lib/cube/accum/accum.component.js +4 -7
- package/esm2015/lib/cube/chart/chart.component.js +6 -3
- package/esm2015/lib/cube/cube-info.service.js +100 -0
- package/esm2015/lib/cube/cube-view.component.js +11 -30
- package/esm2015/lib/cube/declarations.js +1 -1
- package/esm2015/lib/cube/explore/explore-items.component.js +5 -7
- package/esm2015/lib/cube/explore/explore.pane.component.js +2 -5
- package/esm2015/lib/cube/filter/filter-tags.component.exp.js +8 -8
- package/esm2015/lib/cube/filter/filter.component.js +14 -11
- package/esm2015/lib/cube/grid/grid.component.js +4 -3
- package/esm2015/lib/cube/grid/spreadsheet.component.js +4 -4
- package/esm2015/lib/cube/matrix/matrix.base.js +130 -0
- package/esm2015/lib/cube/matrix/matrix.component.js +68 -0
- package/esm2015/lib/cube/matrix/matrix.mobile.component.js +62 -0
- package/esm2015/lib/cube/matrix/matrix.pane.component.js +70 -0
- package/esm2015/lib/cube/matrix/table.component.js +254 -0
- package/esm2015/lib/cube/pivot/pivot.component.js +4 -4
- package/esm2015/lib/cube/view-base.js +76 -0
- package/esm2015/lib/cube/view.mobile.component.js +31 -54
- package/esm2015/lib/cube/view.pane.component.js +26 -58
- package/esm2015/lib/dashboard/cube/accum-cube.widget.js +2 -2
- package/esm2015/lib/dashboard/cube/cube-analysis.base.js +2 -2
- package/esm2015/lib/dashboard/cube/cube-chart.widget.js +2 -2
- package/esm2015/lib/dashboard/cube/filter/filter.component.js +3 -3
- package/esm2015/lib/desktop.module.js +6 -6
- package/esm2015/lib/home/sign/sign.component.js +2 -2
- package/esm2015/lib/impersonate/impersonate.component.js +69 -0
- package/esm2015/lib/mobile.module.js +9 -9
- package/esm2015/lib/reports/cube/grid-documents.component.js +10 -9
- package/esm2015/lib/reports/cube/usage-args.component.js +2 -2
- package/esm2015/lib/routes.desktop.js +3 -3
- package/esm2015/lib/routes.mobile.js +5 -5
- package/esm2015/lib/scheduler/schedule.component.js +21 -17
- package/esm2015/lib/shared.module.js +26 -26
- package/esm2015/lib/system.module.js +8 -10
- package/esm2015/lib/views/cube/cube-base.js +10 -5
- package/esm2015/lib/views/cube/matrix.component.js +95 -0
- package/esm2015/lib/views/cube/view.component.js +19 -21
- package/esm2015/lib/views/document-view-ref.js +3 -2
- package/esm2015/lib/views/timeline/timeline.component.exp.js +317 -0
- package/esm2015/lib/views/view-item.component.js +11 -7
- package/esm2015/lib/views/views.component.js +10 -11
- package/esm2015/public-api.js +4 -8
- package/fesm2015/bizdoc-core.js +902 -1382
- package/fesm2015/bizdoc-core.js.map +1 -1
- package/lib/app.component.d.ts +1 -4
- package/lib/core/configuration.d.ts +1 -17
- package/lib/core/controls/combination-picker-body.d.ts +1 -1
- package/lib/core/models.d.ts +1 -0
- package/lib/core/session.service.d.ts +0 -5
- package/lib/core/slots/slots.component.d.ts +1 -1
- package/lib/cube/accum/accum.component.d.ts +3 -7
- package/lib/cube/chart/chart.component.d.ts +1 -1
- package/lib/cube/{info/cube-info.service.d.ts → cube-info.service.d.ts} +6 -6
- package/lib/cube/cube-view.component.d.ts +4 -9
- package/lib/cube/declarations.d.ts +3 -5
- package/lib/cube/explore/explore-items.component.d.ts +1 -4
- package/lib/cube/explore/explore.pane.component.d.ts +0 -1
- package/lib/cube/filter/filter-tags.component.exp.d.ts +2 -2
- package/lib/cube/filter/filter.component.d.ts +4 -3
- package/lib/cube/grid/grid.component.d.ts +2 -1
- package/lib/cube/grid/spreadsheet.component.d.ts +1 -1
- package/lib/cube/{info/cube-info.base.d.ts → matrix/matrix.base.d.ts} +5 -5
- package/lib/cube/{info/cube-info.component.d.ts → matrix/matrix.component.d.ts} +8 -8
- package/lib/cube/{info/cube-info.mobile.component.d.ts → matrix/matrix.mobile.component.d.ts} +4 -4
- package/lib/cube/{info/cube-info.pane.component.d.ts → matrix/matrix.pane.component.d.ts} +5 -5
- package/lib/cube/{info → matrix}/table.component.d.ts +4 -5
- package/lib/cube/pivot/pivot.component.d.ts +2 -4
- package/lib/cube/view-base.d.ts +39 -0
- package/lib/cube/view.mobile.component.d.ts +8 -25
- package/lib/cube/view.pane.component.d.ts +8 -26
- package/lib/dashboard/cube/accum-cube.widget.d.ts +1 -1
- package/lib/dashboard/cube/cube-analysis.base.d.ts +1 -1
- package/lib/dashboard/cube/cube-chart.widget.d.ts +1 -1
- package/lib/dashboard/cube/filter/filter.component.d.ts +1 -1
- package/lib/desktop.module.d.ts +2 -2
- package/lib/{login/impersonate → impersonate}/impersonate.component.d.ts +3 -3
- package/lib/mobile.module.d.ts +2 -2
- package/lib/scheduler/schedule.component.d.ts +4 -1
- package/lib/shared.module.d.ts +48 -50
- package/lib/system.module.d.ts +25 -26
- package/lib/views/cube/cube-base.d.ts +16 -10
- package/lib/views/cube/{table.component.d.ts → matrix.component.d.ts} +2 -15
- package/lib/views/cube/view.component.d.ts +2 -9
- package/lib/views/document-view-ref.d.ts +3 -1
- package/lib/views/timeline/timeline.component.exp.d.ts +64 -0
- package/lib/views/view-item.component.d.ts +4 -2
- package/lib/views/views.component.d.ts +3 -5
- package/package.json +15 -17
- package/public-api.d.ts +4 -8
- package/esm2015/lib/admin/users/users.component.js +0 -155
- package/esm2015/lib/admin/users/users.service.js +0 -29
- package/esm2015/lib/cube/info/cube-info.base.js +0 -128
- package/esm2015/lib/cube/info/cube-info.component.js +0 -69
- package/esm2015/lib/cube/info/cube-info.mobile.component.js +0 -62
- package/esm2015/lib/cube/info/cube-info.pane.component.js +0 -70
- package/esm2015/lib/cube/info/cube-info.service.js +0 -100
- package/esm2015/lib/cube/info/table.component.js +0 -258
- package/esm2015/lib/login/forgot/forgot.component.js +0 -50
- package/esm2015/lib/login/form.authentication.js +0 -71
- package/esm2015/lib/login/form.interceptor.js +0 -26
- package/esm2015/lib/login/impersonate/impersonate.component.js +0 -69
- package/esm2015/lib/login/login.component.js +0 -130
- package/esm2015/lib/login/okta.authentication.js +0 -41
- package/esm2015/lib/login/okta.component.js +0 -84
- package/esm2015/lib/login/okta.interceptor.js +0 -30
- package/esm2015/lib/login/prompt/prompt.component.js +0 -194
- package/esm2015/lib/login/signin-info.service.js +0 -49
- package/esm2015/lib/views/cube/table.component.js +0 -107
- package/lib/admin/users/users.component.d.ts +0 -41
- package/lib/admin/users/users.service.d.ts +0 -30
- package/lib/login/forgot/forgot.component.d.ts +0 -20
- package/lib/login/form.authentication.d.ts +0 -29
- package/lib/login/form.interceptor.d.ts +0 -11
- package/lib/login/login.component.d.ts +0 -18
- package/lib/login/okta.authentication.d.ts +0 -13
- package/lib/login/okta.component.d.ts +0 -18
- package/lib/login/okta.interceptor.d.ts +0 -11
- package/lib/login/prompt/prompt.component.d.ts +0 -45
- package/lib/login/signin-info.service.d.ts +0 -18
- package/src/assets/.gitkeep +0 -0
- package/src/assets/animations/13194-message.json +0 -1
- package/src/assets/animations/1408-network-lost.json +0 -1
- package/src/assets/animations/19560-loading.json +0 -1
- package/src/assets/animations/21928-folder.json +0 -1
- package/src/assets/animations/21941-airplane-animation-movement.json +0 -1
- package/src/assets/animations/2252-broken-stick-error.json +0 -1
- package/src/assets/animations/24910-new-message-notification.json +0 -1
- package/src/assets/animations/25974-paper-plane.json +0 -1
- package/src/assets/animations/36395-lonely-404.json +0 -1
- package/src/assets/animations/36499-page-not-found.json +0 -1
- package/src/assets/animations/37211-google-icons-forms.json +0 -1
- package/src/assets/animations/41896-application.json +0 -1
- package/src/assets/animations/4958-404-not-found.json +0 -1
- package/src/assets/animations/51956-success-icon.json +0 -1
- package/src/assets/animations/53402-bell.json +0 -1
- package/src/assets/animations/5371-volaris-tickets.json +0 -1
- package/src/assets/animations/58266-quad-cube-shifter-1.json +0 -1
- package/src/assets/animations/58509-shifting-cubes-2.json +0 -1
- package/src/assets/animations/8318-loader.json +0 -1
- package/src/assets/animations/lf20_isphoahq.json +0 -1
- package/src/assets/animations/lf30_editor_6kz6oezn.json +0 -1
- package/src/assets/animations/lf30_editor_b6axvtp7.json +0 -1
- package/src/assets/animations/lf30_editor_cq62rpyv.json +0 -1
- package/src/assets/animations/lf30_editor_fbytfhvg.json +0 -1
- package/src/assets/animations/lf30_editor_h1xoyem7.json +0 -1
- package/src/assets/animations/lf30_editor_qr7zgmcs.json +0 -1
- package/src/assets/animations/lf30_editor_rxee1cqy.json +0 -1
- package/src/assets/animations/lf30_editor_yxy6fuei.json +0 -1
- package/src/assets/bizdoc-schema.json +0 -1238
- package/src/assets/favicon.ico +0 -0
- package/src/assets/fonts/LICENSE.txt +0 -202
- package/src/assets/fonts/MaterialIcons-Outlined.woff2 +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.eot +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.ijmap +0 -1
- package/src/assets/fonts/MaterialIcons-Regular.svg +0 -2373
- package/src/assets/fonts/MaterialIcons-Regular.ttf +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.woff +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.woff2 +0 -0
- package/src/assets/fonts/MaterialIcons.css +0 -55
- package/src/assets/fonts/README.md +0 -9
- package/src/assets/fonts/Roboto-Black.ttf +0 -0
- package/src/assets/fonts/Roboto-BlackItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Bold.ttf +0 -0
- package/src/assets/fonts/Roboto-BoldItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Italic.ttf +0 -0
- package/src/assets/fonts/Roboto-Light.ttf +0 -0
- package/src/assets/fonts/Roboto-LightItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Medium.ttf +0 -0
- package/src/assets/fonts/Roboto-MediumItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Regular.ttf +0 -0
- package/src/assets/fonts/Roboto-Thin.ttf +0 -0
- package/src/assets/fonts/Roboto-ThinItalic.ttf +0 -0
- package/src/assets/fonts/codepoints +0 -932
- package/src/assets/fonts/material-icons.css +0 -36
- package/src/assets/i18n/cldr-data/main/he/ca-buddhist.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-chinese.json +0 -1255
- package/src/assets/i18n/cldr-data/main/he/ca-coptic.json +0 -541
- package/src/assets/i18n/cldr-data/main/he/ca-dangi.json +0 -1255
- package/src/assets/i18n/cldr-data/main/he/ca-ethiopic-amete-alem.json +0 -538
- package/src/assets/i18n/cldr-data/main/he/ca-ethiopic.json +0 -541
- package/src/assets/i18n/cldr-data/main/he/ca-generic.json +0 -535
- package/src/assets/i18n/cldr-data/main/he/ca-gregorian.json +0 -552
- package/src/assets/i18n/cldr-data/main/he/ca-hebrew.json +0 -557
- package/src/assets/i18n/cldr-data/main/he/ca-indian.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-civil.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-rgsa.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-tbla.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-umalqura.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-japanese.json +0 -1240
- package/src/assets/i18n/cldr-data/main/he/ca-persian.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-roc.json +0 -535
- package/src/assets/i18n/cldr-data/main/he/characters.json +0 -53
- package/src/assets/i18n/cldr-data/main/he/currencies.json +0 -1982
- package/src/assets/i18n/cldr-data/main/he/dateFields.json +0 -860
- package/src/assets/i18n/cldr-data/main/he/delimiters.json +0 -19
- package/src/assets/i18n/cldr-data/main/he/languages.json +0 -555
- package/src/assets/i18n/cldr-data/main/he/layout.json +0 -19
- package/src/assets/i18n/cldr-data/main/he/listPatterns.json +0 -69
- package/src/assets/i18n/cldr-data/main/he/localeDisplayNames.json +0 -231
- package/src/assets/i18n/cldr-data/main/he/measurementSystemNames.json +0 -20
- package/src/assets/i18n/cldr-data/main/he/numbers.json +0 -233
- package/src/assets/i18n/cldr-data/main/he/posix.json +0 -19
- package/src/assets/i18n/cldr-data/main/he/scripts.json +0 -191
- package/src/assets/i18n/cldr-data/main/he/territories.json +0 -324
- package/src/assets/i18n/cldr-data/main/he/timeZoneNames.json +0 -2301
- package/src/assets/i18n/cldr-data/main/he/units.json +0 -3408
- package/src/assets/i18n/cldr-data/main/he/variants.json +0 -119
- package/src/assets/i18n/cldr-data/supplemental/aliases.json +0 -4391
- package/src/assets/i18n/cldr-data/supplemental/calendarData.json +0 -865
- package/src/assets/i18n/cldr-data/supplemental/calendarPreferenceData.json +0 -50
- package/src/assets/i18n/cldr-data/supplemental/characterFallbacks.json +0 -888
- package/src/assets/i18n/cldr-data/supplemental/codeMappings.json +0 -1932
- package/src/assets/i18n/cldr-data/supplemental/currencyData.json +0 -3589
- package/src/assets/i18n/cldr-data/supplemental/dayPeriods.json +0 -2008
- package/src/assets/i18n/cldr-data/supplemental/gender.json +0 -67
- package/src/assets/i18n/cldr-data/supplemental/languageData.json +0 -6450
- package/src/assets/i18n/cldr-data/supplemental/languageGroups.json +0 -115
- package/src/assets/i18n/cldr-data/supplemental/languageMatching.json +0 -1864
- package/src/assets/i18n/cldr-data/supplemental/likelySubtags.json +0 -1844
- package/src/assets/i18n/cldr-data/supplemental/measurementData.json +0 -44
- package/src/assets/i18n/cldr-data/supplemental/metaZones.json +0 -7049
- package/src/assets/i18n/cldr-data/supplemental/numberingSystems.json +0 -343
- package/src/assets/i18n/cldr-data/supplemental/ordinals.json +0 -371
- package/src/assets/i18n/cldr-data/supplemental/parentLocales.json +0 -180
- package/src/assets/i18n/cldr-data/supplemental/plurals.json +0 -884
- package/src/assets/i18n/cldr-data/supplemental/primaryZones.json +0 -22
- package/src/assets/i18n/cldr-data/supplemental/references.json +0 -1181
- package/src/assets/i18n/cldr-data/supplemental/territoryContainment.json +0 -753
- package/src/assets/i18n/cldr-data/supplemental/territoryInfo.json +0 -6604
- package/src/assets/i18n/cldr-data/supplemental/timeData.json +0 -1031
- package/src/assets/i18n/cldr-data/supplemental/unitPreferenceData.json +0 -290
- package/src/assets/i18n/cldr-data/supplemental/weekData.json +0 -316
- package/src/assets/i18n/cldr-data/supplemental/windowsZones.json +0 -3520
- package/src/assets/icons/icon-128x128.png +0 -0
- package/src/assets/icons/icon-144x144.png +0 -0
- package/src/assets/icons/icon-152x152.png +0 -0
- package/src/assets/icons/icon-192x192.png +0 -0
- package/src/assets/icons/icon-256x256.png +0 -0
- package/src/assets/icons/icon-32x32.png +0 -0
- package/src/assets/icons/icon-512x512.png +0 -0
- package/src/assets/js/app-sw.js +0 -16
- package/src/assets/js/firebase-messaging-sw.js +0 -1
- package/src/assets/js/logo.js +0 -31
- package/src/assets/logo.json +0 -1
- package/src/assets/logo.svg +0 -38
- package/src/assets/manifest.json +0 -43
- package/src/assets/sounds/alert_error-03.ogg +0 -0
- package/src/assets/sounds/navigation_hover-tap.ogg +0 -0
- package/src/assets/sounds/notification_simple-01.ogg +0 -0
- package/src/assets/themes/brown.min.css +0 -81
- package/src/assets/themes/dark.min.css +0 -76
- package/src/assets/themes/default.min.css +0 -88
- package/src/assets/themes/green.min.css +0 -81
- package/src/assets/themes/indigo.min.css +0 -81
- package/src/assets/themes/okta-sign-in.min.css +0 -17
@@ -1,343 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"supplemental": {
|
3
|
-
"version": {
|
4
|
-
"_number": "$Revision: 14872 $",
|
5
|
-
"_unicodeVersion": "12.1.0",
|
6
|
-
"_cldrVersion": "35.1"
|
7
|
-
},
|
8
|
-
"numberingSystems": {
|
9
|
-
"adlm": {
|
10
|
-
"_digits": "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
|
11
|
-
"_type": "numeric"
|
12
|
-
},
|
13
|
-
"ahom": {
|
14
|
-
"_digits": "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
|
15
|
-
"_type": "numeric"
|
16
|
-
},
|
17
|
-
"arab": {
|
18
|
-
"_digits": "٠١٢٣٤٥٦٧٨٩",
|
19
|
-
"_type": "numeric"
|
20
|
-
},
|
21
|
-
"arabext": {
|
22
|
-
"_digits": "۰۱۲۳۴۵۶۷۸۹",
|
23
|
-
"_type": "numeric"
|
24
|
-
},
|
25
|
-
"armn": {
|
26
|
-
"_rules": "armenian-upper",
|
27
|
-
"_type": "algorithmic"
|
28
|
-
},
|
29
|
-
"armnlow": {
|
30
|
-
"_rules": "armenian-lower",
|
31
|
-
"_type": "algorithmic"
|
32
|
-
},
|
33
|
-
"bali": {
|
34
|
-
"_digits": "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
|
35
|
-
"_type": "numeric"
|
36
|
-
},
|
37
|
-
"beng": {
|
38
|
-
"_digits": "০১২৩৪৫৬৭৮৯",
|
39
|
-
"_type": "numeric"
|
40
|
-
},
|
41
|
-
"bhks": {
|
42
|
-
"_digits": "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
|
43
|
-
"_type": "numeric"
|
44
|
-
},
|
45
|
-
"brah": {
|
46
|
-
"_digits": "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
|
47
|
-
"_type": "numeric"
|
48
|
-
},
|
49
|
-
"cakm": {
|
50
|
-
"_digits": "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
|
51
|
-
"_type": "numeric"
|
52
|
-
},
|
53
|
-
"cham": {
|
54
|
-
"_digits": "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
|
55
|
-
"_type": "numeric"
|
56
|
-
},
|
57
|
-
"cyrl": {
|
58
|
-
"_rules": "cyrillic-lower",
|
59
|
-
"_type": "algorithmic"
|
60
|
-
},
|
61
|
-
"deva": {
|
62
|
-
"_digits": "०१२३४५६७८९",
|
63
|
-
"_type": "numeric"
|
64
|
-
},
|
65
|
-
"ethi": {
|
66
|
-
"_rules": "ethiopic",
|
67
|
-
"_type": "algorithmic"
|
68
|
-
},
|
69
|
-
"fullwide": {
|
70
|
-
"_digits": "0123456789",
|
71
|
-
"_type": "numeric"
|
72
|
-
},
|
73
|
-
"geor": {
|
74
|
-
"_rules": "georgian",
|
75
|
-
"_type": "algorithmic"
|
76
|
-
},
|
77
|
-
"gong": {
|
78
|
-
"_digits": "𑶠𑶡𑶢𑶣𑶤𑶥𑶦𑶧𑶨𑶩",
|
79
|
-
"_type": "numeric"
|
80
|
-
},
|
81
|
-
"gonm": {
|
82
|
-
"_digits": "𑵐𑵑𑵒𑵓𑵔𑵕𑵖𑵗𑵘𑵙",
|
83
|
-
"_type": "numeric"
|
84
|
-
},
|
85
|
-
"grek": {
|
86
|
-
"_rules": "greek-upper",
|
87
|
-
"_type": "algorithmic"
|
88
|
-
},
|
89
|
-
"greklow": {
|
90
|
-
"_rules": "greek-lower",
|
91
|
-
"_type": "algorithmic"
|
92
|
-
},
|
93
|
-
"gujr": {
|
94
|
-
"_digits": "૦૧૨૩૪૫૬૭૮૯",
|
95
|
-
"_type": "numeric"
|
96
|
-
},
|
97
|
-
"guru": {
|
98
|
-
"_digits": "੦੧੨੩੪੫੬੭੮੯",
|
99
|
-
"_type": "numeric"
|
100
|
-
},
|
101
|
-
"hanidays": {
|
102
|
-
"_rules": "zh/SpelloutRules/spellout-numbering-days",
|
103
|
-
"_type": "algorithmic"
|
104
|
-
},
|
105
|
-
"hanidec": {
|
106
|
-
"_digits": "〇一二三四五六七八九",
|
107
|
-
"_type": "numeric"
|
108
|
-
},
|
109
|
-
"hans": {
|
110
|
-
"_rules": "zh/SpelloutRules/spellout-cardinal",
|
111
|
-
"_type": "algorithmic"
|
112
|
-
},
|
113
|
-
"hansfin": {
|
114
|
-
"_rules": "zh/SpelloutRules/spellout-cardinal-financial",
|
115
|
-
"_type": "algorithmic"
|
116
|
-
},
|
117
|
-
"hant": {
|
118
|
-
"_rules": "zh_Hant/SpelloutRules/spellout-cardinal",
|
119
|
-
"_type": "algorithmic"
|
120
|
-
},
|
121
|
-
"hantfin": {
|
122
|
-
"_rules": "zh_Hant/SpelloutRules/spellout-cardinal-financial",
|
123
|
-
"_type": "algorithmic"
|
124
|
-
},
|
125
|
-
"hebr": {
|
126
|
-
"_rules": "hebrew",
|
127
|
-
"_type": "algorithmic"
|
128
|
-
},
|
129
|
-
"hmng": {
|
130
|
-
"_digits": "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
|
131
|
-
"_type": "numeric"
|
132
|
-
},
|
133
|
-
"hmnp": {
|
134
|
-
"_digits": "𞅀𞅁𞅂𞅃𞅄𞅅𞅆𞅇𞅈𞅉",
|
135
|
-
"_type": "numeric"
|
136
|
-
},
|
137
|
-
"java": {
|
138
|
-
"_digits": "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
|
139
|
-
"_type": "numeric"
|
140
|
-
},
|
141
|
-
"jpan": {
|
142
|
-
"_rules": "ja/SpelloutRules/spellout-cardinal",
|
143
|
-
"_type": "algorithmic"
|
144
|
-
},
|
145
|
-
"jpanfin": {
|
146
|
-
"_rules": "ja/SpelloutRules/spellout-cardinal-financial",
|
147
|
-
"_type": "algorithmic"
|
148
|
-
},
|
149
|
-
"jpanyear": {
|
150
|
-
"_rules": "ja/SpelloutRules/spellout-numbering-year-latn",
|
151
|
-
"_type": "algorithmic"
|
152
|
-
},
|
153
|
-
"kali": {
|
154
|
-
"_digits": "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
|
155
|
-
"_type": "numeric"
|
156
|
-
},
|
157
|
-
"khmr": {
|
158
|
-
"_digits": "០១២៣៤៥៦៧៨៩",
|
159
|
-
"_type": "numeric"
|
160
|
-
},
|
161
|
-
"knda": {
|
162
|
-
"_digits": "೦೧೨೩೪೫೬೭೮೯",
|
163
|
-
"_type": "numeric"
|
164
|
-
},
|
165
|
-
"lana": {
|
166
|
-
"_digits": "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
|
167
|
-
"_type": "numeric"
|
168
|
-
},
|
169
|
-
"lanatham": {
|
170
|
-
"_digits": "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
|
171
|
-
"_type": "numeric"
|
172
|
-
},
|
173
|
-
"laoo": {
|
174
|
-
"_digits": "໐໑໒໓໔໕໖໗໘໙",
|
175
|
-
"_type": "numeric"
|
176
|
-
},
|
177
|
-
"latn": {
|
178
|
-
"_digits": "0123456789",
|
179
|
-
"_type": "numeric"
|
180
|
-
},
|
181
|
-
"lepc": {
|
182
|
-
"_digits": "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
|
183
|
-
"_type": "numeric"
|
184
|
-
},
|
185
|
-
"limb": {
|
186
|
-
"_digits": "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
|
187
|
-
"_type": "numeric"
|
188
|
-
},
|
189
|
-
"mathbold": {
|
190
|
-
"_digits": "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
|
191
|
-
"_type": "numeric"
|
192
|
-
},
|
193
|
-
"mathdbl": {
|
194
|
-
"_digits": "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
|
195
|
-
"_type": "numeric"
|
196
|
-
},
|
197
|
-
"mathmono": {
|
198
|
-
"_digits": "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
|
199
|
-
"_type": "numeric"
|
200
|
-
},
|
201
|
-
"mathsanb": {
|
202
|
-
"_digits": "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
|
203
|
-
"_type": "numeric"
|
204
|
-
},
|
205
|
-
"mathsans": {
|
206
|
-
"_digits": "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
|
207
|
-
"_type": "numeric"
|
208
|
-
},
|
209
|
-
"mlym": {
|
210
|
-
"_digits": "൦൧൨൩൪൫൬൭൮൯",
|
211
|
-
"_type": "numeric"
|
212
|
-
},
|
213
|
-
"modi": {
|
214
|
-
"_digits": "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
|
215
|
-
"_type": "numeric"
|
216
|
-
},
|
217
|
-
"mong": {
|
218
|
-
"_digits": "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
|
219
|
-
"_type": "numeric"
|
220
|
-
},
|
221
|
-
"mroo": {
|
222
|
-
"_digits": "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
|
223
|
-
"_type": "numeric"
|
224
|
-
},
|
225
|
-
"mtei": {
|
226
|
-
"_digits": "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
|
227
|
-
"_type": "numeric"
|
228
|
-
},
|
229
|
-
"mymr": {
|
230
|
-
"_digits": "၀၁၂၃၄၅၆၇၈၉",
|
231
|
-
"_type": "numeric"
|
232
|
-
},
|
233
|
-
"mymrshan": {
|
234
|
-
"_digits": "႐႑႒႓႔႕႖႗႘႙",
|
235
|
-
"_type": "numeric"
|
236
|
-
},
|
237
|
-
"mymrtlng": {
|
238
|
-
"_digits": "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
|
239
|
-
"_type": "numeric"
|
240
|
-
},
|
241
|
-
"newa": {
|
242
|
-
"_digits": "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
|
243
|
-
"_type": "numeric"
|
244
|
-
},
|
245
|
-
"nkoo": {
|
246
|
-
"_digits": "߀߁߂߃߄߅߆߇߈߉",
|
247
|
-
"_type": "numeric"
|
248
|
-
},
|
249
|
-
"olck": {
|
250
|
-
"_digits": "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
|
251
|
-
"_type": "numeric"
|
252
|
-
},
|
253
|
-
"orya": {
|
254
|
-
"_digits": "୦୧୨୩୪୫୬୭୮୯",
|
255
|
-
"_type": "numeric"
|
256
|
-
},
|
257
|
-
"osma": {
|
258
|
-
"_digits": "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
|
259
|
-
"_type": "numeric"
|
260
|
-
},
|
261
|
-
"rohg": {
|
262
|
-
"_digits": "𐴰𐴱𐴲𐴳𐴴𐴵𐴶𐴷𐴸𐴹",
|
263
|
-
"_type": "numeric"
|
264
|
-
},
|
265
|
-
"roman": {
|
266
|
-
"_rules": "roman-upper",
|
267
|
-
"_type": "algorithmic"
|
268
|
-
},
|
269
|
-
"romanlow": {
|
270
|
-
"_rules": "roman-lower",
|
271
|
-
"_type": "algorithmic"
|
272
|
-
},
|
273
|
-
"saur": {
|
274
|
-
"_digits": "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
|
275
|
-
"_type": "numeric"
|
276
|
-
},
|
277
|
-
"shrd": {
|
278
|
-
"_digits": "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
|
279
|
-
"_type": "numeric"
|
280
|
-
},
|
281
|
-
"sind": {
|
282
|
-
"_digits": "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
|
283
|
-
"_type": "numeric"
|
284
|
-
},
|
285
|
-
"sinh": {
|
286
|
-
"_digits": "෦෧෨෩෪෫෬෭෮෯",
|
287
|
-
"_type": "numeric"
|
288
|
-
},
|
289
|
-
"sora": {
|
290
|
-
"_digits": "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
|
291
|
-
"_type": "numeric"
|
292
|
-
},
|
293
|
-
"sund": {
|
294
|
-
"_digits": "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
|
295
|
-
"_type": "numeric"
|
296
|
-
},
|
297
|
-
"takr": {
|
298
|
-
"_digits": "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
|
299
|
-
"_type": "numeric"
|
300
|
-
},
|
301
|
-
"talu": {
|
302
|
-
"_digits": "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
|
303
|
-
"_type": "numeric"
|
304
|
-
},
|
305
|
-
"taml": {
|
306
|
-
"_rules": "tamil",
|
307
|
-
"_type": "algorithmic"
|
308
|
-
},
|
309
|
-
"tamldec": {
|
310
|
-
"_digits": "௦௧௨௩௪௫௬௭௮௯",
|
311
|
-
"_type": "numeric"
|
312
|
-
},
|
313
|
-
"telu": {
|
314
|
-
"_digits": "౦౧౨౩౪౫౬౭౮౯",
|
315
|
-
"_type": "numeric"
|
316
|
-
},
|
317
|
-
"thai": {
|
318
|
-
"_digits": "๐๑๒๓๔๕๖๗๘๙",
|
319
|
-
"_type": "numeric"
|
320
|
-
},
|
321
|
-
"tibt": {
|
322
|
-
"_digits": "༠༡༢༣༤༥༦༧༨༩",
|
323
|
-
"_type": "numeric"
|
324
|
-
},
|
325
|
-
"tirh": {
|
326
|
-
"_digits": "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
|
327
|
-
"_type": "numeric"
|
328
|
-
},
|
329
|
-
"vaii": {
|
330
|
-
"_digits": "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
|
331
|
-
"_type": "numeric"
|
332
|
-
},
|
333
|
-
"wara": {
|
334
|
-
"_digits": "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
|
335
|
-
"_type": "numeric"
|
336
|
-
},
|
337
|
-
"wcho": {
|
338
|
-
"_digits": "𞋰𞋱𞋲𞋳𞋴𞋵𞋶𞋷𞋸𞋹",
|
339
|
-
"_type": "numeric"
|
340
|
-
}
|
341
|
-
}
|
342
|
-
}
|
343
|
-
}
|