@live-change/frontend-auto-form 0.9.78 → 0.9.80

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.
@@ -1,20 +1,20 @@
1
1
  export function cyrb128(str) {
2
2
  let h1 = 1779033703, h2 = 3144134277,
3
- h3 = 1013904242, h4 = 2773480762;
3
+ h3 = 1013904242, h4 = 2773480762
4
4
  for (let i = 0, k; i < str.length; i++) {
5
- k = str.charCodeAt(i);
6
- h1 = h2 ^ Math.imul(h1 ^ k, 597399067);
7
- h2 = h3 ^ Math.imul(h2 ^ k, 2869860233);
8
- h3 = h4 ^ Math.imul(h3 ^ k, 951274213);
9
- h4 = h1 ^ Math.imul(h4 ^ k, 2716044179);
5
+ k = str.charCodeAt(i);
6
+ h1 = h2 ^ Math.imul(h1 ^ k, 597399067)
7
+ h2 = h3 ^ Math.imul(h2 ^ k, 2869860233)
8
+ h3 = h4 ^ Math.imul(h3 ^ k, 951274213)
9
+ h4 = h1 ^ Math.imul(h4 ^ k, 2716044179)
10
10
  }
11
- h1 = Math.imul(h3 ^ (h1 >>> 18), 597399067);
12
- h2 = Math.imul(h4 ^ (h2 >>> 22), 2869860233);
13
- h3 = Math.imul(h1 ^ (h3 >>> 17), 951274213);
14
- h4 = Math.imul(h2 ^ (h4 >>> 19), 2716044179);
15
- h1 ^= (h2 ^ h3 ^ h4), h2 ^= h1, h3 ^= h1, h4 ^= h1;
11
+ h1 = Math.imul(h3 ^ (h1 >>> 18), 597399067)
12
+ h2 = Math.imul(h4 ^ (h2 >>> 22), 2869860233)
13
+ h3 = Math.imul(h1 ^ (h3 >>> 17), 951274213)
14
+ h4 = Math.imul(h2 ^ (h4 >>> 19), 2716044179)
15
+ h1 ^= (h2 ^ h3 ^ h4), h2 ^= h1, h3 ^= h1, h4 ^= h1
16
16
  const data = new Uint32Array([h4>>>0, h3>>>0, h2>>>0, h1>>>0])
17
17
  // convert to base64
18
18
  const data8 = new Uint8Array(data.buffer, data.byteOffset, data.byteLength)
19
19
  return btoa(String.fromCharCode(...data8))
20
- }
20
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/frontend-auto-form",
3
- "version": "0.9.78",
3
+ "version": "0.9.80",
4
4
  "scripts": {
5
5
  "memDev": "node server/start.js memDev --enableSessions --initScript ./init.js --dbAccess",
6
6
  "localDevInit": "rm tmp.db; lcli localDev --enableSessions --initScript ./init.js",
@@ -22,16 +22,16 @@
22
22
  "type": "module",
23
23
  "dependencies": {
24
24
  "@fortawesome/fontawesome-free": "^6.7.2",
25
- "@live-change/cli": "^0.9.78",
26
- "@live-change/dao": "^0.9.78",
27
- "@live-change/dao-vue3": "^0.9.78",
28
- "@live-change/dao-websocket": "^0.9.78",
29
- "@live-change/framework": "^0.9.78",
30
- "@live-change/image-frontend": "^0.9.78",
31
- "@live-change/image-service": "^0.9.78",
32
- "@live-change/session-service": "^0.9.78",
33
- "@live-change/vue3-components": "^0.9.78",
34
- "@live-change/vue3-ssr": "^0.9.78",
25
+ "@live-change/cli": "^0.9.80",
26
+ "@live-change/dao": "^0.9.80",
27
+ "@live-change/dao-vue3": "^0.9.80",
28
+ "@live-change/dao-websocket": "^0.9.80",
29
+ "@live-change/framework": "^0.9.80",
30
+ "@live-change/image-frontend": "^0.9.80",
31
+ "@live-change/image-service": "^0.9.80",
32
+ "@live-change/session-service": "^0.9.80",
33
+ "@live-change/vue3-components": "^0.9.80",
34
+ "@live-change/vue3-ssr": "^0.9.80",
35
35
  "@vueuse/core": "^12.3.0",
36
36
  "codeceptjs-assert": "^0.0.5",
37
37
  "compression": "^1.7.5",
@@ -52,7 +52,7 @@
52
52
  "vue3-scroll-border": "0.1.6"
53
53
  },
54
54
  "devDependencies": {
55
- "@live-change/codeceptjs-helper": "^0.9.78",
55
+ "@live-change/codeceptjs-helper": "^0.9.80",
56
56
  "codeceptjs": "^3.6.10",
57
57
  "generate-password": "1.7.1",
58
58
  "playwright": "1.49.1",
@@ -63,5 +63,5 @@
63
63
  "author": "Michał Łaszczewski <michal@laszczewski.pl>",
64
64
  "license": "ISC",
65
65
  "description": "",
66
- "gitHead": "747a9cb02377d924583925508f082c8dd5031d43"
66
+ "gitHead": "8c4e9d0d1415c8805f0a56dbef07d7b8333632a4"
67
67
  }