@fluentui/react-teaching-popover 0.0.0-nightly-20240423-0406.1

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 (445) hide show
  1. package/CHANGELOG.md +324 -0
  2. package/LICENSE +15 -0
  3. package/README.md +66 -0
  4. package/dist/index.d.ts +715 -0
  5. package/lib/TeachingPopover.js +1 -0
  6. package/lib/TeachingPopover.js.map +1 -0
  7. package/lib/TeachingPopoverBody.js +1 -0
  8. package/lib/TeachingPopoverBody.js.map +1 -0
  9. package/lib/TeachingPopoverCarousel.js +1 -0
  10. package/lib/TeachingPopoverCarousel.js.map +1 -0
  11. package/lib/TeachingPopoverCarouselCard.js +1 -0
  12. package/lib/TeachingPopoverCarouselCard.js.map +1 -0
  13. package/lib/TeachingPopoverCarouselFooter.js +1 -0
  14. package/lib/TeachingPopoverCarouselFooter.js.map +1 -0
  15. package/lib/TeachingPopoverCarouselFooterButton.js +1 -0
  16. package/lib/TeachingPopoverCarouselFooterButton.js.map +1 -0
  17. package/lib/TeachingPopoverCarouselNav.js +1 -0
  18. package/lib/TeachingPopoverCarouselNav.js.map +1 -0
  19. package/lib/TeachingPopoverCarouselNavButton.js +1 -0
  20. package/lib/TeachingPopoverCarouselNavButton.js.map +1 -0
  21. package/lib/TeachingPopoverCarouselPageCount.js +1 -0
  22. package/lib/TeachingPopoverCarouselPageCount.js.map +1 -0
  23. package/lib/TeachingPopoverFooter.js +1 -0
  24. package/lib/TeachingPopoverFooter.js.map +1 -0
  25. package/lib/TeachingPopoverHeader.js +1 -0
  26. package/lib/TeachingPopoverHeader.js.map +1 -0
  27. package/lib/TeachingPopoverSurface.js +1 -0
  28. package/lib/TeachingPopoverSurface.js.map +1 -0
  29. package/lib/TeachingPopoverTitle.js +1 -0
  30. package/lib/TeachingPopoverTitle.js.map +1 -0
  31. package/lib/TeachingPopoverTrigger.js +1 -0
  32. package/lib/TeachingPopoverTrigger.js.map +1 -0
  33. package/lib/components/TeachingPopover/TeachingPopover.js +10 -0
  34. package/lib/components/TeachingPopover/TeachingPopover.js.map +1 -0
  35. package/lib/components/TeachingPopover/TeachingPopover.types.js +1 -0
  36. package/lib/components/TeachingPopover/TeachingPopover.types.js.map +1 -0
  37. package/lib/components/TeachingPopover/index.js +4 -0
  38. package/lib/components/TeachingPopover/index.js.map +1 -0
  39. package/lib/components/TeachingPopover/renderTeachingPopover.js +4 -0
  40. package/lib/components/TeachingPopover/renderTeachingPopover.js.map +1 -0
  41. package/lib/components/TeachingPopover/useTeachingPopover.js +11 -0
  42. package/lib/components/TeachingPopover/useTeachingPopover.js.map +1 -0
  43. package/lib/components/TeachingPopoverBody/TeachingPopoverBody.js +17 -0
  44. package/lib/components/TeachingPopoverBody/TeachingPopoverBody.js.map +1 -0
  45. package/lib/components/TeachingPopoverBody/TeachingPopoverBody.types.js +1 -0
  46. package/lib/components/TeachingPopoverBody/TeachingPopoverBody.types.js.map +1 -0
  47. package/lib/components/TeachingPopoverBody/index.js +5 -0
  48. package/lib/components/TeachingPopoverBody/index.js.map +1 -0
  49. package/lib/components/TeachingPopoverBody/renderTeachingPopoverBody.js +13 -0
  50. package/lib/components/TeachingPopoverBody/renderTeachingPopoverBody.js.map +1 -0
  51. package/lib/components/TeachingPopoverBody/useTeachingPopoverBody.js +25 -0
  52. package/lib/components/TeachingPopoverBody/useTeachingPopoverBody.js.map +1 -0
  53. package/lib/components/TeachingPopoverBody/useTeachingPopoverBodyStyles.styles.js +58 -0
  54. package/lib/components/TeachingPopoverBody/useTeachingPopoverBodyStyles.styles.js.map +1 -0
  55. package/lib/components/TeachingPopoverCarousel/Carousel/Carousel.js +123 -0
  56. package/lib/components/TeachingPopoverCarousel/Carousel/Carousel.js.map +1 -0
  57. package/lib/components/TeachingPopoverCarousel/Carousel/Carousel.types.js +1 -0
  58. package/lib/components/TeachingPopoverCarousel/Carousel/Carousel.types.js.map +1 -0
  59. package/lib/components/TeachingPopoverCarousel/Carousel/CarouselContext.js +14 -0
  60. package/lib/components/TeachingPopoverCarousel/Carousel/CarouselContext.js.map +1 -0
  61. package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/CarouselItem.types.js +1 -0
  62. package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/CarouselItem.types.js.map +1 -0
  63. package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/Carouseltem.js +11 -0
  64. package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/Carouseltem.js.map +1 -0
  65. package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/renderCarouselItem.js +8 -0
  66. package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/renderCarouselItem.js.map +1 -0
  67. package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/useCarouselItem.js +28 -0
  68. package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/useCarouselItem.js.map +1 -0
  69. package/lib/components/TeachingPopoverCarousel/Carousel/constants.js +2 -0
  70. package/lib/components/TeachingPopoverCarousel/Carousel/constants.js.map +1 -0
  71. package/lib/components/TeachingPopoverCarousel/Carousel/createCarouselStore.js +60 -0
  72. package/lib/components/TeachingPopoverCarousel/Carousel/createCarouselStore.js.map +1 -0
  73. package/lib/components/TeachingPopoverCarousel/Carousel/useCarouselValues.js +6 -0
  74. package/lib/components/TeachingPopoverCarousel/Carousel/useCarouselValues.js.map +1 -0
  75. package/lib/components/TeachingPopoverCarousel/Carousel/useCarouselWalker.js +98 -0
  76. package/lib/components/TeachingPopoverCarousel/Carousel/useCarouselWalker.js.map +1 -0
  77. package/lib/components/TeachingPopoverCarousel/TeachingPopoverCarousel.js +19 -0
  78. package/lib/components/TeachingPopoverCarousel/TeachingPopoverCarousel.js.map +1 -0
  79. package/lib/components/TeachingPopoverCarousel/TeachingPopoverCarousel.types.js +1 -0
  80. package/lib/components/TeachingPopoverCarousel/TeachingPopoverCarousel.types.js.map +1 -0
  81. package/lib/components/TeachingPopoverCarousel/index.js +6 -0
  82. package/lib/components/TeachingPopoverCarousel/index.js.map +1 -0
  83. package/lib/components/TeachingPopoverCarousel/renderTeachingPopoverCarousel.js +12 -0
  84. package/lib/components/TeachingPopoverCarousel/renderTeachingPopoverCarousel.js.map +1 -0
  85. package/lib/components/TeachingPopoverCarousel/useTeachingPopoverCarousel.js +32 -0
  86. package/lib/components/TeachingPopoverCarousel/useTeachingPopoverCarousel.js.map +1 -0
  87. package/lib/components/TeachingPopoverCarousel/useTeachingPopoverCarouselContextValues.js +12 -0
  88. package/lib/components/TeachingPopoverCarousel/useTeachingPopoverCarouselContextValues.js.map +1 -0
  89. package/lib/components/TeachingPopoverCarousel/useTeachingPopoverCarouselStyles.styles.js +15 -0
  90. package/lib/components/TeachingPopoverCarousel/useTeachingPopoverCarouselStyles.styles.js.map +1 -0
  91. package/lib/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.js +15 -0
  92. package/lib/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.js.map +1 -0
  93. package/lib/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.types.js +1 -0
  94. package/lib/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.types.js.map +1 -0
  95. package/lib/components/TeachingPopoverCarouselCard/index.js +5 -0
  96. package/lib/components/TeachingPopoverCarouselCard/index.js.map +1 -0
  97. package/lib/components/TeachingPopoverCarouselCard/renderTeachingPopoverCarouselCard.js +8 -0
  98. package/lib/components/TeachingPopoverCarouselCard/renderTeachingPopoverCarouselCard.js.map +1 -0
  99. package/lib/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCard.js +25 -0
  100. package/lib/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCard.js.map +1 -0
  101. package/lib/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCardStyles.styles.js +14 -0
  102. package/lib/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCardStyles.styles.js.map +1 -0
  103. package/lib/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.js +15 -0
  104. package/lib/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.js.map +1 -0
  105. package/lib/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.types.js +1 -0
  106. package/lib/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.types.js.map +1 -0
  107. package/lib/components/TeachingPopoverCarouselFooter/index.js +5 -0
  108. package/lib/components/TeachingPopoverCarouselFooter/index.js.map +1 -0
  109. package/lib/components/TeachingPopoverCarouselFooter/renderTeachingPopoverCarouselFooter.js +16 -0
  110. package/lib/components/TeachingPopoverCarouselFooter/renderTeachingPopoverCarouselFooter.js.map +1 -0
  111. package/lib/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooter.js +37 -0
  112. package/lib/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooter.js.map +1 -0
  113. package/lib/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooterStyles.styles.js +39 -0
  114. package/lib/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooterStyles.styles.js.map +1 -0
  115. package/lib/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.js +15 -0
  116. package/lib/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.js.map +1 -0
  117. package/lib/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.types.js +1 -0
  118. package/lib/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.types.js.map +1 -0
  119. package/lib/components/TeachingPopoverCarouselFooterButton/index.js +5 -0
  120. package/lib/components/TeachingPopoverCarouselFooterButton/index.js.map +1 -0
  121. package/lib/components/TeachingPopoverCarouselFooterButton/renderTeachingPopoverCarouselFooterButton.js +8 -0
  122. package/lib/components/TeachingPopoverCarouselFooterButton/renderTeachingPopoverCarouselFooterButton.js.map +1 -0
  123. package/lib/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButton.js +71 -0
  124. package/lib/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButton.js.map +1 -0
  125. package/lib/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButtonStyles.styles.js +64 -0
  126. package/lib/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButtonStyles.styles.js.map +1 -0
  127. package/lib/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.js +15 -0
  128. package/lib/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.js.map +1 -0
  129. package/lib/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.types.js +1 -0
  130. package/lib/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.types.js.map +1 -0
  131. package/lib/components/TeachingPopoverCarouselNav/index.js +5 -0
  132. package/lib/components/TeachingPopoverCarouselNav/index.js.map +1 -0
  133. package/lib/components/TeachingPopoverCarouselNav/renderTeachingPopoverCarouselNav.js +15 -0
  134. package/lib/components/TeachingPopoverCarouselNav/renderTeachingPopoverCarouselNav.js.map +1 -0
  135. package/lib/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNav.js +35 -0
  136. package/lib/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNav.js.map +1 -0
  137. package/lib/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNavStyles.styles.js +35 -0
  138. package/lib/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNavStyles.styles.js.map +1 -0
  139. package/lib/components/TeachingPopoverCarouselNav/valueIdContext.js +8 -0
  140. package/lib/components/TeachingPopoverCarouselNav/valueIdContext.js.map +1 -0
  141. package/lib/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.js +14 -0
  142. package/lib/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.js.map +1 -0
  143. package/lib/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.types.js +1 -0
  144. package/lib/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.types.js.map +1 -0
  145. package/lib/components/TeachingPopoverCarouselNavButton/index.js +5 -0
  146. package/lib/components/TeachingPopoverCarouselNavButton/index.js.map +1 -0
  147. package/lib/components/TeachingPopoverCarouselNavButton/renderTeachingPopoverCarouselNavButton.js +8 -0
  148. package/lib/components/TeachingPopoverCarouselNavButton/renderTeachingPopoverCarouselNavButton.js.map +1 -0
  149. package/lib/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButton.js +52 -0
  150. package/lib/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButton.js.map +1 -0
  151. package/lib/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButtonStyles.styles.js +104 -0
  152. package/lib/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButtonStyles.styles.js.map +1 -0
  153. package/lib/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.js +14 -0
  154. package/lib/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.js.map +1 -0
  155. package/lib/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.types.js +1 -0
  156. package/lib/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.types.js.map +1 -0
  157. package/lib/components/TeachingPopoverCarouselPageCount/index.js +5 -0
  158. package/lib/components/TeachingPopoverCarouselPageCount/index.js.map +1 -0
  159. package/lib/components/TeachingPopoverCarouselPageCount/renderTeachingPopoverCarouselPageCount.js +8 -0
  160. package/lib/components/TeachingPopoverCarouselPageCount/renderTeachingPopoverCarouselPageCount.js.map +1 -0
  161. package/lib/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCount.js +34 -0
  162. package/lib/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCount.js.map +1 -0
  163. package/lib/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCountStyles.styles.js +25 -0
  164. package/lib/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCountStyles.styles.js.map +1 -0
  165. package/lib/components/TeachingPopoverFooter/TeachingPopoverFooter.js +18 -0
  166. package/lib/components/TeachingPopoverFooter/TeachingPopoverFooter.js.map +1 -0
  167. package/lib/components/TeachingPopoverFooter/TeachingPopoverFooter.types.js +1 -0
  168. package/lib/components/TeachingPopoverFooter/TeachingPopoverFooter.types.js.map +1 -0
  169. package/lib/components/TeachingPopoverFooter/index.js +5 -0
  170. package/lib/components/TeachingPopoverFooter/index.js.map +1 -0
  171. package/lib/components/TeachingPopoverFooter/renderTeachingPopoverFooter.js +13 -0
  172. package/lib/components/TeachingPopoverFooter/renderTeachingPopoverFooter.js.map +1 -0
  173. package/lib/components/TeachingPopoverFooter/useTeachingPopoverFooter.js +57 -0
  174. package/lib/components/TeachingPopoverFooter/useTeachingPopoverFooter.js.map +1 -0
  175. package/lib/components/TeachingPopoverFooter/useTeachingPopoverFooterStyles.styles.js +68 -0
  176. package/lib/components/TeachingPopoverFooter/useTeachingPopoverFooterStyles.styles.js.map +1 -0
  177. package/lib/components/TeachingPopoverHeader/TeachingPopoverHeader.js +18 -0
  178. package/lib/components/TeachingPopoverHeader/TeachingPopoverHeader.js.map +1 -0
  179. package/lib/components/TeachingPopoverHeader/TeachingPopoverHeader.types.js +1 -0
  180. package/lib/components/TeachingPopoverHeader/TeachingPopoverHeader.types.js.map +1 -0
  181. package/lib/components/TeachingPopoverHeader/index.js +5 -0
  182. package/lib/components/TeachingPopoverHeader/index.js.map +1 -0
  183. package/lib/components/TeachingPopoverHeader/renderTeachingPopoverHeader.js +14 -0
  184. package/lib/components/TeachingPopoverHeader/renderTeachingPopoverHeader.js.map +1 -0
  185. package/lib/components/TeachingPopoverHeader/useTeachingPopoverHeader.js +54 -0
  186. package/lib/components/TeachingPopoverHeader/useTeachingPopoverHeader.js.map +1 -0
  187. package/lib/components/TeachingPopoverHeader/useTeachingPopoverHeaderStyles.styles.js +108 -0
  188. package/lib/components/TeachingPopoverHeader/useTeachingPopoverHeaderStyles.styles.js.map +1 -0
  189. package/lib/components/TeachingPopoverSurface/TeachingPopoverSurface.js +16 -0
  190. package/lib/components/TeachingPopoverSurface/TeachingPopoverSurface.js.map +1 -0
  191. package/lib/components/TeachingPopoverSurface/TeachingPopoverSurface.types.js +1 -0
  192. package/lib/components/TeachingPopoverSurface/TeachingPopoverSurface.types.js.map +1 -0
  193. package/lib/components/TeachingPopoverSurface/index.js +5 -0
  194. package/lib/components/TeachingPopoverSurface/index.js.map +1 -0
  195. package/lib/components/TeachingPopoverSurface/renderTeachingPopoverSurface.js +9 -0
  196. package/lib/components/TeachingPopoverSurface/renderTeachingPopoverSurface.js.map +1 -0
  197. package/lib/components/TeachingPopoverSurface/useTeachingPopoverSurface.js +14 -0
  198. package/lib/components/TeachingPopoverSurface/useTeachingPopoverSurface.js.map +1 -0
  199. package/lib/components/TeachingPopoverSurface/useTeachingPopoverSurfaceStyles.styles.js +37 -0
  200. package/lib/components/TeachingPopoverSurface/useTeachingPopoverSurfaceStyles.styles.js.map +1 -0
  201. package/lib/components/TeachingPopoverTitle/TeachingPopoverTitle.js +18 -0
  202. package/lib/components/TeachingPopoverTitle/TeachingPopoverTitle.js.map +1 -0
  203. package/lib/components/TeachingPopoverTitle/TeachingPopoverTitle.types.js +1 -0
  204. package/lib/components/TeachingPopoverTitle/TeachingPopoverTitle.types.js.map +1 -0
  205. package/lib/components/TeachingPopoverTitle/index.js +5 -0
  206. package/lib/components/TeachingPopoverTitle/index.js.map +1 -0
  207. package/lib/components/TeachingPopoverTitle/renderTeachingPopoverTitle.js +13 -0
  208. package/lib/components/TeachingPopoverTitle/renderTeachingPopoverTitle.js.map +1 -0
  209. package/lib/components/TeachingPopoverTitle/useTeachingPopoverTitle.js +46 -0
  210. package/lib/components/TeachingPopoverTitle/useTeachingPopoverTitle.js.map +1 -0
  211. package/lib/components/TeachingPopoverTitle/useTeachingPopoverTitleStyles.styles.js +80 -0
  212. package/lib/components/TeachingPopoverTitle/useTeachingPopoverTitleStyles.styles.js.map +1 -0
  213. package/lib/components/TeachingPopoverTrigger/TeachingPopoverTrigger.js +12 -0
  214. package/lib/components/TeachingPopoverTrigger/TeachingPopoverTrigger.js.map +1 -0
  215. package/lib/components/TeachingPopoverTrigger/TeachingPopoverTrigger.types.js +1 -0
  216. package/lib/components/TeachingPopoverTrigger/TeachingPopoverTrigger.types.js.map +1 -0
  217. package/lib/components/TeachingPopoverTrigger/index.js +4 -0
  218. package/lib/components/TeachingPopoverTrigger/index.js.map +1 -0
  219. package/lib/components/TeachingPopoverTrigger/renderTeachingPopoverTrigger.js +5 -0
  220. package/lib/components/TeachingPopoverTrigger/renderTeachingPopoverTrigger.js.map +1 -0
  221. package/lib/components/TeachingPopoverTrigger/useTeachingPopoverTrigger.js +9 -0
  222. package/lib/components/TeachingPopoverTrigger/useTeachingPopoverTrigger.js.map +1 -0
  223. package/lib/index.js +14 -0
  224. package/lib/index.js.map +1 -0
  225. package/lib-commonjs/TeachingPopover.js +6 -0
  226. package/lib-commonjs/TeachingPopover.js.map +1 -0
  227. package/lib-commonjs/TeachingPopoverBody.js +6 -0
  228. package/lib-commonjs/TeachingPopoverBody.js.map +1 -0
  229. package/lib-commonjs/TeachingPopoverCarousel.js +6 -0
  230. package/lib-commonjs/TeachingPopoverCarousel.js.map +1 -0
  231. package/lib-commonjs/TeachingPopoverCarouselCard.js +6 -0
  232. package/lib-commonjs/TeachingPopoverCarouselCard.js.map +1 -0
  233. package/lib-commonjs/TeachingPopoverCarouselFooter.js +6 -0
  234. package/lib-commonjs/TeachingPopoverCarouselFooter.js.map +1 -0
  235. package/lib-commonjs/TeachingPopoverCarouselFooterButton.js +6 -0
  236. package/lib-commonjs/TeachingPopoverCarouselFooterButton.js.map +1 -0
  237. package/lib-commonjs/TeachingPopoverCarouselNav.js +6 -0
  238. package/lib-commonjs/TeachingPopoverCarouselNav.js.map +1 -0
  239. package/lib-commonjs/TeachingPopoverCarouselNavButton.js +6 -0
  240. package/lib-commonjs/TeachingPopoverCarouselNavButton.js.map +1 -0
  241. package/lib-commonjs/TeachingPopoverCarouselPageCount.js +6 -0
  242. package/lib-commonjs/TeachingPopoverCarouselPageCount.js.map +1 -0
  243. package/lib-commonjs/TeachingPopoverFooter.js +6 -0
  244. package/lib-commonjs/TeachingPopoverFooter.js.map +1 -0
  245. package/lib-commonjs/TeachingPopoverHeader.js +6 -0
  246. package/lib-commonjs/TeachingPopoverHeader.js.map +1 -0
  247. package/lib-commonjs/TeachingPopoverSurface.js +6 -0
  248. package/lib-commonjs/TeachingPopoverSurface.js.map +1 -0
  249. package/lib-commonjs/TeachingPopoverTitle.js +6 -0
  250. package/lib-commonjs/TeachingPopoverTitle.js.map +1 -0
  251. package/lib-commonjs/TeachingPopoverTrigger.js +6 -0
  252. package/lib-commonjs/TeachingPopoverTrigger.js.map +1 -0
  253. package/lib-commonjs/components/TeachingPopover/TeachingPopover.js +19 -0
  254. package/lib-commonjs/components/TeachingPopover/TeachingPopover.js.map +1 -0
  255. package/lib-commonjs/components/TeachingPopover/TeachingPopover.types.js +4 -0
  256. package/lib-commonjs/components/TeachingPopover/TeachingPopover.types.js.map +1 -0
  257. package/lib-commonjs/components/TeachingPopover/index.js +9 -0
  258. package/lib-commonjs/components/TeachingPopover/index.js.map +1 -0
  259. package/lib-commonjs/components/TeachingPopover/renderTeachingPopover.js +12 -0
  260. package/lib-commonjs/components/TeachingPopover/renderTeachingPopover.js.map +1 -0
  261. package/lib-commonjs/components/TeachingPopover/useTeachingPopover.js +21 -0
  262. package/lib-commonjs/components/TeachingPopover/useTeachingPopover.js.map +1 -0
  263. package/lib-commonjs/components/TeachingPopoverBody/TeachingPopoverBody.js +23 -0
  264. package/lib-commonjs/components/TeachingPopoverBody/TeachingPopoverBody.js.map +1 -0
  265. package/lib-commonjs/components/TeachingPopoverBody/TeachingPopoverBody.types.js +4 -0
  266. package/lib-commonjs/components/TeachingPopoverBody/TeachingPopoverBody.types.js.map +1 -0
  267. package/lib-commonjs/components/TeachingPopoverBody/index.js +10 -0
  268. package/lib-commonjs/components/TeachingPopoverBody/index.js.map +1 -0
  269. package/lib-commonjs/components/TeachingPopoverBody/renderTeachingPopoverBody.js +21 -0
  270. package/lib-commonjs/components/TeachingPopoverBody/renderTeachingPopoverBody.js.map +1 -0
  271. package/lib-commonjs/components/TeachingPopoverBody/useTeachingPopoverBody.js +32 -0
  272. package/lib-commonjs/components/TeachingPopoverBody/useTeachingPopoverBody.js.map +1 -0
  273. package/lib-commonjs/components/TeachingPopoverBody/useTeachingPopoverBodyStyles.styles.js +98 -0
  274. package/lib-commonjs/components/TeachingPopoverBody/useTeachingPopoverBodyStyles.styles.js.map +1 -0
  275. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/Carousel.js +132 -0
  276. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/Carousel.js.map +1 -0
  277. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/Carousel.types.js +6 -0
  278. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/Carousel.types.js.map +1 -0
  279. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselContext.js +36 -0
  280. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselContext.js.map +1 -0
  281. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/CarouselItem.types.js +4 -0
  282. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/CarouselItem.types.js.map +1 -0
  283. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/Carouseltem.js +19 -0
  284. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/Carouseltem.js.map +1 -0
  285. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/renderCarouselItem.js +16 -0
  286. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/renderCarouselItem.js.map +1 -0
  287. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/useCarouselItem.js +39 -0
  288. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/useCarouselItem.js.map +1 -0
  289. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/constants.js +20 -0
  290. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/constants.js.map +1 -0
  291. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/createCarouselStore.js +70 -0
  292. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/createCarouselStore.js.map +1 -0
  293. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/useCarouselValues.js +16 -0
  294. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/useCarouselValues.js.map +1 -0
  295. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/useCarouselWalker.js +109 -0
  296. package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/useCarouselWalker.js.map +1 -0
  297. package/lib-commonjs/components/TeachingPopoverCarousel/TeachingPopoverCarousel.js +25 -0
  298. package/lib-commonjs/components/TeachingPopoverCarousel/TeachingPopoverCarousel.js.map +1 -0
  299. package/lib-commonjs/components/TeachingPopoverCarousel/TeachingPopoverCarousel.types.js +4 -0
  300. package/lib-commonjs/components/TeachingPopoverCarousel/TeachingPopoverCarousel.types.js.map +1 -0
  301. package/lib-commonjs/components/TeachingPopoverCarousel/index.js +11 -0
  302. package/lib-commonjs/components/TeachingPopoverCarousel/index.js.map +1 -0
  303. package/lib-commonjs/components/TeachingPopoverCarousel/renderTeachingPopoverCarousel.js +20 -0
  304. package/lib-commonjs/components/TeachingPopoverCarousel/renderTeachingPopoverCarousel.js.map +1 -0
  305. package/lib-commonjs/components/TeachingPopoverCarousel/useTeachingPopoverCarousel.js +43 -0
  306. package/lib-commonjs/components/TeachingPopoverCarousel/useTeachingPopoverCarousel.js.map +1 -0
  307. package/lib-commonjs/components/TeachingPopoverCarousel/useTeachingPopoverCarouselContextValues.js +22 -0
  308. package/lib-commonjs/components/TeachingPopoverCarousel/useTeachingPopoverCarouselContextValues.js.map +1 -0
  309. package/lib-commonjs/components/TeachingPopoverCarousel/useTeachingPopoverCarouselStyles.styles.js +31 -0
  310. package/lib-commonjs/components/TeachingPopoverCarousel/useTeachingPopoverCarouselStyles.styles.js.map +1 -0
  311. package/lib-commonjs/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.js +21 -0
  312. package/lib-commonjs/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.js.map +1 -0
  313. package/lib-commonjs/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.types.js +4 -0
  314. package/lib-commonjs/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.types.js.map +1 -0
  315. package/lib-commonjs/components/TeachingPopoverCarouselCard/index.js +10 -0
  316. package/lib-commonjs/components/TeachingPopoverCarouselCard/index.js.map +1 -0
  317. package/lib-commonjs/components/TeachingPopoverCarouselCard/renderTeachingPopoverCarouselCard.js +16 -0
  318. package/lib-commonjs/components/TeachingPopoverCarouselCard/renderTeachingPopoverCarouselCard.js.map +1 -0
  319. package/lib-commonjs/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCard.js +32 -0
  320. package/lib-commonjs/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCard.js.map +1 -0
  321. package/lib-commonjs/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCardStyles.styles.js +30 -0
  322. package/lib-commonjs/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCardStyles.styles.js.map +1 -0
  323. package/lib-commonjs/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.js +21 -0
  324. package/lib-commonjs/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.js.map +1 -0
  325. package/lib-commonjs/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.types.js +6 -0
  326. package/lib-commonjs/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.types.js.map +1 -0
  327. package/lib-commonjs/components/TeachingPopoverCarouselFooter/index.js +10 -0
  328. package/lib-commonjs/components/TeachingPopoverCarouselFooter/index.js.map +1 -0
  329. package/lib-commonjs/components/TeachingPopoverCarouselFooter/renderTeachingPopoverCarouselFooter.js +24 -0
  330. package/lib-commonjs/components/TeachingPopoverCarouselFooter/renderTeachingPopoverCarouselFooter.js.map +1 -0
  331. package/lib-commonjs/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooter.js +48 -0
  332. package/lib-commonjs/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooter.js.map +1 -0
  333. package/lib-commonjs/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooterStyles.styles.js +60 -0
  334. package/lib-commonjs/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooterStyles.styles.js.map +1 -0
  335. package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.js +21 -0
  336. package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.js.map +1 -0
  337. package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.types.js +4 -0
  338. package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.types.js.map +1 -0
  339. package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/index.js +10 -0
  340. package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/index.js.map +1 -0
  341. package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/renderTeachingPopoverCarouselFooterButton.js +16 -0
  342. package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/renderTeachingPopoverCarouselFooterButton.js.map +1 -0
  343. package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButton.js +73 -0
  344. package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButton.js.map +1 -0
  345. package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButtonStyles.styles.js +129 -0
  346. package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButtonStyles.styles.js.map +1 -0
  347. package/lib-commonjs/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.js +21 -0
  348. package/lib-commonjs/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.js.map +1 -0
  349. package/lib-commonjs/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.types.js +6 -0
  350. package/lib-commonjs/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.types.js.map +1 -0
  351. package/lib-commonjs/components/TeachingPopoverCarouselNav/index.js +10 -0
  352. package/lib-commonjs/components/TeachingPopoverCarouselNav/index.js.map +1 -0
  353. package/lib-commonjs/components/TeachingPopoverCarouselNav/renderTeachingPopoverCarouselNav.js +23 -0
  354. package/lib-commonjs/components/TeachingPopoverCarouselNav/renderTeachingPopoverCarouselNav.js.map +1 -0
  355. package/lib-commonjs/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNav.js +42 -0
  356. package/lib-commonjs/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNav.js.map +1 -0
  357. package/lib-commonjs/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNavStyles.styles.js +84 -0
  358. package/lib-commonjs/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNavStyles.styles.js.map +1 -0
  359. package/lib-commonjs/components/TeachingPopoverCarouselNav/valueIdContext.js +30 -0
  360. package/lib-commonjs/components/TeachingPopoverCarouselNav/valueIdContext.js.map +1 -0
  361. package/lib-commonjs/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.js +21 -0
  362. package/lib-commonjs/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.js.map +1 -0
  363. package/lib-commonjs/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.types.js +4 -0
  364. package/lib-commonjs/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.types.js.map +1 -0
  365. package/lib-commonjs/components/TeachingPopoverCarouselNavButton/index.js +10 -0
  366. package/lib-commonjs/components/TeachingPopoverCarouselNavButton/index.js.map +1 -0
  367. package/lib-commonjs/components/TeachingPopoverCarouselNavButton/renderTeachingPopoverCarouselNavButton.js +16 -0
  368. package/lib-commonjs/components/TeachingPopoverCarouselNavButton/renderTeachingPopoverCarouselNavButton.js.map +1 -0
  369. package/lib-commonjs/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButton.js +55 -0
  370. package/lib-commonjs/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButton.js.map +1 -0
  371. package/lib-commonjs/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButtonStyles.styles.js +240 -0
  372. package/lib-commonjs/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButtonStyles.styles.js.map +1 -0
  373. package/lib-commonjs/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.js +21 -0
  374. package/lib-commonjs/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.js.map +1 -0
  375. package/lib-commonjs/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.types.js +6 -0
  376. package/lib-commonjs/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.types.js.map +1 -0
  377. package/lib-commonjs/components/TeachingPopoverCarouselPageCount/index.js +10 -0
  378. package/lib-commonjs/components/TeachingPopoverCarouselPageCount/index.js.map +1 -0
  379. package/lib-commonjs/components/TeachingPopoverCarouselPageCount/renderTeachingPopoverCarouselPageCount.js +16 -0
  380. package/lib-commonjs/components/TeachingPopoverCarouselPageCount/renderTeachingPopoverCarouselPageCount.js.map +1 -0
  381. package/lib-commonjs/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCount.js +37 -0
  382. package/lib-commonjs/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCount.js.map +1 -0
  383. package/lib-commonjs/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCountStyles.styles.js +42 -0
  384. package/lib-commonjs/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCountStyles.styles.js.map +1 -0
  385. package/lib-commonjs/components/TeachingPopoverFooter/TeachingPopoverFooter.js +21 -0
  386. package/lib-commonjs/components/TeachingPopoverFooter/TeachingPopoverFooter.js.map +1 -0
  387. package/lib-commonjs/components/TeachingPopoverFooter/TeachingPopoverFooter.types.js +4 -0
  388. package/lib-commonjs/components/TeachingPopoverFooter/TeachingPopoverFooter.types.js.map +1 -0
  389. package/lib-commonjs/components/TeachingPopoverFooter/index.js +10 -0
  390. package/lib-commonjs/components/TeachingPopoverFooter/index.js.map +1 -0
  391. package/lib-commonjs/components/TeachingPopoverFooter/renderTeachingPopoverFooter.js +21 -0
  392. package/lib-commonjs/components/TeachingPopoverFooter/renderTeachingPopoverFooter.js.map +1 -0
  393. package/lib-commonjs/components/TeachingPopoverFooter/useTeachingPopoverFooter.js +64 -0
  394. package/lib-commonjs/components/TeachingPopoverFooter/useTeachingPopoverFooter.js.map +1 -0
  395. package/lib-commonjs/components/TeachingPopoverFooter/useTeachingPopoverFooterStyles.styles.js +135 -0
  396. package/lib-commonjs/components/TeachingPopoverFooter/useTeachingPopoverFooterStyles.styles.js.map +1 -0
  397. package/lib-commonjs/components/TeachingPopoverHeader/TeachingPopoverHeader.js +23 -0
  398. package/lib-commonjs/components/TeachingPopoverHeader/TeachingPopoverHeader.js.map +1 -0
  399. package/lib-commonjs/components/TeachingPopoverHeader/TeachingPopoverHeader.types.js +4 -0
  400. package/lib-commonjs/components/TeachingPopoverHeader/TeachingPopoverHeader.types.js.map +1 -0
  401. package/lib-commonjs/components/TeachingPopoverHeader/index.js +10 -0
  402. package/lib-commonjs/components/TeachingPopoverHeader/index.js.map +1 -0
  403. package/lib-commonjs/components/TeachingPopoverHeader/renderTeachingPopoverHeader.js +22 -0
  404. package/lib-commonjs/components/TeachingPopoverHeader/renderTeachingPopoverHeader.js.map +1 -0
  405. package/lib-commonjs/components/TeachingPopoverHeader/useTeachingPopoverHeader.js +61 -0
  406. package/lib-commonjs/components/TeachingPopoverHeader/useTeachingPopoverHeader.js.map +1 -0
  407. package/lib-commonjs/components/TeachingPopoverHeader/useTeachingPopoverHeaderStyles.styles.js +230 -0
  408. package/lib-commonjs/components/TeachingPopoverHeader/useTeachingPopoverHeaderStyles.styles.js.map +1 -0
  409. package/lib-commonjs/components/TeachingPopoverSurface/TeachingPopoverSurface.js +23 -0
  410. package/lib-commonjs/components/TeachingPopoverSurface/TeachingPopoverSurface.js.map +1 -0
  411. package/lib-commonjs/components/TeachingPopoverSurface/TeachingPopoverSurface.types.js +4 -0
  412. package/lib-commonjs/components/TeachingPopoverSurface/TeachingPopoverSurface.types.js.map +1 -0
  413. package/lib-commonjs/components/TeachingPopoverSurface/index.js +10 -0
  414. package/lib-commonjs/components/TeachingPopoverSurface/index.js.map +1 -0
  415. package/lib-commonjs/components/TeachingPopoverSurface/renderTeachingPopoverSurface.js +17 -0
  416. package/lib-commonjs/components/TeachingPopoverSurface/renderTeachingPopoverSurface.js.map +1 -0
  417. package/lib-commonjs/components/TeachingPopoverSurface/useTeachingPopoverSurface.js +17 -0
  418. package/lib-commonjs/components/TeachingPopoverSurface/useTeachingPopoverSurface.js.map +1 -0
  419. package/lib-commonjs/components/TeachingPopoverSurface/useTeachingPopoverSurfaceStyles.styles.js +89 -0
  420. package/lib-commonjs/components/TeachingPopoverSurface/useTeachingPopoverSurfaceStyles.styles.js.map +1 -0
  421. package/lib-commonjs/components/TeachingPopoverTitle/TeachingPopoverTitle.js +23 -0
  422. package/lib-commonjs/components/TeachingPopoverTitle/TeachingPopoverTitle.js.map +1 -0
  423. package/lib-commonjs/components/TeachingPopoverTitle/TeachingPopoverTitle.types.js +4 -0
  424. package/lib-commonjs/components/TeachingPopoverTitle/TeachingPopoverTitle.types.js.map +1 -0
  425. package/lib-commonjs/components/TeachingPopoverTitle/index.js +10 -0
  426. package/lib-commonjs/components/TeachingPopoverTitle/index.js.map +1 -0
  427. package/lib-commonjs/components/TeachingPopoverTitle/renderTeachingPopoverTitle.js +21 -0
  428. package/lib-commonjs/components/TeachingPopoverTitle/renderTeachingPopoverTitle.js.map +1 -0
  429. package/lib-commonjs/components/TeachingPopoverTitle/useTeachingPopoverTitle.js +53 -0
  430. package/lib-commonjs/components/TeachingPopoverTitle/useTeachingPopoverTitle.js.map +1 -0
  431. package/lib-commonjs/components/TeachingPopoverTitle/useTeachingPopoverTitleStyles.styles.js +185 -0
  432. package/lib-commonjs/components/TeachingPopoverTitle/useTeachingPopoverTitleStyles.styles.js.map +1 -0
  433. package/lib-commonjs/components/TeachingPopoverTrigger/TeachingPopoverTrigger.js +21 -0
  434. package/lib-commonjs/components/TeachingPopoverTrigger/TeachingPopoverTrigger.js.map +1 -0
  435. package/lib-commonjs/components/TeachingPopoverTrigger/TeachingPopoverTrigger.types.js +4 -0
  436. package/lib-commonjs/components/TeachingPopoverTrigger/TeachingPopoverTrigger.types.js.map +1 -0
  437. package/lib-commonjs/components/TeachingPopoverTrigger/index.js +9 -0
  438. package/lib-commonjs/components/TeachingPopoverTrigger/index.js.map +1 -0
  439. package/lib-commonjs/components/TeachingPopoverTrigger/renderTeachingPopoverTrigger.js +15 -0
  440. package/lib-commonjs/components/TeachingPopoverTrigger/renderTeachingPopoverTrigger.js.map +1 -0
  441. package/lib-commonjs/components/TeachingPopoverTrigger/useTeachingPopoverTrigger.js +15 -0
  442. package/lib-commonjs/components/TeachingPopoverTrigger/useTeachingPopoverTrigger.js.map +1 -0
  443. package/lib-commonjs/index.js +224 -0
  444. package/lib-commonjs/index.js.map +1 -0
  445. package/package.json +69 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,324 @@
1
+ # Change Log - @fluentui/react-teaching-popover
2
+
3
+ This log was last generated on Tue, 23 Apr 2024 04:22:19 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## [0.0.0-nightly-20240423-0406.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover_v0.0.0-nightly-20240423-0406.1)
8
+
9
+ Tue, 23 Apr 2024 04:22:19 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.3.0..@fluentui/react-teaching-popover_v0.0.0-nightly-20240423-0406.1)
11
+
12
+ ### Changes
13
+
14
+ - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/not available) by fluentui-internal@service.microsoft.com)
15
+ - Bump @fluentui/react-jsx-runtime to v0.0.0-nightly-20240423-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/146af5e17a89e969794ae0b65f98b78e8dfed0d7) by beachball)
16
+ - Bump @fluentui/react-theme to v0.0.0-nightly-20240423-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/146af5e17a89e969794ae0b65f98b78e8dfed0d7) by beachball)
17
+ - Bump @fluentui/react-utilities to v0.0.0-nightly-20240423-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/146af5e17a89e969794ae0b65f98b78e8dfed0d7) by beachball)
18
+ - Bump @fluentui/react-shared-contexts to v0.0.0-nightly-20240423-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/146af5e17a89e969794ae0b65f98b78e8dfed0d7) by beachball)
19
+ - Bump @fluentui/react-popover to v0.0.0-nightly-20240423-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/146af5e17a89e969794ae0b65f98b78e8dfed0d7) by beachball)
20
+ - Bump @fluentui/react-button to v0.0.0-nightly-20240423-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/146af5e17a89e969794ae0b65f98b78e8dfed0d7) by beachball)
21
+ - Bump @fluentui/react-tabster to v0.0.0-nightly-20240423-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/146af5e17a89e969794ae0b65f98b78e8dfed0d7) by beachball)
22
+ - Bump @fluentui/react-aria to v0.0.0-nightly-20240423-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/146af5e17a89e969794ae0b65f98b78e8dfed0d7) by beachball)
23
+ - Bump @fluentui/react-context-selector to v0.0.0-nightly-20240423-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/146af5e17a89e969794ae0b65f98b78e8dfed0d7) by beachball)
24
+ - Bump @fluentui/react-conformance to v0.0.0-nightly-20240423-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/146af5e17a89e969794ae0b65f98b78e8dfed0d7) by beachball)
25
+ - Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20240423-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/146af5e17a89e969794ae0b65f98b78e8dfed0d7) by beachball)
26
+
27
+ ## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.3.0)
28
+
29
+ Wed, 17 Apr 2024 21:54:04 GMT
30
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.2.5..@fluentui/react-teaching-popover-preview_v0.3.0)
31
+
32
+ ### Minor changes
33
+
34
+ - feat: Ensure all sub components are overridable and enable better string pass through via slots ([PR #30998](https://github.com/microsoft/fluentui/pull/30998) by mifraser@microsoft.com)
35
+ - Bump @fluentui/react-popover to v9.9.4 ([PR #31100](https://github.com/microsoft/fluentui/pull/31100) by beachball)
36
+ - Bump @fluentui/react-button to v9.3.75 ([PR #31100](https://github.com/microsoft/fluentui/pull/31100) by beachball)
37
+ - Bump @fluentui/react-tabster to v9.20.0 ([PR #31100](https://github.com/microsoft/fluentui/pull/31100) by beachball)
38
+ - Bump @fluentui/react-aria to v9.10.4 ([PR #31100](https://github.com/microsoft/fluentui/pull/31100) by beachball)
39
+
40
+ ### Patches
41
+
42
+ - chore: Update react-icons to 2.0.235 ([PR #31011](https://github.com/microsoft/fluentui/pull/31011) by ololubek@microsoft.com)
43
+
44
+ ## [0.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.2.5)
45
+
46
+ Tue, 02 Apr 2024 09:48:01 GMT
47
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.2.4..@fluentui/react-teaching-popover-preview_v0.2.5)
48
+
49
+ ### Patches
50
+
51
+ - Bump @fluentui/react-jsx-runtime to v9.0.35 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball)
52
+ - Bump @fluentui/react-utilities to v9.18.6 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball)
53
+ - Bump @fluentui/react-shared-contexts to v9.16.0 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball)
54
+ - Bump @fluentui/react-popover to v9.9.3 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball)
55
+ - Bump @fluentui/react-button to v9.3.74 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball)
56
+ - Bump @fluentui/react-tabster to v9.19.6 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball)
57
+ - Bump @fluentui/react-aria to v9.10.3 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball)
58
+ - Bump @fluentui/react-context-selector to v9.1.57 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball)
59
+
60
+ ## [0.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.2.4)
61
+
62
+ Wed, 27 Mar 2024 10:29:34 GMT
63
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.2.3..@fluentui/react-teaching-popover-preview_v0.2.4)
64
+
65
+ ### Patches
66
+
67
+ - fix: Focus borders and navigation container style (arrow vs group) ([PR #30862](https://github.com/microsoft/fluentui/pull/30862) by mifraser@microsoft.com)
68
+
69
+ ## [0.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.2.3)
70
+
71
+ Mon, 25 Mar 2024 11:12:15 GMT
72
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.2.2..@fluentui/react-teaching-popover-preview_v0.2.3)
73
+
74
+ ### Patches
75
+
76
+ - bug: Fix accessibility labels and roles ([PR #30805](https://github.com/microsoft/fluentui/pull/30805) by mifraser@microsoft.com)
77
+
78
+ ## [0.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.2.2)
79
+
80
+ Mon, 18 Mar 2024 19:50:46 GMT
81
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.2.1..@fluentui/react-teaching-popover-preview_v0.2.2)
82
+
83
+ ### Patches
84
+
85
+ - Bump @fluentui/react-jsx-runtime to v9.0.34 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
86
+ - Bump @fluentui/react-theme to v9.1.19 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
87
+ - Bump @fluentui/react-utilities to v9.18.5 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
88
+ - Bump @fluentui/react-shared-contexts to v9.15.2 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
89
+ - Bump @fluentui/react-popover to v9.9.2 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
90
+ - Bump @fluentui/react-button to v9.3.73 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
91
+ - Bump @fluentui/react-tabster to v9.19.5 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
92
+ - Bump @fluentui/react-aria to v9.10.2 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
93
+ - Bump @fluentui/react-context-selector to v9.1.56 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
94
+
95
+ ## [0.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.2.1)
96
+
97
+ Fri, 15 Mar 2024 21:43:49 GMT
98
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.2.0..@fluentui/react-teaching-popover-preview_v0.2.1)
99
+
100
+ ### Patches
101
+
102
+ - Bump @fluentui/react-jsx-runtime to v9.0.33 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
103
+ - Bump @fluentui/react-theme to v9.1.18 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
104
+ - Bump @fluentui/react-utilities to v9.18.4 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
105
+ - Bump @fluentui/react-shared-contexts to v9.15.1 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
106
+ - Bump @fluentui/react-popover to v9.9.1 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
107
+ - Bump @fluentui/react-button to v9.3.72 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
108
+ - Bump @fluentui/react-tabster to v9.19.4 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
109
+ - Bump @fluentui/react-aria to v9.10.1 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
110
+ - Bump @fluentui/react-context-selector to v9.1.55 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
111
+
112
+ ## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.2.0)
113
+
114
+ Thu, 07 Mar 2024 19:33:26 GMT
115
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.1.14..@fluentui/react-teaching-popover-preview_v0.2.0)
116
+
117
+ ### Minor changes
118
+
119
+ - feat: Refactor carousel into a unified component, add navigation classes for nav icons ([PR #30423](https://github.com/microsoft/fluentui/pull/30423) by mifraser@microsoft.com)
120
+ - Bump @fluentui/react-jsx-runtime to v9.0.32 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball)
121
+ - Bump @fluentui/react-theme to v9.1.17 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball)
122
+ - Bump @fluentui/react-utilities to v9.18.3 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball)
123
+ - Bump @fluentui/react-shared-contexts to v9.15.0 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball)
124
+ - Bump @fluentui/react-popover to v9.9.0 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball)
125
+ - Bump @fluentui/react-button to v9.3.71 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball)
126
+ - Bump @fluentui/react-tabster to v9.19.3 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball)
127
+ - Bump @fluentui/react-aria to v9.10.0 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball)
128
+ - Bump @fluentui/react-context-selector to v9.1.54 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball)
129
+
130
+ ## [0.1.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.1.14)
131
+
132
+ Wed, 28 Feb 2024 02:34:19 GMT
133
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.1.13..@fluentui/react-teaching-popover-preview_v0.1.14)
134
+
135
+ ### Patches
136
+
137
+ - Bump @fluentui/react-jsx-runtime to v9.0.31 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball)
138
+ - Bump @fluentui/react-utilities to v9.18.2 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball)
139
+ - Bump @fluentui/react-shared-contexts to v9.14.1 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball)
140
+ - Bump @fluentui/react-popover to v9.8.40 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball)
141
+ - Bump @fluentui/react-button to v9.3.70 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball)
142
+ - Bump @fluentui/react-tabster to v9.19.2 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball)
143
+ - Bump @fluentui/react-aria to v9.9.1 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball)
144
+ - Bump @fluentui/react-context-selector to v9.1.53 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball)
145
+
146
+ ## [0.1.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.1.13)
147
+
148
+ Tue, 20 Feb 2024 14:22:27 GMT
149
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.1.12..@fluentui/react-teaching-popover-preview_v0.1.13)
150
+
151
+ ### Patches
152
+
153
+ - Bump @fluentui/react-jsx-runtime to v9.0.30 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball)
154
+ - Bump @fluentui/react-utilities to v9.18.1 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball)
155
+ - Bump @fluentui/react-popover to v9.8.39 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball)
156
+ - Bump @fluentui/react-button to v9.3.69 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball)
157
+ - Bump @fluentui/react-tabster to v9.19.1 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball)
158
+ - Bump @fluentui/react-aria to v9.9.0 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball)
159
+ - Bump @fluentui/react-context-selector to v9.1.52 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball)
160
+
161
+ ## [0.1.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.1.12)
162
+
163
+ Tue, 06 Feb 2024 17:55:21 GMT
164
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.1.11..@fluentui/react-teaching-popover-preview_v0.1.12)
165
+
166
+ ### Patches
167
+
168
+ - Bump @fluentui/react-popover to v9.8.38 ([PR #30392](https://github.com/microsoft/fluentui/pull/30392) by beachball)
169
+ - Bump @fluentui/react-button to v9.3.68 ([PR #30392](https://github.com/microsoft/fluentui/pull/30392) by beachball)
170
+ - Bump @fluentui/react-tabster to v9.19.0 ([PR #30392](https://github.com/microsoft/fluentui/pull/30392) by beachball)
171
+ - Bump @fluentui/react-aria to v9.8.2 ([PR #30392](https://github.com/microsoft/fluentui/pull/30392) by beachball)
172
+
173
+ ## [0.1.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.1.11)
174
+
175
+ Tue, 30 Jan 2024 23:16:54 GMT
176
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.1.10..@fluentui/react-teaching-popover-preview_v0.1.11)
177
+
178
+ ### Patches
179
+
180
+ - Bump @fluentui/react-jsx-runtime to v9.0.29 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball)
181
+ - Bump @fluentui/react-utilities to v9.18.0 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball)
182
+ - Bump @fluentui/react-popover to v9.8.37 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball)
183
+ - Bump @fluentui/react-button to v9.3.67 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball)
184
+ - Bump @fluentui/react-tabster to v9.18.0 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball)
185
+ - Bump @fluentui/react-aria to v9.8.1 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball)
186
+ - Bump @fluentui/react-context-selector to v9.1.51 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball)
187
+
188
+ ## [0.1.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.1.10)
189
+
190
+ Mon, 29 Jan 2024 13:56:06 GMT
191
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.1.9..@fluentui/react-teaching-popover-preview_v0.1.10)
192
+
193
+ ### Patches
194
+
195
+ - Bump @fluentui/react-popover to v9.8.36 ([PR #30383](https://github.com/microsoft/fluentui/pull/30383) by beachball)
196
+
197
+ ## [0.1.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.1.9)
198
+
199
+ Fri, 26 Jan 2024 10:40:22 GMT
200
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.1.8..@fluentui/react-teaching-popover-preview_v0.1.9)
201
+
202
+ ### Patches
203
+
204
+ - Bump @fluentui/react-popover to v9.8.35 ([PR #30391](https://github.com/microsoft/fluentui/pull/30391) by beachball)
205
+
206
+ ## [0.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.1.8)
207
+
208
+ Tue, 23 Jan 2024 15:11:00 GMT
209
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.1.7..@fluentui/react-teaching-popover-preview_v0.1.8)
210
+
211
+ ### Patches
212
+
213
+ - Bump @fluentui/react-jsx-runtime to v9.0.28 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball)
214
+ - Bump @fluentui/react-utilities to v9.17.0 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball)
215
+ - Bump @fluentui/react-popover to v9.8.34 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball)
216
+ - Bump @fluentui/react-button to v9.3.66 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball)
217
+ - Bump @fluentui/react-tabster to v9.17.4 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball)
218
+ - Bump @fluentui/react-aria to v9.8.0 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball)
219
+ - Bump @fluentui/react-context-selector to v9.1.50 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball)
220
+
221
+ ## [0.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.1.7)
222
+
223
+ Thu, 18 Jan 2024 14:25:03 GMT
224
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.1.6..@fluentui/react-teaching-popover-preview_v0.1.7)
225
+
226
+ ### Patches
227
+
228
+ - Bump @fluentui/react-jsx-runtime to v9.0.27 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball)
229
+ - Bump @fluentui/react-utilities to v9.16.1 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball)
230
+ - Bump @fluentui/react-shared-contexts to v9.14.0 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball)
231
+ - Bump @fluentui/react-popover to v9.8.33 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball)
232
+ - Bump @fluentui/react-button to v9.3.65 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball)
233
+ - Bump @fluentui/react-tabster to v9.17.3 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball)
234
+ - Bump @fluentui/react-aria to v9.7.3 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball)
235
+ - Bump @fluentui/react-context-selector to v9.1.49 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball)
236
+
237
+ ## [0.1.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.1.6)
238
+
239
+ Wed, 17 Jan 2024 16:18:50 GMT
240
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.1.5..@fluentui/react-teaching-popover-preview_v0.1.6)
241
+
242
+ ### Patches
243
+
244
+ - Bump @fluentui/react-jsx-runtime to v9.0.26 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
245
+ - Bump @fluentui/react-utilities to v9.16.0 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
246
+ - Bump @fluentui/react-popover to v9.8.32 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
247
+ - Bump @fluentui/react-button to v9.3.64 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
248
+ - Bump @fluentui/react-tabster to v9.17.2 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
249
+ - Bump @fluentui/react-aria to v9.7.2 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
250
+ - Bump @fluentui/react-context-selector to v9.1.48 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
251
+
252
+ ## [0.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.1.5)
253
+
254
+ Tue, 16 Jan 2024 13:14:24 GMT
255
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.1.4..@fluentui/react-teaching-popover-preview_v0.1.5)
256
+
257
+ ### Patches
258
+
259
+ - Bump @fluentui/react-jsx-runtime to v9.0.25 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball)
260
+ - Bump @fluentui/react-popover to v9.8.31 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball)
261
+ - Bump @fluentui/react-button to v9.3.63 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball)
262
+ - Bump @fluentui/react-tabster to v9.17.1 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball)
263
+ - Bump @fluentui/react-aria to v9.7.1 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball)
264
+ - Bump @fluentui/react-context-selector to v9.1.47 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball)
265
+
266
+ ## [0.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.1.4)
267
+
268
+ Thu, 11 Jan 2024 09:04:29 GMT
269
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.1.3..@fluentui/react-teaching-popover-preview_v0.1.4)
270
+
271
+ ### Patches
272
+
273
+ - fix: Small style updates, changing 16px icons to 12px, slight padding changes ([PR #30270](https://github.com/microsoft/fluentui/pull/30270) by mifraser@microsoft.com)
274
+ - Bump @fluentui/react-popover to v9.8.30 ([PR #30259](https://github.com/microsoft/fluentui/pull/30259) by beachball)
275
+ - Bump @fluentui/react-button to v9.3.62 ([PR #30259](https://github.com/microsoft/fluentui/pull/30259) by beachball)
276
+ - Bump @fluentui/react-aria to v9.7.0 ([PR #30259](https://github.com/microsoft/fluentui/pull/30259) by beachball)
277
+
278
+ ## [0.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.1.3)
279
+
280
+ Tue, 09 Jan 2024 10:21:34 GMT
281
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.1.2..@fluentui/react-teaching-popover-preview_v0.1.3)
282
+
283
+ ### Patches
284
+
285
+ - Bump @fluentui/react-popover to v9.8.29 ([PR #30217](https://github.com/microsoft/fluentui/pull/30217) by beachball)
286
+
287
+ ## [0.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.1.2)
288
+
289
+ Mon, 08 Jan 2024 16:24:27 GMT
290
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.1.1..@fluentui/react-teaching-popover-preview_v0.1.2)
291
+
292
+ ### Patches
293
+
294
+ - Update react-icons to 2.0.224 ([PR #30078](https://github.com/microsoft/fluentui/pull/30078) by ololubek@microsoft.com)
295
+ - Bump @fluentui/react-jsx-runtime to v9.0.24 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball)
296
+ - Bump @fluentui/react-utilities to v9.15.6 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball)
297
+ - Bump @fluentui/react-popover to v9.8.28 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball)
298
+ - Bump @fluentui/react-button to v9.3.61 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball)
299
+ - Bump @fluentui/react-tabster to v9.17.0 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball)
300
+ - Bump @fluentui/react-aria to v9.6.2 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball)
301
+ - Bump @fluentui/react-context-selector to v9.1.46 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball)
302
+
303
+ ## [0.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.1.1)
304
+
305
+ Wed, 03 Jan 2024 09:26:44 GMT
306
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-teaching-popover-preview_v0.1.0..@fluentui/react-teaching-popover-preview_v0.1.1)
307
+
308
+ ### Patches
309
+
310
+ - Bump @fluentui/react-jsx-runtime to v9.0.23 ([PR #30163](https://github.com/microsoft/fluentui/pull/30163) by beachball)
311
+ - Bump @fluentui/react-utilities to v9.15.5 ([PR #30163](https://github.com/microsoft/fluentui/pull/30163) by beachball)
312
+ - Bump @fluentui/react-popover to v9.8.27 ([PR #30163](https://github.com/microsoft/fluentui/pull/30163) by beachball)
313
+ - Bump @fluentui/react-button to v9.3.60 ([PR #30163](https://github.com/microsoft/fluentui/pull/30163) by beachball)
314
+ - Bump @fluentui/react-tabster to v9.16.1 ([PR #30163](https://github.com/microsoft/fluentui/pull/30163) by beachball)
315
+ - Bump @fluentui/react-aria to v9.6.1 ([PR #30163](https://github.com/microsoft/fluentui/pull/30163) by beachball)
316
+ - Bump @fluentui/react-context-selector to v9.1.45 ([PR #30163](https://github.com/microsoft/fluentui/pull/30163) by beachball)
317
+
318
+ ## [0.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-teaching-popover-preview_v0.1.0)
319
+
320
+ Thu, 21 Dec 2023 17:00:41 GMT
321
+
322
+ ### Minor changes
323
+
324
+ - feat: Release react-teaching-popover-preview package ([PR #30140](https://github.com/microsoft/fluentui/pull/30140) by behowell@microsoft.com)
package/LICENSE ADDED
@@ -0,0 +1,15 @@
1
+ @fluentui/react-teaching-popover-preview
2
+
3
+ Copyright (c) Microsoft Corporation
4
+
5
+ All rights reserved.
6
+
7
+ MIT License
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
14
+
15
+ Note: Usage of the fonts and icons referenced in Fluent UI React is subject to the terms listed at https://aka.ms/fluentui-assets-license
package/README.md ADDED
@@ -0,0 +1,66 @@
1
+ # @fluentui/react-teaching-popover
2
+
3
+ **React Teaching Popover components for [Fluent UI React](https://react.fluentui.dev/)**
4
+
5
+ A Teaching Popover is a structured popover to showcase information about a new component feature to a user. It should be attached via a trigger to a button, info tip, or component - or for further extension, callout(s). TeachingPopover can also be displayed programmatically, in this case it's intent should be announced to the user on launch to define context for accessibility users.
6
+
7
+ For a simple feature, a single paged TeachingPopover can be used to display core information, while extensive reading can be linked via a 'Learn More' secondary action.
8
+
9
+ For more complicated features, we recommend using the TeachingPopoverCarousel, this will enable multiple steps of information with an associating title/image, and can guide the user through multi-step tutorials.
10
+
11
+ ## Sample Code
12
+
13
+ ```jsx
14
+ <TeachingPopover>
15
+ <TeachingPopoverTrigger>
16
+ <Button>TeachingPopover trigger</Button>
17
+ </TeachingPopoverTrigger>
18
+ <TeachingPopoverSurface>
19
+ <TeachingPopoverHeader>Tips</TeachingPopoverHeader>
20
+ <TeachingPopoverBody media={<Image alt="test image" fit="cover" src={swapImage} />}>
21
+ <TeachingPopoverTitle>Teaching Bubble Title</TeachingPopoverTitle>
22
+ <div>This is a teaching popover body</div>
23
+ </TeachingPopoverBody>
24
+ <TeachingPopoverFooter primary="Learn more" secondary="Got it" />
25
+ </TeachingPopoverSurface>
26
+ </TeachingPopover>
27
+ ```
28
+
29
+ ## Sample Code - Carousel
30
+
31
+ ```jsx
32
+ <TeachingPopover>
33
+ <TeachingPopoverTrigger>
34
+ <Button>TeachingPopover trigger</Button>
35
+ </TeachingPopoverTrigger>
36
+ <TeachingPopoverSurface>
37
+ <TeachingPopoverHeader>Tips</TeachingPopoverHeader>
38
+ <TeachingPopoverCarousel defaultValue="test-0">
39
+ <TeachingPopoverCarouselCard value="test-0">
40
+ <TeachingPopoverBody media={<Image alt="test image" fit="cover" src={swapImage} />}>
41
+ <TeachingPopoverTitle>Teaching Bubble Title</TeachingPopoverTitle>
42
+ <div>This is page: 1</div>
43
+ </TeachingPopoverBody>
44
+ </TeachingPopoverCarouselCard>
45
+
46
+ <TeachingPopoverCarouselCard value="test-1">
47
+ <TeachingPopoverBody media={<Image alt="test image" fit="cover" src={swapImage} />}>
48
+ <TeachingPopoverTitle>Teaching Bubble Title</TeachingPopoverTitle>
49
+ <div>This is page: 2</div>
50
+ </TeachingPopoverBody>
51
+ </TeachingPopoverCarouselCard>
52
+
53
+ <TeachingPopoverCarouselCard value="test-3">
54
+ <TeachingPopoverBody media={<Image alt="test image" fit="cover" src={swapImage} />}>
55
+ <TeachingPopoverTitle>Teaching Bubble Title</TeachingPopoverTitle>
56
+ <div>This is page: 3</div>
57
+ </TeachingPopoverBody>
58
+ </TeachingPopoverCarouselCard>
59
+
60
+ <TeachingPopoverCarouselFooter next="Next" previous="Previous" initialStepText="Close" finalStepText="Finish">
61
+ <TeachingPopoverCarouselNav>{() => <TeachingPopoverCarouselNavButton />}</TeachingPopoverCarouselNav>
62
+ </TeachingPopoverCarouselFooter>
63
+ </TeachingPopoverCarousel>
64
+ </TeachingPopoverSurface>
65
+ </TeachingPopover>
66
+ ```