@domql/state 3.6.6 → 3.6.8

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/LICENSE CHANGED
@@ -1,21 +1,34 @@
1
- MIT License
1
+ Creative Commons Attribution-NonCommercial 4.0 International License
2
2
 
3
3
  Copyright (c) 2023 symbo.ls
4
4
 
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
5
+ This work is licensed under the Creative Commons Attribution-NonCommercial
6
+ 4.0 International License. To view a copy of this license, visit
7
+ https://creativecommons.org/licenses/by-nc/4.0/ or send a letter to
8
+ Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
11
9
 
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
10
+ You are free to:
14
11
 
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12
+ Share copy and redistribute the material in any medium or format
13
+ Adapt — remix, transform, and build upon the material
14
+
15
+ Under the following terms:
16
+
17
+ Attribution — You must give appropriate credit, provide a link to the
18
+ license, and indicate if changes were made. You may do so in any
19
+ reasonable manner, but not in any way that suggests the licensor endorses
20
+ you or your use.
21
+
22
+ NonCommercial — You may not use the material for commercial purposes.
23
+
24
+ No additional restrictions — You may not apply legal terms or
25
+ technological measures that legally restrict others from doing anything
26
+ the license permits.
27
+
28
+ THE WORK IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
29
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
30
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
31
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
32
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
33
+ OUT OF OR IN CONNECTION WITH THE WORK OR THE USE OR OTHER DEALINGS IN THE
34
+ WORK.
@@ -656,13 +656,13 @@ var DomqlState = (() => {
656
656
  if (result && typeof result.then === "function") {
657
657
  result.catch((err) => {
658
658
  element.error = err;
659
- console.error("[DomQL] Async event error:", err);
659
+ console.error("[DOMQL] Async event error:", err);
660
660
  });
661
661
  }
662
662
  return result;
663
663
  } catch (err) {
664
664
  element.error = err;
665
- console.error("[DomQL] Event handler error:", err);
665
+ console.error("[DOMQL] Event handler error:", err);
666
666
  if (element.context?.strictMode) throw err;
667
667
  }
668
668
  };
@@ -690,13 +690,13 @@ var DomqlState = (() => {
690
690
  if (result && typeof result.then === "function") {
691
691
  result.catch((err) => {
692
692
  element.error = err;
693
- console.error("[DomQL] Async event update error:", err);
693
+ console.error("[DOMQL] Async event update error:", err);
694
694
  });
695
695
  }
696
696
  return result;
697
697
  } catch (err) {
698
698
  element.error = err;
699
- console.error("[DomQL] Event update error:", err);
699
+ console.error("[DOMQL] Event update error:", err);
700
700
  if (element.context?.strictMode) throw err;
701
701
  }
702
702
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@domql/state",
3
- "version": "3.6.6",
4
- "license": "MIT",
3
+ "version": "3.6.8",
4
+ "license": "CC-BY-NC-4.0",
5
5
  "type": "module",
6
6
  "module": "./dist/esm/index.js",
7
7
  "main": "./dist/cjs/index.js",
@@ -35,8 +35,8 @@
35
35
  "prepublish": "npm run build && npm run copy:package:cjs"
36
36
  },
37
37
  "dependencies": {
38
- "@domql/report": "^3.6.6",
39
- "@domql/utils": "^3.6.6"
38
+ "@domql/report": "^3.6.8",
39
+ "@domql/utils": "^3.6.8"
40
40
  },
41
41
  "gitHead": "9fc1b79b41cdc725ca6b24aec64920a599634681",
42
42
  "browser": "./dist/esm/index.js",