@uniformdev/canvas 19.88.0 → 19.88.1-alpha.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/index.d.mts +1338 -604
- package/dist/index.d.ts +1338 -604
- package/dist/index.esm.js +74 -12
- package/dist/index.js +79 -15
- package/dist/index.mjs +74 -12
- package/package.json +4 -4
package/dist/index.esm.js
CHANGED
@@ -1640,18 +1640,22 @@ function extractLocales({ component }) {
|
|
1640
1640
|
});
|
1641
1641
|
return variations;
|
1642
1642
|
}
|
1643
|
-
function localize({
|
1644
|
-
composition
|
1645
|
-
locale
|
1646
|
-
}) {
|
1647
|
-
walkNodeTree(composition, ({ type, node, actions }) => {
|
1643
|
+
function localize(options) {
|
1644
|
+
const nodes = "nodes" in options ? options.nodes : options.composition;
|
1645
|
+
const locale = options.locale;
|
1646
|
+
walkNodeTree(nodes, ({ type, node, actions }) => {
|
1648
1647
|
if (type !== "component") {
|
1649
|
-
|
1648
|
+
if (typeof locale === "string") {
|
1649
|
+
localizeProperties(node.fields, locale);
|
1650
|
+
}
|
1650
1651
|
return;
|
1651
1652
|
}
|
1653
|
+
if (typeof locale === "string") {
|
1654
|
+
localizeProperties(getPropertiesValue(node), locale);
|
1655
|
+
}
|
1652
1656
|
if (node.type === CANVAS_LOCALIZATION_TYPE) {
|
1653
1657
|
const locales = extractLocales({ component: node });
|
1654
|
-
const resolvedLocale = typeof locale === "string" ? locale : locale({ component: node, locales });
|
1658
|
+
const resolvedLocale = typeof locale === "string" ? locale : locale == null ? void 0 : locale({ component: node, locales });
|
1655
1659
|
let replaceComponent;
|
1656
1660
|
if (resolvedLocale) {
|
1657
1661
|
replaceComponent = locales[resolvedLocale];
|
@@ -1668,6 +1672,25 @@ function localize({
|
|
1668
1672
|
}
|
1669
1673
|
});
|
1670
1674
|
}
|
1675
|
+
function localizeProperties(properties, locale) {
|
1676
|
+
if (!properties) {
|
1677
|
+
return void 0;
|
1678
|
+
}
|
1679
|
+
Object.entries(properties).forEach(([key, property]) => {
|
1680
|
+
var _a;
|
1681
|
+
if (!locale) {
|
1682
|
+
delete property.locales;
|
1683
|
+
}
|
1684
|
+
const currentLocaleValue = locale ? (_a = property.locales) == null ? void 0 : _a[locale] : void 0;
|
1685
|
+
if (currentLocaleValue !== void 0) {
|
1686
|
+
property.value = currentLocaleValue;
|
1687
|
+
}
|
1688
|
+
delete property.locales;
|
1689
|
+
if (property.value === void 0) {
|
1690
|
+
delete properties[key];
|
1691
|
+
}
|
1692
|
+
});
|
1693
|
+
}
|
1671
1694
|
|
1672
1695
|
// src/enhancement/UniqueBatchEntries.ts
|
1673
1696
|
var UniqueBatchEntries = class {
|
@@ -1814,6 +1837,39 @@ function walkComponentTree(component, visitor, initialContext) {
|
|
1814
1837
|
} while (componentQueue.length > 0);
|
1815
1838
|
}
|
1816
1839
|
|
1840
|
+
// src/LocaleClient.ts
|
1841
|
+
import { ApiClient as ApiClient7 } from "@uniformdev/context/api";
|
1842
|
+
var localesUrl = "/api/v1/locales";
|
1843
|
+
var LocaleClient = class extends ApiClient7 {
|
1844
|
+
constructor(options) {
|
1845
|
+
super(options);
|
1846
|
+
}
|
1847
|
+
/** Fetches all locales for a project */
|
1848
|
+
async get(options) {
|
1849
|
+
const { projectId } = this.options;
|
1850
|
+
const fetchUri = this.createUrl(localesUrl, { ...options, projectId });
|
1851
|
+
return await this.apiClient(fetchUri);
|
1852
|
+
}
|
1853
|
+
/** Updates or creates (based on id) a locale */
|
1854
|
+
async upsert(body) {
|
1855
|
+
const fetchUri = this.createUrl(localesUrl);
|
1856
|
+
await this.apiClient(fetchUri, {
|
1857
|
+
method: "PUT",
|
1858
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
1859
|
+
expectNoContent: true
|
1860
|
+
});
|
1861
|
+
}
|
1862
|
+
/** Deletes a locale */
|
1863
|
+
async remove(body) {
|
1864
|
+
const fetchUri = this.createUrl(localesUrl);
|
1865
|
+
await this.apiClient(fetchUri, {
|
1866
|
+
method: "DELETE",
|
1867
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
1868
|
+
expectNoContent: true
|
1869
|
+
});
|
1870
|
+
}
|
1871
|
+
};
|
1872
|
+
|
1817
1873
|
// src/utils/hash.ts
|
1818
1874
|
var generateHash = ({
|
1819
1875
|
composition,
|
@@ -2171,9 +2227,9 @@ function subscribeToComposition({
|
|
2171
2227
|
}
|
2172
2228
|
|
2173
2229
|
// src/PromptClient.ts
|
2174
|
-
import { ApiClient as
|
2230
|
+
import { ApiClient as ApiClient8 } from "@uniformdev/context/api";
|
2175
2231
|
var PromptsUrl = "/api/v1/prompts";
|
2176
|
-
var PromptClient = class extends
|
2232
|
+
var PromptClient = class extends ApiClient8 {
|
2177
2233
|
constructor(options) {
|
2178
2234
|
super(options);
|
2179
2235
|
}
|
@@ -2204,9 +2260,9 @@ var PromptClient = class extends ApiClient7 {
|
|
2204
2260
|
};
|
2205
2261
|
|
2206
2262
|
// src/RouteClient.ts
|
2207
|
-
import { ApiClient as
|
2263
|
+
import { ApiClient as ApiClient9 } from "@uniformdev/context/api";
|
2208
2264
|
var ROUTE_URL = "/api/v1/route";
|
2209
|
-
var RouteClient = class extends
|
2265
|
+
var RouteClient = class extends ApiClient9 {
|
2210
2266
|
constructor(options) {
|
2211
2267
|
var _a;
|
2212
2268
|
if (!options.limitPolicy) {
|
@@ -2223,6 +2279,9 @@ var RouteClient = class extends ApiClient8 {
|
|
2223
2279
|
}
|
2224
2280
|
};
|
2225
2281
|
|
2282
|
+
// src/types/locales.ts
|
2283
|
+
var LOCALE_DYNAMIC_INPUT_NAME = "locale";
|
2284
|
+
|
2226
2285
|
// src/utils/createApiEnhancer.ts
|
2227
2286
|
var createUniformApiEnhancer = ({ apiUrl }) => {
|
2228
2287
|
return async (message) => {
|
@@ -2254,7 +2313,8 @@ function convertEntryToPutEntry(entry) {
|
|
2254
2313
|
_id: entry.entry._id,
|
2255
2314
|
_name: entry.entry._name,
|
2256
2315
|
_slug: entry.entry._slug,
|
2257
|
-
fields: entry.entry.fields
|
2316
|
+
fields: entry.entry.fields,
|
2317
|
+
_locales: entry.entry._locales
|
2258
2318
|
},
|
2259
2319
|
state: entry.state,
|
2260
2320
|
projectId: entry.projectId
|
@@ -2587,6 +2647,8 @@ export {
|
|
2587
2647
|
IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM,
|
2588
2648
|
IN_CONTEXT_EDITOR_QUERY_STRING_PARAM,
|
2589
2649
|
IS_RENDERED_BY_UNIFORM_ATTRIBUTE,
|
2650
|
+
LOCALE_DYNAMIC_INPUT_NAME,
|
2651
|
+
LocaleClient,
|
2590
2652
|
PLACEHOLDER_ID,
|
2591
2653
|
PromptClient,
|
2592
2654
|
RouteClient,
|
package/dist/index.js
CHANGED
@@ -286,7 +286,7 @@ __export(src_exports, {
|
|
286
286
|
ATTRIBUTE_PARAMETER_TYPE: () => ATTRIBUTE_PARAMETER_TYPE,
|
287
287
|
ATTRIBUTE_PARAMETER_VALUE: () => ATTRIBUTE_PARAMETER_VALUE,
|
288
288
|
ATTRIBUTE_PLACEHOLDER: () => ATTRIBUTE_PLACEHOLDER,
|
289
|
-
ApiClientError: () =>
|
289
|
+
ApiClientError: () => import_api11.ApiClientError,
|
290
290
|
BatchEntry: () => BatchEntry,
|
291
291
|
CANVAS_BLOCK_PARAM_TYPE: () => CANVAS_BLOCK_PARAM_TYPE,
|
292
292
|
CANVAS_DRAFT_STATE: () => CANVAS_DRAFT_STATE,
|
@@ -323,6 +323,8 @@ __export(src_exports, {
|
|
323
323
|
IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM: () => IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM,
|
324
324
|
IN_CONTEXT_EDITOR_QUERY_STRING_PARAM: () => IN_CONTEXT_EDITOR_QUERY_STRING_PARAM,
|
325
325
|
IS_RENDERED_BY_UNIFORM_ATTRIBUTE: () => IS_RENDERED_BY_UNIFORM_ATTRIBUTE,
|
326
|
+
LOCALE_DYNAMIC_INPUT_NAME: () => LOCALE_DYNAMIC_INPUT_NAME,
|
327
|
+
LocaleClient: () => LocaleClient,
|
326
328
|
PLACEHOLDER_ID: () => PLACEHOLDER_ID,
|
327
329
|
PromptClient: () => PromptClient,
|
328
330
|
RouteClient: () => RouteClient,
|
@@ -1765,18 +1767,22 @@ function extractLocales({ component }) {
|
|
1765
1767
|
});
|
1766
1768
|
return variations;
|
1767
1769
|
}
|
1768
|
-
function localize({
|
1769
|
-
composition
|
1770
|
-
locale
|
1771
|
-
}) {
|
1772
|
-
walkNodeTree(composition, ({ type, node, actions }) => {
|
1770
|
+
function localize(options) {
|
1771
|
+
const nodes = "nodes" in options ? options.nodes : options.composition;
|
1772
|
+
const locale = options.locale;
|
1773
|
+
walkNodeTree(nodes, ({ type, node, actions }) => {
|
1773
1774
|
if (type !== "component") {
|
1774
|
-
|
1775
|
+
if (typeof locale === "string") {
|
1776
|
+
localizeProperties(node.fields, locale);
|
1777
|
+
}
|
1775
1778
|
return;
|
1776
1779
|
}
|
1780
|
+
if (typeof locale === "string") {
|
1781
|
+
localizeProperties(getPropertiesValue(node), locale);
|
1782
|
+
}
|
1777
1783
|
if (node.type === CANVAS_LOCALIZATION_TYPE) {
|
1778
1784
|
const locales = extractLocales({ component: node });
|
1779
|
-
const resolvedLocale = typeof locale === "string" ? locale : locale({ component: node, locales });
|
1785
|
+
const resolvedLocale = typeof locale === "string" ? locale : locale == null ? void 0 : locale({ component: node, locales });
|
1780
1786
|
let replaceComponent;
|
1781
1787
|
if (resolvedLocale) {
|
1782
1788
|
replaceComponent = locales[resolvedLocale];
|
@@ -1793,6 +1799,25 @@ function localize({
|
|
1793
1799
|
}
|
1794
1800
|
});
|
1795
1801
|
}
|
1802
|
+
function localizeProperties(properties, locale) {
|
1803
|
+
if (!properties) {
|
1804
|
+
return void 0;
|
1805
|
+
}
|
1806
|
+
Object.entries(properties).forEach(([key, property]) => {
|
1807
|
+
var _a;
|
1808
|
+
if (!locale) {
|
1809
|
+
delete property.locales;
|
1810
|
+
}
|
1811
|
+
const currentLocaleValue = locale ? (_a = property.locales) == null ? void 0 : _a[locale] : void 0;
|
1812
|
+
if (currentLocaleValue !== void 0) {
|
1813
|
+
property.value = currentLocaleValue;
|
1814
|
+
}
|
1815
|
+
delete property.locales;
|
1816
|
+
if (property.value === void 0) {
|
1817
|
+
delete properties[key];
|
1818
|
+
}
|
1819
|
+
});
|
1820
|
+
}
|
1796
1821
|
|
1797
1822
|
// src/enhancement/UniqueBatchEntries.ts
|
1798
1823
|
var UniqueBatchEntries = class {
|
@@ -1939,6 +1964,39 @@ function walkComponentTree(component, visitor, initialContext) {
|
|
1939
1964
|
} while (componentQueue.length > 0);
|
1940
1965
|
}
|
1941
1966
|
|
1967
|
+
// src/LocaleClient.ts
|
1968
|
+
var import_api8 = require("@uniformdev/context/api");
|
1969
|
+
var localesUrl = "/api/v1/locales";
|
1970
|
+
var LocaleClient = class extends import_api8.ApiClient {
|
1971
|
+
constructor(options) {
|
1972
|
+
super(options);
|
1973
|
+
}
|
1974
|
+
/** Fetches all locales for a project */
|
1975
|
+
async get(options) {
|
1976
|
+
const { projectId } = this.options;
|
1977
|
+
const fetchUri = this.createUrl(localesUrl, { ...options, projectId });
|
1978
|
+
return await this.apiClient(fetchUri);
|
1979
|
+
}
|
1980
|
+
/** Updates or creates (based on id) a locale */
|
1981
|
+
async upsert(body) {
|
1982
|
+
const fetchUri = this.createUrl(localesUrl);
|
1983
|
+
await this.apiClient(fetchUri, {
|
1984
|
+
method: "PUT",
|
1985
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
1986
|
+
expectNoContent: true
|
1987
|
+
});
|
1988
|
+
}
|
1989
|
+
/** Deletes a locale */
|
1990
|
+
async remove(body) {
|
1991
|
+
const fetchUri = this.createUrl(localesUrl);
|
1992
|
+
await this.apiClient(fetchUri, {
|
1993
|
+
method: "DELETE",
|
1994
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
1995
|
+
expectNoContent: true
|
1996
|
+
});
|
1997
|
+
}
|
1998
|
+
};
|
1999
|
+
|
1942
2000
|
// src/utils/hash.ts
|
1943
2001
|
var generateHash = ({
|
1944
2002
|
composition,
|
@@ -2296,9 +2354,9 @@ function subscribeToComposition({
|
|
2296
2354
|
}
|
2297
2355
|
|
2298
2356
|
// src/PromptClient.ts
|
2299
|
-
var
|
2357
|
+
var import_api9 = require("@uniformdev/context/api");
|
2300
2358
|
var PromptsUrl = "/api/v1/prompts";
|
2301
|
-
var PromptClient = class extends
|
2359
|
+
var PromptClient = class extends import_api9.ApiClient {
|
2302
2360
|
constructor(options) {
|
2303
2361
|
super(options);
|
2304
2362
|
}
|
@@ -2329,9 +2387,9 @@ var PromptClient = class extends import_api8.ApiClient {
|
|
2329
2387
|
};
|
2330
2388
|
|
2331
2389
|
// src/RouteClient.ts
|
2332
|
-
var
|
2390
|
+
var import_api10 = require("@uniformdev/context/api");
|
2333
2391
|
var ROUTE_URL = "/api/v1/route";
|
2334
|
-
var RouteClient = class extends
|
2392
|
+
var RouteClient = class extends import_api10.ApiClient {
|
2335
2393
|
constructor(options) {
|
2336
2394
|
var _a;
|
2337
2395
|
if (!options.limitPolicy) {
|
@@ -2348,6 +2406,9 @@ var RouteClient = class extends import_api9.ApiClient {
|
|
2348
2406
|
}
|
2349
2407
|
};
|
2350
2408
|
|
2409
|
+
// src/types/locales.ts
|
2410
|
+
var LOCALE_DYNAMIC_INPUT_NAME = "locale";
|
2411
|
+
|
2351
2412
|
// src/utils/createApiEnhancer.ts
|
2352
2413
|
var createUniformApiEnhancer = ({ apiUrl }) => {
|
2353
2414
|
return async (message) => {
|
@@ -2379,7 +2440,8 @@ function convertEntryToPutEntry(entry) {
|
|
2379
2440
|
_id: entry.entry._id,
|
2380
2441
|
_name: entry.entry._name,
|
2381
2442
|
_slug: entry.entry._slug,
|
2382
|
-
fields: entry.entry.fields
|
2443
|
+
fields: entry.entry.fields,
|
2444
|
+
_locales: entry.entry._locales
|
2383
2445
|
},
|
2384
2446
|
state: entry.state,
|
2385
2447
|
projectId: entry.projectId
|
@@ -2663,8 +2725,8 @@ function handleRichTextNodeBinding(object, options) {
|
|
2663
2725
|
}
|
2664
2726
|
|
2665
2727
|
// src/index.ts
|
2666
|
-
var
|
2667
|
-
var CanvasClientError =
|
2728
|
+
var import_api11 = require("@uniformdev/context/api");
|
2729
|
+
var CanvasClientError = import_api11.ApiClientError;
|
2668
2730
|
// Annotate the CommonJS export names for ESM import in node:
|
2669
2731
|
0 && (module.exports = {
|
2670
2732
|
ASSETS_SOURCE_CUSTOM_URL,
|
@@ -2713,6 +2775,8 @@ var CanvasClientError = import_api10.ApiClientError;
|
|
2713
2775
|
IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM,
|
2714
2776
|
IN_CONTEXT_EDITOR_QUERY_STRING_PARAM,
|
2715
2777
|
IS_RENDERED_BY_UNIFORM_ATTRIBUTE,
|
2778
|
+
LOCALE_DYNAMIC_INPUT_NAME,
|
2779
|
+
LocaleClient,
|
2716
2780
|
PLACEHOLDER_ID,
|
2717
2781
|
PromptClient,
|
2718
2782
|
RouteClient,
|
package/dist/index.mjs
CHANGED
@@ -1640,18 +1640,22 @@ function extractLocales({ component }) {
|
|
1640
1640
|
});
|
1641
1641
|
return variations;
|
1642
1642
|
}
|
1643
|
-
function localize({
|
1644
|
-
composition
|
1645
|
-
locale
|
1646
|
-
}) {
|
1647
|
-
walkNodeTree(composition, ({ type, node, actions }) => {
|
1643
|
+
function localize(options) {
|
1644
|
+
const nodes = "nodes" in options ? options.nodes : options.composition;
|
1645
|
+
const locale = options.locale;
|
1646
|
+
walkNodeTree(nodes, ({ type, node, actions }) => {
|
1648
1647
|
if (type !== "component") {
|
1649
|
-
|
1648
|
+
if (typeof locale === "string") {
|
1649
|
+
localizeProperties(node.fields, locale);
|
1650
|
+
}
|
1650
1651
|
return;
|
1651
1652
|
}
|
1653
|
+
if (typeof locale === "string") {
|
1654
|
+
localizeProperties(getPropertiesValue(node), locale);
|
1655
|
+
}
|
1652
1656
|
if (node.type === CANVAS_LOCALIZATION_TYPE) {
|
1653
1657
|
const locales = extractLocales({ component: node });
|
1654
|
-
const resolvedLocale = typeof locale === "string" ? locale : locale({ component: node, locales });
|
1658
|
+
const resolvedLocale = typeof locale === "string" ? locale : locale == null ? void 0 : locale({ component: node, locales });
|
1655
1659
|
let replaceComponent;
|
1656
1660
|
if (resolvedLocale) {
|
1657
1661
|
replaceComponent = locales[resolvedLocale];
|
@@ -1668,6 +1672,25 @@ function localize({
|
|
1668
1672
|
}
|
1669
1673
|
});
|
1670
1674
|
}
|
1675
|
+
function localizeProperties(properties, locale) {
|
1676
|
+
if (!properties) {
|
1677
|
+
return void 0;
|
1678
|
+
}
|
1679
|
+
Object.entries(properties).forEach(([key, property]) => {
|
1680
|
+
var _a;
|
1681
|
+
if (!locale) {
|
1682
|
+
delete property.locales;
|
1683
|
+
}
|
1684
|
+
const currentLocaleValue = locale ? (_a = property.locales) == null ? void 0 : _a[locale] : void 0;
|
1685
|
+
if (currentLocaleValue !== void 0) {
|
1686
|
+
property.value = currentLocaleValue;
|
1687
|
+
}
|
1688
|
+
delete property.locales;
|
1689
|
+
if (property.value === void 0) {
|
1690
|
+
delete properties[key];
|
1691
|
+
}
|
1692
|
+
});
|
1693
|
+
}
|
1671
1694
|
|
1672
1695
|
// src/enhancement/UniqueBatchEntries.ts
|
1673
1696
|
var UniqueBatchEntries = class {
|
@@ -1814,6 +1837,39 @@ function walkComponentTree(component, visitor, initialContext) {
|
|
1814
1837
|
} while (componentQueue.length > 0);
|
1815
1838
|
}
|
1816
1839
|
|
1840
|
+
// src/LocaleClient.ts
|
1841
|
+
import { ApiClient as ApiClient7 } from "@uniformdev/context/api";
|
1842
|
+
var localesUrl = "/api/v1/locales";
|
1843
|
+
var LocaleClient = class extends ApiClient7 {
|
1844
|
+
constructor(options) {
|
1845
|
+
super(options);
|
1846
|
+
}
|
1847
|
+
/** Fetches all locales for a project */
|
1848
|
+
async get(options) {
|
1849
|
+
const { projectId } = this.options;
|
1850
|
+
const fetchUri = this.createUrl(localesUrl, { ...options, projectId });
|
1851
|
+
return await this.apiClient(fetchUri);
|
1852
|
+
}
|
1853
|
+
/** Updates or creates (based on id) a locale */
|
1854
|
+
async upsert(body) {
|
1855
|
+
const fetchUri = this.createUrl(localesUrl);
|
1856
|
+
await this.apiClient(fetchUri, {
|
1857
|
+
method: "PUT",
|
1858
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
1859
|
+
expectNoContent: true
|
1860
|
+
});
|
1861
|
+
}
|
1862
|
+
/** Deletes a locale */
|
1863
|
+
async remove(body) {
|
1864
|
+
const fetchUri = this.createUrl(localesUrl);
|
1865
|
+
await this.apiClient(fetchUri, {
|
1866
|
+
method: "DELETE",
|
1867
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
1868
|
+
expectNoContent: true
|
1869
|
+
});
|
1870
|
+
}
|
1871
|
+
};
|
1872
|
+
|
1817
1873
|
// src/utils/hash.ts
|
1818
1874
|
var generateHash = ({
|
1819
1875
|
composition,
|
@@ -2171,9 +2227,9 @@ function subscribeToComposition({
|
|
2171
2227
|
}
|
2172
2228
|
|
2173
2229
|
// src/PromptClient.ts
|
2174
|
-
import { ApiClient as
|
2230
|
+
import { ApiClient as ApiClient8 } from "@uniformdev/context/api";
|
2175
2231
|
var PromptsUrl = "/api/v1/prompts";
|
2176
|
-
var PromptClient = class extends
|
2232
|
+
var PromptClient = class extends ApiClient8 {
|
2177
2233
|
constructor(options) {
|
2178
2234
|
super(options);
|
2179
2235
|
}
|
@@ -2204,9 +2260,9 @@ var PromptClient = class extends ApiClient7 {
|
|
2204
2260
|
};
|
2205
2261
|
|
2206
2262
|
// src/RouteClient.ts
|
2207
|
-
import { ApiClient as
|
2263
|
+
import { ApiClient as ApiClient9 } from "@uniformdev/context/api";
|
2208
2264
|
var ROUTE_URL = "/api/v1/route";
|
2209
|
-
var RouteClient = class extends
|
2265
|
+
var RouteClient = class extends ApiClient9 {
|
2210
2266
|
constructor(options) {
|
2211
2267
|
var _a;
|
2212
2268
|
if (!options.limitPolicy) {
|
@@ -2223,6 +2279,9 @@ var RouteClient = class extends ApiClient8 {
|
|
2223
2279
|
}
|
2224
2280
|
};
|
2225
2281
|
|
2282
|
+
// src/types/locales.ts
|
2283
|
+
var LOCALE_DYNAMIC_INPUT_NAME = "locale";
|
2284
|
+
|
2226
2285
|
// src/utils/createApiEnhancer.ts
|
2227
2286
|
var createUniformApiEnhancer = ({ apiUrl }) => {
|
2228
2287
|
return async (message) => {
|
@@ -2254,7 +2313,8 @@ function convertEntryToPutEntry(entry) {
|
|
2254
2313
|
_id: entry.entry._id,
|
2255
2314
|
_name: entry.entry._name,
|
2256
2315
|
_slug: entry.entry._slug,
|
2257
|
-
fields: entry.entry.fields
|
2316
|
+
fields: entry.entry.fields,
|
2317
|
+
_locales: entry.entry._locales
|
2258
2318
|
},
|
2259
2319
|
state: entry.state,
|
2260
2320
|
projectId: entry.projectId
|
@@ -2587,6 +2647,8 @@ export {
|
|
2587
2647
|
IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM,
|
2588
2648
|
IN_CONTEXT_EDITOR_QUERY_STRING_PARAM,
|
2589
2649
|
IS_RENDERED_BY_UNIFORM_ATTRIBUTE,
|
2650
|
+
LOCALE_DYNAMIC_INPUT_NAME,
|
2651
|
+
LocaleClient,
|
2590
2652
|
PLACEHOLDER_ID,
|
2591
2653
|
PromptClient,
|
2592
2654
|
RouteClient,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/canvas",
|
3
|
-
"version": "19.88.
|
3
|
+
"version": "19.88.1-alpha.7+69b3ccba4",
|
4
4
|
"description": "Common functionality and types for Uniform Canvas",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -38,8 +38,8 @@
|
|
38
38
|
"pusher-js": "8.2.0"
|
39
39
|
},
|
40
40
|
"dependencies": {
|
41
|
-
"@uniformdev/assets": "19.88.
|
42
|
-
"@uniformdev/context": "19.88.
|
41
|
+
"@uniformdev/assets": "19.88.1-alpha.7+69b3ccba4",
|
42
|
+
"@uniformdev/context": "19.88.1-alpha.7+69b3ccba4",
|
43
43
|
"immer": "10.0.3"
|
44
44
|
},
|
45
45
|
"files": [
|
@@ -48,5 +48,5 @@
|
|
48
48
|
"publishConfig": {
|
49
49
|
"access": "public"
|
50
50
|
},
|
51
|
-
"gitHead": "
|
51
|
+
"gitHead": "69b3ccba4050c4ff412c4f226f54a36d74cf9a39"
|
52
52
|
}
|