@fluentui/react-toast 9.3.24 → 9.3.26

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/CHANGELOG.md CHANGED
@@ -1,17 +1,44 @@
1
1
  # Change Log - @fluentui/react-toast
2
2
 
3
- This log was last generated on Thu, 11 Jan 2024 09:02:16 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 17 Jan 2024 16:13:11 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.3.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-toast_v9.3.26)
8
+
9
+ Wed, 17 Jan 2024 16:13:11 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-toast_v9.3.25..@fluentui/react-toast_v9.3.26)
11
+
12
+ ### Patches
13
+
14
+ - Bump @fluentui/react-aria to v9.7.2 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
15
+ - Bump @fluentui/react-jsx-runtime to v9.0.26 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
16
+ - Bump @fluentui/react-portal to v9.4.9 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
17
+ - Bump @fluentui/react-tabster to v9.17.2 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
18
+ - Bump @fluentui/react-utilities to v9.16.0 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
19
+
20
+ ## [9.3.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-toast_v9.3.25)
21
+
22
+ Tue, 16 Jan 2024 13:14:12 GMT
23
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-toast_v9.3.24..@fluentui/react-toast_v9.3.25)
24
+
25
+ ### Patches
26
+
27
+ - bugfix: Omit colliding content property from ComponentProps ([PR #29865](https://github.com/microsoft/fluentui/pull/29865) by bernardo.sunderhus@gmail.com)
28
+ - fix: correct version of @types/react-dom peer dep that matches for 16.x ([PR #30259](https://github.com/microsoft/fluentui/pull/30259) by mgodbolt@microsoft.com)
29
+ - Bump @fluentui/react-aria to v9.7.1 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball)
30
+ - Bump @fluentui/react-jsx-runtime to v9.0.25 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball)
31
+ - Bump @fluentui/react-portal to v9.4.8 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball)
32
+ - Bump @fluentui/react-tabster to v9.17.1 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball)
33
+
7
34
  ## [9.3.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-toast_v9.3.24)
8
35
 
9
- Thu, 11 Jan 2024 09:02:16 GMT
36
+ Thu, 11 Jan 2024 09:04:29 GMT
10
37
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-toast_v9.3.23..@fluentui/react-toast_v9.3.24)
11
38
 
12
39
  ### Patches
13
40
 
14
- - Bump @fluentui/react-aria to v9.7.0 ([PR #30250](https://github.com/microsoft/fluentui/pull/30250) by beachball)
41
+ - Bump @fluentui/react-aria to v9.7.0 ([PR #30259](https://github.com/microsoft/fluentui/pull/30259) by beachball)
15
42
 
16
43
  ## [9.3.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-toast_v9.3.23)
17
44
 
@@ -1 +1 @@
1
- {"version":3,"sources":["ToastContainer.types.ts"],"sourcesContent":["import * as React from 'react';\nimport type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport { Announce } from '../AriaLive/AriaLive.types';\nimport { Toast, ToastIntent } from '../../state';\nimport { ToastContainerContextValue } from '../../contexts/toastContainerContext';\nimport { TimerProps } from '../Timer/Timer';\n\nexport type ToastContainerContextValues = {\n toast: ToastContainerContextValue;\n};\n\nexport type ToastContainerSlots = {\n root: NonNullable<Slot<'div'>>;\n timer: NonNullable<Slot<TimerProps>>;\n};\n\n/**\n * ToastContainer Props\n */\nexport type ToastContainerProps = ComponentProps<Partial<ToastContainerSlots>> &\n Toast & {\n visible: boolean;\n announce: Announce;\n intent: ToastIntent | undefined;\n tryRestoreFocus: () => void;\n };\n\n/**\n * State used in rendering ToastContainer\n */\nexport type ToastContainerState = ComponentState<ToastContainerSlots> &\n Pick<ToastContainerProps, 'remove' | 'close' | 'updateId' | 'visible' | 'intent'> &\n Pick<ToastContainerContextValue, 'titleId' | 'bodyId'> & {\n transitionTimeout: number;\n timerTimeout: number;\n running: boolean;\n onTransitionEntering: () => void;\n nodeRef: React.Ref<HTMLDivElement>;\n };\n"],"names":["React"],"mappings":"AAAA,YAAYA,WAAW,QAAQ"}
1
+ {"version":3,"sources":["ToastContainer.types.ts"],"sourcesContent":["import * as React from 'react';\nimport type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport { Announce } from '../AriaLive/AriaLive.types';\nimport { Toast, ToastIntent } from '../../state';\nimport { ToastContainerContextValue } from '../../contexts/toastContainerContext';\nimport { TimerProps } from '../Timer/Timer';\n\nexport type ToastContainerContextValues = {\n toast: ToastContainerContextValue;\n};\n\nexport type ToastContainerSlots = {\n root: NonNullable<Slot<'div'>>;\n timer: NonNullable<Slot<TimerProps>>;\n};\n\n/**\n * ToastContainer Props\n */\nexport type ToastContainerProps = Omit<ComponentProps<Partial<ToastContainerSlots>>, 'content'> &\n Toast & {\n visible: boolean;\n announce: Announce;\n intent: ToastIntent | undefined;\n tryRestoreFocus: () => void;\n };\n\n/**\n * State used in rendering ToastContainer\n */\nexport type ToastContainerState = ComponentState<ToastContainerSlots> &\n Pick<ToastContainerProps, 'remove' | 'close' | 'updateId' | 'visible' | 'intent'> &\n Pick<ToastContainerContextValue, 'titleId' | 'bodyId'> & {\n transitionTimeout: number;\n timerTimeout: number;\n running: boolean;\n onTransitionEntering: () => void;\n nodeRef: React.Ref<HTMLDivElement>;\n };\n"],"names":["React"],"mappings":"AAAA,YAAYA,WAAW,QAAQ"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-toast",
3
- "version": "9.3.24",
3
+ "version": "9.3.26",
4
4
  "description": "Toast component for Fluent UI",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -37,20 +37,20 @@
37
37
  "dependencies": {
38
38
  "react-transition-group": "^4.4.1",
39
39
  "@fluentui/keyboard-keys": "^9.0.7",
40
- "@fluentui/react-aria": "^9.7.0",
40
+ "@fluentui/react-aria": "^9.7.2",
41
41
  "@fluentui/react-icons": "^2.0.224",
42
- "@fluentui/react-jsx-runtime": "^9.0.24",
43
- "@fluentui/react-portal": "^9.4.7",
42
+ "@fluentui/react-jsx-runtime": "^9.0.26",
43
+ "@fluentui/react-portal": "^9.4.9",
44
44
  "@fluentui/react-shared-contexts": "^9.13.2",
45
- "@fluentui/react-tabster": "^9.17.0",
45
+ "@fluentui/react-tabster": "^9.17.2",
46
46
  "@fluentui/react-theme": "^9.1.16",
47
- "@fluentui/react-utilities": "^9.15.6",
47
+ "@fluentui/react-utilities": "^9.16.0",
48
48
  "@griffel/react": "^1.5.14",
49
49
  "@swc/helpers": "^0.5.1"
50
50
  },
51
51
  "peerDependencies": {
52
52
  "@types/react": ">=16.14.0 <19.0.0",
53
- "@types/react-dom": ">=16.14.0 <19.0.0",
53
+ "@types/react-dom": ">=16.9.0 <19.0.0",
54
54
  "react": ">=16.14.0 <19.0.0",
55
55
  "react-dom": ">=16.14.0 <19.0.0"
56
56
  },