๐ - Allow importing plugins and processors
viotti opened this issue ยท 2 comments
Which package(s) are relevant/related to the feature request?
@maskito/kit
Description
Sorry if this is already available, but I did not find a way to import plugins and processors from the library. For example, I would like to use createMinMaxPlugin and createMinMaxPostprocessor in my React application.
Is this possible, or planned? Am I missing something?
@viotti Hello!
Library @maskito/kit
contains dozens of internal (not public API) utilities.
They are not exported on purpose.
All internal utilities don't contain any documentation and don't have backward compatibility between non-major releases.
createMinMaxPlugin
and createMinMaxPostprocessor
are part of these internal entities to build Number
-mask (which is part of public API).
The full list of public API for @maskito/kit
-package is available here:
https://github.com/taiga-family/maskito/blob/main/projects/kit/src/index.ts
Thanks @nsbarsukov.