@lwc/signals 8.24.0 → 8.25.0

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/index.cjs.js CHANGED
@@ -40,7 +40,7 @@ let trustedSignals;
40
40
  function setTrustedSignalSet(signals) {
41
41
  isFalse$1(trustedSignals, 'Trusted Signal Set is already set!');
42
42
  trustedSignals = signals;
43
- // Only used in LWC's Karma. Contained within the set function as there are multiple imports of
43
+ // Only used in LWC's integration tests. Contained within the set function as there are multiple imports of
44
44
  // this module. Placing it here ensures we reference the import where the trustedSignals set is maintained
45
45
  if (process.env.NODE_ENV === 'test-lwc-integration') {
46
46
  // Used to reset the global state between test runs
@@ -51,7 +51,7 @@ function addTrustedSignal(signal) {
51
51
  // This should be a no-op when the trustedSignals set isn't set by runtime
52
52
  trustedSignals?.add(signal);
53
53
  }
54
- /** version: 8.24.0 */
54
+ /** version: 8.25.0 */
55
55
 
56
56
  /*
57
57
  * Copyright (c) 2023, salesforce.com, inc.
@@ -81,5 +81,5 @@ class SignalBaseClass {
81
81
 
82
82
  exports.SignalBaseClass = SignalBaseClass;
83
83
  exports.setTrustedSignalSet = setTrustedSignalSet;
84
- /** version: 8.24.0 */
84
+ /** version: 8.25.0 */
85
85
  //# sourceMappingURL=index.cjs.js.map
package/dist/index.js CHANGED
@@ -36,7 +36,7 @@ let trustedSignals;
36
36
  function setTrustedSignalSet(signals) {
37
37
  isFalse$1(trustedSignals, 'Trusted Signal Set is already set!');
38
38
  trustedSignals = signals;
39
- // Only used in LWC's Karma. Contained within the set function as there are multiple imports of
39
+ // Only used in LWC's integration tests. Contained within the set function as there are multiple imports of
40
40
  // this module. Placing it here ensures we reference the import where the trustedSignals set is maintained
41
41
  if (process.env.NODE_ENV === 'test-lwc-integration') {
42
42
  // Used to reset the global state between test runs
@@ -47,7 +47,7 @@ function addTrustedSignal(signal) {
47
47
  // This should be a no-op when the trustedSignals set isn't set by runtime
48
48
  trustedSignals?.add(signal);
49
49
  }
50
- /** version: 8.24.0 */
50
+ /** version: 8.25.0 */
51
51
 
52
52
  /*
53
53
  * Copyright (c) 2023, salesforce.com, inc.
@@ -76,5 +76,5 @@ class SignalBaseClass {
76
76
  }
77
77
 
78
78
  export { SignalBaseClass, setTrustedSignalSet };
79
- /** version: 8.24.0 */
79
+ /** version: 8.25.0 */
80
80
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
5
5
  ],
6
6
  "name": "@lwc/signals",
7
- "version": "8.24.0",
7
+ "version": "8.25.0",
8
8
  "description": "Provides the interface to interact with reactivity from outside the framework",
9
9
  "keywords": [
10
10
  "lwc"
@@ -46,6 +46,6 @@
46
46
  }
47
47
  },
48
48
  "devDependencies": {
49
- "@lwc/shared": "8.24.0"
49
+ "@lwc/shared": "8.25.0"
50
50
  }
51
51
  }