@ampath-kenya/ngx-openmrs-formentry 3.0.0-alpha9 → 3.0.0-ampath.1-beta.0
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/abstract-controls-extension/afe-control-type.d.ts +1 -1
- package/abstract-controls-extension/afe-form-array.d.ts +2 -3
- package/abstract-controls-extension/afe-form-control.d.ts +1 -1
- package/abstract-controls-extension/afe-form-group.d.ts +1 -1
- package/ampath-kenya-ngx-openmrs-formentry.d.ts +48 -74
- package/ampath-kenya-ngx-openmrs-formentry.metadata.json +1 -1
- package/bundles/ampath-kenya-ngx-openmrs-formentry.umd.js +5729 -9376
- package/bundles/ampath-kenya-ngx-openmrs-formentry.umd.js.map +1 -1
- package/bundles/ampath-kenya-ngx-openmrs-formentry.umd.min.js +1 -16
- package/bundles/ampath-kenya-ngx-openmrs-formentry.umd.min.js.map +1 -1
- package/change-tracking/control-relation.d.ts +4 -4
- package/change-tracking/control-relations.d.ts +3 -3
- package/components/check-box/checkbox.component.d.ts +1 -2
- package/components/date-time-picker/date-time-picker.component.d.ts +1 -2
- package/components/date-time-picker/date-time-picker.module.d.ts +0 -3
- package/components/file-upload/file-upload.component.d.ts +25 -0
- package/components/file-upload/file-upload.module.d.ts +2 -0
- package/components/file-upload/secure.pipe.d.ts +5 -5
- package/components/ngx-date-time-picker/ngx-date-time-picker.component.d.ts +52 -0
- package/components/{ngx-datetime-picker/ngx-datetime-picker.module.d.ts → ngx-date-time-picker/ngx-date-time-picker.module.d.ts} +0 -3
- package/components/ngx-time-picker/ngx-time-picker.component.d.ts +13 -0
- package/components/ngx-time-picker/ngx-time-picker.module.d.ts +2 -0
- package/components/{ngx-remote-select/ngx-remote-select.component.d.ts → remote-select/remote-select.component.d.ts} +8 -12
- package/components/remote-select/remote-select.module.d.ts +2 -0
- package/components/select/diacritics.d.ts +844 -0
- package/components/select/option-list.d.ts +36 -0
- package/components/select/option.d.ts +17 -0
- package/components/select/select-dropdown.component.d.ts +40 -0
- package/components/select/select-dropdown.component.style.d.ts +1 -0
- package/components/select/select.component.d.ts +96 -108
- package/components/select/select.component.style.d.ts +1 -0
- package/encounter-viewer/display-controls/file-preview.component.d.ts +25 -0
- package/encounter-viewer/display-controls/question-control.component.d.ts +15 -0
- package/encounter-viewer/display-controls/remote-answer.component.d.ts +17 -0
- package/encounter-viewer/encounter-container/encounter-container.component.d.ts +15 -0
- package/encounter-viewer/encounter-pdf-viewer.service.d.ts +27 -0
- package/encounter-viewer/encounter-view/encounter-viewer.component.d.ts +30 -0
- package/encounter-viewer/encounter-viewer.module.d.ts +2 -0
- package/encounter-viewer/encounter-viewer.service.d.ts +16 -0
- package/esm2015/abstract-controls-extension/afe-control-type.js +2 -1
- package/esm2015/abstract-controls-extension/afe-form-array.js +2 -1
- package/esm2015/abstract-controls-extension/afe-form-control.js +2 -1
- package/esm2015/abstract-controls-extension/afe-form-group.js +2 -1
- package/esm2015/abstract-controls-extension/control-extensions.js +2 -1
- package/esm2015/abstract-controls-extension/index.js +2 -1
- package/esm2015/abstract-controls-extension/value-change.listener.js +2 -2
- package/esm2015/ampath-kenya-ngx-openmrs-formentry.js +40 -65
- package/esm2015/change-tracking/control-relation.js +2 -1
- package/esm2015/change-tracking/control-relations.js +2 -1
- package/esm2015/components/afe-ng-select.component.js +3 -2
- package/esm2015/components/appointments-overview/appointments-overview.component.js +78 -33
- package/esm2015/components/check-box/checkbox.component.js +24 -3
- package/esm2015/components/check-box/checkbox.module.js +3 -2
- package/esm2015/components/date-time-picker/date-picker/date-picker.component.js +93 -4
- package/esm2015/components/date-time-picker/date-time-picker.component.js +109 -5
- package/esm2015/components/date-time-picker/date-time-picker.module.js +3 -2
- package/esm2015/components/date-time-picker/picker-modal/modal.component.js +13 -5
- package/esm2015/components/date-time-picker/pipes/moment.pipe.js +3 -2
- package/esm2015/components/date-time-picker/time-picker/time-picker.component.js +51 -4
- package/esm2015/components/file-upload/file-upload.component.js +130 -0
- package/esm2015/components/file-upload/file-upload.module.js +28 -0
- package/esm2015/components/file-upload/secure.pipe.js +5 -3
- package/esm2015/components/ngx-date-time-picker/ngx-date-time-picker.component.js +259 -0
- package/esm2015/components/ngx-date-time-picker/ngx-date-time-picker.module.js +43 -0
- package/esm2015/components/ngx-time-picker/ngx-time-picker.component.js +78 -0
- package/esm2015/components/ngx-time-picker/ngx-time-picker.module.js +16 -0
- package/esm2015/components/remote-select/remote-select.component.js +171 -0
- package/esm2015/components/remote-select/remote-select.module.js +18 -0
- package/esm2015/components/select/diacritics.js +856 -0
- package/esm2015/components/select/option-list.js +180 -0
- package/esm2015/components/select/option.js +30 -0
- package/esm2015/components/select/select-dropdown.component.js +162 -0
- package/esm2015/components/select/select-dropdown.component.style.js +59 -0
- package/esm2015/components/select/select.component.js +493 -216
- package/esm2015/components/select/select.component.style.js +102 -0
- package/esm2015/components/select/select.module.js +11 -24
- package/esm2015/encounter-viewer/display-controls/file-preview.component.js +111 -0
- package/esm2015/encounter-viewer/display-controls/question-control.component.js +94 -0
- package/esm2015/encounter-viewer/display-controls/remote-answer.component.js +81 -0
- package/esm2015/encounter-viewer/encounter-container/encounter-container.component.js +50 -0
- package/esm2015/encounter-viewer/encounter-pdf-viewer.service.js +437 -0
- package/esm2015/encounter-viewer/encounter-view/encounter-viewer.component.js +301 -0
- package/esm2015/encounter-viewer/encounter-viewer.module.js +36 -0
- package/esm2015/encounter-viewer/encounter-viewer.service.js +162 -0
- package/esm2015/form-entry/control-alerts/alert-helpers.js +2 -1
- package/esm2015/form-entry/control-alerts/can-generate-alert.js +2 -2
- package/esm2015/form-entry/control-calculators/can-calculate.js +2 -2
- package/esm2015/form-entry/control-hiders-disablers/can-disable.js +2 -2
- package/esm2015/form-entry/control-hiders-disablers/can-hide.js +2 -2
- package/esm2015/form-entry/control-hiders-disablers/disabler-helper.js +2 -1
- package/esm2015/form-entry/control-hiders-disablers/hider-helpers.js +2 -1
- package/esm2015/form-entry/data-sources/data-sources.js +5 -3
- package/esm2015/form-entry/data-sources/dummy-data-source.js +2 -1
- package/esm2015/form-entry/directives/historical-value-directive.js +4 -2
- package/esm2015/form-entry/error-renderer/error-renderer.component.js +20 -4
- package/esm2015/form-entry/expression-runner/expression-runner.js +13 -16
- package/esm2015/form-entry/form-entry.module.js +29 -25
- package/esm2015/form-entry/form-factory/control-relations.factory.js +4 -2
- package/esm2015/form-entry/form-factory/form-control.service.js +4 -2
- package/esm2015/form-entry/form-factory/form-node.js +2 -4
- package/esm2015/form-entry/form-factory/form.factory.js +4 -2
- package/esm2015/form-entry/form-factory/form.js +2 -1
- package/esm2015/form-entry/form-factory/hiders-disablers.factory.js +4 -2
- package/esm2015/form-entry/form-factory/question.factory.js +158 -23
- package/esm2015/form-entry/form-factory/show-messages.factory.js +4 -2
- package/esm2015/form-entry/form-factory/validation.factory.js +4 -2
- package/esm2015/form-entry/form-renderer/form-renderer.component.css.js +8 -12
- package/esm2015/form-entry/form-renderer/form-renderer.component.js +458 -9
- package/esm2015/form-entry/helpers/historical-expression-helper-service.js +4 -2
- package/esm2015/form-entry/helpers/historical-field-helper-service.js +2 -5
- package/esm2015/form-entry/helpers/js-expression-helper.js +2 -5
- package/esm2015/form-entry/question-models/checkbox.model.js +2 -1
- package/esm2015/form-entry/question-models/conditional-validation.model.js +2 -1
- package/esm2015/form-entry/question-models/date-question.js +3 -1
- package/esm2015/form-entry/question-models/date-validation.model.js +2 -1
- package/esm2015/form-entry/question-models/decimal-point-validation.model.js +20 -0
- package/esm2015/form-entry/question-models/file-upload-question.js +2 -1
- package/esm2015/form-entry/question-models/group-question.js +2 -1
- package/esm2015/form-entry/question-models/interfaces/base-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/checkbox-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/data-source.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/date-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/file-upload-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/group-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/multi-select-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/nested-questions.js +2 -1
- package/esm2015/form-entry/question-models/interfaces/repeating-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/select-option.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/select-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/test-order-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/text-area-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/text-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/time-question-options.js +2 -0
- package/esm2015/form-entry/question-models/interfaces/ui-select-question-options.js +2 -2
- package/esm2015/form-entry/question-models/js-expression-validation.model.js +2 -1
- package/esm2015/form-entry/question-models/max-validation.model.js +2 -1
- package/esm2015/form-entry/question-models/min-validation.model.js +2 -1
- package/esm2015/form-entry/question-models/models.js +2 -1
- package/esm2015/form-entry/question-models/multi-select-question.js +2 -1
- package/esm2015/form-entry/question-models/pair.model.js +2 -1
- package/esm2015/form-entry/question-models/question-base.js +2 -1
- package/esm2015/form-entry/question-models/rendering-type.js +2 -1
- package/esm2015/form-entry/question-models/repeating-question.js +2 -1
- package/esm2015/form-entry/question-models/select-option.js +2 -1
- package/esm2015/form-entry/question-models/select-question.js +2 -1
- package/esm2015/form-entry/question-models/test-order-question.js +2 -1
- package/esm2015/form-entry/question-models/text-area-input-question.js +2 -1
- package/esm2015/form-entry/question-models/text-input-question.js +2 -1
- package/esm2015/form-entry/question-models/time-question.js +11 -0
- package/esm2015/form-entry/question-models/ui-select-question.js +2 -1
- package/esm2015/form-entry/question-models/validation.model.js +2 -1
- package/esm2015/form-entry/services/debug-mode.service.js +4 -2
- package/esm2015/form-entry/services/form-errors.service.js +3 -2
- package/esm2015/form-entry/services/form-schema-compiler.service.js +4 -2
- package/esm2015/form-entry/services/historical-encounter-data.service.js +4 -2
- package/esm2015/form-entry/utils/messages.js +2 -1
- package/esm2015/form-entry/validators/conditional-answered.validator.js +2 -1
- package/esm2015/form-entry/validators/conditional-required.validator.js +2 -1
- package/esm2015/form-entry/validators/date.validator.js +2 -1
- package/esm2015/form-entry/validators/future-date-restriction.validator.js +2 -1
- package/esm2015/form-entry/validators/js-expression.validator.js +2 -1
- package/esm2015/form-entry/validators/max-date.validator.js +2 -1
- package/esm2015/form-entry/validators/max.validator.js +2 -1
- package/esm2015/form-entry/validators/min-date.validator.js +2 -1
- package/esm2015/form-entry/validators/min.validator.js +2 -1
- package/esm2015/form-entry/validators/required.validator.js +2 -1
- package/esm2015/form-entry/validators/validations.js +2 -1
- package/esm2015/form-entry/value-adapters/encounter.adapter.js +5 -3
- package/esm2015/form-entry/value-adapters/obs-adapter-helper.js +5 -11
- package/esm2015/form-entry/value-adapters/obs.adapter.js +5 -6
- package/esm2015/form-entry/value-adapters/order.adapter.js +3 -2
- package/esm2015/form-entry/value-adapters/person-attribute.adapter.js +8 -3
- package/esm2015/form-entry/value-adapters/value.adapter.js +2 -2
- package/esm2015/public_api.js +52 -2
- package/esm2015/shared.module.js +3 -2
- package/esm5/abstract-controls-extension/afe-control-type.js +9 -0
- package/esm5/abstract-controls-extension/afe-form-array.js +99 -0
- package/esm5/abstract-controls-extension/afe-form-control.js +97 -0
- package/esm5/abstract-controls-extension/afe-form-group.js +71 -0
- package/esm5/abstract-controls-extension/control-extensions.js +6 -0
- package/esm5/abstract-controls-extension/index.js +6 -0
- package/esm5/abstract-controls-extension/value-change.listener.js +2 -0
- package/esm5/ampath-kenya-ngx-openmrs-formentry.js +45 -0
- package/esm5/change-tracking/control-relation.js +60 -0
- package/esm5/change-tracking/control-relations.js +47 -0
- package/esm5/components/afe-ng-select.component.js +88 -0
- package/esm5/components/appointments-overview/appointments-overview.component.js +127 -0
- package/esm5/components/check-box/checkbox.component.js +89 -0
- package/esm5/components/check-box/checkbox.module.js +19 -0
- package/esm5/components/date-time-picker/date-picker/date-picker.component.js +188 -0
- package/esm5/components/date-time-picker/date-time-picker.component.js +113 -0
- package/esm5/components/date-time-picker/date-time-picker.module.js +39 -0
- package/esm5/components/date-time-picker/picker-modal/modal.component.js +34 -0
- package/esm5/components/date-time-picker/pipes/moment.pipe.js +18 -0
- package/esm5/components/date-time-picker/time-picker/time-picker.component.js +119 -0
- package/esm5/components/file-upload/file-upload.component.js +128 -0
- package/esm5/components/file-upload/file-upload.module.js +32 -0
- package/esm5/components/file-upload/secure.pipe.js +107 -0
- package/esm5/components/ngx-date-time-picker/ngx-date-time-picker.component.js +221 -0
- package/esm5/components/ngx-date-time-picker/ngx-date-time-picker.module.js +47 -0
- package/esm5/components/ngx-time-picker/ngx-time-picker.component.js +74 -0
- package/esm5/components/ngx-time-picker/ngx-time-picker.module.js +20 -0
- package/esm5/components/remote-select/remote-select.component.js +165 -0
- package/esm5/components/remote-select/remote-select.module.js +22 -0
- package/esm5/components/select/diacritics.js +861 -0
- package/esm5/components/select/option-list.js +225 -0
- package/esm5/components/select/option.js +32 -0
- package/esm5/components/select/select-dropdown.component.js +132 -0
- package/esm5/components/select/select-dropdown.component.style.js +3 -0
- package/esm5/components/select/select.component.js +457 -0
- package/esm5/components/select/select.component.style.js +3 -0
- package/esm5/components/select/select.module.js +20 -0
- package/esm5/encounter-viewer/display-controls/file-preview.component.js +111 -0
- package/esm5/encounter-viewer/display-controls/question-control.component.js +106 -0
- package/esm5/encounter-viewer/display-controls/remote-answer.component.js +88 -0
- package/esm5/encounter-viewer/encounter-container/encounter-container.component.js +47 -0
- package/esm5/encounter-viewer/encounter-pdf-viewer.service.js +523 -0
- package/esm5/encounter-viewer/encounter-view/encounter-viewer.component.js +187 -0
- package/esm5/encounter-viewer/encounter-viewer.module.js +40 -0
- package/esm5/encounter-viewer/encounter-viewer.service.js +167 -0
- package/esm5/form-entry/control-alerts/alert-helpers.js +45 -0
- package/esm5/form-entry/control-alerts/can-generate-alert.js +2 -0
- package/esm5/form-entry/control-calculators/can-calculate.js +2 -0
- package/esm5/form-entry/control-hiders-disablers/can-disable.js +2 -0
- package/esm5/form-entry/control-hiders-disablers/can-hide.js +2 -0
- package/esm5/form-entry/control-hiders-disablers/disabler-helper.js +38 -0
- package/esm5/form-entry/control-hiders-disablers/hider-helpers.js +45 -0
- package/esm5/form-entry/data-sources/data-sources.js +39 -0
- package/esm5/form-entry/data-sources/dummy-data-source.js +107 -0
- package/esm5/form-entry/directives/historical-value-directive.js +74 -0
- package/esm5/form-entry/error-renderer/error-renderer.component.js +64 -0
- package/esm5/form-entry/expression-runner/expression-runner.js +159 -0
- package/esm5/form-entry/form-entry.module.js +111 -0
- package/esm5/form-entry/form-factory/control-relations.factory.js +245 -0
- package/esm5/form-entry/form-factory/form-control.service.js +122 -0
- package/esm5/form-entry/form-factory/form-node.js +117 -0
- package/esm5/form-entry/form-factory/form.factory.js +138 -0
- package/esm5/form-entry/form-factory/form.js +214 -0
- package/esm5/form-entry/form-factory/hiders-disablers.factory.js +70 -0
- package/esm5/form-entry/form-factory/question.factory.js +980 -0
- package/esm5/form-entry/form-factory/show-messages.factory.js +34 -0
- package/esm5/form-entry/form-factory/validation.factory.js +191 -0
- package/esm5/form-entry/form-renderer/form-renderer.component.css.js +3 -0
- package/esm5/form-entry/form-renderer/form-renderer.component.js +219 -0
- package/esm5/form-entry/helpers/historical-expression-helper-service.js +43 -0
- package/esm5/form-entry/helpers/historical-field-helper-service.js +37 -0
- package/esm5/form-entry/helpers/js-expression-helper.js +243 -0
- package/esm5/form-entry/question-models/checkbox.model.js +17 -0
- package/esm5/form-entry/question-models/conditional-validation.model.js +15 -0
- package/esm5/form-entry/question-models/date-question.js +19 -0
- package/esm5/form-entry/question-models/date-validation.model.js +16 -0
- package/esm5/form-entry/question-models/decimal-point-validation.model.js +22 -0
- package/esm5/form-entry/question-models/file-upload-question.js +19 -0
- package/esm5/form-entry/question-models/group-question.js +18 -0
- package/esm5/form-entry/question-models/interfaces/base-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/checkbox-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/data-source.js +2 -0
- package/esm5/form-entry/question-models/interfaces/date-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/file-upload-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/group-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/multi-select-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/nested-questions.js +12 -0
- package/esm5/form-entry/question-models/interfaces/repeating-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/select-option.js +2 -0
- package/esm5/form-entry/question-models/interfaces/select-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/test-order-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/text-area-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/text-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/time-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/ui-select-question-options.js +2 -0
- package/esm5/form-entry/question-models/js-expression-validation.model.js +14 -0
- package/esm5/form-entry/question-models/max-validation.model.js +15 -0
- package/esm5/form-entry/question-models/min-validation.model.js +15 -0
- package/esm5/form-entry/question-models/models.js +13 -0
- package/esm5/form-entry/question-models/multi-select-question.js +17 -0
- package/esm5/form-entry/question-models/pair.model.js +10 -0
- package/esm5/form-entry/question-models/question-base.js +27 -0
- package/esm5/form-entry/question-models/rendering-type.js +10 -0
- package/esm5/form-entry/question-models/repeating-question.js +17 -0
- package/esm5/form-entry/question-models/select-option.js +10 -0
- package/esm5/form-entry/question-models/select-question.js +18 -0
- package/esm5/form-entry/question-models/test-order-question.js +21 -0
- package/esm5/form-entry/question-models/text-area-input-question.js +19 -0
- package/esm5/form-entry/question-models/text-input-question.js +16 -0
- package/esm5/form-entry/question-models/time-question.js +16 -0
- package/esm5/form-entry/question-models/ui-select-question.js +17 -0
- package/esm5/form-entry/question-models/validation.model.js +10 -0
- package/esm5/form-entry/services/debug-mode.service.js +26 -0
- package/esm5/form-entry/services/form-errors.service.js +21 -0
- package/esm5/form-entry/services/form-schema-compiler.service.js +254 -0
- package/esm5/form-entry/services/historical-encounter-data.service.js +180 -0
- package/esm5/form-entry/utils/messages.js +17 -0
- package/esm5/form-entry/validators/conditional-answered.validator.js +50 -0
- package/esm5/form-entry/validators/conditional-required.validator.js +44 -0
- package/esm5/form-entry/validators/date.validator.js +22 -0
- package/esm5/form-entry/validators/future-date-restriction.validator.js +25 -0
- package/esm5/form-entry/validators/js-expression.validator.js +30 -0
- package/esm5/form-entry/validators/max-date.validator.js +28 -0
- package/esm5/form-entry/validators/max.validator.js +22 -0
- package/esm5/form-entry/validators/min-date.validator.js +28 -0
- package/esm5/form-entry/validators/min.validator.js +22 -0
- package/esm5/form-entry/validators/required.validator.js +16 -0
- package/esm5/form-entry/validators/validations.js +9 -0
- package/esm5/form-entry/value-adapters/encounter.adapter.js +178 -0
- package/esm5/form-entry/value-adapters/obs-adapter-helper.js +509 -0
- package/esm5/form-entry/value-adapters/obs.adapter.js +737 -0
- package/esm5/form-entry/value-adapters/order.adapter.js +227 -0
- package/esm5/form-entry/value-adapters/person-attribute.adapter.js +96 -0
- package/esm5/form-entry/value-adapters/value.adapter.js +2 -0
- package/esm5/public_api.js +52 -0
- package/esm5/shared.module.js +20 -0
- package/fesm2015/ampath-kenya-ngx-openmrs-formentry.js +5093 -6889
- package/fesm2015/ampath-kenya-ngx-openmrs-formentry.js.map +1 -1
- package/fesm5/ampath-kenya-ngx-openmrs-formentry.js +10737 -0
- package/fesm5/ampath-kenya-ngx-openmrs-formentry.js.map +1 -0
- package/form-entry/data-sources/data-sources.d.ts +1 -1
- package/form-entry/directives/historical-value-directive.d.ts +2 -2
- package/form-entry/error-renderer/error-renderer.component.d.ts +1 -1
- package/form-entry/expression-runner/expression-runner.d.ts +6 -6
- package/form-entry/form-factory/form-control.service.d.ts +3 -3
- package/form-entry/form-factory/form-node.d.ts +9 -10
- package/form-entry/form-factory/form.d.ts +6 -7
- package/form-entry/form-factory/question.factory.d.ts +7 -1
- package/form-entry/form-factory/validation.factory.d.ts +10 -10
- package/form-entry/form-renderer/form-renderer.component.css.d.ts +1 -1
- package/form-entry/form-renderer/form-renderer.component.d.ts +4 -6
- package/form-entry/helpers/js-expression-helper.d.ts +1 -1
- package/form-entry/question-models/date-question.d.ts +2 -0
- package/form-entry/question-models/decimal-point-validation.model.d.ts +10 -0
- package/form-entry/question-models/interfaces/base-options.d.ts +1 -0
- package/form-entry/question-models/interfaces/time-question-options.d.ts +3 -0
- package/form-entry/question-models/question-base.d.ts +4 -0
- package/form-entry/question-models/rendering-type.d.ts +1 -1
- package/form-entry/question-models/time-question.d.ts +5 -0
- package/form-entry/services/form-errors.service.d.ts +2 -1
- package/form-entry/services/form-schema-compiler.service.d.ts +16 -16
- package/form-entry/services/historical-encounter-data.service.d.ts +3 -3
- package/form-entry/utils/messages.d.ts +9 -9
- package/form-entry/value-adapters/encounter.adapter.d.ts +2 -2
- package/form-entry/value-adapters/order.adapter.d.ts +9 -9
- package/form-entry/value-adapters/person-attribute.adapter.d.ts +1 -1
- package/package.json +18 -16
- package/public_api.d.ts +50 -1
- package/components/input/input.directive.d.ts +0 -28
- package/components/input/input.module.d.ts +0 -2
- package/components/input/label.component.d.ts +0 -87
- package/components/input/text-area.directive.d.ts +0 -21
- package/components/ngx-datetime-picker/ngx-datetime-picker.component.d.ts +0 -13
- package/components/ngx-pick-datetime/lib/date-time/adapter/date-time-adapter.class.d.ts +0 -189
- package/components/ngx-pick-datetime/lib/date-time/adapter/date-time-format.class.d.ts +0 -15
- package/components/ngx-pick-datetime/lib/date-time/adapter/native-date-time-adapter.class.d.ts +0 -73
- package/components/ngx-pick-datetime/lib/date-time/adapter/native-date-time-format.class.d.ts +0 -5
- package/components/ngx-pick-datetime/lib/date-time/adapter/native-date-time.module.d.ts +0 -7
- package/components/ngx-pick-datetime/lib/date-time/calendar-body.component.d.ts +0 -77
- package/components/ngx-pick-datetime/lib/date-time/calendar-month-view.component.d.ts +0 -139
- package/components/ngx-pick-datetime/lib/date-time/calendar-multi-year-view.component.d.ts +0 -109
- package/components/ngx-pick-datetime/lib/date-time/calendar-year-view.component.d.ts +0 -120
- package/components/ngx-pick-datetime/lib/date-time/calendar.component.d.ts +0 -141
- package/components/ngx-pick-datetime/lib/date-time/date-time-inline.component.d.ts +0 -90
- package/components/ngx-pick-datetime/lib/date-time/date-time-picker-container.component.d.ts +0 -122
- package/components/ngx-pick-datetime/lib/date-time/date-time-picker-input.directive.d.ts +0 -152
- package/components/ngx-pick-datetime/lib/date-time/date-time-picker-intl.service.d.ts +0 -51
- package/components/ngx-pick-datetime/lib/date-time/date-time-picker-trigger.directive.d.ts +0 -21
- package/components/ngx-pick-datetime/lib/date-time/date-time-picker.animations.d.ts +0 -8
- package/components/ngx-pick-datetime/lib/date-time/date-time-picker.component.d.ts +0 -157
- package/components/ngx-pick-datetime/lib/date-time/date-time.class.d.ts +0 -86
- package/components/ngx-pick-datetime/lib/date-time/date-time.module.d.ts +0 -5
- package/components/ngx-pick-datetime/lib/date-time/numberedFixLen.pipe.d.ts +0 -7
- package/components/ngx-pick-datetime/lib/date-time/timer-box.component.d.ts +0 -35
- package/components/ngx-pick-datetime/lib/date-time/timer.component.d.ts +0 -129
- package/components/ngx-pick-datetime/lib/dialog/dialog-config.class.d.ts +0 -93
- package/components/ngx-pick-datetime/lib/dialog/dialog-container.component.d.ts +0 -56
- package/components/ngx-pick-datetime/lib/dialog/dialog-ref.class.d.ts +0 -49
- package/components/ngx-pick-datetime/lib/dialog/dialog.module.d.ts +0 -5
- package/components/ngx-pick-datetime/lib/dialog/dialog.service.d.ts +0 -70
- package/components/ngx-pick-datetime/lib/utils/index.d.ts +0 -4
- package/components/ngx-pick-datetime/lib/utils/object.utils.d.ts +0 -11
- package/components/ngx-remote-select/ngx-remote-select.module.d.ts +0 -2
- package/components/ngx-tabset/components/tab-set.d.ts +0 -15
- package/components/ngx-tabset/components/tab.d.ts +0 -10
- package/components/ngx-tabset/directives/hover-class.directive.d.ts +0 -8
- package/components/ngx-tabset/modules/ngx-tabset.module.d.ts +0 -11
- package/components/number-input/number-input.component.d.ts +0 -148
- package/components/number-input/number-input.module.d.ts +0 -2
- package/components/select/optgroup.directive.d.ts +0 -3
- package/components/select/option.directive.d.ts +0 -3
- package/esm2015/components/input/input.directive.js +0 -55
- package/esm2015/components/input/input.module.js +0 -29
- package/esm2015/components/input/label.component.js +0 -139
- package/esm2015/components/input/text-area.directive.js +0 -40
- package/esm2015/components/ngx-datetime-picker/ngx-datetime-picker.component.js +0 -52
- package/esm2015/components/ngx-datetime-picker/ngx-datetime-picker.module.js +0 -28
- package/esm2015/components/ngx-pick-datetime/lib/date-time/adapter/date-time-adapter.class.js +0 -115
- package/esm2015/components/ngx-pick-datetime/lib/date-time/adapter/date-time-format.class.js +0 -7
- package/esm2015/components/ngx-pick-datetime/lib/date-time/adapter/native-date-time-adapter.class.js +0 -346
- package/esm2015/components/ngx-pick-datetime/lib/date-time/adapter/native-date-time-format.class.js +0 -10
- package/esm2015/components/ngx-pick-datetime/lib/date-time/adapter/native-date-time.module.js +0 -30
- package/esm2015/components/ngx-pick-datetime/lib/date-time/calendar-body.component.js +0 -149
- package/esm2015/components/ngx-pick-datetime/lib/date-time/calendar-month-view.component.js +0 -432
- package/esm2015/components/ngx-pick-datetime/lib/date-time/calendar-multi-year-view.component.js +0 -353
- package/esm2015/components/ngx-pick-datetime/lib/date-time/calendar-year-view.component.js +0 -362
- package/esm2015/components/ngx-pick-datetime/lib/date-time/calendar.component.js +0 -337
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time-inline.component.js +0 -252
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time-picker-container.component.js +0 -379
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time-picker-input.directive.js +0 -601
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time-picker-intl.service.js +0 -60
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time-picker-trigger.directive.js +0 -69
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time-picker.animations.js +0 -21
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time-picker.component.js +0 -515
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time.class.js +0 -154
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time.module.js +0 -63
- package/esm2015/components/ngx-pick-datetime/lib/date-time/numberedFixLen.pipe.js +0 -24
- package/esm2015/components/ngx-pick-datetime/lib/date-time/timer-box.component.js +0 -83
- package/esm2015/components/ngx-pick-datetime/lib/date-time/timer.component.js +0 -293
- package/esm2015/components/ngx-pick-datetime/lib/dialog/dialog-config.class.js +0 -56
- package/esm2015/components/ngx-pick-datetime/lib/dialog/dialog-container.component.js +0 -208
- package/esm2015/components/ngx-pick-datetime/lib/dialog/dialog-ref.class.js +0 -113
- package/esm2015/components/ngx-pick-datetime/lib/dialog/dialog.module.js +0 -29
- package/esm2015/components/ngx-pick-datetime/lib/dialog/dialog.service.js +0 -228
- package/esm2015/components/ngx-pick-datetime/lib/utils/index.js +0 -5
- package/esm2015/components/ngx-pick-datetime/lib/utils/object.utils.js +0 -26
- package/esm2015/components/ngx-remote-select/ngx-remote-select.component.js +0 -119
- package/esm2015/components/ngx-remote-select/ngx-remote-select.module.js +0 -18
- package/esm2015/components/ngx-tabset/components/tab-set.js +0 -67
- package/esm2015/components/ngx-tabset/components/tab.js +0 -38
- package/esm2015/components/ngx-tabset/directives/hover-class.directive.js +0 -26
- package/esm2015/components/ngx-tabset/modules/ngx-tabset.module.js +0 -40
- package/esm2015/components/number-input/number-input.component.js +0 -203
- package/esm2015/components/number-input/number-input.module.js +0 -15
- package/esm2015/components/select/optgroup.directive.js +0 -17
- package/esm2015/components/select/option.directive.js +0 -17
- package/esm2015/form-entry/directives/collapse-animations.js +0 -11
- package/esm2015/form-entry/directives/collapse.directive.js +0 -157
- package/esm2015/form-entry/pipes/time-ago.pipe.js +0 -107
- package/esm2015/lib/index.js +0 -49
- package/form-entry/directives/collapse-animations.d.ts +0 -4
- package/form-entry/directives/collapse.directive.d.ts +0 -42
- package/form-entry/pipes/time-ago.pipe.d.ts +0 -11
- package/lib/index.d.ts +0 -49
- package/styles/ngx-formentry.css +0 -317
- package/styles/picker.min.css +0 -1
|
@@ -0,0 +1,844 @@
|
|
|
1
|
+
export declare class Diacritics {
|
|
2
|
+
static DIACRITICS: {
|
|
3
|
+
'\u24B6': string;
|
|
4
|
+
'\uFF21': string;
|
|
5
|
+
'\u00C0': string;
|
|
6
|
+
'\u00C1': string;
|
|
7
|
+
'\u00C2': string;
|
|
8
|
+
'\u1EA6': string;
|
|
9
|
+
'\u1EA4': string;
|
|
10
|
+
'\u1EAA': string;
|
|
11
|
+
'\u1EA8': string;
|
|
12
|
+
'\u00C3': string;
|
|
13
|
+
'\u0100': string;
|
|
14
|
+
'\u0102': string;
|
|
15
|
+
'\u1EB0': string;
|
|
16
|
+
'\u1EAE': string;
|
|
17
|
+
'\u1EB4': string;
|
|
18
|
+
'\u1EB2': string;
|
|
19
|
+
'\u0226': string;
|
|
20
|
+
'\u01E0': string;
|
|
21
|
+
'\u00C4': string;
|
|
22
|
+
'\u01DE': string;
|
|
23
|
+
'\u1EA2': string;
|
|
24
|
+
'\u00C5': string;
|
|
25
|
+
'\u01FA': string;
|
|
26
|
+
'\u01CD': string;
|
|
27
|
+
'\u0200': string;
|
|
28
|
+
'\u0202': string;
|
|
29
|
+
'\u1EA0': string;
|
|
30
|
+
'\u1EAC': string;
|
|
31
|
+
'\u1EB6': string;
|
|
32
|
+
'\u1E00': string;
|
|
33
|
+
'\u0104': string;
|
|
34
|
+
'\u023A': string;
|
|
35
|
+
'\u2C6F': string;
|
|
36
|
+
'\uA732': string;
|
|
37
|
+
'\u00C6': string;
|
|
38
|
+
'\u01FC': string;
|
|
39
|
+
'\u01E2': string;
|
|
40
|
+
'\uA734': string;
|
|
41
|
+
'\uA736': string;
|
|
42
|
+
'\uA738': string;
|
|
43
|
+
'\uA73A': string;
|
|
44
|
+
'\uA73C': string;
|
|
45
|
+
'\u24B7': string;
|
|
46
|
+
'\uFF22': string;
|
|
47
|
+
'\u1E02': string;
|
|
48
|
+
'\u1E04': string;
|
|
49
|
+
'\u1E06': string;
|
|
50
|
+
'\u0243': string;
|
|
51
|
+
'\u0182': string;
|
|
52
|
+
'\u0181': string;
|
|
53
|
+
'\u24B8': string;
|
|
54
|
+
'\uFF23': string;
|
|
55
|
+
'\u0106': string;
|
|
56
|
+
'\u0108': string;
|
|
57
|
+
'\u010A': string;
|
|
58
|
+
'\u010C': string;
|
|
59
|
+
'\u00C7': string;
|
|
60
|
+
'\u1E08': string;
|
|
61
|
+
'\u0187': string;
|
|
62
|
+
'\u023B': string;
|
|
63
|
+
'\uA73E': string;
|
|
64
|
+
'\u24B9': string;
|
|
65
|
+
'\uFF24': string;
|
|
66
|
+
'\u1E0A': string;
|
|
67
|
+
'\u010E': string;
|
|
68
|
+
'\u1E0C': string;
|
|
69
|
+
'\u1E10': string;
|
|
70
|
+
'\u1E12': string;
|
|
71
|
+
'\u1E0E': string;
|
|
72
|
+
'\u0110': string;
|
|
73
|
+
'\u018B': string;
|
|
74
|
+
'\u018A': string;
|
|
75
|
+
'\u0189': string;
|
|
76
|
+
'\uA779': string;
|
|
77
|
+
'\u01F1': string;
|
|
78
|
+
'\u01C4': string;
|
|
79
|
+
'\u01F2': string;
|
|
80
|
+
'\u01C5': string;
|
|
81
|
+
'\u24BA': string;
|
|
82
|
+
'\uFF25': string;
|
|
83
|
+
'\u00C8': string;
|
|
84
|
+
'\u00C9': string;
|
|
85
|
+
'\u00CA': string;
|
|
86
|
+
'\u1EC0': string;
|
|
87
|
+
'\u1EBE': string;
|
|
88
|
+
'\u1EC4': string;
|
|
89
|
+
'\u1EC2': string;
|
|
90
|
+
'\u1EBC': string;
|
|
91
|
+
'\u0112': string;
|
|
92
|
+
'\u1E14': string;
|
|
93
|
+
'\u1E16': string;
|
|
94
|
+
'\u0114': string;
|
|
95
|
+
'\u0116': string;
|
|
96
|
+
'\u00CB': string;
|
|
97
|
+
'\u1EBA': string;
|
|
98
|
+
'\u011A': string;
|
|
99
|
+
'\u0204': string;
|
|
100
|
+
'\u0206': string;
|
|
101
|
+
'\u1EB8': string;
|
|
102
|
+
'\u1EC6': string;
|
|
103
|
+
'\u0228': string;
|
|
104
|
+
'\u1E1C': string;
|
|
105
|
+
'\u0118': string;
|
|
106
|
+
'\u1E18': string;
|
|
107
|
+
'\u1E1A': string;
|
|
108
|
+
'\u0190': string;
|
|
109
|
+
'\u018E': string;
|
|
110
|
+
'\u24BB': string;
|
|
111
|
+
'\uFF26': string;
|
|
112
|
+
'\u1E1E': string;
|
|
113
|
+
'\u0191': string;
|
|
114
|
+
'\uA77B': string;
|
|
115
|
+
'\u24BC': string;
|
|
116
|
+
'\uFF27': string;
|
|
117
|
+
'\u01F4': string;
|
|
118
|
+
'\u011C': string;
|
|
119
|
+
'\u1E20': string;
|
|
120
|
+
'\u011E': string;
|
|
121
|
+
'\u0120': string;
|
|
122
|
+
'\u01E6': string;
|
|
123
|
+
'\u0122': string;
|
|
124
|
+
'\u01E4': string;
|
|
125
|
+
'\u0193': string;
|
|
126
|
+
'\uA7A0': string;
|
|
127
|
+
'\uA77D': string;
|
|
128
|
+
'\uA77E': string;
|
|
129
|
+
'\u24BD': string;
|
|
130
|
+
'\uFF28': string;
|
|
131
|
+
'\u0124': string;
|
|
132
|
+
'\u1E22': string;
|
|
133
|
+
'\u1E26': string;
|
|
134
|
+
'\u021E': string;
|
|
135
|
+
'\u1E24': string;
|
|
136
|
+
'\u1E28': string;
|
|
137
|
+
'\u1E2A': string;
|
|
138
|
+
'\u0126': string;
|
|
139
|
+
'\u2C67': string;
|
|
140
|
+
'\u2C75': string;
|
|
141
|
+
'\uA78D': string;
|
|
142
|
+
'\u24BE': string;
|
|
143
|
+
'\uFF29': string;
|
|
144
|
+
'\u00CC': string;
|
|
145
|
+
'\u00CD': string;
|
|
146
|
+
'\u00CE': string;
|
|
147
|
+
'\u0128': string;
|
|
148
|
+
'\u012A': string;
|
|
149
|
+
'\u012C': string;
|
|
150
|
+
'\u0130': string;
|
|
151
|
+
'\u00CF': string;
|
|
152
|
+
'\u1E2E': string;
|
|
153
|
+
'\u1EC8': string;
|
|
154
|
+
'\u01CF': string;
|
|
155
|
+
'\u0208': string;
|
|
156
|
+
'\u020A': string;
|
|
157
|
+
'\u1ECA': string;
|
|
158
|
+
'\u012E': string;
|
|
159
|
+
'\u1E2C': string;
|
|
160
|
+
'\u0197': string;
|
|
161
|
+
'\u24BF': string;
|
|
162
|
+
'\uFF2A': string;
|
|
163
|
+
'\u0134': string;
|
|
164
|
+
'\u0248': string;
|
|
165
|
+
'\u24C0': string;
|
|
166
|
+
'\uFF2B': string;
|
|
167
|
+
'\u1E30': string;
|
|
168
|
+
'\u01E8': string;
|
|
169
|
+
'\u1E32': string;
|
|
170
|
+
'\u0136': string;
|
|
171
|
+
'\u1E34': string;
|
|
172
|
+
'\u0198': string;
|
|
173
|
+
'\u2C69': string;
|
|
174
|
+
'\uA740': string;
|
|
175
|
+
'\uA742': string;
|
|
176
|
+
'\uA744': string;
|
|
177
|
+
'\uA7A2': string;
|
|
178
|
+
'\u24C1': string;
|
|
179
|
+
'\uFF2C': string;
|
|
180
|
+
'\u013F': string;
|
|
181
|
+
'\u0139': string;
|
|
182
|
+
'\u013D': string;
|
|
183
|
+
'\u1E36': string;
|
|
184
|
+
'\u1E38': string;
|
|
185
|
+
'\u013B': string;
|
|
186
|
+
'\u1E3C': string;
|
|
187
|
+
'\u1E3A': string;
|
|
188
|
+
'\u0141': string;
|
|
189
|
+
'\u023D': string;
|
|
190
|
+
'\u2C62': string;
|
|
191
|
+
'\u2C60': string;
|
|
192
|
+
'\uA748': string;
|
|
193
|
+
'\uA746': string;
|
|
194
|
+
'\uA780': string;
|
|
195
|
+
'\u01C7': string;
|
|
196
|
+
'\u01C8': string;
|
|
197
|
+
'\u24C2': string;
|
|
198
|
+
'\uFF2D': string;
|
|
199
|
+
'\u1E3E': string;
|
|
200
|
+
'\u1E40': string;
|
|
201
|
+
'\u1E42': string;
|
|
202
|
+
'\u2C6E': string;
|
|
203
|
+
'\u019C': string;
|
|
204
|
+
'\u24C3': string;
|
|
205
|
+
'\uFF2E': string;
|
|
206
|
+
'\u01F8': string;
|
|
207
|
+
'\u0143': string;
|
|
208
|
+
'\u00D1': string;
|
|
209
|
+
'\u1E44': string;
|
|
210
|
+
'\u0147': string;
|
|
211
|
+
'\u1E46': string;
|
|
212
|
+
'\u0145': string;
|
|
213
|
+
'\u1E4A': string;
|
|
214
|
+
'\u1E48': string;
|
|
215
|
+
'\u0220': string;
|
|
216
|
+
'\u019D': string;
|
|
217
|
+
'\uA790': string;
|
|
218
|
+
'\uA7A4': string;
|
|
219
|
+
'\u01CA': string;
|
|
220
|
+
'\u01CB': string;
|
|
221
|
+
'\u24C4': string;
|
|
222
|
+
'\uFF2F': string;
|
|
223
|
+
'\u00D2': string;
|
|
224
|
+
'\u00D3': string;
|
|
225
|
+
'\u00D4': string;
|
|
226
|
+
'\u1ED2': string;
|
|
227
|
+
'\u1ED0': string;
|
|
228
|
+
'\u1ED6': string;
|
|
229
|
+
'\u1ED4': string;
|
|
230
|
+
'\u00D5': string;
|
|
231
|
+
'\u1E4C': string;
|
|
232
|
+
'\u022C': string;
|
|
233
|
+
'\u1E4E': string;
|
|
234
|
+
'\u014C': string;
|
|
235
|
+
'\u1E50': string;
|
|
236
|
+
'\u1E52': string;
|
|
237
|
+
'\u014E': string;
|
|
238
|
+
'\u022E': string;
|
|
239
|
+
'\u0230': string;
|
|
240
|
+
'\u00D6': string;
|
|
241
|
+
'\u022A': string;
|
|
242
|
+
'\u1ECE': string;
|
|
243
|
+
'\u0150': string;
|
|
244
|
+
'\u01D1': string;
|
|
245
|
+
'\u020C': string;
|
|
246
|
+
'\u020E': string;
|
|
247
|
+
'\u01A0': string;
|
|
248
|
+
'\u1EDC': string;
|
|
249
|
+
'\u1EDA': string;
|
|
250
|
+
'\u1EE0': string;
|
|
251
|
+
'\u1EDE': string;
|
|
252
|
+
'\u1EE2': string;
|
|
253
|
+
'\u1ECC': string;
|
|
254
|
+
'\u1ED8': string;
|
|
255
|
+
'\u01EA': string;
|
|
256
|
+
'\u01EC': string;
|
|
257
|
+
'\u00D8': string;
|
|
258
|
+
'\u01FE': string;
|
|
259
|
+
'\u0186': string;
|
|
260
|
+
'\u019F': string;
|
|
261
|
+
'\uA74A': string;
|
|
262
|
+
'\uA74C': string;
|
|
263
|
+
'\u01A2': string;
|
|
264
|
+
'\uA74E': string;
|
|
265
|
+
'\u0222': string;
|
|
266
|
+
'\u24C5': string;
|
|
267
|
+
'\uFF30': string;
|
|
268
|
+
'\u1E54': string;
|
|
269
|
+
'\u1E56': string;
|
|
270
|
+
'\u01A4': string;
|
|
271
|
+
'\u2C63': string;
|
|
272
|
+
'\uA750': string;
|
|
273
|
+
'\uA752': string;
|
|
274
|
+
'\uA754': string;
|
|
275
|
+
'\u24C6': string;
|
|
276
|
+
'\uFF31': string;
|
|
277
|
+
'\uA756': string;
|
|
278
|
+
'\uA758': string;
|
|
279
|
+
'\u024A': string;
|
|
280
|
+
'\u24C7': string;
|
|
281
|
+
'\uFF32': string;
|
|
282
|
+
'\u0154': string;
|
|
283
|
+
'\u1E58': string;
|
|
284
|
+
'\u0158': string;
|
|
285
|
+
'\u0210': string;
|
|
286
|
+
'\u0212': string;
|
|
287
|
+
'\u1E5A': string;
|
|
288
|
+
'\u1E5C': string;
|
|
289
|
+
'\u0156': string;
|
|
290
|
+
'\u1E5E': string;
|
|
291
|
+
'\u024C': string;
|
|
292
|
+
'\u2C64': string;
|
|
293
|
+
'\uA75A': string;
|
|
294
|
+
'\uA7A6': string;
|
|
295
|
+
'\uA782': string;
|
|
296
|
+
'\u24C8': string;
|
|
297
|
+
'\uFF33': string;
|
|
298
|
+
'\u1E9E': string;
|
|
299
|
+
'\u015A': string;
|
|
300
|
+
'\u1E64': string;
|
|
301
|
+
'\u015C': string;
|
|
302
|
+
'\u1E60': string;
|
|
303
|
+
'\u0160': string;
|
|
304
|
+
'\u1E66': string;
|
|
305
|
+
'\u1E62': string;
|
|
306
|
+
'\u1E68': string;
|
|
307
|
+
'\u0218': string;
|
|
308
|
+
'\u015E': string;
|
|
309
|
+
'\u2C7E': string;
|
|
310
|
+
'\uA7A8': string;
|
|
311
|
+
'\uA784': string;
|
|
312
|
+
'\u24C9': string;
|
|
313
|
+
'\uFF34': string;
|
|
314
|
+
'\u1E6A': string;
|
|
315
|
+
'\u0164': string;
|
|
316
|
+
'\u1E6C': string;
|
|
317
|
+
'\u021A': string;
|
|
318
|
+
'\u0162': string;
|
|
319
|
+
'\u1E70': string;
|
|
320
|
+
'\u1E6E': string;
|
|
321
|
+
'\u0166': string;
|
|
322
|
+
'\u01AC': string;
|
|
323
|
+
'\u01AE': string;
|
|
324
|
+
'\u023E': string;
|
|
325
|
+
'\uA786': string;
|
|
326
|
+
'\uA728': string;
|
|
327
|
+
'\u24CA': string;
|
|
328
|
+
'\uFF35': string;
|
|
329
|
+
'\u00D9': string;
|
|
330
|
+
'\u00DA': string;
|
|
331
|
+
'\u00DB': string;
|
|
332
|
+
'\u0168': string;
|
|
333
|
+
'\u1E78': string;
|
|
334
|
+
'\u016A': string;
|
|
335
|
+
'\u1E7A': string;
|
|
336
|
+
'\u016C': string;
|
|
337
|
+
'\u00DC': string;
|
|
338
|
+
'\u01DB': string;
|
|
339
|
+
'\u01D7': string;
|
|
340
|
+
'\u01D5': string;
|
|
341
|
+
'\u01D9': string;
|
|
342
|
+
'\u1EE6': string;
|
|
343
|
+
'\u016E': string;
|
|
344
|
+
'\u0170': string;
|
|
345
|
+
'\u01D3': string;
|
|
346
|
+
'\u0214': string;
|
|
347
|
+
'\u0216': string;
|
|
348
|
+
'\u01AF': string;
|
|
349
|
+
'\u1EEA': string;
|
|
350
|
+
'\u1EE8': string;
|
|
351
|
+
'\u1EEE': string;
|
|
352
|
+
'\u1EEC': string;
|
|
353
|
+
'\u1EF0': string;
|
|
354
|
+
'\u1EE4': string;
|
|
355
|
+
'\u1E72': string;
|
|
356
|
+
'\u0172': string;
|
|
357
|
+
'\u1E76': string;
|
|
358
|
+
'\u1E74': string;
|
|
359
|
+
'\u0244': string;
|
|
360
|
+
'\u24CB': string;
|
|
361
|
+
'\uFF36': string;
|
|
362
|
+
'\u1E7C': string;
|
|
363
|
+
'\u1E7E': string;
|
|
364
|
+
'\u01B2': string;
|
|
365
|
+
'\uA75E': string;
|
|
366
|
+
'\u0245': string;
|
|
367
|
+
'\uA760': string;
|
|
368
|
+
'\u24CC': string;
|
|
369
|
+
'\uFF37': string;
|
|
370
|
+
'\u1E80': string;
|
|
371
|
+
'\u1E82': string;
|
|
372
|
+
'\u0174': string;
|
|
373
|
+
'\u1E86': string;
|
|
374
|
+
'\u1E84': string;
|
|
375
|
+
'\u1E88': string;
|
|
376
|
+
'\u2C72': string;
|
|
377
|
+
'\u24CD': string;
|
|
378
|
+
'\uFF38': string;
|
|
379
|
+
'\u1E8A': string;
|
|
380
|
+
'\u1E8C': string;
|
|
381
|
+
'\u24CE': string;
|
|
382
|
+
'\uFF39': string;
|
|
383
|
+
'\u1EF2': string;
|
|
384
|
+
'\u00DD': string;
|
|
385
|
+
'\u0176': string;
|
|
386
|
+
'\u1EF8': string;
|
|
387
|
+
'\u0232': string;
|
|
388
|
+
'\u1E8E': string;
|
|
389
|
+
'\u0178': string;
|
|
390
|
+
'\u1EF6': string;
|
|
391
|
+
'\u1EF4': string;
|
|
392
|
+
'\u01B3': string;
|
|
393
|
+
'\u024E': string;
|
|
394
|
+
'\u1EFE': string;
|
|
395
|
+
'\u24CF': string;
|
|
396
|
+
'\uFF3A': string;
|
|
397
|
+
'\u0179': string;
|
|
398
|
+
'\u1E90': string;
|
|
399
|
+
'\u017B': string;
|
|
400
|
+
'\u017D': string;
|
|
401
|
+
'\u1E92': string;
|
|
402
|
+
'\u1E94': string;
|
|
403
|
+
'\u01B5': string;
|
|
404
|
+
'\u0224': string;
|
|
405
|
+
'\u2C7F': string;
|
|
406
|
+
'\u2C6B': string;
|
|
407
|
+
'\uA762': string;
|
|
408
|
+
'\u24D0': string;
|
|
409
|
+
'\uFF41': string;
|
|
410
|
+
'\u1E9A': string;
|
|
411
|
+
'\u00E0': string;
|
|
412
|
+
'\u00E1': string;
|
|
413
|
+
'\u00E2': string;
|
|
414
|
+
'\u1EA7': string;
|
|
415
|
+
'\u1EA5': string;
|
|
416
|
+
'\u1EAB': string;
|
|
417
|
+
'\u1EA9': string;
|
|
418
|
+
'\u00E3': string;
|
|
419
|
+
'\u0101': string;
|
|
420
|
+
'\u0103': string;
|
|
421
|
+
'\u1EB1': string;
|
|
422
|
+
'\u1EAF': string;
|
|
423
|
+
'\u1EB5': string;
|
|
424
|
+
'\u1EB3': string;
|
|
425
|
+
'\u0227': string;
|
|
426
|
+
'\u01E1': string;
|
|
427
|
+
'\u00E4': string;
|
|
428
|
+
'\u01DF': string;
|
|
429
|
+
'\u1EA3': string;
|
|
430
|
+
'\u00E5': string;
|
|
431
|
+
'\u01FB': string;
|
|
432
|
+
'\u01CE': string;
|
|
433
|
+
'\u0201': string;
|
|
434
|
+
'\u0203': string;
|
|
435
|
+
'\u1EA1': string;
|
|
436
|
+
'\u1EAD': string;
|
|
437
|
+
'\u1EB7': string;
|
|
438
|
+
'\u1E01': string;
|
|
439
|
+
'\u0105': string;
|
|
440
|
+
'\u2C65': string;
|
|
441
|
+
'\u0250': string;
|
|
442
|
+
'\uA733': string;
|
|
443
|
+
'\u00E6': string;
|
|
444
|
+
'\u01FD': string;
|
|
445
|
+
'\u01E3': string;
|
|
446
|
+
'\uA735': string;
|
|
447
|
+
'\uA737': string;
|
|
448
|
+
'\uA739': string;
|
|
449
|
+
'\uA73B': string;
|
|
450
|
+
'\uA73D': string;
|
|
451
|
+
'\u24D1': string;
|
|
452
|
+
'\uFF42': string;
|
|
453
|
+
'\u1E03': string;
|
|
454
|
+
'\u1E05': string;
|
|
455
|
+
'\u1E07': string;
|
|
456
|
+
'\u0180': string;
|
|
457
|
+
'\u0183': string;
|
|
458
|
+
'\u0253': string;
|
|
459
|
+
'\u24D2': string;
|
|
460
|
+
'\uFF43': string;
|
|
461
|
+
'\u0107': string;
|
|
462
|
+
'\u0109': string;
|
|
463
|
+
'\u010B': string;
|
|
464
|
+
'\u010D': string;
|
|
465
|
+
'\u00E7': string;
|
|
466
|
+
'\u1E09': string;
|
|
467
|
+
'\u0188': string;
|
|
468
|
+
'\u023C': string;
|
|
469
|
+
'\uA73F': string;
|
|
470
|
+
'\u2184': string;
|
|
471
|
+
'\u24D3': string;
|
|
472
|
+
'\uFF44': string;
|
|
473
|
+
'\u1E0B': string;
|
|
474
|
+
'\u010F': string;
|
|
475
|
+
'\u1E0D': string;
|
|
476
|
+
'\u1E11': string;
|
|
477
|
+
'\u1E13': string;
|
|
478
|
+
'\u1E0F': string;
|
|
479
|
+
'\u0111': string;
|
|
480
|
+
'\u018C': string;
|
|
481
|
+
'\u0256': string;
|
|
482
|
+
'\u0257': string;
|
|
483
|
+
'\uA77A': string;
|
|
484
|
+
'\u01F3': string;
|
|
485
|
+
'\u01C6': string;
|
|
486
|
+
'\u24D4': string;
|
|
487
|
+
'\uFF45': string;
|
|
488
|
+
'\u00E8': string;
|
|
489
|
+
'\u00E9': string;
|
|
490
|
+
'\u00EA': string;
|
|
491
|
+
'\u1EC1': string;
|
|
492
|
+
'\u1EBF': string;
|
|
493
|
+
'\u1EC5': string;
|
|
494
|
+
'\u1EC3': string;
|
|
495
|
+
'\u1EBD': string;
|
|
496
|
+
'\u0113': string;
|
|
497
|
+
'\u1E15': string;
|
|
498
|
+
'\u1E17': string;
|
|
499
|
+
'\u0115': string;
|
|
500
|
+
'\u0117': string;
|
|
501
|
+
'\u00EB': string;
|
|
502
|
+
'\u1EBB': string;
|
|
503
|
+
'\u011B': string;
|
|
504
|
+
'\u0205': string;
|
|
505
|
+
'\u0207': string;
|
|
506
|
+
'\u1EB9': string;
|
|
507
|
+
'\u1EC7': string;
|
|
508
|
+
'\u0229': string;
|
|
509
|
+
'\u1E1D': string;
|
|
510
|
+
'\u0119': string;
|
|
511
|
+
'\u1E19': string;
|
|
512
|
+
'\u1E1B': string;
|
|
513
|
+
'\u0247': string;
|
|
514
|
+
'\u025B': string;
|
|
515
|
+
'\u01DD': string;
|
|
516
|
+
'\u24D5': string;
|
|
517
|
+
'\uFF46': string;
|
|
518
|
+
'\u1E1F': string;
|
|
519
|
+
'\u0192': string;
|
|
520
|
+
'\uA77C': string;
|
|
521
|
+
'\u24D6': string;
|
|
522
|
+
'\uFF47': string;
|
|
523
|
+
'\u01F5': string;
|
|
524
|
+
'\u011D': string;
|
|
525
|
+
'\u1E21': string;
|
|
526
|
+
'\u011F': string;
|
|
527
|
+
'\u0121': string;
|
|
528
|
+
'\u01E7': string;
|
|
529
|
+
'\u0123': string;
|
|
530
|
+
'\u01E5': string;
|
|
531
|
+
'\u0260': string;
|
|
532
|
+
'\uA7A1': string;
|
|
533
|
+
'\u1D79': string;
|
|
534
|
+
'\uA77F': string;
|
|
535
|
+
'\u24D7': string;
|
|
536
|
+
'\uFF48': string;
|
|
537
|
+
'\u0125': string;
|
|
538
|
+
'\u1E23': string;
|
|
539
|
+
'\u1E27': string;
|
|
540
|
+
'\u021F': string;
|
|
541
|
+
'\u1E25': string;
|
|
542
|
+
'\u1E29': string;
|
|
543
|
+
'\u1E2B': string;
|
|
544
|
+
'\u1E96': string;
|
|
545
|
+
'\u0127': string;
|
|
546
|
+
'\u2C68': string;
|
|
547
|
+
'\u2C76': string;
|
|
548
|
+
'\u0265': string;
|
|
549
|
+
'\u0195': string;
|
|
550
|
+
'\u24D8': string;
|
|
551
|
+
'\uFF49': string;
|
|
552
|
+
'\u00EC': string;
|
|
553
|
+
'\u00ED': string;
|
|
554
|
+
'\u00EE': string;
|
|
555
|
+
'\u0129': string;
|
|
556
|
+
'\u012B': string;
|
|
557
|
+
'\u012D': string;
|
|
558
|
+
'\u00EF': string;
|
|
559
|
+
'\u1E2F': string;
|
|
560
|
+
'\u1EC9': string;
|
|
561
|
+
'\u01D0': string;
|
|
562
|
+
'\u0209': string;
|
|
563
|
+
'\u020B': string;
|
|
564
|
+
'\u1ECB': string;
|
|
565
|
+
'\u012F': string;
|
|
566
|
+
'\u1E2D': string;
|
|
567
|
+
'\u0268': string;
|
|
568
|
+
'\u0131': string;
|
|
569
|
+
'\u24D9': string;
|
|
570
|
+
'\uFF4A': string;
|
|
571
|
+
'\u0135': string;
|
|
572
|
+
'\u01F0': string;
|
|
573
|
+
'\u0249': string;
|
|
574
|
+
'\u24DA': string;
|
|
575
|
+
'\uFF4B': string;
|
|
576
|
+
'\u1E31': string;
|
|
577
|
+
'\u01E9': string;
|
|
578
|
+
'\u1E33': string;
|
|
579
|
+
'\u0137': string;
|
|
580
|
+
'\u1E35': string;
|
|
581
|
+
'\u0199': string;
|
|
582
|
+
'\u2C6A': string;
|
|
583
|
+
'\uA741': string;
|
|
584
|
+
'\uA743': string;
|
|
585
|
+
'\uA745': string;
|
|
586
|
+
'\uA7A3': string;
|
|
587
|
+
'\u24DB': string;
|
|
588
|
+
'\uFF4C': string;
|
|
589
|
+
'\u0140': string;
|
|
590
|
+
'\u013A': string;
|
|
591
|
+
'\u013E': string;
|
|
592
|
+
'\u1E37': string;
|
|
593
|
+
'\u1E39': string;
|
|
594
|
+
'\u013C': string;
|
|
595
|
+
'\u1E3D': string;
|
|
596
|
+
'\u1E3B': string;
|
|
597
|
+
'\u017F': string;
|
|
598
|
+
'\u0142': string;
|
|
599
|
+
'\u019A': string;
|
|
600
|
+
'\u026B': string;
|
|
601
|
+
'\u2C61': string;
|
|
602
|
+
'\uA749': string;
|
|
603
|
+
'\uA781': string;
|
|
604
|
+
'\uA747': string;
|
|
605
|
+
'\u01C9': string;
|
|
606
|
+
'\u24DC': string;
|
|
607
|
+
'\uFF4D': string;
|
|
608
|
+
'\u1E3F': string;
|
|
609
|
+
'\u1E41': string;
|
|
610
|
+
'\u1E43': string;
|
|
611
|
+
'\u0271': string;
|
|
612
|
+
'\u026F': string;
|
|
613
|
+
'\u24DD': string;
|
|
614
|
+
'\uFF4E': string;
|
|
615
|
+
'\u01F9': string;
|
|
616
|
+
'\u0144': string;
|
|
617
|
+
'\u00F1': string;
|
|
618
|
+
'\u1E45': string;
|
|
619
|
+
'\u0148': string;
|
|
620
|
+
'\u1E47': string;
|
|
621
|
+
'\u0146': string;
|
|
622
|
+
'\u1E4B': string;
|
|
623
|
+
'\u1E49': string;
|
|
624
|
+
'\u019E': string;
|
|
625
|
+
'\u0272': string;
|
|
626
|
+
'\u0149': string;
|
|
627
|
+
'\uA791': string;
|
|
628
|
+
'\uA7A5': string;
|
|
629
|
+
'\u01CC': string;
|
|
630
|
+
'\u24DE': string;
|
|
631
|
+
'\uFF4F': string;
|
|
632
|
+
'\u00F2': string;
|
|
633
|
+
'\u00F3': string;
|
|
634
|
+
'\u00F4': string;
|
|
635
|
+
'\u1ED3': string;
|
|
636
|
+
'\u1ED1': string;
|
|
637
|
+
'\u1ED7': string;
|
|
638
|
+
'\u1ED5': string;
|
|
639
|
+
'\u00F5': string;
|
|
640
|
+
'\u1E4D': string;
|
|
641
|
+
'\u022D': string;
|
|
642
|
+
'\u1E4F': string;
|
|
643
|
+
'\u014D': string;
|
|
644
|
+
'\u1E51': string;
|
|
645
|
+
'\u1E53': string;
|
|
646
|
+
'\u014F': string;
|
|
647
|
+
'\u022F': string;
|
|
648
|
+
'\u0231': string;
|
|
649
|
+
'\u00F6': string;
|
|
650
|
+
'\u022B': string;
|
|
651
|
+
'\u1ECF': string;
|
|
652
|
+
'\u0151': string;
|
|
653
|
+
'\u01D2': string;
|
|
654
|
+
'\u020D': string;
|
|
655
|
+
'\u020F': string;
|
|
656
|
+
'\u01A1': string;
|
|
657
|
+
'\u1EDD': string;
|
|
658
|
+
'\u1EDB': string;
|
|
659
|
+
'\u1EE1': string;
|
|
660
|
+
'\u1EDF': string;
|
|
661
|
+
'\u1EE3': string;
|
|
662
|
+
'\u1ECD': string;
|
|
663
|
+
'\u1ED9': string;
|
|
664
|
+
'\u01EB': string;
|
|
665
|
+
'\u01ED': string;
|
|
666
|
+
'\u00F8': string;
|
|
667
|
+
'\u01FF': string;
|
|
668
|
+
'\u0254': string;
|
|
669
|
+
'\uA74B': string;
|
|
670
|
+
'\uA74D': string;
|
|
671
|
+
'\u0275': string;
|
|
672
|
+
'\u01A3': string;
|
|
673
|
+
'\u0223': string;
|
|
674
|
+
'\uA74F': string;
|
|
675
|
+
'\u24DF': string;
|
|
676
|
+
'\uFF50': string;
|
|
677
|
+
'\u1E55': string;
|
|
678
|
+
'\u1E57': string;
|
|
679
|
+
'\u01A5': string;
|
|
680
|
+
'\u1D7D': string;
|
|
681
|
+
'\uA751': string;
|
|
682
|
+
'\uA753': string;
|
|
683
|
+
'\uA755': string;
|
|
684
|
+
'\u24E0': string;
|
|
685
|
+
'\uFF51': string;
|
|
686
|
+
'\u024B': string;
|
|
687
|
+
'\uA757': string;
|
|
688
|
+
'\uA759': string;
|
|
689
|
+
'\u24E1': string;
|
|
690
|
+
'\uFF52': string;
|
|
691
|
+
'\u0155': string;
|
|
692
|
+
'\u1E59': string;
|
|
693
|
+
'\u0159': string;
|
|
694
|
+
'\u0211': string;
|
|
695
|
+
'\u0213': string;
|
|
696
|
+
'\u1E5B': string;
|
|
697
|
+
'\u1E5D': string;
|
|
698
|
+
'\u0157': string;
|
|
699
|
+
'\u1E5F': string;
|
|
700
|
+
'\u024D': string;
|
|
701
|
+
'\u027D': string;
|
|
702
|
+
'\uA75B': string;
|
|
703
|
+
'\uA7A7': string;
|
|
704
|
+
'\uA783': string;
|
|
705
|
+
'\u24E2': string;
|
|
706
|
+
'\uFF53': string;
|
|
707
|
+
'\u00DF': string;
|
|
708
|
+
'\u015B': string;
|
|
709
|
+
'\u1E65': string;
|
|
710
|
+
'\u015D': string;
|
|
711
|
+
'\u1E61': string;
|
|
712
|
+
'\u0161': string;
|
|
713
|
+
'\u1E67': string;
|
|
714
|
+
'\u1E63': string;
|
|
715
|
+
'\u1E69': string;
|
|
716
|
+
'\u0219': string;
|
|
717
|
+
'\u015F': string;
|
|
718
|
+
'\u023F': string;
|
|
719
|
+
'\uA7A9': string;
|
|
720
|
+
'\uA785': string;
|
|
721
|
+
'\u1E9B': string;
|
|
722
|
+
'\u24E3': string;
|
|
723
|
+
'\uFF54': string;
|
|
724
|
+
'\u1E6B': string;
|
|
725
|
+
'\u1E97': string;
|
|
726
|
+
'\u0165': string;
|
|
727
|
+
'\u1E6D': string;
|
|
728
|
+
'\u021B': string;
|
|
729
|
+
'\u0163': string;
|
|
730
|
+
'\u1E71': string;
|
|
731
|
+
'\u1E6F': string;
|
|
732
|
+
'\u0167': string;
|
|
733
|
+
'\u01AD': string;
|
|
734
|
+
'\u0288': string;
|
|
735
|
+
'\u2C66': string;
|
|
736
|
+
'\uA787': string;
|
|
737
|
+
'\uA729': string;
|
|
738
|
+
'\u24E4': string;
|
|
739
|
+
'\uFF55': string;
|
|
740
|
+
'\u00F9': string;
|
|
741
|
+
'\u00FA': string;
|
|
742
|
+
'\u00FB': string;
|
|
743
|
+
'\u0169': string;
|
|
744
|
+
'\u1E79': string;
|
|
745
|
+
'\u016B': string;
|
|
746
|
+
'\u1E7B': string;
|
|
747
|
+
'\u016D': string;
|
|
748
|
+
'\u00FC': string;
|
|
749
|
+
'\u01DC': string;
|
|
750
|
+
'\u01D8': string;
|
|
751
|
+
'\u01D6': string;
|
|
752
|
+
'\u01DA': string;
|
|
753
|
+
'\u1EE7': string;
|
|
754
|
+
'\u016F': string;
|
|
755
|
+
'\u0171': string;
|
|
756
|
+
'\u01D4': string;
|
|
757
|
+
'\u0215': string;
|
|
758
|
+
'\u0217': string;
|
|
759
|
+
'\u01B0': string;
|
|
760
|
+
'\u1EEB': string;
|
|
761
|
+
'\u1EE9': string;
|
|
762
|
+
'\u1EEF': string;
|
|
763
|
+
'\u1EED': string;
|
|
764
|
+
'\u1EF1': string;
|
|
765
|
+
'\u1EE5': string;
|
|
766
|
+
'\u1E73': string;
|
|
767
|
+
'\u0173': string;
|
|
768
|
+
'\u1E77': string;
|
|
769
|
+
'\u1E75': string;
|
|
770
|
+
'\u0289': string;
|
|
771
|
+
'\u24E5': string;
|
|
772
|
+
'\uFF56': string;
|
|
773
|
+
'\u1E7D': string;
|
|
774
|
+
'\u1E7F': string;
|
|
775
|
+
'\u028B': string;
|
|
776
|
+
'\uA75F': string;
|
|
777
|
+
'\u028C': string;
|
|
778
|
+
'\uA761': string;
|
|
779
|
+
'\u24E6': string;
|
|
780
|
+
'\uFF57': string;
|
|
781
|
+
'\u1E81': string;
|
|
782
|
+
'\u1E83': string;
|
|
783
|
+
'\u0175': string;
|
|
784
|
+
'\u1E87': string;
|
|
785
|
+
'\u1E85': string;
|
|
786
|
+
'\u1E98': string;
|
|
787
|
+
'\u1E89': string;
|
|
788
|
+
'\u2C73': string;
|
|
789
|
+
'\u24E7': string;
|
|
790
|
+
'\uFF58': string;
|
|
791
|
+
'\u1E8B': string;
|
|
792
|
+
'\u1E8D': string;
|
|
793
|
+
'\u24E8': string;
|
|
794
|
+
'\uFF59': string;
|
|
795
|
+
'\u1EF3': string;
|
|
796
|
+
'\u00FD': string;
|
|
797
|
+
'\u0177': string;
|
|
798
|
+
'\u1EF9': string;
|
|
799
|
+
'\u0233': string;
|
|
800
|
+
'\u1E8F': string;
|
|
801
|
+
'\u00FF': string;
|
|
802
|
+
'\u1EF7': string;
|
|
803
|
+
'\u1E99': string;
|
|
804
|
+
'\u1EF5': string;
|
|
805
|
+
'\u01B4': string;
|
|
806
|
+
'\u024F': string;
|
|
807
|
+
'\u1EFF': string;
|
|
808
|
+
'\u24E9': string;
|
|
809
|
+
'\uFF5A': string;
|
|
810
|
+
'\u017A': string;
|
|
811
|
+
'\u1E91': string;
|
|
812
|
+
'\u017C': string;
|
|
813
|
+
'\u017E': string;
|
|
814
|
+
'\u1E93': string;
|
|
815
|
+
'\u1E95': string;
|
|
816
|
+
'\u01B6': string;
|
|
817
|
+
'\u0225': string;
|
|
818
|
+
'\u0240': string;
|
|
819
|
+
'\u2C6C': string;
|
|
820
|
+
'\uA763': string;
|
|
821
|
+
'\u0386': string;
|
|
822
|
+
'\u0388': string;
|
|
823
|
+
'\u0389': string;
|
|
824
|
+
'\u038A': string;
|
|
825
|
+
'\u03AA': string;
|
|
826
|
+
'\u038C': string;
|
|
827
|
+
'\u038E': string;
|
|
828
|
+
'\u03AB': string;
|
|
829
|
+
'\u038F': string;
|
|
830
|
+
'\u03AC': string;
|
|
831
|
+
'\u03AD': string;
|
|
832
|
+
'\u03AE': string;
|
|
833
|
+
'\u03AF': string;
|
|
834
|
+
'\u03CA': string;
|
|
835
|
+
'\u0390': string;
|
|
836
|
+
'\u03CC': string;
|
|
837
|
+
'\u03CD': string;
|
|
838
|
+
'\u03CB': string;
|
|
839
|
+
'\u03B0': string;
|
|
840
|
+
'\u03C9': string;
|
|
841
|
+
'\u03C2': string;
|
|
842
|
+
};
|
|
843
|
+
static strip(text: string): string;
|
|
844
|
+
}
|