@react-types/shared 3.0.0-nightly.1836 → 3.0.0-nightly.1838

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/package.json +2 -2
  2. package/src/events.d.ts +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-types/shared",
3
- "version": "3.0.0-nightly.1836+fc97a5d82",
3
+ "version": "3.0.0-nightly.1838+d10f20a3f",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "types": "src/index.d.ts",
@@ -14,5 +14,5 @@
14
14
  "publishConfig": {
15
15
  "access": "public"
16
16
  },
17
- "gitHead": "fc97a5d82cd7bd07efa13bbcffe9741ee327799b"
17
+ "gitHead": "d10f20a3f4ca7ffa807fcaceb944274da825a7b9"
18
18
  }
package/src/events.d.ts CHANGED
@@ -19,7 +19,9 @@ import {
19
19
  // Event bubbling can be problematic in real-world applications, so the default for React Spectrum components
20
20
  // is not to propagate. This can be overridden by calling continuePropagation() on the event.
21
21
  export type BaseEvent<T extends SyntheticEvent> = T & {
22
- /** @deprecated Use continuePropagation. */
22
+ /**
23
+ * Use continuePropagation.
24
+ * @deprecated */
23
25
  stopPropagation(): void,
24
26
  continuePropagation(): void
25
27
  }