elcrm 0.8.6 → 0.8.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/dist/Format/index.d.ts +2 -0
- package/dist/index.es.js +357 -353
- package/dist/index.umd.js +8 -8
- package/package.json +1 -1
package/dist/Format/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { default as Number } from './Number';
|
|
|
10
10
|
import { default as Percent } from './Percent';
|
|
11
11
|
import { default as CapitalizeFirstLetter } from './CapitalizeFirstLetter';
|
|
12
12
|
import { default as DeclensionWord } from './DeclensionWord';
|
|
13
|
+
import { default as Select } from './Select';
|
|
13
14
|
|
|
14
15
|
declare const _default: {
|
|
15
16
|
Date: typeof Date;
|
|
@@ -25,5 +26,6 @@ declare const _default: {
|
|
|
25
26
|
Percent: typeof Percent;
|
|
26
27
|
CapitalizeFirstLetter: typeof CapitalizeFirstLetter;
|
|
27
28
|
DeclensionWord: typeof DeclensionWord;
|
|
29
|
+
Select: typeof Select;
|
|
28
30
|
};
|
|
29
31
|
export default _default;
|