@eigenpal/docx-editor-i18n 1.6.0 → 1.6.2
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/id.d.mts +33 -0
- package/dist/id.d.ts +33 -0
- package/dist/id.js +906 -0
- package/dist/id.mjs +879 -0
- package/dist/index.d.mts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +876 -0
- package/dist/index.mjs +875 -0
- package/package.json +6 -1
package/dist/id.d.mts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @eigenpal/docx-editor-i18n/id
|
|
3
|
+
*
|
|
4
|
+
* Indonesian (`id`) — direct locale subpath for per-locale code-splitting.
|
|
5
|
+
*
|
|
6
|
+
* ```ts
|
|
7
|
+
* // Static — bundler ships only this locale's strings
|
|
8
|
+
* import id from '@eigenpal/docx-editor-i18n/id';
|
|
9
|
+
*
|
|
10
|
+
* // Dynamic — splits into its own chunk, loaded on demand
|
|
11
|
+
* const id = (await import('@eigenpal/docx-editor-i18n/id')).default;
|
|
12
|
+
* ```
|
|
13
|
+
*
|
|
14
|
+
* For multi-locale apps, prefer the per-locale subpaths over importing
|
|
15
|
+
* `locales` from the package root — `locales` pulls every locale into
|
|
16
|
+
* the bundle.
|
|
17
|
+
*
|
|
18
|
+
* @packageDocumentation
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
import { PartialLocaleStrings } from './index.mjs';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Indonesian (`id`) locale strings. Community-maintained; null leaves fall back to English.
|
|
25
|
+
*
|
|
26
|
+
* Identical content to the named `id` export from the package root;
|
|
27
|
+
* this subpath just lets bundlers code-split it.
|
|
28
|
+
*
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
declare const id: PartialLocaleStrings;
|
|
32
|
+
|
|
33
|
+
export { id as default, id };
|
package/dist/id.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @eigenpal/docx-editor-i18n/id
|
|
3
|
+
*
|
|
4
|
+
* Indonesian (`id`) — direct locale subpath for per-locale code-splitting.
|
|
5
|
+
*
|
|
6
|
+
* ```ts
|
|
7
|
+
* // Static — bundler ships only this locale's strings
|
|
8
|
+
* import id from '@eigenpal/docx-editor-i18n/id';
|
|
9
|
+
*
|
|
10
|
+
* // Dynamic — splits into its own chunk, loaded on demand
|
|
11
|
+
* const id = (await import('@eigenpal/docx-editor-i18n/id')).default;
|
|
12
|
+
* ```
|
|
13
|
+
*
|
|
14
|
+
* For multi-locale apps, prefer the per-locale subpaths over importing
|
|
15
|
+
* `locales` from the package root — `locales` pulls every locale into
|
|
16
|
+
* the bundle.
|
|
17
|
+
*
|
|
18
|
+
* @packageDocumentation
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
import { PartialLocaleStrings } from './index.js';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Indonesian (`id`) locale strings. Community-maintained; null leaves fall back to English.
|
|
25
|
+
*
|
|
26
|
+
* Identical content to the named `id` export from the package root;
|
|
27
|
+
* this subpath just lets bundlers code-split it.
|
|
28
|
+
*
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
declare const id: PartialLocaleStrings;
|
|
32
|
+
|
|
33
|
+
export { id as default, id };
|