@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
@@ -0,0 +1,108 @@
1
+ import { shorthands, __styles, mergeClasses } from '@griffel/react';
2
+ import { createCustomFocusIndicatorStyle } from '@fluentui/react-tabster';
3
+ import { tokens, typographyStyles } from '@fluentui/react-theme';
4
+ export const teachingPopoverHeaderClassNames = {
5
+ root: 'fui-TeachingPopoverHeader',
6
+ dismissButton: 'fui-TeachingPopoverHeader__dismissButton',
7
+ icon: 'fui-TeachingPopoverHeader__icon'
8
+ };
9
+ const useStyles = /*#__PURE__*/__styles({
10
+ root: {
11
+ mc9l5x: "f22iagw",
12
+ Beiy3e4: "f1063pyq",
13
+ sj55zd: "f11d4kpn",
14
+ Bhrd7zp: "fl43uef",
15
+ Be2twd7: "fy9rknc",
16
+ Bg96gwp: "fwrc4pm",
17
+ Byoj8tv: "f14wxoun",
18
+ Bt984gj: "f122n59",
19
+ B6of3ja: "f1jkagg5",
20
+ jrapky: "fi2ljxd"
21
+ },
22
+ rootBrand: {
23
+ sj55zd: "f1phragk"
24
+ },
25
+ dismissButton: {
26
+ sj55zd: "fkfq4zb",
27
+ qhf8xq: "f10pi13n",
28
+ B4j52fo: "f192inf7",
29
+ Bekrc4i: ["f5tn483", "f1ojsxk5"],
30
+ Bn0qgzm: "f1vxd6vx",
31
+ ibv6hh: ["f1ojsxk5", "f5tn483"],
32
+ icvyot: "fzkkow9",
33
+ vrafjx: ["f1n71otn", "f1deefiw"],
34
+ oivjwe: "fg706s2",
35
+ wvpqe5: ["fjik90z", "fcdblym"],
36
+ g2u3we: "fghlq4f",
37
+ h3c5rm: ["f1gn591s", "fjscplz"],
38
+ B9xav0g: "fb073pr",
39
+ zhjwy3: ["fjscplz", "f1gn591s"],
40
+ mc9l5x: "f22iagw",
41
+ Bt984gj: "f122n59",
42
+ Bceei9c: "f1k6fduh",
43
+ Bahqtrf: "fk6fouc",
44
+ Be2twd7: "fkhj508",
45
+ Bhrd7zp: "figsok6",
46
+ Bg96gwp: "f1i3iumi",
47
+ De3pzq: "f1c21dwh",
48
+ B7ck84d: "f1ewtqcl",
49
+ B7oj6ja: ["f3fg2lr", "f13av6d4"],
50
+ Bbmb7ep: ["fzi6hpg", "fyowgf4"],
51
+ Jyy4pa: "f1lfeew",
52
+ z8tnut: "f1ywm7hm",
53
+ z189sj: ["f7x41pl", "fruq291"],
54
+ Byoj8tv: "f14wxoun",
55
+ uwmqm3: ["fruq291", "f7x41pl"],
56
+ Bn4voq9: "f1p7hgxw",
57
+ g9k6zt: "f9znhxp",
58
+ Bfpq7zp: "fqrak0z",
59
+ kdpuga: ["f1o2ludy", "f1kjnpwc"],
60
+ Bw81rd7: ["f1kjnpwc", "f1o2ludy"],
61
+ B6xbmo0: ["fxmnebo", "f1witrsb"],
62
+ dm238s: ["f1witrsb", "fxmnebo"],
63
+ B8q5s1w: "f8hki3x",
64
+ Bci5o5g: ["f1d2448m", "ffh67wi"],
65
+ n8qw10: "f1bjia2o",
66
+ Bdrgwmp: ["ffh67wi", "f1d2448m"]
67
+ },
68
+ dismissBrand: {
69
+ sj55zd: "f1phragk"
70
+ },
71
+ icon: {
72
+ Bqenvij: "fsv12xs",
73
+ a9b677: "f19bqwv",
74
+ Bg96gwp: "fwrc4pm",
75
+ Be2twd7: "fy9rknc",
76
+ Bt984gj: "f122n59",
77
+ B7ck84d: "f1e4lqlz",
78
+ mc9l5x: "ftuwxu6",
79
+ Brf1p80: "f4d9j23",
80
+ w71qe1: "f1iuv45f",
81
+ ha4doy: "fmrv4ls",
82
+ qhf8xq: "f10pi13n",
83
+ De3pzq: "f1c21dwh",
84
+ sj55zd: "fkfq4zb",
85
+ Bokbzmb: "fpvr8q1"
86
+ },
87
+ iconBrand: {
88
+ sj55zd: "f1phragk"
89
+ }
90
+ }, {
91
+ d: [".f22iagw{display:flex;}", ".f1063pyq{flex-direction:row;}", ".f11d4kpn{color:var(--colorNeutralForeground3);}", ".fl43uef{font-weight:var(--fontWeightSemibold);}", ".fy9rknc{font-size:var(--fontSizeBase200);}", ".fwrc4pm{line-height:var(--lineHeightBase200);}", ".f14wxoun{padding-bottom:var(--spacingVerticalXS);}", ".f122n59{align-items:center;}", ".f1jkagg5{margin-top:var(--spacingHorizontalNone);}", ".fi2ljxd{margin-bottom:var(--spacingHorizontalNone);}", ".f1phragk{color:var(--colorNeutralForegroundOnBrand);}", ".fkfq4zb{color:var(--colorNeutralForeground2);}", ".f10pi13n{position:relative;}", ".f192inf7{border-top-width:var(--strokeWidthThin);}", ".f5tn483{border-right-width:var(--strokeWidthThin);}", ".f1ojsxk5{border-left-width:var(--strokeWidthThin);}", ".f1vxd6vx{border-bottom-width:var(--strokeWidthThin);}", ".fzkkow9{border-top-style:solid;}", ".f1n71otn{border-right-style:none;}", ".f1deefiw{border-left-style:none;}", ".fg706s2{border-bottom-style:solid;}", ".fjik90z{border-left-style:solid;}", ".fcdblym{border-right-style:solid;}", ".fghlq4f{border-top-color:var(--colorTransparentStroke);}", ".f1gn591s{border-right-color:var(--colorTransparentStroke);}", ".fjscplz{border-left-color:var(--colorTransparentStroke);}", ".fb073pr{border-bottom-color:var(--colorTransparentStroke);}", ".f1k6fduh{cursor:pointer;}", ".fk6fouc{font-family:var(--fontFamilyBase);}", ".fkhj508{font-size:var(--fontSizeBase300);}", ".figsok6{font-weight:var(--fontWeightRegular);}", ".f1i3iumi{line-height:var(--lineHeightBase300);}", ".f1c21dwh{background-color:var(--colorTransparentBackground);}", ".f1ewtqcl{box-sizing:border-box;}", ".f3fg2lr{border-top-right-radius:var(--borderRadiusNone);}", ".f13av6d4{border-top-left-radius:var(--borderRadiusNone);}", ".fzi6hpg{border-bottom-right-radius:var(--borderRadiusNone);}", ".fyowgf4{border-bottom-left-radius:var(--borderRadiusNone);}", ".f1lfeew{-webkit-margin-start:auto;margin-inline-start:auto;}", ".f1ywm7hm{padding-top:var(--spacingVerticalXS);}", ".f7x41pl{padding-right:var(--spacingHorizontalXS);}", ".fruq291{padding-left:var(--spacingHorizontalXS);}", ".f1p7hgxw[data-fui-focus-visible]{outline-width:var(--strokeWidthThick);}", ".f9znhxp[data-fui-focus-visible]{outline-style:solid;}", ".fqrak0z[data-fui-focus-visible]{outline-color:var(--colorStrokeFocus2);}", ".f1o2ludy[data-fui-focus-visible]{border-bottom-right-radius:var(--borderRadiusMedium);}", ".f1kjnpwc[data-fui-focus-visible]{border-bottom-left-radius:var(--borderRadiusMedium);}", ".fxmnebo[data-fui-focus-visible]{border-top-right-radius:var(--borderRadiusMedium);}", ".f1witrsb[data-fui-focus-visible]{border-top-left-radius:var(--borderRadiusMedium);}", ".f8hki3x[data-fui-focus-visible]{border-top-color:transparent;}", ".f1d2448m[data-fui-focus-visible]{border-right-color:transparent;}", ".ffh67wi[data-fui-focus-visible]{border-left-color:transparent;}", ".f1bjia2o[data-fui-focus-visible]{border-bottom-color:transparent;}", ".fsv12xs{height:var(--fontSizeBase200);}", ".f19bqwv{width:var(--fontSizeBase200);}", ".f1e4lqlz{box-sizing:content-box;}", ".ftuwxu6{display:inline-flex;}", ".f4d9j23{justify-content:center;}", ".f1iuv45f{text-decoration-line:none;}", ".fmrv4ls{vertical-align:middle;}", ".fpvr8q1{-webkit-margin-end:var(--spacingHorizontalXS);margin-inline-end:var(--spacingHorizontalXS);}"]
92
+ });
93
+ /** Applies style classnames to slots */
94
+ export const useTeachingPopoverHeaderStyles_unstable = state => {
95
+ const styles = useStyles();
96
+ const {
97
+ appearance
98
+ } = state;
99
+ state.root.className = mergeClasses(teachingPopoverHeaderClassNames.root, styles.root, appearance === 'brand' && styles.rootBrand, state.root.className);
100
+ if (state.dismissButton) {
101
+ state.dismissButton.className = mergeClasses(teachingPopoverHeaderClassNames.dismissButton, styles.dismissButton, appearance === 'brand' ? styles.dismissBrand : undefined, state.dismissButton.className);
102
+ }
103
+ if (state.icon) {
104
+ state.icon.className = mergeClasses(teachingPopoverHeaderClassNames.icon, styles.icon, appearance === 'brand' ? styles.iconBrand : undefined, state.icon.className);
105
+ }
106
+ return state;
107
+ };
108
+ //# sourceMappingURL=useTeachingPopoverHeaderStyles.styles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["shorthands","__styles","mergeClasses","createCustomFocusIndicatorStyle","tokens","typographyStyles","teachingPopoverHeaderClassNames","root","dismissButton","icon","useStyles","mc9l5x","Beiy3e4","sj55zd","Bhrd7zp","Be2twd7","Bg96gwp","Byoj8tv","Bt984gj","B6of3ja","jrapky","rootBrand","qhf8xq","B4j52fo","Bekrc4i","Bn0qgzm","ibv6hh","icvyot","vrafjx","oivjwe","wvpqe5","g2u3we","h3c5rm","B9xav0g","zhjwy3","Bceei9c","Bahqtrf","De3pzq","B7ck84d","B7oj6ja","Bbmb7ep","Jyy4pa","z8tnut","z189sj","uwmqm3","Bn4voq9","g9k6zt","Bfpq7zp","kdpuga","Bw81rd7","B6xbmo0","dm238s","B8q5s1w","Bci5o5g","n8qw10","Bdrgwmp","dismissBrand","Bqenvij","a9b677","Brf1p80","w71qe1","ha4doy","Bokbzmb","iconBrand","d","useTeachingPopoverHeaderStyles_unstable","state","styles","appearance","className","undefined"],"sources":["useTeachingPopoverHeaderStyles.styles.js"],"sourcesContent":["import { shorthands, makeStyles, mergeClasses } from '@griffel/react';\nimport { createCustomFocusIndicatorStyle } from '@fluentui/react-tabster';\nimport { tokens, typographyStyles } from '@fluentui/react-theme';\nexport const teachingPopoverHeaderClassNames = {\n root: 'fui-TeachingPopoverHeader',\n dismissButton: 'fui-TeachingPopoverHeader__dismissButton',\n icon: 'fui-TeachingPopoverHeader__icon'\n};\nconst useStyles = makeStyles({\n root: {\n display: 'flex',\n flexDirection: 'row',\n color: tokens.colorNeutralForeground3,\n fontWeight: tokens.fontWeightSemibold,\n fontSize: tokens.fontSizeBase200,\n lineHeight: tokens.lineHeightBase200,\n paddingBottom: tokens.spacingVerticalXS,\n alignItems: 'center',\n marginTop: tokens.spacingHorizontalNone,\n marginBottom: tokens.spacingHorizontalNone\n },\n rootBrand: {\n color: tokens.colorNeutralForegroundOnBrand\n },\n dismissButton: {\n color: tokens.colorNeutralForeground2,\n position: 'relative',\n ...shorthands.border(tokens.strokeWidthThin, 'solid', tokens.colorTransparentStroke),\n display: 'flex',\n alignItems: 'center',\n cursor: 'pointer',\n ...typographyStyles.body1,\n backgroundColor: tokens.colorTransparentBackground,\n boxSizing: 'border-box',\n borderTopRightRadius: tokens.borderRadiusNone,\n borderBottomRightRadius: tokens.borderRadiusNone,\n borderRightStyle: 'none',\n marginInlineStart: 'auto',\n ...shorthands.padding(tokens.spacingVerticalXS, tokens.spacingHorizontalXS),\n ...createCustomFocusIndicatorStyle({\n ...shorthands.outline(tokens.strokeWidthThick, 'solid', tokens.colorStrokeFocus2),\n ...shorthands.borderRadius(tokens.borderRadiusMedium),\n ...shorthands.borderColor('transparent')\n })\n },\n dismissBrand: {\n color: tokens.colorNeutralForegroundOnBrand\n },\n icon: {\n height: tokens.fontSizeBase200,\n width: tokens.fontSizeBase200,\n lineHeight: tokens.lineHeightBase200,\n fontSize: tokens.fontSizeBase200,\n alignItems: 'center',\n boxSizing: 'content-box',\n display: 'inline-flex',\n justifyContent: 'center',\n textDecorationLine: 'none',\n verticalAlign: 'middle',\n position: 'relative',\n backgroundColor: tokens.colorTransparentBackground,\n color: tokens.colorNeutralForeground2,\n marginInlineEnd: tokens.spacingHorizontalXS\n },\n iconBrand: {\n color: tokens.colorNeutralForegroundOnBrand\n }\n});\n/** Applies style classnames to slots */ export const useTeachingPopoverHeaderStyles_unstable = (state)=>{\n const styles = useStyles();\n const { appearance } = state;\n state.root.className = mergeClasses(teachingPopoverHeaderClassNames.root, styles.root, appearance === 'brand' && styles.rootBrand, state.root.className);\n if (state.dismissButton) {\n state.dismissButton.className = mergeClasses(teachingPopoverHeaderClassNames.dismissButton, styles.dismissButton, appearance === 'brand' ? styles.dismissBrand : undefined, state.dismissButton.className);\n }\n if (state.icon) {\n state.icon.className = mergeClasses(teachingPopoverHeaderClassNames.icon, styles.icon, appearance === 'brand' ? styles.iconBrand : undefined, state.icon.className);\n }\n return state;\n};\n"],"mappings":"AAAA,SAASA,UAAU,EAAAC,QAAA,EAAcC,YAAY,QAAQ,gBAAgB;AACrE,SAASC,+BAA+B,QAAQ,yBAAyB;AACzE,SAASC,MAAM,EAAEC,gBAAgB,QAAQ,uBAAuB;AAChE,OAAO,MAAMC,+BAA+B,GAAG;EAC3CC,IAAI,EAAE,2BAA2B;EACjCC,aAAa,EAAE,0CAA0C;EACzDC,IAAI,EAAE;AACV,CAAC;AACD,MAAMC,SAAS,gBAAGT,QAAA;EAAAM,IAAA;IAAAI,MAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,MAAA;EAAA;EAAAC,SAAA;IAAAR,MAAA;EAAA;EAAAL,aAAA;IAAAK,MAAA;IAAAS,MAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAvB,MAAA;IAAAO,OAAA;IAAAiB,OAAA;IAAAC,OAAA;IAAArB,OAAA;IAAAD,OAAA;IAAAE,OAAA;IAAAqB,MAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,MAAA;IAAA1B,OAAA;IAAA2B,MAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,OAAA;EAAA;EAAAC,YAAA;IAAA3C,MAAA;EAAA;EAAAJ,IAAA;IAAAgD,OAAA;IAAAC,MAAA;IAAA1C,OAAA;IAAAD,OAAA;IAAAG,OAAA;IAAAoB,OAAA;IAAA3B,MAAA;IAAAgD,OAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAvC,MAAA;IAAAe,MAAA;IAAAxB,MAAA;IAAAiD,OAAA;EAAA;EAAAC,SAAA;IAAAlD,MAAA;EAAA;AAAA;EAAAmD,CAAA;AAAA,CA2DjB,CAAC;AACF;AAAyC,OAAO,MAAMC,uCAAuC,GAAIC,KAAK,IAAG;EACrG,MAAMC,MAAM,GAAGzD,SAAS,CAAC,CAAC;EAC1B,MAAM;IAAE0D;EAAW,CAAC,GAAGF,KAAK;EAC5BA,KAAK,CAAC3D,IAAI,CAAC8D,SAAS,GAAGnE,YAAY,CAACI,+BAA+B,CAACC,IAAI,EAAE4D,MAAM,CAAC5D,IAAI,EAAE6D,UAAU,KAAK,OAAO,IAAID,MAAM,CAAC9C,SAAS,EAAE6C,KAAK,CAAC3D,IAAI,CAAC8D,SAAS,CAAC;EACxJ,IAAIH,KAAK,CAAC1D,aAAa,EAAE;IACrB0D,KAAK,CAAC1D,aAAa,CAAC6D,SAAS,GAAGnE,YAAY,CAACI,+BAA+B,CAACE,aAAa,EAAE2D,MAAM,CAAC3D,aAAa,EAAE4D,UAAU,KAAK,OAAO,GAAGD,MAAM,CAACX,YAAY,GAAGc,SAAS,EAAEJ,KAAK,CAAC1D,aAAa,CAAC6D,SAAS,CAAC;EAC9M;EACA,IAAIH,KAAK,CAACzD,IAAI,EAAE;IACZyD,KAAK,CAACzD,IAAI,CAAC4D,SAAS,GAAGnE,YAAY,CAACI,+BAA+B,CAACG,IAAI,EAAE0D,MAAM,CAAC1D,IAAI,EAAE2D,UAAU,KAAK,OAAO,GAAGD,MAAM,CAACJ,SAAS,GAAGO,SAAS,EAAEJ,KAAK,CAACzD,IAAI,CAAC4D,SAAS,CAAC;EACvK;EACA,OAAOH,KAAK;AAChB,CAAC"}
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+ import { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';
3
+ import { useTeachingPopoverSurface_unstable } from './useTeachingPopoverSurface';
4
+ import { useTeachingPopoverSurfaceStyles_unstable } from './useTeachingPopoverSurfaceStyles.styles';
5
+ import { renderTeachingPopoverSurface_unstable } from './renderTeachingPopoverSurface';
6
+ /**
7
+ * TeachingPopoverSurface component renders react children in a positioned box
8
+ *
9
+ * TeachingPopoverSurface is a direct extension of PopoverSurface, with it's own styling context hooks available.
10
+ */ export const TeachingPopoverSurface = /*#__PURE__*/ React.forwardRef((props, ref)=>{
11
+ const state = useTeachingPopoverSurface_unstable(props, ref);
12
+ useTeachingPopoverSurfaceStyles_unstable(state);
13
+ useCustomStyleHook_unstable('useTeachingPopoverSurfaceStyles_unstable')(state);
14
+ return renderTeachingPopoverSurface_unstable(state);
15
+ });
16
+ TeachingPopoverSurface.displayName = 'TeachingPopoverSurface';
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["TeachingPopoverSurface.tsx"],"sourcesContent":["import * as React from 'react';\nimport type { ForwardRefComponent } from '@fluentui/react-utilities';\nimport { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';\nimport { TeachingPopoverSurfaceProps } from './TeachingPopoverSurface.types';\nimport { useTeachingPopoverSurface_unstable } from './useTeachingPopoverSurface';\nimport { useTeachingPopoverSurfaceStyles_unstable } from './useTeachingPopoverSurfaceStyles.styles';\nimport { renderTeachingPopoverSurface_unstable } from './renderTeachingPopoverSurface';\n\n/**\n * TeachingPopoverSurface component renders react children in a positioned box\n *\n * TeachingPopoverSurface is a direct extension of PopoverSurface, with it's own styling context hooks available.\n */\nexport const TeachingPopoverSurface: ForwardRefComponent<TeachingPopoverSurfaceProps> = React.forwardRef(\n (props, ref) => {\n const state = useTeachingPopoverSurface_unstable(props, ref);\n\n useTeachingPopoverSurfaceStyles_unstable(state);\n\n useCustomStyleHook_unstable('useTeachingPopoverSurfaceStyles_unstable')(state);\n\n return renderTeachingPopoverSurface_unstable(state);\n },\n);\n\nTeachingPopoverSurface.displayName = 'TeachingPopoverSurface';\n"],"names":["React","useCustomStyleHook_unstable","useTeachingPopoverSurface_unstable","useTeachingPopoverSurfaceStyles_unstable","renderTeachingPopoverSurface_unstable","TeachingPopoverSurface","forwardRef","props","ref","state","displayName"],"mappings":"AAAA,YAAYA,WAAW,QAAQ;AAE/B,SAASC,2BAA2B,QAAQ,kCAAkC;AAE9E,SAASC,kCAAkC,QAAQ,8BAA8B;AACjF,SAASC,wCAAwC,QAAQ,2CAA2C;AACpG,SAASC,qCAAqC,QAAQ,iCAAiC;AAEvF;;;;CAIC,GACD,OAAO,MAAMC,uCAA2EL,MAAMM,UAAU,CACtG,CAACC,OAAOC;IACN,MAAMC,QAAQP,mCAAmCK,OAAOC;IAExDL,yCAAyCM;IAEzCR,4BAA4B,4CAA4CQ;IAExE,OAAOL,sCAAsCK;AAC/C,GACA;AAEFJ,uBAAuBK,WAAW,GAAG"}
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["TeachingPopoverSurface.types.ts"],"sourcesContent":["import type { ComponentProps } from '@fluentui/react-utilities';\nimport { PopoverSurfaceState } from '@fluentui/react-popover';\nimport { PopoverSurfaceSlots } from '@fluentui/react-popover';\n\n/**\n * TeachingPopoverSurface Props\n */\nexport type TeachingPopoverSurfaceProps = ComponentProps<TeachingPopoverSurfaceSlots>;\n\n/**\n * Names of the slots in TeachingPopoverSurface\n */\nexport type TeachingPopoverSurfaceSlots = PopoverSurfaceSlots;\n\n/**\n * TeachingPopoverSurface State\n */\nexport type TeachingPopoverSurfaceState = PopoverSurfaceState;\n"],"names":[],"mappings":"AAAA,WAiB8D"}
@@ -0,0 +1,5 @@
1
+ export * from './TeachingPopoverSurface';
2
+ export * from './TeachingPopoverSurface.types';
3
+ export * from './renderTeachingPopoverSurface';
4
+ export * from './useTeachingPopoverSurface';
5
+ export * from './useTeachingPopoverSurfaceStyles.styles';
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["index.ts"],"sourcesContent":["export * from './TeachingPopoverSurface';\nexport * from './TeachingPopoverSurface.types';\nexport * from './renderTeachingPopoverSurface';\nexport * from './useTeachingPopoverSurface';\nexport * from './useTeachingPopoverSurfaceStyles.styles';\n"],"names":[],"mappings":"AAAA,cAAc,2BAA2B;AACzC,cAAc,iCAAiC;AAC/C,cAAc,iCAAiC;AAC/C,cAAc,8BAA8B;AAC5C,cAAc,2CAA2C"}
@@ -0,0 +1,9 @@
1
+ /** @jsxRuntime classic */ /** @jsx createElement */ import { assertSlots } from '@fluentui/react-utilities';
2
+ import { renderPopoverSurface_unstable } from '@fluentui/react-popover';
3
+ /**
4
+ * Render the final JSX of PopoverSurface
5
+ */ export const renderTeachingPopoverSurface_unstable = (state)=>{
6
+ assertSlots(state);
7
+ // For now we are just extending the base surface
8
+ return renderPopoverSurface_unstable(state);
9
+ };
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["renderTeachingPopoverSurface.tsx"],"sourcesContent":["/** @jsxRuntime classic */\n/** @jsx createElement */\n\nimport type { TeachingPopoverSurfaceSlots, TeachingPopoverSurfaceState } from './TeachingPopoverSurface.types';\nimport { assertSlots } from '@fluentui/react-utilities';\nimport { renderPopoverSurface_unstable } from '@fluentui/react-popover';\n\n/**\n * Render the final JSX of PopoverSurface\n */\nexport const renderTeachingPopoverSurface_unstable = (state: TeachingPopoverSurfaceState) => {\n assertSlots<TeachingPopoverSurfaceSlots>(state);\n\n // For now we are just extending the base surface\n return renderPopoverSurface_unstable(state);\n};\n"],"names":["assertSlots","renderPopoverSurface_unstable","renderTeachingPopoverSurface_unstable","state"],"mappings":"AAAA,wBAAwB,GACxB,uBAAuB,GAGvB,SAASA,WAAW,QAAQ,4BAA4B;AACxD,SAASC,6BAA6B,QAAQ,0BAA0B;AAExE;;CAEC,GACD,OAAO,MAAMC,wCAAwC,CAACC;IACpDH,YAAyCG;IAEzC,iDAAiD;IACjD,OAAOF,8BAA8BE;AACvC,EAAE"}
@@ -0,0 +1,14 @@
1
+ import * as React from 'react';
2
+ import { usePopoverSurface_unstable } from '@fluentui/react-popover';
3
+ /**
4
+ * Create the state required to render TeachingPopoverSurface.
5
+ *
6
+ * The returned state can be modified with hooks such as useTeachingPopoverSurfaceStyles_unstable,
7
+ * before being passed to renderTeachingPopoverSurface_unstable.
8
+ *
9
+ * @param props - props from this instance of TeachingPopoverSurface
10
+ * @param ref - reference to root HTMLDivElement of TeachingPopoverSurface
11
+ */ export const useTeachingPopoverSurface_unstable = (props, ref)=>{
12
+ const state = usePopoverSurface_unstable(props, ref);
13
+ return state;
14
+ };
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["useTeachingPopoverSurface.ts"],"sourcesContent":["import * as React from 'react';\nimport type { TeachingPopoverSurfaceProps, TeachingPopoverSurfaceState } from './TeachingPopoverSurface.types';\nimport { usePopoverSurface_unstable } from '@fluentui/react-popover';\n\n/**\n * Create the state required to render TeachingPopoverSurface.\n *\n * The returned state can be modified with hooks such as useTeachingPopoverSurfaceStyles_unstable,\n * before being passed to renderTeachingPopoverSurface_unstable.\n *\n * @param props - props from this instance of TeachingPopoverSurface\n * @param ref - reference to root HTMLDivElement of TeachingPopoverSurface\n */\nexport const useTeachingPopoverSurface_unstable = (\n props: TeachingPopoverSurfaceProps,\n ref: React.Ref<HTMLDivElement>,\n): TeachingPopoverSurfaceState => {\n const state = usePopoverSurface_unstable(props, ref);\n\n return state;\n};\n"],"names":["React","usePopoverSurface_unstable","useTeachingPopoverSurface_unstable","props","ref","state"],"mappings":"AAAA,YAAYA,WAAW,QAAQ;AAE/B,SAASC,0BAA0B,QAAQ,0BAA0B;AAErE;;;;;;;;CAQC,GACD,OAAO,MAAMC,qCAAqC,CAChDC,OACAC;IAEA,MAAMC,QAAQJ,2BAA2BE,OAAOC;IAEhD,OAAOC;AACT,EAAE"}
@@ -0,0 +1,37 @@
1
+ import { __styles, mergeClasses, shorthands } from '@griffel/react';
2
+ import { usePopoverSurfaceStyles_unstable } from '@fluentui/react-popover';
3
+ import { tokens } from '@fluentui/react-theme';
4
+ export const teachingPopoverSurfaceClassNames = {
5
+ root: 'fui-TeachingPopoverSurface'
6
+ };
7
+ const useStyles = /*#__PURE__*/__styles({
8
+ root: {
9
+ z8tnut: "fikn0iw",
10
+ z189sj: ["f1njcayn", "f1k4q41u"],
11
+ Byoj8tv: "fdxej3c",
12
+ uwmqm3: ["f1k4q41u", "f1njcayn"],
13
+ Bbmb7ep: ["fnivh3a", "fc7yr5o"],
14
+ Beyfa6y: ["fc7yr5o", "fnivh3a"],
15
+ B7oj6ja: ["f1el4m67", "f8yange"],
16
+ Btl43ni: ["f8yange", "f1el4m67"],
17
+ B4j52fo: "f1pit55b",
18
+ Bekrc4i: ["f1orqat1", "ffbvwxd"],
19
+ Bn0qgzm: "f136mcbi",
20
+ ibv6hh: ["ffbvwxd", "f1orqat1"],
21
+ a9b677: "f1nfxovz",
22
+ B7ck84d: "f1ewtqcl"
23
+ }
24
+ }, {
25
+ d: [".fikn0iw{padding-top:var(--spacingVerticalL);}", ".f1njcayn{padding-right:var(--spacingVerticalL);}", ".f1k4q41u{padding-left:var(--spacingVerticalL);}", ".fdxej3c{padding-bottom:var(--spacingVerticalL);}", ".fnivh3a{border-bottom-right-radius:var(--borderRadiusXLarge);}", ".fc7yr5o{border-bottom-left-radius:var(--borderRadiusXLarge);}", ".f1el4m67{border-top-right-radius:var(--borderRadiusXLarge);}", ".f8yange{border-top-left-radius:var(--borderRadiusXLarge);}", ".f1pit55b{border-top-width:0px;}", ".f1orqat1{border-right-width:0px;}", ".ffbvwxd{border-left-width:0px;}", ".f136mcbi{border-bottom-width:0px;}", ".f1nfxovz{width:320px;}", ".f1ewtqcl{box-sizing:border-box;}"]
26
+ });
27
+ /**
28
+ * Apply styling to the TeachingPopoverSurface slots based on the state
29
+ */
30
+ export const useTeachingPopoverSurfaceStyles_unstable = state => {
31
+ const styles = useStyles();
32
+ // Make sure to merge teaching bubble surface prior to popover styles
33
+ state.root.className = mergeClasses(teachingPopoverSurfaceClassNames.root, styles.root, state.root.className);
34
+ const updatedState = usePopoverSurfaceStyles_unstable(state);
35
+ return updatedState;
36
+ };
37
+ //# sourceMappingURL=useTeachingPopoverSurfaceStyles.styles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["__styles","mergeClasses","shorthands","usePopoverSurfaceStyles_unstable","tokens","teachingPopoverSurfaceClassNames","root","useStyles","z8tnut","z189sj","Byoj8tv","uwmqm3","Bbmb7ep","Beyfa6y","B7oj6ja","Btl43ni","B4j52fo","Bekrc4i","Bn0qgzm","ibv6hh","a9b677","B7ck84d","d","useTeachingPopoverSurfaceStyles_unstable","state","styles","className","updatedState"],"sources":["useTeachingPopoverSurfaceStyles.styles.js"],"sourcesContent":["import { makeStyles, mergeClasses, shorthands } from '@griffel/react';\nimport { usePopoverSurfaceStyles_unstable } from '@fluentui/react-popover';\nimport { tokens } from '@fluentui/react-theme';\nexport const teachingPopoverSurfaceClassNames = {\n root: 'fui-TeachingPopoverSurface'\n};\nconst useStyles = makeStyles({\n root: {\n ...shorthands.padding(tokens.spacingVerticalL, tokens.spacingVerticalL),\n ...shorthands.borderRadius(tokens.borderRadiusXLarge),\n ...shorthands.borderWidth('0px'),\n width: '320px',\n boxSizing: 'border-box'\n }\n});\n/**\n * Apply styling to the TeachingPopoverSurface slots based on the state\n */ export const useTeachingPopoverSurfaceStyles_unstable = (state)=>{\n const styles = useStyles();\n // Make sure to merge teaching bubble surface prior to popover styles\n state.root.className = mergeClasses(teachingPopoverSurfaceClassNames.root, styles.root, state.root.className);\n const updatedState = usePopoverSurfaceStyles_unstable(state);\n return updatedState;\n};\n"],"mappings":"AAAA,SAAAA,QAAA,EAAqBC,YAAY,EAAEC,UAAU,QAAQ,gBAAgB;AACrE,SAASC,gCAAgC,QAAQ,yBAAyB;AAC1E,SAASC,MAAM,QAAQ,uBAAuB;AAC9C,OAAO,MAAMC,gCAAgC,GAAG;EAC5CC,IAAI,EAAE;AACV,CAAC;AACD,MAAMC,SAAS,gBAAGP,QAAA;EAAAM,IAAA;IAAAE,MAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,OAAA;EAAA;AAAA;EAAAC,CAAA;AAAA,CAQjB,CAAC;AACF;AACA;AACA;AAAI,OAAO,MAAMC,wCAAwC,GAAIC,KAAK,IAAG;EACjE,MAAMC,MAAM,GAAGlB,SAAS,CAAC,CAAC;EAC1B;EACAiB,KAAK,CAAClB,IAAI,CAACoB,SAAS,GAAGzB,YAAY,CAACI,gCAAgC,CAACC,IAAI,EAAEmB,MAAM,CAACnB,IAAI,EAAEkB,KAAK,CAAClB,IAAI,CAACoB,SAAS,CAAC;EAC7G,MAAMC,YAAY,GAAGxB,gCAAgC,CAACqB,KAAK,CAAC;EAC5D,OAAOG,YAAY;AACvB,CAAC"}
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ import { useTeachingPopoverTitle_unstable } from './useTeachingPopoverTitle';
3
+ import { renderTeachingPopoverTitle_unstable } from './renderTeachingPopoverTitle';
4
+ import { useTeachingPopoverTitleStyles_unstable } from './useTeachingPopoverTitleStyles.styles';
5
+ import { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';
6
+ /**
7
+ * Define a styled TeachingPopoverTitle, using the `useTeachingPopoverTitle_unstable` and `useTeachingPopoverTitleStyles_unstable`
8
+ * hooks.
9
+ *
10
+ * TeachingPopoverTitle is similar to TeachingPopoverHeader, but it is intended to be placed within a TeachingPopoverBody
11
+ * TeachingPopoverTitle can also optionally render a dismiss button, however this should only be enabled when there is no TeachingPopoverHeader/dismiss.
12
+ */ export const TeachingPopoverTitle = /*#__PURE__*/ React.forwardRef((props, ref)=>{
13
+ const state = useTeachingPopoverTitle_unstable(props, ref);
14
+ useTeachingPopoverTitleStyles_unstable(state);
15
+ useCustomStyleHook_unstable('useTeachingPopoverTitleStyles_unstable')(state);
16
+ return renderTeachingPopoverTitle_unstable(state);
17
+ });
18
+ TeachingPopoverTitle.displayName = 'TeachingPopoverTitle';
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["TeachingPopoverTitle.tsx"],"sourcesContent":["import * as React from 'react';\nimport { useTeachingPopoverTitle_unstable } from './useTeachingPopoverTitle';\nimport { renderTeachingPopoverTitle_unstable } from './renderTeachingPopoverTitle';\nimport { useTeachingPopoverTitleStyles_unstable } from './useTeachingPopoverTitleStyles.styles';\nimport { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';\nimport type { TeachingPopoverTitleProps } from './TeachingPopoverTitle.types';\nimport type { ForwardRefComponent } from '@fluentui/react-utilities';\n\n/**\n * Define a styled TeachingPopoverTitle, using the `useTeachingPopoverTitle_unstable` and `useTeachingPopoverTitleStyles_unstable`\n * hooks.\n *\n * TeachingPopoverTitle is similar to TeachingPopoverHeader, but it is intended to be placed within a TeachingPopoverBody\n * TeachingPopoverTitle can also optionally render a dismiss button, however this should only be enabled when there is no TeachingPopoverHeader/dismiss.\n */\nexport const TeachingPopoverTitle: ForwardRefComponent<TeachingPopoverTitleProps> = React.forwardRef((props, ref) => {\n const state = useTeachingPopoverTitle_unstable(props, ref);\n\n useTeachingPopoverTitleStyles_unstable(state);\n\n useCustomStyleHook_unstable('useTeachingPopoverTitleStyles_unstable')(state);\n\n return renderTeachingPopoverTitle_unstable(state);\n});\n\nTeachingPopoverTitle.displayName = 'TeachingPopoverTitle';\n"],"names":["React","useTeachingPopoverTitle_unstable","renderTeachingPopoverTitle_unstable","useTeachingPopoverTitleStyles_unstable","useCustomStyleHook_unstable","TeachingPopoverTitle","forwardRef","props","ref","state","displayName"],"mappings":"AAAA,YAAYA,WAAW,QAAQ;AAC/B,SAASC,gCAAgC,QAAQ,4BAA4B;AAC7E,SAASC,mCAAmC,QAAQ,+BAA+B;AACnF,SAASC,sCAAsC,QAAQ,yCAAyC;AAChG,SAASC,2BAA2B,QAAQ,kCAAkC;AAI9E;;;;;;CAMC,GACD,OAAO,MAAMC,qCAAuEL,MAAMM,UAAU,CAAC,CAACC,OAAOC;IAC3G,MAAMC,QAAQR,iCAAiCM,OAAOC;IAEtDL,uCAAuCM;IAEvCL,4BAA4B,0CAA0CK;IAEtE,OAAOP,oCAAoCO;AAC7C,GAAG;AAEHJ,qBAAqBK,WAAW,GAAG"}
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["TeachingPopoverTitle.types.ts"],"sourcesContent":["import { PopoverContextValue } from '@fluentui/react-popover';\nimport type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\n\nexport type TeachingPopoverTitleSlots = {\n /**\n * Title for teaching bubble\n */\n root: Slot<'h2', 'h1' | 'h3' | 'h4' | 'h5' | 'h6' | 'div'>;\n /**\n * An alternate close button path if not placed in the TeachingPopoverHeader\n */\n dismissButton?: Slot<'button'>;\n};\n\n/**\n * TeachingPopoverTitle Props\n */\nexport type TeachingPopoverTitleProps = ComponentProps<TeachingPopoverTitleSlots>;\n\n/**\n * State used in rendering TeachingPopoverTitle\n */\nexport type TeachingPopoverTitleState = ComponentState<TeachingPopoverTitleSlots> &\n Pick<PopoverContextValue, 'appearance'>;\n"],"names":[],"mappings":"AAAA,WAuB0C"}
@@ -0,0 +1,5 @@
1
+ export * from './TeachingPopoverTitle';
2
+ export * from './TeachingPopoverTitle.types';
3
+ export * from './renderTeachingPopoverTitle';
4
+ export * from './useTeachingPopoverTitle';
5
+ export * from './useTeachingPopoverTitleStyles.styles';
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["index.ts"],"sourcesContent":["export * from './TeachingPopoverTitle';\nexport * from './TeachingPopoverTitle.types';\nexport * from './renderTeachingPopoverTitle';\nexport * from './useTeachingPopoverTitle';\nexport * from './useTeachingPopoverTitleStyles.styles';\n"],"names":[],"mappings":"AAAA,cAAc,yBAAyB;AACvC,cAAc,+BAA+B;AAC7C,cAAc,+BAA+B;AAC7C,cAAc,4BAA4B;AAC1C,cAAc,yCAAyC"}
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "@fluentui/react-jsx-runtime/jsx-runtime";
2
+ import { assertSlots } from '@fluentui/react-utilities';
3
+ /**
4
+ * Render the final JSX of TeachingPopoverTitle
5
+ */ export const renderTeachingPopoverTitle_unstable = (state)=>{
6
+ assertSlots(state);
7
+ return /*#__PURE__*/ _jsxs(state.root, {
8
+ children: [
9
+ state.root.children,
10
+ state.dismissButton && /*#__PURE__*/ _jsx(state.dismissButton, {})
11
+ ]
12
+ });
13
+ };
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["renderTeachingPopoverTitle.tsx"],"sourcesContent":["/** @jsxRuntime automatic */\n/** @jsxImportSource @fluentui/react-jsx-runtime */\nimport type { TeachingPopoverTitleState } from './TeachingPopoverTitle.types';\nimport { assertSlots } from '@fluentui/react-utilities';\nimport { TeachingPopoverTitleSlots } from './TeachingPopoverTitle.types';\n\n/**\n * Render the final JSX of TeachingPopoverTitle\n */\nexport const renderTeachingPopoverTitle_unstable = (state: TeachingPopoverTitleState) => {\n assertSlots<TeachingPopoverTitleSlots>(state);\n\n return (\n <state.root>\n {state.root.children}\n {state.dismissButton && <state.dismissButton />}\n </state.root>\n );\n};\n"],"names":["assertSlots","renderTeachingPopoverTitle_unstable","state","root","children","dismissButton"],"mappings":"AAAA,0BAA0B,GAC1B,iDAAiD;AAEjD,SAASA,WAAW,QAAQ,4BAA4B;AAGxD;;CAEC,GACD,OAAO,MAAMC,sCAAsC,CAACC;IAClDF,YAAuCE;IAEvC,qBACE,MAACA,MAAMC,IAAI;;YACRD,MAAMC,IAAI,CAACC,QAAQ;YACnBF,MAAMG,aAAa,kBAAI,KAACH,MAAMG,aAAa;;;AAGlD,EAAE"}
@@ -0,0 +1,46 @@
1
+ import * as React from 'react';
2
+ import { getIntrinsicElementProps, useEventCallback, slot } from '@fluentui/react-utilities';
3
+ import { DismissFilled, DismissRegular, bundleIcon } from '@fluentui/react-icons';
4
+ import { usePopoverContext_unstable } from '@fluentui/react-popover';
5
+ const DismissIcon = bundleIcon(DismissFilled, DismissRegular);
6
+ /**
7
+ * Returns the props and state required to render the component
8
+ * @param props - TeachingPopoverTitle properties
9
+ * @param ref - reference to root HTMLElement of TeachingPopoverTitle
10
+ */ export const useTeachingPopoverTitle_unstable = (props, ref)=>{
11
+ const { dismissButton } = props;
12
+ const setOpen = usePopoverContext_unstable((context)=>context.setOpen);
13
+ const triggerRef = usePopoverContext_unstable((context)=>context.triggerRef);
14
+ const appearance = usePopoverContext_unstable((context)=>context.appearance);
15
+ const onDismissButtonClick = useEventCallback((ev)=>{
16
+ if (!ev.defaultPrevented) {
17
+ setOpen(ev, false);
18
+ }
19
+ if (triggerRef.current) {
20
+ triggerRef.current.focus();
21
+ }
22
+ });
23
+ return {
24
+ appearance,
25
+ components: {
26
+ root: 'h2',
27
+ dismissButton: 'button'
28
+ },
29
+ root: slot.always(getIntrinsicElementProps('h2', {
30
+ ref,
31
+ ...props
32
+ }), {
33
+ elementType: 'h2'
34
+ }),
35
+ dismissButton: slot.optional(dismissButton, {
36
+ renderByDefault: false,
37
+ defaultProps: {
38
+ children: /*#__PURE__*/ React.createElement(DismissIcon, null),
39
+ onClick: onDismissButtonClick,
40
+ 'aria-label': 'dismiss',
41
+ 'aria-hidden': true
42
+ },
43
+ elementType: 'button'
44
+ })
45
+ };
46
+ };
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["useTeachingPopoverTitle.tsx"],"sourcesContent":["import * as React from 'react';\nimport { getIntrinsicElementProps, useEventCallback, slot } from '@fluentui/react-utilities';\nimport type { TeachingPopoverTitleProps, TeachingPopoverTitleState } from './TeachingPopoverTitle.types';\nimport { DismissFilled, DismissRegular, bundleIcon } from '@fluentui/react-icons';\nimport { usePopoverContext_unstable } from '@fluentui/react-popover';\n\nconst DismissIcon = bundleIcon(DismissFilled, DismissRegular);\n/**\n * Returns the props and state required to render the component\n * @param props - TeachingPopoverTitle properties\n * @param ref - reference to root HTMLElement of TeachingPopoverTitle\n */\nexport const useTeachingPopoverTitle_unstable = (\n props: TeachingPopoverTitleProps,\n ref: React.Ref<HTMLDivElement>,\n): TeachingPopoverTitleState => {\n const { dismissButton } = props;\n\n const setOpen = usePopoverContext_unstable(context => context.setOpen);\n const triggerRef = usePopoverContext_unstable(context => context.triggerRef);\n const appearance = usePopoverContext_unstable(context => context.appearance);\n\n const onDismissButtonClick = useEventCallback((ev: React.MouseEvent<HTMLButtonElement>) => {\n if (!ev.defaultPrevented) {\n setOpen(ev, false);\n }\n\n if (triggerRef.current) {\n triggerRef.current.focus();\n }\n });\n\n return {\n appearance,\n components: {\n root: 'h2',\n dismissButton: 'button',\n },\n root: slot.always(\n getIntrinsicElementProps('h2', {\n ref,\n ...props,\n }),\n { elementType: 'h2' },\n ),\n dismissButton: slot.optional(dismissButton, {\n renderByDefault: false,\n defaultProps: {\n children: <DismissIcon />,\n onClick: onDismissButtonClick,\n 'aria-label': 'dismiss',\n 'aria-hidden': true,\n },\n elementType: 'button',\n }),\n };\n};\n"],"names":["React","getIntrinsicElementProps","useEventCallback","slot","DismissFilled","DismissRegular","bundleIcon","usePopoverContext_unstable","DismissIcon","useTeachingPopoverTitle_unstable","props","ref","dismissButton","setOpen","context","triggerRef","appearance","onDismissButtonClick","ev","defaultPrevented","current","focus","components","root","always","elementType","optional","renderByDefault","defaultProps","children","onClick"],"mappings":"AAAA,YAAYA,WAAW,QAAQ;AAC/B,SAASC,wBAAwB,EAAEC,gBAAgB,EAAEC,IAAI,QAAQ,4BAA4B;AAE7F,SAASC,aAAa,EAAEC,cAAc,EAAEC,UAAU,QAAQ,wBAAwB;AAClF,SAASC,0BAA0B,QAAQ,0BAA0B;AAErE,MAAMC,cAAcF,WAAWF,eAAeC;AAC9C;;;;CAIC,GACD,OAAO,MAAMI,mCAAmC,CAC9CC,OACAC;IAEA,MAAM,EAAEC,aAAa,EAAE,GAAGF;IAE1B,MAAMG,UAAUN,2BAA2BO,CAAAA,UAAWA,QAAQD,OAAO;IACrE,MAAME,aAAaR,2BAA2BO,CAAAA,UAAWA,QAAQC,UAAU;IAC3E,MAAMC,aAAaT,2BAA2BO,CAAAA,UAAWA,QAAQE,UAAU;IAE3E,MAAMC,uBAAuBf,iBAAiB,CAACgB;QAC7C,IAAI,CAACA,GAAGC,gBAAgB,EAAE;YACxBN,QAAQK,IAAI;QACd;QAEA,IAAIH,WAAWK,OAAO,EAAE;YACtBL,WAAWK,OAAO,CAACC,KAAK;QAC1B;IACF;IAEA,OAAO;QACLL;QACAM,YAAY;YACVC,MAAM;YACNX,eAAe;QACjB;QACAW,MAAMpB,KAAKqB,MAAM,CACfvB,yBAAyB,MAAM;YAC7BU;YACA,GAAGD,KAAK;QACV,IACA;YAAEe,aAAa;QAAK;QAEtBb,eAAeT,KAAKuB,QAAQ,CAACd,eAAe;YAC1Ce,iBAAiB;YACjBC,cAAc;gBACZC,wBAAU,oBAACrB;gBACXsB,SAASb;gBACT,cAAc;gBACd,eAAe;YACjB;YACAQ,aAAa;QACf;IACF;AACF,EAAE"}
@@ -0,0 +1,80 @@
1
+ import { __styles, mergeClasses, shorthands } from '@griffel/react';
2
+ import { createCustomFocusIndicatorStyle } from '@fluentui/react-tabster';
3
+ import { tokens, typographyStyles } from '@fluentui/react-theme';
4
+ export const teachingPopoverTitleClassNames = {
5
+ root: 'fui-TeachingPopoverTitle',
6
+ dismissButton: 'fui-TeachingPopoverTitle__dismissButton'
7
+ };
8
+ const useStyles = /*#__PURE__*/__styles({
9
+ root: {
10
+ mc9l5x: "f22iagw",
11
+ Beiy3e4: "f1063pyq",
12
+ Brf1p80: "f1869bpl",
13
+ Be2twd7: "fod5ikn",
14
+ Bhrd7zp: "fl43uef",
15
+ sj55zd: "f19n0e5",
16
+ Bg96gwp: "faaz57k",
17
+ Byoj8tv: "f5b47ha",
18
+ B6of3ja: "f1jkagg5",
19
+ jrapky: "fi2ljxd"
20
+ },
21
+ rootBrand: {
22
+ sj55zd: "f1phragk"
23
+ },
24
+ dismissButton: {
25
+ qhf8xq: "f10pi13n",
26
+ B4j52fo: "f192inf7",
27
+ Bekrc4i: ["f5tn483", "f1ojsxk5"],
28
+ Bn0qgzm: "f1vxd6vx",
29
+ ibv6hh: ["f1ojsxk5", "f5tn483"],
30
+ icvyot: "fzkkow9",
31
+ vrafjx: ["f1n71otn", "f1deefiw"],
32
+ oivjwe: "fg706s2",
33
+ wvpqe5: ["fjik90z", "fcdblym"],
34
+ g2u3we: "fghlq4f",
35
+ h3c5rm: ["f1gn591s", "fjscplz"],
36
+ B9xav0g: "fb073pr",
37
+ zhjwy3: ["fjscplz", "f1gn591s"],
38
+ mc9l5x: "f22iagw",
39
+ Bt984gj: "f122n59",
40
+ Bceei9c: "f1k6fduh",
41
+ Bahqtrf: "fk6fouc",
42
+ Be2twd7: "fkhj508",
43
+ Bhrd7zp: "figsok6",
44
+ Bg96gwp: "f1i3iumi",
45
+ De3pzq: "f1c21dwh",
46
+ B7ck84d: "f1ewtqcl",
47
+ B7oj6ja: ["f3fg2lr", "f13av6d4"],
48
+ Bbmb7ep: ["fzi6hpg", "fyowgf4"],
49
+ Bn4voq9: "f1p7hgxw",
50
+ g9k6zt: "f9znhxp",
51
+ Bfpq7zp: "fqrak0z",
52
+ kdpuga: ["f1o2ludy", "f1kjnpwc"],
53
+ Bw81rd7: ["f1kjnpwc", "f1o2ludy"],
54
+ B6xbmo0: ["fxmnebo", "f1witrsb"],
55
+ dm238s: ["f1witrsb", "fxmnebo"],
56
+ B8q5s1w: "f8hki3x",
57
+ Bci5o5g: ["f1d2448m", "ffh67wi"],
58
+ n8qw10: "f1bjia2o",
59
+ Bdrgwmp: ["ffh67wi", "f1d2448m"],
60
+ Jyy4pa: "f1lfeew"
61
+ },
62
+ dismissBrand: {
63
+ sj55zd: "f1phragk"
64
+ }
65
+ }, {
66
+ d: [".f22iagw{display:flex;}", ".f1063pyq{flex-direction:row;}", ".f1869bpl{justify-content:space-between;}", ".fod5ikn{font-size:var(--fontSizeBase400);}", ".fl43uef{font-weight:var(--fontWeightSemibold);}", ".f19n0e5{color:var(--colorNeutralForeground1);}", ".faaz57k{line-height:var(--lineHeightBase400);}", ".f5b47ha{padding-bottom:var(--spacingVerticalS);}", ".f1jkagg5{margin-top:var(--spacingHorizontalNone);}", ".fi2ljxd{margin-bottom:var(--spacingHorizontalNone);}", ".f1phragk{color:var(--colorNeutralForegroundOnBrand);}", ".f10pi13n{position:relative;}", ".f192inf7{border-top-width:var(--strokeWidthThin);}", ".f5tn483{border-right-width:var(--strokeWidthThin);}", ".f1ojsxk5{border-left-width:var(--strokeWidthThin);}", ".f1vxd6vx{border-bottom-width:var(--strokeWidthThin);}", ".fzkkow9{border-top-style:solid;}", ".f1n71otn{border-right-style:none;}", ".f1deefiw{border-left-style:none;}", ".fg706s2{border-bottom-style:solid;}", ".fjik90z{border-left-style:solid;}", ".fcdblym{border-right-style:solid;}", ".fghlq4f{border-top-color:var(--colorTransparentStroke);}", ".f1gn591s{border-right-color:var(--colorTransparentStroke);}", ".fjscplz{border-left-color:var(--colorTransparentStroke);}", ".fb073pr{border-bottom-color:var(--colorTransparentStroke);}", ".f122n59{align-items:center;}", ".f1k6fduh{cursor:pointer;}", ".fk6fouc{font-family:var(--fontFamilyBase);}", ".fkhj508{font-size:var(--fontSizeBase300);}", ".figsok6{font-weight:var(--fontWeightRegular);}", ".f1i3iumi{line-height:var(--lineHeightBase300);}", ".f1c21dwh{background-color:var(--colorTransparentBackground);}", ".f1ewtqcl{box-sizing:border-box;}", ".f3fg2lr{border-top-right-radius:var(--borderRadiusNone);}", ".f13av6d4{border-top-left-radius:var(--borderRadiusNone);}", ".fzi6hpg{border-bottom-right-radius:var(--borderRadiusNone);}", ".fyowgf4{border-bottom-left-radius:var(--borderRadiusNone);}", ".f1p7hgxw[data-fui-focus-visible]{outline-width:var(--strokeWidthThick);}", ".f9znhxp[data-fui-focus-visible]{outline-style:solid;}", ".fqrak0z[data-fui-focus-visible]{outline-color:var(--colorStrokeFocus2);}", ".f1o2ludy[data-fui-focus-visible]{border-bottom-right-radius:var(--borderRadiusMedium);}", ".f1kjnpwc[data-fui-focus-visible]{border-bottom-left-radius:var(--borderRadiusMedium);}", ".fxmnebo[data-fui-focus-visible]{border-top-right-radius:var(--borderRadiusMedium);}", ".f1witrsb[data-fui-focus-visible]{border-top-left-radius:var(--borderRadiusMedium);}", ".f8hki3x[data-fui-focus-visible]{border-top-color:transparent;}", ".f1d2448m[data-fui-focus-visible]{border-right-color:transparent;}", ".ffh67wi[data-fui-focus-visible]{border-left-color:transparent;}", ".f1bjia2o[data-fui-focus-visible]{border-bottom-color:transparent;}", ".f1lfeew{-webkit-margin-start:auto;margin-inline-start:auto;}"]
67
+ });
68
+ /** Applies style classnames to slots */
69
+ export const useTeachingPopoverTitleStyles_unstable = state => {
70
+ const styles = useStyles();
71
+ const {
72
+ appearance
73
+ } = state;
74
+ state.root.className = mergeClasses(teachingPopoverTitleClassNames.root, styles.root, appearance === 'brand' && styles.rootBrand, state.root.className);
75
+ if (state.dismissButton) {
76
+ state.dismissButton.className = mergeClasses(teachingPopoverTitleClassNames.dismissButton, styles.dismissButton, appearance === 'brand' ? styles.dismissBrand : undefined, state.dismissButton.className);
77
+ }
78
+ return state;
79
+ };
80
+ //# sourceMappingURL=useTeachingPopoverTitleStyles.styles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["__styles","mergeClasses","shorthands","createCustomFocusIndicatorStyle","tokens","typographyStyles","teachingPopoverTitleClassNames","root","dismissButton","useStyles","mc9l5x","Beiy3e4","Brf1p80","Be2twd7","Bhrd7zp","sj55zd","Bg96gwp","Byoj8tv","B6of3ja","jrapky","rootBrand","qhf8xq","B4j52fo","Bekrc4i","Bn0qgzm","ibv6hh","icvyot","vrafjx","oivjwe","wvpqe5","g2u3we","h3c5rm","B9xav0g","zhjwy3","Bt984gj","Bceei9c","Bahqtrf","De3pzq","B7ck84d","B7oj6ja","Bbmb7ep","Bn4voq9","g9k6zt","Bfpq7zp","kdpuga","Bw81rd7","B6xbmo0","dm238s","B8q5s1w","Bci5o5g","n8qw10","Bdrgwmp","Jyy4pa","dismissBrand","d","useTeachingPopoverTitleStyles_unstable","state","styles","appearance","className","undefined"],"sources":["useTeachingPopoverTitleStyles.styles.js"],"sourcesContent":["import { makeStyles, mergeClasses, shorthands } from '@griffel/react';\nimport { createCustomFocusIndicatorStyle } from '@fluentui/react-tabster';\nimport { tokens, typographyStyles } from '@fluentui/react-theme';\nexport const teachingPopoverTitleClassNames = {\n root: 'fui-TeachingPopoverTitle',\n dismissButton: 'fui-TeachingPopoverTitle__dismissButton'\n};\nconst useStyles = makeStyles({\n root: {\n display: 'flex',\n flexDirection: 'row',\n justifyContent: 'space-between',\n fontSize: tokens.fontSizeBase400,\n fontWeight: tokens.fontWeightSemibold,\n color: tokens.colorNeutralForeground1,\n lineHeight: tokens.lineHeightBase400,\n paddingBottom: tokens.spacingVerticalS,\n marginTop: tokens.spacingHorizontalNone,\n marginBottom: tokens.spacingHorizontalNone\n },\n rootBrand: {\n color: tokens.colorNeutralForegroundOnBrand\n },\n dismissButton: {\n position: 'relative',\n ...shorthands.border(tokens.strokeWidthThin, 'solid', tokens.colorTransparentStroke),\n display: 'flex',\n alignItems: 'center',\n cursor: 'pointer',\n ...typographyStyles.body1,\n backgroundColor: tokens.colorTransparentBackground,\n boxSizing: 'border-box',\n borderTopRightRadius: tokens.borderRadiusNone,\n borderBottomRightRadius: tokens.borderRadiusNone,\n borderRightStyle: 'none',\n ...createCustomFocusIndicatorStyle({\n ...shorthands.outline(tokens.strokeWidthThick, 'solid', tokens.colorStrokeFocus2),\n ...shorthands.borderRadius(tokens.borderRadiusMedium),\n ...shorthands.borderColor('transparent')\n }),\n marginInlineStart: 'auto'\n },\n dismissBrand: {\n color: tokens.colorNeutralForegroundOnBrand\n }\n});\n/** Applies style classnames to slots */ export const useTeachingPopoverTitleStyles_unstable = (state)=>{\n const styles = useStyles();\n const { appearance } = state;\n state.root.className = mergeClasses(teachingPopoverTitleClassNames.root, styles.root, appearance === 'brand' && styles.rootBrand, state.root.className);\n if (state.dismissButton) {\n state.dismissButton.className = mergeClasses(teachingPopoverTitleClassNames.dismissButton, styles.dismissButton, appearance === 'brand' ? styles.dismissBrand : undefined, state.dismissButton.className);\n }\n return state;\n};\n"],"mappings":"AAAA,SAAAA,QAAA,EAAqBC,YAAY,EAAEC,UAAU,QAAQ,gBAAgB;AACrE,SAASC,+BAA+B,QAAQ,yBAAyB;AACzE,SAASC,MAAM,EAAEC,gBAAgB,QAAQ,uBAAuB;AAChE,OAAO,MAAMC,8BAA8B,GAAG;EAC1CC,IAAI,EAAE,0BAA0B;EAChCC,aAAa,EAAE;AACnB,CAAC;AACD,MAAMC,SAAS,gBAAGT,QAAA;EAAAO,IAAA;IAAAG,MAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,MAAA;EAAA;EAAAC,SAAA;IAAAL,MAAA;EAAA;EAAAP,aAAA;IAAAa,MAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAvB,MAAA;IAAAwB,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAvB,OAAA;IAAAC,OAAA;IAAAE,OAAA;IAAAqB,MAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,MAAA;EAAA;EAAAC,YAAA;IAAAtC,MAAA;EAAA;AAAA;EAAAuC,CAAA;AAAA,CAsCjB,CAAC;AACF;AAAyC,OAAO,MAAMC,sCAAsC,GAAIC,KAAK,IAAG;EACpG,MAAMC,MAAM,GAAGhD,SAAS,CAAC,CAAC;EAC1B,MAAM;IAAEiD;EAAW,CAAC,GAAGF,KAAK;EAC5BA,KAAK,CAACjD,IAAI,CAACoD,SAAS,GAAG1D,YAAY,CAACK,8BAA8B,CAACC,IAAI,EAAEkD,MAAM,CAAClD,IAAI,EAAEmD,UAAU,KAAK,OAAO,IAAID,MAAM,CAACrC,SAAS,EAAEoC,KAAK,CAACjD,IAAI,CAACoD,SAAS,CAAC;EACvJ,IAAIH,KAAK,CAAChD,aAAa,EAAE;IACrBgD,KAAK,CAAChD,aAAa,CAACmD,SAAS,GAAG1D,YAAY,CAACK,8BAA8B,CAACE,aAAa,EAAEiD,MAAM,CAACjD,aAAa,EAAEkD,UAAU,KAAK,OAAO,GAAGD,MAAM,CAACJ,YAAY,GAAGO,SAAS,EAAEJ,KAAK,CAAChD,aAAa,CAACmD,SAAS,CAAC;EAC7M;EACA,OAAOH,KAAK;AAChB,CAAC"}
@@ -0,0 +1,12 @@
1
+ import * as React from 'react';
2
+ import { renderTeachingPopoverTrigger_unstable } from './renderTeachingPopoverTrigger';
3
+ import { useTeachingPopoverTrigger_unstable } from './useTeachingPopoverTrigger';
4
+ /**
5
+ * Direct extension of PopoverTrigger - Wraps a trigger element as an only child and adds the necessary event handling to open a teaching bubble.
6
+ */ export const TeachingPopoverTrigger = (props)=>{
7
+ const state = useTeachingPopoverTrigger_unstable(props);
8
+ return renderTeachingPopoverTrigger_unstable(state);
9
+ };
10
+ TeachingPopoverTrigger.displayName = 'TeachingPopoverTrigger';
11
+ // type casting here is required to ensure internal type FluentTriggerComponent is not leaked
12
+ TeachingPopoverTrigger.isFluentTriggerComponent = true;
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["TeachingPopoverTrigger.tsx"],"sourcesContent":["import * as React from 'react';\nimport type { FluentTriggerComponent } from '@fluentui/react-utilities';\nimport { TeachingPopoverTriggerProps } from './TeachingPopoverTrigger.types';\nimport { renderTeachingPopoverTrigger_unstable } from './renderTeachingPopoverTrigger';\nimport { useTeachingPopoverTrigger_unstable } from './useTeachingPopoverTrigger';\n\n/**\n * Direct extension of PopoverTrigger - Wraps a trigger element as an only child and adds the necessary event handling to open a teaching bubble.\n */\nexport const TeachingPopoverTrigger: React.FC<TeachingPopoverTriggerProps> = props => {\n const state = useTeachingPopoverTrigger_unstable(props);\n\n return renderTeachingPopoverTrigger_unstable(state);\n};\n\nTeachingPopoverTrigger.displayName = 'TeachingPopoverTrigger';\n// type casting here is required to ensure internal type FluentTriggerComponent is not leaked\n(TeachingPopoverTrigger as FluentTriggerComponent).isFluentTriggerComponent = true;\n"],"names":["React","renderTeachingPopoverTrigger_unstable","useTeachingPopoverTrigger_unstable","TeachingPopoverTrigger","props","state","displayName","isFluentTriggerComponent"],"mappings":"AAAA,YAAYA,WAAW,QAAQ;AAG/B,SAASC,qCAAqC,QAAQ,iCAAiC;AACvF,SAASC,kCAAkC,QAAQ,8BAA8B;AAEjF;;CAEC,GACD,OAAO,MAAMC,yBAAgEC,CAAAA;IAC3E,MAAMC,QAAQH,mCAAmCE;IAEjD,OAAOH,sCAAsCI;AAC/C,EAAE;AAEFF,uBAAuBG,WAAW,GAAG;AACrC,6FAA6F;AAC5FH,uBAAkDI,wBAAwB,GAAG"}
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["TeachingPopoverTrigger.types.ts"],"sourcesContent":["import { PopoverTriggerChildProps, PopoverTriggerProps, PopoverTriggerState } from '@fluentui/react-popover';\n\n/**\n * TeachingPopoverTrigger Props\n */\nexport type TeachingPopoverTriggerProps = PopoverTriggerProps;\n\n/**\n * TeachingPopoverTrigger State\n */\nexport type TeachingPopoverTriggerState = PopoverTriggerState;\n\n/**\n * Props that are passed to the child of the DialogTrigger when cloned to ensure correct behavior for the Dialog\n */\nexport type TeachingPopoverTriggerChildProps = PopoverTriggerChildProps;\n"],"names":[],"mappings":"AAAA,WAewE"}
@@ -0,0 +1,4 @@
1
+ export * from './TeachingPopoverTrigger';
2
+ export * from './TeachingPopoverTrigger.types';
3
+ export * from './renderTeachingPopoverTrigger';
4
+ export * from './useTeachingPopoverTrigger';
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["index.ts"],"sourcesContent":["export * from './TeachingPopoverTrigger';\nexport * from './TeachingPopoverTrigger.types';\nexport * from './renderTeachingPopoverTrigger';\nexport * from './useTeachingPopoverTrigger';\n"],"names":[],"mappings":"AAAA,cAAc,2BAA2B;AACzC,cAAc,iCAAiC;AAC/C,cAAc,iCAAiC;AAC/C,cAAc,8BAA8B"}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Render the final JSX of TeachingPopoverTrigger
3
+ */ export const renderTeachingPopoverTrigger_unstable = (state)=>{
4
+ return state.children;
5
+ };
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["renderTeachingPopoverTrigger.tsx"],"sourcesContent":["import { TeachingPopoverTriggerState } from './TeachingPopoverTrigger.types';\n\n/**\n * Render the final JSX of TeachingPopoverTrigger\n */\nexport const renderTeachingPopoverTrigger_unstable = (state: TeachingPopoverTriggerState) => {\n return state.children;\n};\n"],"names":["renderTeachingPopoverTrigger_unstable","state","children"],"mappings":"AAEA;;CAEC,GACD,OAAO,MAAMA,wCAAwC,CAACC;IACpD,OAAOA,MAAMC,QAAQ;AACvB,EAAE"}
@@ -0,0 +1,9 @@
1
+ import { usePopoverTrigger_unstable } from '@fluentui/react-popover';
2
+ /**
3
+ * Create the state required to render TeachingPopoverTrigger.
4
+ *
5
+ * @param props - props from this instance of TeachingPopoverTrigger
6
+ */ export const useTeachingPopoverTrigger_unstable = (props)=>{
7
+ const state = usePopoverTrigger_unstable(props);
8
+ return state;
9
+ };
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["useTeachingPopoverTrigger.ts"],"sourcesContent":["import { TeachingPopoverTriggerProps, TeachingPopoverTriggerState } from './TeachingPopoverTrigger.types';\nimport { usePopoverTrigger_unstable } from '@fluentui/react-popover';\n\n/**\n * Create the state required to render TeachingPopoverTrigger.\n *\n * @param props - props from this instance of TeachingPopoverTrigger\n */\nexport const useTeachingPopoverTrigger_unstable = (props: TeachingPopoverTriggerProps): TeachingPopoverTriggerState => {\n const state = usePopoverTrigger_unstable(props);\n\n return state;\n};\n"],"names":["usePopoverTrigger_unstable","useTeachingPopoverTrigger_unstable","props","state"],"mappings":"AACA,SAASA,0BAA0B,QAAQ,0BAA0B;AAErE;;;;CAIC,GACD,OAAO,MAAMC,qCAAqC,CAACC;IACjD,MAAMC,QAAQH,2BAA2BE;IAEzC,OAAOC;AACT,EAAE"}
package/lib/index.js ADDED
@@ -0,0 +1,14 @@
1
+ export { TeachingPopoverHeader, teachingPopoverHeaderClassNames, renderTeachingPopoverHeader_unstable, useTeachingPopoverHeaderStyles_unstable, useTeachingPopoverHeader_unstable } from './TeachingPopoverHeader';
2
+ export { TeachingPopoverBody, teachingPopoverBodyClassNames, renderTeachingPopoverBody_unstable, useTeachingPopoverBodyStyles_unstable, useTeachingPopoverBody_unstable } from './TeachingPopoverBody';
3
+ export { TeachingPopoverCarouselCard, teachingPopoverCarouselCardClassNames, renderTeachingPopoverCarouselCard_unstable, useTeachingPopoverCarouselCardStyles_unstable, useTeachingPopoverCarouselCard_unstable } from './TeachingPopoverCarouselCard';
4
+ export { TeachingPopoverCarousel, teachingPopoverCarouselClassNames, renderTeachingPopoverCarousel_unstable, useTeachingPopoverCarouselStyles_unstable, useTeachingPopoverCarousel_unstable, useTeachingPopoverCarouselContextValues_unstable } from './TeachingPopoverCarousel';
5
+ export { TeachingPopoverCarouselFooter, teachingPopoverCarouselFooterClassNames, renderTeachingPopoverCarouselFooter_unstable, useTeachingPopoverCarouselFooterStyles_unstable, useTeachingPopoverCarouselFooter_unstable } from './TeachingPopoverCarouselFooter';
6
+ export { TeachingPopoverCarouselNav, teachingPopoverCarouselNavClassNames, renderTeachingPopoverCarouselNav_unstable, useTeachingPopoverCarouselNavStyles_unstable, useTeachingPopoverCarouselNav_unstable } from './TeachingPopoverCarouselNav';
7
+ export { TeachingPopoverCarouselNavButton, teachingPopoverCarouselNavButtonClassNames, renderTeachingPopoverCarouselNavButton_unstable, useTeachingPopoverCarouselNavButtonStyles_unstable, useTeachingPopoverCarouselNavButton_unstable } from './TeachingPopoverCarouselNavButton';
8
+ export { TeachingPopoverSurface, renderTeachingPopoverSurface_unstable, teachingPopoverSurfaceClassNames, useTeachingPopoverSurfaceStyles_unstable, useTeachingPopoverSurface_unstable } from './TeachingPopoverSurface';
9
+ export { TeachingPopoverTitle, teachingPopoverTitleClassNames, renderTeachingPopoverTitle_unstable, useTeachingPopoverTitleStyles_unstable, useTeachingPopoverTitle_unstable } from './TeachingPopoverTitle';
10
+ export { TeachingPopoverTrigger, renderTeachingPopoverTrigger_unstable, useTeachingPopoverTrigger_unstable } from './TeachingPopoverTrigger';
11
+ export { TeachingPopover, renderTeachingPopover_unstable, useTeachingPopover_unstable } from './TeachingPopover';
12
+ export { TeachingPopoverFooter, teachingPopoverFooterClassNames, renderTeachingPopoverFooter_unstable, useTeachingPopoverFooter_unstable } from './TeachingPopoverFooter';
13
+ export { TeachingPopoverCarouselPageCount, renderTeachingPopoverCarouselPageCount_unstable, teachingPopoverCarouselPageCountClassNames, useTeachingPopoverCarouselPageCountStyles_unstable, useTeachingPopoverCarouselPageCount_unstable } from './TeachingPopoverCarouselPageCount';
14
+ export { TeachingPopoverCarouselFooterButton, renderTeachingPopoverCarouselFooterButton_unstable, teachingPopoverCarouselFooterButtonClassNames, useTeachingPopoverCarouselFooterButtonStyles_unstable, useTeachingPopoverCarouselFooterButton_unstable } from './TeachingPopoverCarouselFooterButton';
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["index.ts"],"sourcesContent":["export {\n TeachingPopoverHeader,\n teachingPopoverHeaderClassNames,\n renderTeachingPopoverHeader_unstable,\n useTeachingPopoverHeaderStyles_unstable,\n useTeachingPopoverHeader_unstable,\n} from './TeachingPopoverHeader';\nexport type {\n TeachingPopoverHeaderProps,\n TeachingPopoverHeaderSlots,\n TeachingPopoverHeaderState,\n} from './TeachingPopoverHeader';\nexport {\n TeachingPopoverBody,\n teachingPopoverBodyClassNames,\n renderTeachingPopoverBody_unstable,\n useTeachingPopoverBodyStyles_unstable,\n useTeachingPopoverBody_unstable,\n} from './TeachingPopoverBody';\nexport type {\n TeachingPopoverBodyProps,\n TeachingPopoverBodySlots,\n TeachingPopoverBodyState,\n} from './TeachingPopoverBody';\nexport {\n TeachingPopoverCarouselCard,\n teachingPopoverCarouselCardClassNames,\n renderTeachingPopoverCarouselCard_unstable,\n useTeachingPopoverCarouselCardStyles_unstable,\n useTeachingPopoverCarouselCard_unstable,\n} from './TeachingPopoverCarouselCard';\nexport type {\n TeachingPopoverCarouselCardProps,\n TeachingPopoverCarouselCardSlots,\n TeachingPopoverCarouselCardState,\n} from './TeachingPopoverCarouselCard';\nexport {\n TeachingPopoverCarousel,\n teachingPopoverCarouselClassNames,\n renderTeachingPopoverCarousel_unstable,\n useTeachingPopoverCarouselStyles_unstable,\n useTeachingPopoverCarousel_unstable,\n useTeachingPopoverCarouselContextValues_unstable,\n} from './TeachingPopoverCarousel';\nexport type {\n TeachingPopoverCarouselProps,\n TeachingPopoverCarouselSlots,\n TeachingPopoverCarouselState,\n} from './TeachingPopoverCarousel';\nexport {\n TeachingPopoverCarouselFooter,\n teachingPopoverCarouselFooterClassNames,\n renderTeachingPopoverCarouselFooter_unstable,\n useTeachingPopoverCarouselFooterStyles_unstable,\n useTeachingPopoverCarouselFooter_unstable,\n} from './TeachingPopoverCarouselFooter';\nexport type {\n TeachingPopoverCarouselFooterProps,\n TeachingPopoverCarouselFooterSlots,\n TeachingPopoverCarouselFooterState,\n} from './TeachingPopoverCarouselFooter';\nexport {\n TeachingPopoverCarouselNav,\n teachingPopoverCarouselNavClassNames,\n renderTeachingPopoverCarouselNav_unstable,\n useTeachingPopoverCarouselNavStyles_unstable,\n useTeachingPopoverCarouselNav_unstable,\n} from './TeachingPopoverCarouselNav';\nexport type {\n TeachingPopoverCarouselNavProps,\n TeachingPopoverCarouselNavSlots,\n TeachingPopoverCarouselNavState,\n} from './TeachingPopoverCarouselNav';\nexport {\n TeachingPopoverCarouselNavButton,\n teachingPopoverCarouselNavButtonClassNames,\n renderTeachingPopoverCarouselNavButton_unstable,\n useTeachingPopoverCarouselNavButtonStyles_unstable,\n useTeachingPopoverCarouselNavButton_unstable,\n} from './TeachingPopoverCarouselNavButton';\nexport type {\n TeachingPopoverCarouselNavButtonProps,\n TeachingPopoverCarouselNavButtonSlots,\n TeachingPopoverCarouselNavButtonState,\n} from './TeachingPopoverCarouselNavButton';\nexport {\n TeachingPopoverSurface,\n renderTeachingPopoverSurface_unstable,\n teachingPopoverSurfaceClassNames,\n useTeachingPopoverSurfaceStyles_unstable,\n useTeachingPopoverSurface_unstable,\n} from './TeachingPopoverSurface';\nexport type {\n TeachingPopoverSurfaceProps,\n TeachingPopoverSurfaceSlots,\n TeachingPopoverSurfaceState,\n} from './TeachingPopoverSurface';\nexport {\n TeachingPopoverTitle,\n teachingPopoverTitleClassNames,\n renderTeachingPopoverTitle_unstable,\n useTeachingPopoverTitleStyles_unstable,\n useTeachingPopoverTitle_unstable,\n} from './TeachingPopoverTitle';\nexport type {\n TeachingPopoverTitleProps,\n TeachingPopoverTitleSlots,\n TeachingPopoverTitleState,\n} from './TeachingPopoverTitle';\nexport {\n TeachingPopoverTrigger,\n renderTeachingPopoverTrigger_unstable,\n useTeachingPopoverTrigger_unstable,\n} from './TeachingPopoverTrigger';\nexport type {\n TeachingPopoverTriggerChildProps,\n TeachingPopoverTriggerProps,\n TeachingPopoverTriggerState,\n} from './TeachingPopoverTrigger';\nexport { TeachingPopover, renderTeachingPopover_unstable, useTeachingPopover_unstable } from './TeachingPopover';\nexport type { TeachingPopoverProps, TeachingPopoverState } from './TeachingPopover';\nexport {\n TeachingPopoverFooter,\n teachingPopoverFooterClassNames,\n renderTeachingPopoverFooter_unstable,\n useTeachingPopoverFooter_unstable,\n} from './TeachingPopoverFooter';\nexport type { TeachingPopoverFooterProps, TeachingPopoverFooterState } from './TeachingPopoverFooter';\nexport {\n TeachingPopoverCarouselPageCount,\n renderTeachingPopoverCarouselPageCount_unstable,\n teachingPopoverCarouselPageCountClassNames,\n useTeachingPopoverCarouselPageCountStyles_unstable,\n useTeachingPopoverCarouselPageCount_unstable,\n} from './TeachingPopoverCarouselPageCount';\nexport type {\n TeachingPopoverCarouselPageCountProps,\n TeachingPopoverCarouselPageCountRenderFunction,\n TeachingPopoverCarouselPageCountSlots,\n TeachingPopoverCarouselPageCountState,\n} from './TeachingPopoverCarouselPageCount';\nexport {\n TeachingPopoverCarouselFooterButton,\n renderTeachingPopoverCarouselFooterButton_unstable,\n teachingPopoverCarouselFooterButtonClassNames,\n useTeachingPopoverCarouselFooterButtonStyles_unstable,\n useTeachingPopoverCarouselFooterButton_unstable,\n} from './TeachingPopoverCarouselFooterButton';\nexport type {\n TeachingPopoverCarouselFooterButtonProps,\n TeachingPopoverCarouselFooterButtonSlots,\n TeachingPopoverCarouselFooterButtonState,\n} from './TeachingPopoverCarouselFooterButton';\n"],"names":["TeachingPopoverHeader","teachingPopoverHeaderClassNames","renderTeachingPopoverHeader_unstable","useTeachingPopoverHeaderStyles_unstable","useTeachingPopoverHeader_unstable","TeachingPopoverBody","teachingPopoverBodyClassNames","renderTeachingPopoverBody_unstable","useTeachingPopoverBodyStyles_unstable","useTeachingPopoverBody_unstable","TeachingPopoverCarouselCard","teachingPopoverCarouselCardClassNames","renderTeachingPopoverCarouselCard_unstable","useTeachingPopoverCarouselCardStyles_unstable","useTeachingPopoverCarouselCard_unstable","TeachingPopoverCarousel","teachingPopoverCarouselClassNames","renderTeachingPopoverCarousel_unstable","useTeachingPopoverCarouselStyles_unstable","useTeachingPopoverCarousel_unstable","useTeachingPopoverCarouselContextValues_unstable","TeachingPopoverCarouselFooter","teachingPopoverCarouselFooterClassNames","renderTeachingPopoverCarouselFooter_unstable","useTeachingPopoverCarouselFooterStyles_unstable","useTeachingPopoverCarouselFooter_unstable","TeachingPopoverCarouselNav","teachingPopoverCarouselNavClassNames","renderTeachingPopoverCarouselNav_unstable","useTeachingPopoverCarouselNavStyles_unstable","useTeachingPopoverCarouselNav_unstable","TeachingPopoverCarouselNavButton","teachingPopoverCarouselNavButtonClassNames","renderTeachingPopoverCarouselNavButton_unstable","useTeachingPopoverCarouselNavButtonStyles_unstable","useTeachingPopoverCarouselNavButton_unstable","TeachingPopoverSurface","renderTeachingPopoverSurface_unstable","teachingPopoverSurfaceClassNames","useTeachingPopoverSurfaceStyles_unstable","useTeachingPopoverSurface_unstable","TeachingPopoverTitle","teachingPopoverTitleClassNames","renderTeachingPopoverTitle_unstable","useTeachingPopoverTitleStyles_unstable","useTeachingPopoverTitle_unstable","TeachingPopoverTrigger","renderTeachingPopoverTrigger_unstable","useTeachingPopoverTrigger_unstable","TeachingPopover","renderTeachingPopover_unstable","useTeachingPopover_unstable","TeachingPopoverFooter","teachingPopoverFooterClassNames","renderTeachingPopoverFooter_unstable","useTeachingPopoverFooter_unstable","TeachingPopoverCarouselPageCount","renderTeachingPopoverCarouselPageCount_unstable","teachingPopoverCarouselPageCountClassNames","useTeachingPopoverCarouselPageCountStyles_unstable","useTeachingPopoverCarouselPageCount_unstable","TeachingPopoverCarouselFooterButton","renderTeachingPopoverCarouselFooterButton_unstable","teachingPopoverCarouselFooterButtonClassNames","useTeachingPopoverCarouselFooterButtonStyles_unstable","useTeachingPopoverCarouselFooterButton_unstable"],"mappings":"AAAA,SACEA,qBAAqB,EACrBC,+BAA+B,EAC/BC,oCAAoC,EACpCC,uCAAuC,EACvCC,iCAAiC,QAC5B,0BAA0B;AAMjC,SACEC,mBAAmB,EACnBC,6BAA6B,EAC7BC,kCAAkC,EAClCC,qCAAqC,EACrCC,+BAA+B,QAC1B,wBAAwB;AAM/B,SACEC,2BAA2B,EAC3BC,qCAAqC,EACrCC,0CAA0C,EAC1CC,6CAA6C,EAC7CC,uCAAuC,QAClC,gCAAgC;AAMvC,SACEC,uBAAuB,EACvBC,iCAAiC,EACjCC,sCAAsC,EACtCC,yCAAyC,EACzCC,mCAAmC,EACnCC,gDAAgD,QAC3C,4BAA4B;AAMnC,SACEC,6BAA6B,EAC7BC,uCAAuC,EACvCC,4CAA4C,EAC5CC,+CAA+C,EAC/CC,yCAAyC,QACpC,kCAAkC;AAMzC,SACEC,0BAA0B,EAC1BC,oCAAoC,EACpCC,yCAAyC,EACzCC,4CAA4C,EAC5CC,sCAAsC,QACjC,+BAA+B;AAMtC,SACEC,gCAAgC,EAChCC,0CAA0C,EAC1CC,+CAA+C,EAC/CC,kDAAkD,EAClDC,4CAA4C,QACvC,qCAAqC;AAM5C,SACEC,sBAAsB,EACtBC,qCAAqC,EACrCC,gCAAgC,EAChCC,wCAAwC,EACxCC,kCAAkC,QAC7B,2BAA2B;AAMlC,SACEC,oBAAoB,EACpBC,8BAA8B,EAC9BC,mCAAmC,EACnCC,sCAAsC,EACtCC,gCAAgC,QAC3B,yBAAyB;AAMhC,SACEC,sBAAsB,EACtBC,qCAAqC,EACrCC,kCAAkC,QAC7B,2BAA2B;AAMlC,SAASC,eAAe,EAAEC,8BAA8B,EAAEC,2BAA2B,QAAQ,oBAAoB;AAEjH,SACEC,qBAAqB,EACrBC,+BAA+B,EAC/BC,oCAAoC,EACpCC,iCAAiC,QAC5B,0BAA0B;AAEjC,SACEC,gCAAgC,EAChCC,+CAA+C,EAC/CC,0CAA0C,EAC1CC,kDAAkD,EAClDC,4CAA4C,QACvC,qCAAqC;AAO5C,SACEC,mCAAmC,EACnCC,kDAAkD,EAClDC,6CAA6C,EAC7CC,qDAAqD,EACrDC,+CAA+C,QAC1C,wCAAwC"}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ const _export_star = require("@swc/helpers/_/_export_star");
6
+ _export_star._(require("./components/TeachingPopover/index"), exports);
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["TeachingPopover.js"],"sourcesContent":["export * from './components/TeachingPopover/index';\n"],"names":[],"mappings":";;;;;uBAAc"}