@lwrjs/base-view-provider 0.13.0-alpha.3 → 0.13.0-alpha.30
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.
|
@@ -10,8 +10,7 @@ __markAsModule(exports);
|
|
|
10
10
|
__export(exports, {
|
|
11
11
|
defaultHtmlLayout: () => defaultHtmlLayout
|
|
12
12
|
});
|
|
13
|
-
var defaultHtmlLayout =
|
|
14
|
-
<!DOCTYPE html>
|
|
13
|
+
var defaultHtmlLayout = `<!DOCTYPE html>
|
|
15
14
|
<html lang="en">
|
|
16
15
|
<head>
|
|
17
16
|
<meta charset="utf-8" />
|
|
@@ -22,5 +21,4 @@ var defaultHtmlLayout = `
|
|
|
22
21
|
{{{body}}}
|
|
23
22
|
</body>
|
|
24
23
|
{{{lwr_resources}}}
|
|
25
|
-
</html
|
|
26
|
-
`;
|
|
24
|
+
</html>`;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const defaultHtmlLayout = "
|
|
1
|
+
export declare const defaultHtmlLayout = "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, viewport-fit=cover\" />\n <title>{{page.title}}</title>\n </head>\n <body class=\"wrapper\">\n {{{body}}}\n </body>\n {{{lwr_resources}}}\n</html>";
|
|
2
2
|
//# sourceMappingURL=template-layouts.d.ts.map
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
export const defaultHtmlLayout =
|
|
2
|
-
<!DOCTYPE html>
|
|
1
|
+
export const defaultHtmlLayout = `<!DOCTYPE html>
|
|
3
2
|
<html lang="en">
|
|
4
3
|
<head>
|
|
5
4
|
<meta charset="utf-8" />
|
|
@@ -10,6 +9,5 @@ export const defaultHtmlLayout = `
|
|
|
10
9
|
{{{body}}}
|
|
11
10
|
</body>
|
|
12
11
|
{{{lwr_resources}}}
|
|
13
|
-
</html
|
|
14
|
-
`;
|
|
12
|
+
</html>`;
|
|
15
13
|
//# sourceMappingURL=template-layouts.js.map
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.13.0-alpha.
|
|
7
|
+
"version": "0.13.0-alpha.30",
|
|
8
8
|
"homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -29,15 +29,18 @@
|
|
|
29
29
|
"build/**/*.cjs",
|
|
30
30
|
"build/**/*.d.ts"
|
|
31
31
|
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "tsc -b"
|
|
34
|
+
},
|
|
32
35
|
"dependencies": {
|
|
33
|
-
"@lwrjs/shared-utils": "0.13.0-alpha.
|
|
36
|
+
"@lwrjs/shared-utils": "0.13.0-alpha.30",
|
|
34
37
|
"escape-goat": "^3.0.0"
|
|
35
38
|
},
|
|
36
39
|
"devDependencies": {
|
|
37
|
-
"@lwrjs/types": "0.13.0-alpha.
|
|
40
|
+
"@lwrjs/types": "0.13.0-alpha.30"
|
|
38
41
|
},
|
|
39
42
|
"engines": {
|
|
40
43
|
"node": ">=18.0.0"
|
|
41
44
|
},
|
|
42
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "8bf14ed00a95675fdb506e2cbdb6033324bf95bf"
|
|
43
46
|
}
|