locize 4.0.13 → 4.0.14
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/CHANGELOG.md +4 -0
- package/dist/cjs/index.d.ts +8 -1
- package/dist/esm/index.d.ts +8 -1
- package/index.d.ts +8 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/cjs/index.d.ts
CHANGED
|
@@ -20,6 +20,8 @@ export const locizePlugin: LocizePlugin
|
|
|
20
20
|
export function locizeEditorPlugin(opt?: {
|
|
21
21
|
qsProp?: string
|
|
22
22
|
show?: boolean
|
|
23
|
+
projectId?: string
|
|
24
|
+
version?: string
|
|
23
25
|
}): LocizePlugin
|
|
24
26
|
|
|
25
27
|
/**
|
|
@@ -35,4 +37,9 @@ export function addLocizeSavedHandler(fn: (data: any) => void): void
|
|
|
35
37
|
/**
|
|
36
38
|
* If used without i18next.
|
|
37
39
|
*/
|
|
38
|
-
export function startStandalone(
|
|
40
|
+
export function startStandalone(opt?: {
|
|
41
|
+
qsProp?: string
|
|
42
|
+
show?: boolean
|
|
43
|
+
projectId?: string
|
|
44
|
+
version?: string
|
|
45
|
+
}): void
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -20,6 +20,8 @@ export const locizePlugin: LocizePlugin
|
|
|
20
20
|
export function locizeEditorPlugin(opt?: {
|
|
21
21
|
qsProp?: string
|
|
22
22
|
show?: boolean
|
|
23
|
+
projectId?: string
|
|
24
|
+
version?: string
|
|
23
25
|
}): LocizePlugin
|
|
24
26
|
|
|
25
27
|
/**
|
|
@@ -35,4 +37,9 @@ export function addLocizeSavedHandler(fn: (data: any) => void): void
|
|
|
35
37
|
/**
|
|
36
38
|
* If used without i18next.
|
|
37
39
|
*/
|
|
38
|
-
export function startStandalone(
|
|
40
|
+
export function startStandalone(opt?: {
|
|
41
|
+
qsProp?: string
|
|
42
|
+
show?: boolean
|
|
43
|
+
projectId?: string
|
|
44
|
+
version?: string
|
|
45
|
+
}): void
|
package/index.d.ts
CHANGED
|
@@ -20,6 +20,8 @@ export const locizePlugin: LocizePlugin
|
|
|
20
20
|
export function locizeEditorPlugin(opt?: {
|
|
21
21
|
qsProp?: string
|
|
22
22
|
show?: boolean
|
|
23
|
+
projectId?: string
|
|
24
|
+
version?: string
|
|
23
25
|
}): LocizePlugin
|
|
24
26
|
|
|
25
27
|
/**
|
|
@@ -35,4 +37,9 @@ export function addLocizeSavedHandler(fn: (data: any) => void): void
|
|
|
35
37
|
/**
|
|
36
38
|
* If used without i18next.
|
|
37
39
|
*/
|
|
38
|
-
export function startStandalone(
|
|
40
|
+
export function startStandalone(opt?: {
|
|
41
|
+
qsProp?: string
|
|
42
|
+
show?: boolean
|
|
43
|
+
projectId?: string
|
|
44
|
+
version?: string
|
|
45
|
+
}): void
|