@fluentui/react-toast 9.3.33 → 9.3.34

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 (26) hide show
  1. package/CHANGELOG.md +17 -2
  2. package/lib/components/Toast/Toast.types.js +3 -1
  3. package/lib/components/Toast/Toast.types.js.map +1 -1
  4. package/lib/components/ToastBody/ToastBody.types.js +3 -1
  5. package/lib/components/ToastBody/ToastBody.types.js.map +1 -1
  6. package/lib/components/ToastFooter/ToastFooter.types.js +3 -1
  7. package/lib/components/ToastFooter/ToastFooter.types.js.map +1 -1
  8. package/lib/components/ToastTitle/ToastTitle.types.js +3 -1
  9. package/lib/components/ToastTitle/ToastTitle.types.js.map +1 -1
  10. package/lib/components/Toaster/Toaster.types.js +3 -1
  11. package/lib/components/Toaster/Toaster.types.js.map +1 -1
  12. package/lib-commonjs/components/Toast/Toast.types.js +3 -1
  13. package/lib-commonjs/components/Toast/Toast.types.js.map +1 -1
  14. package/lib-commonjs/components/ToastBody/ToastBody.types.js +3 -1
  15. package/lib-commonjs/components/ToastBody/ToastBody.types.js.map +1 -1
  16. package/lib-commonjs/components/ToastFooter/ToastFooter.types.js +3 -1
  17. package/lib-commonjs/components/ToastFooter/ToastFooter.types.js.map +1 -1
  18. package/lib-commonjs/components/ToastTitle/ToastTitle.types.js +3 -1
  19. package/lib-commonjs/components/ToastTitle/ToastTitle.types.js.map +1 -1
  20. package/lib-commonjs/components/Toaster/Toaster.types.js +3 -1
  21. package/lib-commonjs/components/Toaster/Toaster.types.js.map +1 -1
  22. package/lib-commonjs/index.js +50 -50
  23. package/lib-commonjs/index.js.map +1 -1
  24. package/lib-commonjs/state/index.js +3 -3
  25. package/lib-commonjs/state/index.js.map +1 -1
  26. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,12 +1,27 @@
1
1
  # Change Log - @fluentui/react-toast
2
2
 
3
- This log was last generated on Thu, 07 Mar 2024 19:27:00 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 15 Mar 2024 21:37:57 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.3.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-toast_v9.3.34)
8
+
9
+ Fri, 15 Mar 2024 21:37:57 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-toast_v9.3.33..@fluentui/react-toast_v9.3.34)
11
+
12
+ ### Patches
13
+
14
+ - Bump @fluentui/react-aria to v9.10.1 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
15
+ - Bump @fluentui/react-jsx-runtime to v9.0.33 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
16
+ - Bump @fluentui/react-portal to v9.4.17 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
17
+ - Bump @fluentui/react-shared-contexts to v9.15.1 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
18
+ - Bump @fluentui/react-tabster to v9.19.4 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
19
+ - Bump @fluentui/react-theme to v9.1.18 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
20
+ - Bump @fluentui/react-utilities to v9.18.4 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
21
+
7
22
  ## [9.3.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-toast_v9.3.33)
8
23
 
9
- Thu, 07 Mar 2024 19:27:00 GMT
24
+ Thu, 07 Mar 2024 19:33:27 GMT
10
25
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-toast_v9.3.32..@fluentui/react-toast_v9.3.33)
11
26
 
12
27
  ### Patches
@@ -1 +1,3 @@
1
- export { };
1
+ /**
2
+ * State used in rendering Toast
3
+ */ export { };
@@ -1 +1 @@
1
- {"version":3,"sources":["Toast.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport { BackgroundAppearanceContextValue } from '@fluentui/react-shared-contexts';\n\nexport type ToastSlots = {\n root: Slot<'div'>;\n};\n\nexport type ToastContextValues = {\n backgroundAppearance: BackgroundAppearanceContextValue;\n};\n\n/**\n * Toast Props\n */\nexport type ToastProps = ComponentProps<ToastSlots> & {\n appearance?: BackgroundAppearanceContextValue;\n};\n\n/**\n * State used in rendering Toast\n */\nexport type ToastState = ComponentState<ToastSlots> & {\n backgroundAppearance: BackgroundAppearanceContextValue;\n};\n"],"names":[],"mappings":"AAAA,WAuBE"}
1
+ {"version":3,"sources":["Toast.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport { BackgroundAppearanceContextValue } from '@fluentui/react-shared-contexts';\n\nexport type ToastSlots = {\n root: Slot<'div'>;\n};\n\nexport type ToastContextValues = {\n backgroundAppearance: BackgroundAppearanceContextValue;\n};\n\n/**\n * Toast Props\n */\nexport type ToastProps = ComponentProps<ToastSlots> & {\n appearance?: BackgroundAppearanceContextValue;\n};\n\n/**\n * State used in rendering Toast\n */\nexport type ToastState = ComponentState<ToastSlots> & {\n backgroundAppearance: BackgroundAppearanceContextValue;\n};\n"],"names":[],"mappings":"AAkBA;;CAEC,GACD,WAEE"}
@@ -1 +1,3 @@
1
- export { };
1
+ /**
2
+ * State used in rendering ToastBody
3
+ */ export { };
@@ -1 +1 @@
1
- {"version":3,"sources":["ToastBody.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport { BackgroundAppearanceContextValue } from '@fluentui/react-shared-contexts';\n\nexport type ToastBodySlots = {\n root: Slot<'div'>;\n subtitle?: Slot<'div'>;\n};\n\n/**\n * ToastBody Props\n */\nexport type ToastBodyProps = ComponentProps<ToastBodySlots> & {};\n\n/**\n * State used in rendering ToastBody\n */\nexport type ToastBodyState = ComponentState<ToastBodySlots> & {\n backgroundAppearance: BackgroundAppearanceContextValue;\n};\n"],"names":[],"mappings":"AAAA,WAkBE"}
1
+ {"version":3,"sources":["ToastBody.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport { BackgroundAppearanceContextValue } from '@fluentui/react-shared-contexts';\n\nexport type ToastBodySlots = {\n root: Slot<'div'>;\n subtitle?: Slot<'div'>;\n};\n\n/**\n * ToastBody Props\n */\nexport type ToastBodyProps = ComponentProps<ToastBodySlots> & {};\n\n/**\n * State used in rendering ToastBody\n */\nexport type ToastBodyState = ComponentState<ToastBodySlots> & {\n backgroundAppearance: BackgroundAppearanceContextValue;\n};\n"],"names":[],"mappings":"AAaA;;CAEC,GACD,WAEE"}
@@ -1 +1,3 @@
1
- export { };
1
+ /**
2
+ * State used in rendering ToastFooter
3
+ */ export { };
@@ -1 +1 @@
1
- {"version":3,"sources":["ToastFooter.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\n\nexport type ToastFooterSlots = {\n root: Slot<'div'>;\n};\n\n/**\n * ToastFooter Props\n */\nexport type ToastFooterProps = ComponentProps<ToastFooterSlots> & {};\n\n/**\n * State used in rendering ToastFooter\n */\nexport type ToastFooterState = ComponentState<ToastFooterSlots>;\n"],"names":[],"mappings":"AAAA,WAcgE"}
1
+ {"version":3,"sources":["ToastFooter.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\n\nexport type ToastFooterSlots = {\n root: Slot<'div'>;\n};\n\n/**\n * ToastFooter Props\n */\nexport type ToastFooterProps = ComponentProps<ToastFooterSlots> & {};\n\n/**\n * State used in rendering ToastFooter\n */\nexport type ToastFooterState = ComponentState<ToastFooterSlots>;\n"],"names":[],"mappings":"AAWA;;CAEC,GACD,WAAgE"}
@@ -1 +1,3 @@
1
- export { };
1
+ /**
2
+ * State used in rendering ToastTitle
3
+ */ export { };
@@ -1 +1 @@
1
- {"version":3,"sources":["ToastTitle.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport { BackgroundAppearanceContextValue } from '@fluentui/react-shared-contexts';\nimport { ToastContainerContextValue } from '../../contexts/toastContainerContext';\n\nexport type ToastTitleSlots = {\n root: NonNullable<Slot<'div'>>;\n media?: Slot<'div'>;\n action?: Slot<'div'>;\n};\n\n/**\n * ToastTitle Props\n */\nexport type ToastTitleProps = ComponentProps<ToastTitleSlots> & {};\n\n/**\n * State used in rendering ToastTitle\n */\nexport type ToastTitleState = ComponentState<ToastTitleSlots> &\n Pick<ToastContainerContextValue, 'intent'> & {\n backgroundAppearance: BackgroundAppearanceContextValue;\n };\n"],"names":[],"mappings":"AAAA,WAqBI"}
1
+ {"version":3,"sources":["ToastTitle.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport { BackgroundAppearanceContextValue } from '@fluentui/react-shared-contexts';\nimport { ToastContainerContextValue } from '../../contexts/toastContainerContext';\n\nexport type ToastTitleSlots = {\n root: NonNullable<Slot<'div'>>;\n media?: Slot<'div'>;\n action?: Slot<'div'>;\n};\n\n/**\n * ToastTitle Props\n */\nexport type ToastTitleProps = ComponentProps<ToastTitleSlots> & {};\n\n/**\n * State used in rendering ToastTitle\n */\nexport type ToastTitleState = ComponentState<ToastTitleSlots> &\n Pick<ToastContainerContextValue, 'intent'> & {\n backgroundAppearance: BackgroundAppearanceContextValue;\n };\n"],"names":[],"mappings":"AAeA;;CAEC,GACD,WAGI"}
@@ -1 +1,3 @@
1
- export { };
1
+ /**
2
+ * State used in rendering Toaster
3
+ */ export { };
@@ -1 +1 @@
1
- {"version":3,"sources":["Toaster.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport type { PortalProps } from '@fluentui/react-portal';\nimport { ToasterOptions } from '../../state/types';\nimport { Announce, AriaLiveProps } from '../AriaLive';\n\nexport type ToasterSlots = {\n /**\n * NOTE: This root slot maps in exactly the same way to the containers rendered for each toast position\n * There is no intention (currently) to let users customize the div for each toast position.\n */\n root: Slot<'div'>;\n};\n\nexport type ToasterSlotsInternal = ToasterSlots & {\n bottomEnd?: Slot<'div'>;\n bottomStart?: Slot<'div'>;\n topEnd?: Slot<'div'>;\n topStart?: Slot<'div'>;\n top?: Slot<'div'>;\n bottom?: Slot<'div'>;\n};\n\n/**\n * Toaster Props\n */\nexport type ToasterProps = Omit<ComponentProps<ToasterSlots>, 'children'> &\n Partial<ToasterOptions> &\n Pick<PortalProps, 'mountNode'> & {\n /**\n * User override API for aria-live narration for toasts\n */\n announce?: Announce;\n\n inline?: boolean;\n };\n\n/**\n * State used in rendering Toaster\n */\nexport type ToasterState = ComponentState<ToasterSlotsInternal> &\n Pick<AriaLiveProps, 'announceRef'> &\n Pick<PortalProps, 'mountNode'> &\n Pick<Required<ToasterProps>, 'announce' | 'inline'> & {\n offset: ToasterOptions['offset'] | undefined;\n renderAriaLive: boolean;\n dir: 'rtl' | 'ltr';\n };\n"],"names":[],"mappings":"AAAA,WA8CI"}
1
+ {"version":3,"sources":["Toaster.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport type { PortalProps } from '@fluentui/react-portal';\nimport { ToasterOptions } from '../../state/types';\nimport { Announce, AriaLiveProps } from '../AriaLive';\n\nexport type ToasterSlots = {\n /**\n * NOTE: This root slot maps in exactly the same way to the containers rendered for each toast position\n * There is no intention (currently) to let users customize the div for each toast position.\n */\n root: Slot<'div'>;\n};\n\nexport type ToasterSlotsInternal = ToasterSlots & {\n bottomEnd?: Slot<'div'>;\n bottomStart?: Slot<'div'>;\n topEnd?: Slot<'div'>;\n topStart?: Slot<'div'>;\n top?: Slot<'div'>;\n bottom?: Slot<'div'>;\n};\n\n/**\n * Toaster Props\n */\nexport type ToasterProps = Omit<ComponentProps<ToasterSlots>, 'children'> &\n Partial<ToasterOptions> &\n Pick<PortalProps, 'mountNode'> & {\n /**\n * User override API for aria-live narration for toasts\n */\n announce?: Announce;\n\n inline?: boolean;\n };\n\n/**\n * State used in rendering Toaster\n */\nexport type ToasterState = ComponentState<ToasterSlotsInternal> &\n Pick<AriaLiveProps, 'announceRef'> &\n Pick<PortalProps, 'mountNode'> &\n Pick<Required<ToasterProps>, 'announce' | 'inline'> & {\n offset: ToasterOptions['offset'] | undefined;\n renderAriaLive: boolean;\n dir: 'rtl' | 'ltr';\n };\n"],"names":[],"mappings":"AAoCA;;CAEC,GACD,WAOI"}
@@ -1,4 +1,6 @@
1
- "use strict";
1
+ /**
2
+ * State used in rendering Toast
3
+ */ "use strict";
2
4
  Object.defineProperty(exports, "__esModule", {
3
5
  value: true
4
6
  });
@@ -1 +1 @@
1
- {"version":3,"sources":[],"names":[],"mappings":""}
1
+ {"version":3,"sources":["Toast.types.js"],"sourcesContent":["/**\n * State used in rendering Toast\n */ export { };\n"],"names":[],"mappings":"AAAA;;CAEC"}
@@ -1,4 +1,6 @@
1
- "use strict";
1
+ /**
2
+ * State used in rendering ToastBody
3
+ */ "use strict";
2
4
  Object.defineProperty(exports, "__esModule", {
3
5
  value: true
4
6
  });
@@ -1 +1 @@
1
- {"version":3,"sources":[],"names":[],"mappings":""}
1
+ {"version":3,"sources":["ToastBody.types.js"],"sourcesContent":["/**\n * State used in rendering ToastBody\n */ export { };\n"],"names":[],"mappings":"AAAA;;CAEC"}
@@ -1,4 +1,6 @@
1
- "use strict";
1
+ /**
2
+ * State used in rendering ToastFooter
3
+ */ "use strict";
2
4
  Object.defineProperty(exports, "__esModule", {
3
5
  value: true
4
6
  });
@@ -1 +1 @@
1
- {"version":3,"sources":[],"names":[],"mappings":""}
1
+ {"version":3,"sources":["ToastFooter.types.js"],"sourcesContent":["/**\n * State used in rendering ToastFooter\n */ export { };\n"],"names":[],"mappings":"AAAA;;CAEC"}
@@ -1,4 +1,6 @@
1
- "use strict";
1
+ /**
2
+ * State used in rendering ToastTitle
3
+ */ "use strict";
2
4
  Object.defineProperty(exports, "__esModule", {
3
5
  value: true
4
6
  });
@@ -1 +1 @@
1
- {"version":3,"sources":[],"names":[],"mappings":""}
1
+ {"version":3,"sources":["ToastTitle.types.js"],"sourcesContent":["/**\n * State used in rendering ToastTitle\n */ export { };\n"],"names":[],"mappings":"AAAA;;CAEC"}
@@ -1,4 +1,6 @@
1
- "use strict";
1
+ /**
2
+ * State used in rendering Toaster
3
+ */ "use strict";
2
4
  Object.defineProperty(exports, "__esModule", {
3
5
  value: true
4
6
  });
@@ -1 +1 @@
1
- {"version":3,"sources":[],"names":[],"mappings":""}
1
+ {"version":3,"sources":["Toaster.types.js"],"sourcesContent":["/**\n * State used in rendering Toaster\n */ export { };\n"],"names":[],"mappings":"AAAA;;CAEC"}
@@ -9,65 +9,56 @@ function _export(target, all) {
9
9
  });
10
10
  }
11
11
  _export(exports, {
12
- useToastController: function() {
13
- return _state.useToastController;
12
+ Toast: function() {
13
+ return _Toast.Toast;
14
14
  },
15
- ToastTrigger: function() {
16
- return _ToastTrigger.ToastTrigger;
15
+ ToastBody: function() {
16
+ return _ToastBody.ToastBody;
17
17
  },
18
- useToastTrigger_unstable: function() {
19
- return _ToastTrigger.useToastTrigger_unstable;
18
+ ToastFooter: function() {
19
+ return _ToastFooter.ToastFooter;
20
20
  },
21
- renderToastTrigger_unstable: function() {
22
- return _ToastTrigger.renderToastTrigger_unstable;
21
+ ToastTitle: function() {
22
+ return _ToastTitle.ToastTitle;
23
+ },
24
+ ToastTrigger: function() {
25
+ return _ToastTrigger.ToastTrigger;
23
26
  },
24
27
  Toaster: function() {
25
28
  return _Toaster.Toaster;
26
29
  },
27
- useToaster_unstable: function() {
28
- return _Toaster.useToaster_unstable;
29
- },
30
- useToasterStyles_unstable: function() {
31
- return _Toaster.useToasterStyles_unstable;
32
- },
33
- renderToaster_unstable: function() {
34
- return _Toaster.renderToaster_unstable;
35
- },
36
- toasterClassNames: function() {
37
- return _Toaster.toasterClassNames;
30
+ renderToastBody_unstable: function() {
31
+ return _ToastBody.renderToastBody_unstable;
38
32
  },
39
- Toast: function() {
40
- return _Toast.Toast;
33
+ renderToastFooter_unstable: function() {
34
+ return _ToastFooter.renderToastFooter_unstable;
41
35
  },
42
- useToastStyles_unstable: function() {
43
- return _Toast.useToastStyles_unstable;
36
+ renderToastTitle_unstable: function() {
37
+ return _ToastTitle.renderToastTitle_unstable;
44
38
  },
45
- useToast_unstable: function() {
46
- return _Toast.useToast_unstable;
39
+ renderToastTrigger_unstable: function() {
40
+ return _ToastTrigger.renderToastTrigger_unstable;
47
41
  },
48
42
  renderToast_unstable: function() {
49
43
  return _Toast.renderToast_unstable;
50
44
  },
51
- toastClassNames: function() {
52
- return _Toast.toastClassNames;
53
- },
54
- ToastTitle: function() {
55
- return _ToastTitle.ToastTitle;
45
+ renderToaster_unstable: function() {
46
+ return _Toaster.renderToaster_unstable;
56
47
  },
57
- useToastTitleStyles_unstable: function() {
58
- return _ToastTitle.useToastTitleStyles_unstable;
48
+ toastBodyClassNames: function() {
49
+ return _ToastBody.toastBodyClassNames;
59
50
  },
60
- useToastTitle_unstable: function() {
61
- return _ToastTitle.useToastTitle_unstable;
51
+ toastClassNames: function() {
52
+ return _Toast.toastClassNames;
62
53
  },
63
- renderToastTitle_unstable: function() {
64
- return _ToastTitle.renderToastTitle_unstable;
54
+ toastFooterClassNames: function() {
55
+ return _ToastFooter.toastFooterClassNames;
65
56
  },
66
57
  toastTitleClassNames: function() {
67
58
  return _ToastTitle.toastTitleClassNames;
68
59
  },
69
- ToastBody: function() {
70
- return _ToastBody.ToastBody;
60
+ toasterClassNames: function() {
61
+ return _Toaster.toasterClassNames;
71
62
  },
72
63
  useToastBodyStyles_unstable: function() {
73
64
  return _ToastBody.useToastBodyStyles_unstable;
@@ -75,14 +66,8 @@ _export(exports, {
75
66
  useToastBody_unstable: function() {
76
67
  return _ToastBody.useToastBody_unstable;
77
68
  },
78
- renderToastBody_unstable: function() {
79
- return _ToastBody.renderToastBody_unstable;
80
- },
81
- toastBodyClassNames: function() {
82
- return _ToastBody.toastBodyClassNames;
83
- },
84
- ToastFooter: function() {
85
- return _ToastFooter.ToastFooter;
69
+ useToastController: function() {
70
+ return _state.useToastController;
86
71
  },
87
72
  useToastFooterStyles_unstable: function() {
88
73
  return _ToastFooter.useToastFooterStyles_unstable;
@@ -90,11 +75,26 @@ _export(exports, {
90
75
  useToastFooter_unstable: function() {
91
76
  return _ToastFooter.useToastFooter_unstable;
92
77
  },
93
- renderToastFooter_unstable: function() {
94
- return _ToastFooter.renderToastFooter_unstable;
78
+ useToastStyles_unstable: function() {
79
+ return _Toast.useToastStyles_unstable;
95
80
  },
96
- toastFooterClassNames: function() {
97
- return _ToastFooter.toastFooterClassNames;
81
+ useToastTitleStyles_unstable: function() {
82
+ return _ToastTitle.useToastTitleStyles_unstable;
83
+ },
84
+ useToastTitle_unstable: function() {
85
+ return _ToastTitle.useToastTitle_unstable;
86
+ },
87
+ useToastTrigger_unstable: function() {
88
+ return _ToastTrigger.useToastTrigger_unstable;
89
+ },
90
+ useToast_unstable: function() {
91
+ return _Toast.useToast_unstable;
92
+ },
93
+ useToasterStyles_unstable: function() {
94
+ return _Toaster.useToasterStyles_unstable;
95
+ },
96
+ useToaster_unstable: function() {
97
+ return _Toaster.useToaster_unstable;
98
98
  }
99
99
  });
100
100
  const _state = require("./state");
@@ -1 +1 @@
1
- {"version":3,"sources":["index.js"],"sourcesContent":["export { useToastController } from './state';\nexport { ToastTrigger, useToastTrigger_unstable, renderToastTrigger_unstable } from './ToastTrigger';\nexport { Toaster, useToaster_unstable, useToasterStyles_unstable, renderToaster_unstable, toasterClassNames } from './Toaster';\nexport { Toast, useToastStyles_unstable, useToast_unstable, renderToast_unstable, toastClassNames } from './Toast';\nexport { ToastTitle, useToastTitleStyles_unstable, useToastTitle_unstable, renderToastTitle_unstable, toastTitleClassNames } from './ToastTitle';\nexport { ToastBody, useToastBodyStyles_unstable, useToastBody_unstable, renderToastBody_unstable, toastBodyClassNames } from './ToastBody';\nexport { ToastFooter, useToastFooterStyles_unstable, useToastFooter_unstable, renderToastFooter_unstable, toastFooterClassNames } from './ToastFooter';\n"],"names":["useToastController","ToastTrigger","useToastTrigger_unstable","renderToastTrigger_unstable","Toaster","useToaster_unstable","useToasterStyles_unstable","renderToaster_unstable","toasterClassNames","Toast","useToastStyles_unstable","useToast_unstable","renderToast_unstable","toastClassNames","ToastTitle","useToastTitleStyles_unstable","useToastTitle_unstable","renderToastTitle_unstable","toastTitleClassNames","ToastBody","useToastBodyStyles_unstable","useToastBody_unstable","renderToastBody_unstable","toastBodyClassNames","ToastFooter","useToastFooterStyles_unstable","useToastFooter_unstable","renderToastFooter_unstable","toastFooterClassNames"],"mappings":";;;;;;;;;;;IAASA,kBAAkB;eAAlBA,yBAAkB;;IAClBC,YAAY;eAAZA,0BAAY;;IAAEC,wBAAwB;eAAxBA,sCAAwB;;IAAEC,2BAA2B;eAA3BA,yCAA2B;;IACnEC,OAAO;eAAPA,gBAAO;;IAAEC,mBAAmB;eAAnBA,4BAAmB;;IAAEC,yBAAyB;eAAzBA,kCAAyB;;IAAEC,sBAAsB;eAAtBA,+BAAsB;;IAAEC,iBAAiB;eAAjBA,0BAAiB;;IAClGC,KAAK;eAALA,YAAK;;IAAEC,uBAAuB;eAAvBA,8BAAuB;;IAAEC,iBAAiB;eAAjBA,wBAAiB;;IAAEC,oBAAoB;eAApBA,2BAAoB;;IAAEC,eAAe;eAAfA,sBAAe;;IACxFC,UAAU;eAAVA,sBAAU;;IAAEC,4BAA4B;eAA5BA,wCAA4B;;IAAEC,sBAAsB;eAAtBA,kCAAsB;;IAAEC,yBAAyB;eAAzBA,qCAAyB;;IAAEC,oBAAoB;eAApBA,gCAAoB;;IACjHC,SAAS;eAATA,oBAAS;;IAAEC,2BAA2B;eAA3BA,sCAA2B;;IAAEC,qBAAqB;eAArBA,gCAAqB;;IAAEC,wBAAwB;eAAxBA,mCAAwB;;IAAEC,mBAAmB;eAAnBA,8BAAmB;;IAC5GC,WAAW;eAAXA,wBAAW;;IAAEC,6BAA6B;eAA7BA,0CAA6B;;IAAEC,uBAAuB;eAAvBA,oCAAuB;;IAAEC,0BAA0B;eAA1BA,uCAA0B;;IAAEC,qBAAqB;eAArBA,kCAAqB;;;uBAN5F;8BACiD;yBAC+B;uBACV;4BACyB;2BACL;6BACU"}
1
+ {"version":3,"sources":["index.js"],"sourcesContent":["export { useToastController } from './state';\nexport { ToastTrigger, useToastTrigger_unstable, renderToastTrigger_unstable } from './ToastTrigger';\nexport { Toaster, useToaster_unstable, useToasterStyles_unstable, renderToaster_unstable, toasterClassNames } from './Toaster';\nexport { Toast, useToastStyles_unstable, useToast_unstable, renderToast_unstable, toastClassNames } from './Toast';\nexport { ToastTitle, useToastTitleStyles_unstable, useToastTitle_unstable, renderToastTitle_unstable, toastTitleClassNames } from './ToastTitle';\nexport { ToastBody, useToastBodyStyles_unstable, useToastBody_unstable, renderToastBody_unstable, toastBodyClassNames } from './ToastBody';\nexport { ToastFooter, useToastFooterStyles_unstable, useToastFooter_unstable, renderToastFooter_unstable, toastFooterClassNames } from './ToastFooter';\n"],"names":["Toast","ToastBody","ToastFooter","ToastTitle","ToastTrigger","Toaster","renderToastBody_unstable","renderToastFooter_unstable","renderToastTitle_unstable","renderToastTrigger_unstable","renderToast_unstable","renderToaster_unstable","toastBodyClassNames","toastClassNames","toastFooterClassNames","toastTitleClassNames","toasterClassNames","useToastBodyStyles_unstable","useToastBody_unstable","useToastController","useToastFooterStyles_unstable","useToastFooter_unstable","useToastStyles_unstable","useToastTitleStyles_unstable","useToastTitle_unstable","useToastTrigger_unstable","useToast_unstable","useToasterStyles_unstable","useToaster_unstable"],"mappings":";;;;;;;;;;;IAGSA,KAAK;eAALA,YAAK;;IAELC,SAAS;eAATA,oBAAS;;IACTC,WAAW;eAAXA,wBAAW;;IAFXC,UAAU;eAAVA,sBAAU;;IAHVC,YAAY;eAAZA,0BAAY;;IACZC,OAAO;eAAPA,gBAAO;;IAGwDC,wBAAwB;eAAxBA,mCAAwB;;IAClBC,0BAA0B;eAA1BA,uCAA0B;;IAF7BC,yBAAyB;eAAzBA,qCAAyB;;IAHnDC,2BAA2B;eAA3BA,yCAA2B;;IAEhBC,oBAAoB;eAApBA,2BAAoB;;IADdC,sBAAsB;eAAtBA,+BAAsB;;IAGUC,mBAAmB;eAAnBA,8BAAmB;;IAFnCC,eAAe;eAAfA,sBAAe;;IAGSC,qBAAqB;eAArBA,kCAAqB;;IAFzBC,oBAAoB;eAApBA,gCAAoB;;IAFhCC,iBAAiB;eAAjBA,0BAAiB;;IAGvFC,2BAA2B;eAA3BA,sCAA2B;;IAAEC,qBAAqB;eAArBA,gCAAqB;;IAL7DC,kBAAkB;eAAlBA,yBAAkB;;IAMLC,6BAA6B;eAA7BA,0CAA6B;;IAAEC,uBAAuB;eAAvBA,oCAAuB;;IAH5DC,uBAAuB;eAAvBA,8BAAuB;;IAClBC,4BAA4B;eAA5BA,wCAA4B;;IAAEC,sBAAsB;eAAtBA,kCAAsB;;IAHlDC,wBAAwB;eAAxBA,sCAAwB;;IAENC,iBAAiB;eAAjBA,wBAAiB;;IADnBC,yBAAyB;eAAzBA,kCAAyB;;IAA9CC,mBAAmB;eAAnBA,4BAAmB;;;uBAFF;8BACiD;yBAC+B;uBACV;4BACyB;2BACL;6BACU"}
@@ -9,11 +9,11 @@ function _export(target, all) {
9
9
  });
10
10
  }
11
11
  _export(exports, {
12
- getPositionStyles: function() {
13
- return _vanilla.getPositionStyles;
14
- },
15
12
  TOAST_POSITIONS: function() {
16
13
  return _constants.TOAST_POSITIONS;
14
+ },
15
+ getPositionStyles: function() {
16
+ return _vanilla.getPositionStyles;
17
17
  }
18
18
  });
19
19
  const _export_star = require("@swc/helpers/_/_export_star");
@@ -1 +1 @@
1
- {"version":3,"sources":["index.js"],"sourcesContent":["export * from './types';\nexport * from './useToaster';\nexport * from './useToastController';\nexport { getPositionStyles } from './vanilla';\nexport { TOAST_POSITIONS } from './constants';\n"],"names":["getPositionStyles","TOAST_POSITIONS"],"mappings":";;;;;;;;;;;IAGSA,iBAAiB;eAAjBA,0BAAiB;;IACjBC,eAAe;eAAfA,0BAAe;;;;uBAJV;uBACA;uBACA;yBACoB;2BACF"}
1
+ {"version":3,"sources":["index.js"],"sourcesContent":["export * from './types';\nexport * from './useToaster';\nexport * from './useToastController';\nexport { getPositionStyles } from './vanilla';\nexport { TOAST_POSITIONS } from './constants';\n"],"names":["TOAST_POSITIONS","getPositionStyles"],"mappings":";;;;;;;;;;;IAISA,eAAe;eAAfA,0BAAe;;IADfC,iBAAiB;eAAjBA,0BAAiB;;;;uBAHZ;uBACA;uBACA;yBACoB;2BACF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-toast",
3
- "version": "9.3.33",
3
+ "version": "9.3.34",
4
4
  "description": "Toast component for Fluent UI",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -37,14 +37,14 @@
37
37
  "dependencies": {
38
38
  "react-transition-group": "^4.4.1",
39
39
  "@fluentui/keyboard-keys": "^9.0.7",
40
- "@fluentui/react-aria": "^9.10.0",
40
+ "@fluentui/react-aria": "^9.10.1",
41
41
  "@fluentui/react-icons": "^2.0.224",
42
- "@fluentui/react-jsx-runtime": "^9.0.32",
43
- "@fluentui/react-portal": "^9.4.16",
44
- "@fluentui/react-shared-contexts": "^9.15.0",
45
- "@fluentui/react-tabster": "^9.19.3",
46
- "@fluentui/react-theme": "^9.1.17",
47
- "@fluentui/react-utilities": "^9.18.3",
42
+ "@fluentui/react-jsx-runtime": "^9.0.33",
43
+ "@fluentui/react-portal": "^9.4.17",
44
+ "@fluentui/react-shared-contexts": "^9.15.1",
45
+ "@fluentui/react-tabster": "^9.19.4",
46
+ "@fluentui/react-theme": "^9.1.18",
47
+ "@fluentui/react-utilities": "^9.18.4",
48
48
  "@griffel/react": "^1.5.14",
49
49
  "@swc/helpers": "^0.5.1"
50
50
  },