@storyteller-platform/transliteration 3.0.3 → 3.0.5
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/bin/slugify +2 -2
- package/dist/bin/transliterate +2 -2
- package/dist/browser/bundle.esm.min.js +1 -1
- package/dist/browser/bundle.esm.min.js.map +1 -1
- package/dist/browser/bundle.umd.min.js +2 -2
- package/dist/browser/bundle.umd.min.js.map +1 -1
- package/dist/browser/latin.esm.min.js +1 -1
- package/dist/browser/latin.esm.min.js.map +1 -1
- package/dist/browser/latin.umd.min.js +3 -3
- package/dist/browser/latin.umd.min.js.map +1 -1
- package/dist/{chunk-5XH4ARKO.js → chunk-LT5WZW6A.js} +2 -2
- package/dist/{chunk-5XH4ARKO.js.map → chunk-LT5WZW6A.js.map} +1 -1
- package/dist/{index-DZj2ef5v.d.ts → index-BzksFHSB.d.ts} +1 -1
- package/dist/node/src/node/index.d.ts +2 -2
- package/dist/node/src/node/index.js +2 -2
- package/dist/node/src/node/index.js.map +1 -1
- package/dist/node/src/node/latin.d.ts +2 -2
- package/dist/node/src/node/latin.js +3 -3
- package/dist/node/src/node/latin.js.map +1 -1
- package/package.json +1 -1
|
@@ -133,4 +133,4 @@ type TransliterationFunction<T> = {
|
|
|
133
133
|
type TransliterateFunction = TransliterationFunction<OptionsTransliterate>;
|
|
134
134
|
type SlugifyFunction = TransliterationFunction<OptionsSlugify>;
|
|
135
135
|
|
|
136
|
-
export { Mapping as M, type SlugifyFunction as S, type TransliterateFunction as T };
|
|
136
|
+
export { Mapping as M, type SlugifyFunction as S, type TransliterateFunction as T, StepMap as a };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { T as TransliterateFunction, S as SlugifyFunction } from '../../../index-
|
|
2
|
-
export { M as Mapping } from '../../../index-
|
|
1
|
+
import { T as TransliterateFunction, S as SlugifyFunction } from '../../../index-BzksFHSB.js';
|
|
2
|
+
export { M as Mapping, a as StepMap } from '../../../index-BzksFHSB.js';
|
|
3
3
|
|
|
4
4
|
declare const transliterate: TransliterateFunction;
|
|
5
5
|
declare const slugify: SlugifyFunction;
|