@blinkk/root-cms 1.0.0-beta.45 → 1.0.0-beta.46

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.
Files changed (2) hide show
  1. package/dist/ui/ui.js +4 -4
  2. package/package.json +3 -3
package/dist/ui/ui.js CHANGED
@@ -37890,8 +37890,8 @@ ${this.customData.serverResponse}`;
37890
37890
  return hex;
37891
37891
  }
37892
37892
  function normalizeString(str) {
37893
- const regex = /^(.*?)(\s+)?$/gm;
37894
- return str.replace(regex, "$1").trim();
37893
+ const lines = String(str).trim().split("\n").map((line3) => line3.trimEnd());
37894
+ return lines.join("\n");
37895
37895
  }
37896
37896
 
37897
37897
  // ui/utils/doc.ts
@@ -39751,7 +39751,7 @@ ${this.customData.serverResponse}`;
39751
39751
  // package.json
39752
39752
  var package_default = {
39753
39753
  name: "@blinkk/root-cms",
39754
- version: "1.0.0-beta.45",
39754
+ version: "1.0.0-beta.46",
39755
39755
  author: "s@blinkk.com",
39756
39756
  license: "MIT",
39757
39757
  engines: {
@@ -39856,7 +39856,7 @@ ${this.customData.serverResponse}`;
39856
39856
  vitest: "^0.18.1"
39857
39857
  },
39858
39858
  peerDependencies: {
39859
- "@blinkk/root": "1.0.0-beta.45",
39859
+ "@blinkk/root": "1.0.0-beta.46",
39860
39860
  "firebase-admin": ">=11",
39861
39861
  "firebase-functions": ">=4",
39862
39862
  preact: "10.x",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blinkk/root-cms",
3
- "version": "1.0.0-beta.45",
3
+ "version": "1.0.0-beta.46",
4
4
  "author": "s@blinkk.com",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -57,7 +57,7 @@
57
57
  "//": "NOTE(stevenle): due to compat issues with mantine and preact, mantine is pinned to v4.2.12",
58
58
  "devDependencies": {
59
59
  "@babel/core": "^7.17.9",
60
- "@blinkk/root": "1.0.0-beta.45",
60
+ "@blinkk/root": "1.0.0-beta.46",
61
61
  "@emotion/react": "^11.10.5",
62
62
  "@firebase/app-compat": "^0.1.33",
63
63
  "@firebase/app-types": "^0.7.0",
@@ -92,7 +92,7 @@
92
92
  "vitest": "^0.18.1"
93
93
  },
94
94
  "peerDependencies": {
95
- "@blinkk/root": "1.0.0-beta.45",
95
+ "@blinkk/root": "1.0.0-beta.46",
96
96
  "firebase-admin": ">=11",
97
97
  "firebase-functions": ">=4",
98
98
  "preact": "10.x",