@plasmicapp/loader-react 1.0.202 → 1.0.204
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/loader-react.cjs.development.js +162 -536
- package/dist/loader-react.cjs.development.js.map +1 -1
- package/dist/loader-react.cjs.production.min.js +1 -1
- package/dist/loader-react.cjs.production.min.js.map +1 -1
- package/dist/loader-react.esm.js +162 -536
- package/dist/loader-react.esm.js.map +1 -1
- package/dist/loader.d.ts +1 -0
- package/package.json +7 -6
package/dist/loader.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export interface InitOptions {
|
|
|
11
11
|
preview?: boolean;
|
|
12
12
|
host?: string;
|
|
13
13
|
onClientSideFetch?: 'warn' | 'error';
|
|
14
|
+
i18nKeyScheme?: 'content' | 'hash';
|
|
14
15
|
/**
|
|
15
16
|
* By default, fetchComponentData() and fetchPages() calls cached in memory
|
|
16
17
|
* with the PlasmicComponentLoader instance. If alwaysFresh is true, then
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/loader-react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.204",
|
|
4
4
|
"module": "dist/loader-react.esm.js",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"scripts": {
|
|
14
14
|
"start": "tsdx watch",
|
|
15
15
|
"build": "tsdx build",
|
|
16
|
+
"postbuild": "node ../../print-module-api.js ./packages/loader-react/dist/index.js > index-api.txt",
|
|
16
17
|
"yalcp": "yalc publish --push",
|
|
17
18
|
"test": "tsdx test --passWithNoTests",
|
|
18
19
|
"coverage": "tsdx test --coverage --passWithNoTests",
|
|
@@ -22,10 +23,10 @@
|
|
|
22
23
|
"analyze": "size-limit --why"
|
|
23
24
|
},
|
|
24
25
|
"dependencies": {
|
|
25
|
-
"@plasmicapp/data-sources-context": "
|
|
26
|
-
"@plasmicapp/host": "1.0.
|
|
27
|
-
"@plasmicapp/loader-core": "1.0.
|
|
28
|
-
"@plasmicapp/loader-splits": "1.0.
|
|
26
|
+
"@plasmicapp/data-sources-context": "0.1.3",
|
|
27
|
+
"@plasmicapp/host": "1.0.93",
|
|
28
|
+
"@plasmicapp/loader-core": "1.0.91",
|
|
29
|
+
"@plasmicapp/loader-splits": "1.0.21",
|
|
29
30
|
"@plasmicapp/query": "0.1.58",
|
|
30
31
|
"@plasmicapp/react-ssr-prepass": "2.0.0",
|
|
31
32
|
"pascalcase": "^1.0.0",
|
|
@@ -75,5 +76,5 @@
|
|
|
75
76
|
"typescript": "^4.3.2"
|
|
76
77
|
},
|
|
77
78
|
"license": "MIT",
|
|
78
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "29e95851972acf14bf3ff15462022d322f4c6b57"
|
|
79
80
|
}
|