saloe 0.0.26 → 0.0.27

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/html.cjs.js CHANGED
@@ -26,8 +26,7 @@ const stream = ({ head, body, scripts, env, status, args }) => {
26
26
  <body
27
27
  data-scope="${util.getScope({ env })}"
28
28
  data-env="${util.getEnv({ env })}"
29
- ${(args == null ? void 0 : args.isPublic) ?? ""}
30
- ${(args == null ? void 0 : args.isLoading) ?? ""}
29
+ ${args ?? ""}
31
30
  >
32
31
  `,
33
32
  body,
package/dist/html.es.js CHANGED
@@ -24,8 +24,7 @@ const stream = ({ head, body, scripts, env, status, args }) => {
24
24
  <body
25
25
  data-scope="${getScope({ env })}"
26
26
  data-env="${getEnv({ env })}"
27
- ${(args == null ? void 0 : args.isPublic) ?? ""}
28
- ${(args == null ? void 0 : args.isLoading) ?? ""}
27
+ ${args ?? ""}
29
28
  >
30
29
  `,
31
30
  body,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saloe",
3
- "version": "0.0.26",
3
+ "version": "0.0.27",
4
4
  "description": "Tools for making web development easy and efficient",
5
5
  "type": "module",
6
6
  "scripts": {
package/src/html.js CHANGED
@@ -23,8 +23,7 @@ const stream = ({ head, body, scripts, env, status, args }) => {
23
23
  <body
24
24
  data-scope="${getScope({ env })}"
25
25
  data-env="${getEnv({ env })}"
26
- ${args?.isPublic ?? ''}
27
- ${args?.isLoading ?? ''}
26
+ ${args ?? ''}
28
27
  >
29
28
  `,
30
29
  body,