@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.
- package/CHANGELOG.md +324 -0
- package/LICENSE +15 -0
- package/README.md +66 -0
- package/dist/index.d.ts +715 -0
- package/lib/TeachingPopover.js +1 -0
- package/lib/TeachingPopover.js.map +1 -0
- package/lib/TeachingPopoverBody.js +1 -0
- package/lib/TeachingPopoverBody.js.map +1 -0
- package/lib/TeachingPopoverCarousel.js +1 -0
- package/lib/TeachingPopoverCarousel.js.map +1 -0
- package/lib/TeachingPopoverCarouselCard.js +1 -0
- package/lib/TeachingPopoverCarouselCard.js.map +1 -0
- package/lib/TeachingPopoverCarouselFooter.js +1 -0
- package/lib/TeachingPopoverCarouselFooter.js.map +1 -0
- package/lib/TeachingPopoverCarouselFooterButton.js +1 -0
- package/lib/TeachingPopoverCarouselFooterButton.js.map +1 -0
- package/lib/TeachingPopoverCarouselNav.js +1 -0
- package/lib/TeachingPopoverCarouselNav.js.map +1 -0
- package/lib/TeachingPopoverCarouselNavButton.js +1 -0
- package/lib/TeachingPopoverCarouselNavButton.js.map +1 -0
- package/lib/TeachingPopoverCarouselPageCount.js +1 -0
- package/lib/TeachingPopoverCarouselPageCount.js.map +1 -0
- package/lib/TeachingPopoverFooter.js +1 -0
- package/lib/TeachingPopoverFooter.js.map +1 -0
- package/lib/TeachingPopoverHeader.js +1 -0
- package/lib/TeachingPopoverHeader.js.map +1 -0
- package/lib/TeachingPopoverSurface.js +1 -0
- package/lib/TeachingPopoverSurface.js.map +1 -0
- package/lib/TeachingPopoverTitle.js +1 -0
- package/lib/TeachingPopoverTitle.js.map +1 -0
- package/lib/TeachingPopoverTrigger.js +1 -0
- package/lib/TeachingPopoverTrigger.js.map +1 -0
- package/lib/components/TeachingPopover/TeachingPopover.js +10 -0
- package/lib/components/TeachingPopover/TeachingPopover.js.map +1 -0
- package/lib/components/TeachingPopover/TeachingPopover.types.js +1 -0
- package/lib/components/TeachingPopover/TeachingPopover.types.js.map +1 -0
- package/lib/components/TeachingPopover/index.js +4 -0
- package/lib/components/TeachingPopover/index.js.map +1 -0
- package/lib/components/TeachingPopover/renderTeachingPopover.js +4 -0
- package/lib/components/TeachingPopover/renderTeachingPopover.js.map +1 -0
- package/lib/components/TeachingPopover/useTeachingPopover.js +11 -0
- package/lib/components/TeachingPopover/useTeachingPopover.js.map +1 -0
- package/lib/components/TeachingPopoverBody/TeachingPopoverBody.js +17 -0
- package/lib/components/TeachingPopoverBody/TeachingPopoverBody.js.map +1 -0
- package/lib/components/TeachingPopoverBody/TeachingPopoverBody.types.js +1 -0
- package/lib/components/TeachingPopoverBody/TeachingPopoverBody.types.js.map +1 -0
- package/lib/components/TeachingPopoverBody/index.js +5 -0
- package/lib/components/TeachingPopoverBody/index.js.map +1 -0
- package/lib/components/TeachingPopoverBody/renderTeachingPopoverBody.js +13 -0
- package/lib/components/TeachingPopoverBody/renderTeachingPopoverBody.js.map +1 -0
- package/lib/components/TeachingPopoverBody/useTeachingPopoverBody.js +25 -0
- package/lib/components/TeachingPopoverBody/useTeachingPopoverBody.js.map +1 -0
- package/lib/components/TeachingPopoverBody/useTeachingPopoverBodyStyles.styles.js +58 -0
- package/lib/components/TeachingPopoverBody/useTeachingPopoverBodyStyles.styles.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/Carousel.js +123 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/Carousel.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/Carousel.types.js +1 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/Carousel.types.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/CarouselContext.js +14 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/CarouselContext.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/CarouselItem.types.js +1 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/CarouselItem.types.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/Carouseltem.js +11 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/Carouseltem.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/renderCarouselItem.js +8 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/renderCarouselItem.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/useCarouselItem.js +28 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/CarouselItem/useCarouselItem.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/constants.js +2 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/constants.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/createCarouselStore.js +60 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/createCarouselStore.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/useCarouselValues.js +6 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/useCarouselValues.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/useCarouselWalker.js +98 -0
- package/lib/components/TeachingPopoverCarousel/Carousel/useCarouselWalker.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/TeachingPopoverCarousel.js +19 -0
- package/lib/components/TeachingPopoverCarousel/TeachingPopoverCarousel.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/TeachingPopoverCarousel.types.js +1 -0
- package/lib/components/TeachingPopoverCarousel/TeachingPopoverCarousel.types.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/index.js +6 -0
- package/lib/components/TeachingPopoverCarousel/index.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/renderTeachingPopoverCarousel.js +12 -0
- package/lib/components/TeachingPopoverCarousel/renderTeachingPopoverCarousel.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/useTeachingPopoverCarousel.js +32 -0
- package/lib/components/TeachingPopoverCarousel/useTeachingPopoverCarousel.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/useTeachingPopoverCarouselContextValues.js +12 -0
- package/lib/components/TeachingPopoverCarousel/useTeachingPopoverCarouselContextValues.js.map +1 -0
- package/lib/components/TeachingPopoverCarousel/useTeachingPopoverCarouselStyles.styles.js +15 -0
- package/lib/components/TeachingPopoverCarousel/useTeachingPopoverCarouselStyles.styles.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.js +15 -0
- package/lib/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.types.js +1 -0
- package/lib/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.types.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselCard/index.js +5 -0
- package/lib/components/TeachingPopoverCarouselCard/index.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselCard/renderTeachingPopoverCarouselCard.js +8 -0
- package/lib/components/TeachingPopoverCarouselCard/renderTeachingPopoverCarouselCard.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCard.js +25 -0
- package/lib/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCard.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCardStyles.styles.js +14 -0
- package/lib/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCardStyles.styles.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.js +15 -0
- package/lib/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.types.js +1 -0
- package/lib/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.types.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselFooter/index.js +5 -0
- package/lib/components/TeachingPopoverCarouselFooter/index.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselFooter/renderTeachingPopoverCarouselFooter.js +16 -0
- package/lib/components/TeachingPopoverCarouselFooter/renderTeachingPopoverCarouselFooter.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooter.js +37 -0
- package/lib/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooter.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooterStyles.styles.js +39 -0
- package/lib/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooterStyles.styles.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.js +15 -0
- package/lib/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.types.js +1 -0
- package/lib/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.types.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselFooterButton/index.js +5 -0
- package/lib/components/TeachingPopoverCarouselFooterButton/index.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselFooterButton/renderTeachingPopoverCarouselFooterButton.js +8 -0
- package/lib/components/TeachingPopoverCarouselFooterButton/renderTeachingPopoverCarouselFooterButton.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButton.js +71 -0
- package/lib/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButton.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButtonStyles.styles.js +64 -0
- package/lib/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButtonStyles.styles.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.js +15 -0
- package/lib/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.types.js +1 -0
- package/lib/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.types.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselNav/index.js +5 -0
- package/lib/components/TeachingPopoverCarouselNav/index.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselNav/renderTeachingPopoverCarouselNav.js +15 -0
- package/lib/components/TeachingPopoverCarouselNav/renderTeachingPopoverCarouselNav.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNav.js +35 -0
- package/lib/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNav.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNavStyles.styles.js +35 -0
- package/lib/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNavStyles.styles.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselNav/valueIdContext.js +8 -0
- package/lib/components/TeachingPopoverCarouselNav/valueIdContext.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.js +14 -0
- package/lib/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.types.js +1 -0
- package/lib/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.types.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselNavButton/index.js +5 -0
- package/lib/components/TeachingPopoverCarouselNavButton/index.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselNavButton/renderTeachingPopoverCarouselNavButton.js +8 -0
- package/lib/components/TeachingPopoverCarouselNavButton/renderTeachingPopoverCarouselNavButton.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButton.js +52 -0
- package/lib/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButton.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButtonStyles.styles.js +104 -0
- package/lib/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButtonStyles.styles.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.js +14 -0
- package/lib/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.types.js +1 -0
- package/lib/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.types.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselPageCount/index.js +5 -0
- package/lib/components/TeachingPopoverCarouselPageCount/index.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselPageCount/renderTeachingPopoverCarouselPageCount.js +8 -0
- package/lib/components/TeachingPopoverCarouselPageCount/renderTeachingPopoverCarouselPageCount.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCount.js +34 -0
- package/lib/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCount.js.map +1 -0
- package/lib/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCountStyles.styles.js +25 -0
- package/lib/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCountStyles.styles.js.map +1 -0
- package/lib/components/TeachingPopoverFooter/TeachingPopoverFooter.js +18 -0
- package/lib/components/TeachingPopoverFooter/TeachingPopoverFooter.js.map +1 -0
- package/lib/components/TeachingPopoverFooter/TeachingPopoverFooter.types.js +1 -0
- package/lib/components/TeachingPopoverFooter/TeachingPopoverFooter.types.js.map +1 -0
- package/lib/components/TeachingPopoverFooter/index.js +5 -0
- package/lib/components/TeachingPopoverFooter/index.js.map +1 -0
- package/lib/components/TeachingPopoverFooter/renderTeachingPopoverFooter.js +13 -0
- package/lib/components/TeachingPopoverFooter/renderTeachingPopoverFooter.js.map +1 -0
- package/lib/components/TeachingPopoverFooter/useTeachingPopoverFooter.js +57 -0
- package/lib/components/TeachingPopoverFooter/useTeachingPopoverFooter.js.map +1 -0
- package/lib/components/TeachingPopoverFooter/useTeachingPopoverFooterStyles.styles.js +68 -0
- package/lib/components/TeachingPopoverFooter/useTeachingPopoverFooterStyles.styles.js.map +1 -0
- package/lib/components/TeachingPopoverHeader/TeachingPopoverHeader.js +18 -0
- package/lib/components/TeachingPopoverHeader/TeachingPopoverHeader.js.map +1 -0
- package/lib/components/TeachingPopoverHeader/TeachingPopoverHeader.types.js +1 -0
- package/lib/components/TeachingPopoverHeader/TeachingPopoverHeader.types.js.map +1 -0
- package/lib/components/TeachingPopoverHeader/index.js +5 -0
- package/lib/components/TeachingPopoverHeader/index.js.map +1 -0
- package/lib/components/TeachingPopoverHeader/renderTeachingPopoverHeader.js +14 -0
- package/lib/components/TeachingPopoverHeader/renderTeachingPopoverHeader.js.map +1 -0
- package/lib/components/TeachingPopoverHeader/useTeachingPopoverHeader.js +54 -0
- package/lib/components/TeachingPopoverHeader/useTeachingPopoverHeader.js.map +1 -0
- package/lib/components/TeachingPopoverHeader/useTeachingPopoverHeaderStyles.styles.js +108 -0
- package/lib/components/TeachingPopoverHeader/useTeachingPopoverHeaderStyles.styles.js.map +1 -0
- package/lib/components/TeachingPopoverSurface/TeachingPopoverSurface.js +16 -0
- package/lib/components/TeachingPopoverSurface/TeachingPopoverSurface.js.map +1 -0
- package/lib/components/TeachingPopoverSurface/TeachingPopoverSurface.types.js +1 -0
- package/lib/components/TeachingPopoverSurface/TeachingPopoverSurface.types.js.map +1 -0
- package/lib/components/TeachingPopoverSurface/index.js +5 -0
- package/lib/components/TeachingPopoverSurface/index.js.map +1 -0
- package/lib/components/TeachingPopoverSurface/renderTeachingPopoverSurface.js +9 -0
- package/lib/components/TeachingPopoverSurface/renderTeachingPopoverSurface.js.map +1 -0
- package/lib/components/TeachingPopoverSurface/useTeachingPopoverSurface.js +14 -0
- package/lib/components/TeachingPopoverSurface/useTeachingPopoverSurface.js.map +1 -0
- package/lib/components/TeachingPopoverSurface/useTeachingPopoverSurfaceStyles.styles.js +37 -0
- package/lib/components/TeachingPopoverSurface/useTeachingPopoverSurfaceStyles.styles.js.map +1 -0
- package/lib/components/TeachingPopoverTitle/TeachingPopoverTitle.js +18 -0
- package/lib/components/TeachingPopoverTitle/TeachingPopoverTitle.js.map +1 -0
- package/lib/components/TeachingPopoverTitle/TeachingPopoverTitle.types.js +1 -0
- package/lib/components/TeachingPopoverTitle/TeachingPopoverTitle.types.js.map +1 -0
- package/lib/components/TeachingPopoverTitle/index.js +5 -0
- package/lib/components/TeachingPopoverTitle/index.js.map +1 -0
- package/lib/components/TeachingPopoverTitle/renderTeachingPopoverTitle.js +13 -0
- package/lib/components/TeachingPopoverTitle/renderTeachingPopoverTitle.js.map +1 -0
- package/lib/components/TeachingPopoverTitle/useTeachingPopoverTitle.js +46 -0
- package/lib/components/TeachingPopoverTitle/useTeachingPopoverTitle.js.map +1 -0
- package/lib/components/TeachingPopoverTitle/useTeachingPopoverTitleStyles.styles.js +80 -0
- package/lib/components/TeachingPopoverTitle/useTeachingPopoverTitleStyles.styles.js.map +1 -0
- package/lib/components/TeachingPopoverTrigger/TeachingPopoverTrigger.js +12 -0
- package/lib/components/TeachingPopoverTrigger/TeachingPopoverTrigger.js.map +1 -0
- package/lib/components/TeachingPopoverTrigger/TeachingPopoverTrigger.types.js +1 -0
- package/lib/components/TeachingPopoverTrigger/TeachingPopoverTrigger.types.js.map +1 -0
- package/lib/components/TeachingPopoverTrigger/index.js +4 -0
- package/lib/components/TeachingPopoverTrigger/index.js.map +1 -0
- package/lib/components/TeachingPopoverTrigger/renderTeachingPopoverTrigger.js +5 -0
- package/lib/components/TeachingPopoverTrigger/renderTeachingPopoverTrigger.js.map +1 -0
- package/lib/components/TeachingPopoverTrigger/useTeachingPopoverTrigger.js +9 -0
- package/lib/components/TeachingPopoverTrigger/useTeachingPopoverTrigger.js.map +1 -0
- package/lib/index.js +14 -0
- package/lib/index.js.map +1 -0
- package/lib-commonjs/TeachingPopover.js +6 -0
- package/lib-commonjs/TeachingPopover.js.map +1 -0
- package/lib-commonjs/TeachingPopoverBody.js +6 -0
- package/lib-commonjs/TeachingPopoverBody.js.map +1 -0
- package/lib-commonjs/TeachingPopoverCarousel.js +6 -0
- package/lib-commonjs/TeachingPopoverCarousel.js.map +1 -0
- package/lib-commonjs/TeachingPopoverCarouselCard.js +6 -0
- package/lib-commonjs/TeachingPopoverCarouselCard.js.map +1 -0
- package/lib-commonjs/TeachingPopoverCarouselFooter.js +6 -0
- package/lib-commonjs/TeachingPopoverCarouselFooter.js.map +1 -0
- package/lib-commonjs/TeachingPopoverCarouselFooterButton.js +6 -0
- package/lib-commonjs/TeachingPopoverCarouselFooterButton.js.map +1 -0
- package/lib-commonjs/TeachingPopoverCarouselNav.js +6 -0
- package/lib-commonjs/TeachingPopoverCarouselNav.js.map +1 -0
- package/lib-commonjs/TeachingPopoverCarouselNavButton.js +6 -0
- package/lib-commonjs/TeachingPopoverCarouselNavButton.js.map +1 -0
- package/lib-commonjs/TeachingPopoverCarouselPageCount.js +6 -0
- package/lib-commonjs/TeachingPopoverCarouselPageCount.js.map +1 -0
- package/lib-commonjs/TeachingPopoverFooter.js +6 -0
- package/lib-commonjs/TeachingPopoverFooter.js.map +1 -0
- package/lib-commonjs/TeachingPopoverHeader.js +6 -0
- package/lib-commonjs/TeachingPopoverHeader.js.map +1 -0
- package/lib-commonjs/TeachingPopoverSurface.js +6 -0
- package/lib-commonjs/TeachingPopoverSurface.js.map +1 -0
- package/lib-commonjs/TeachingPopoverTitle.js +6 -0
- package/lib-commonjs/TeachingPopoverTitle.js.map +1 -0
- package/lib-commonjs/TeachingPopoverTrigger.js +6 -0
- package/lib-commonjs/TeachingPopoverTrigger.js.map +1 -0
- package/lib-commonjs/components/TeachingPopover/TeachingPopover.js +19 -0
- package/lib-commonjs/components/TeachingPopover/TeachingPopover.js.map +1 -0
- package/lib-commonjs/components/TeachingPopover/TeachingPopover.types.js +4 -0
- package/lib-commonjs/components/TeachingPopover/TeachingPopover.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopover/index.js +9 -0
- package/lib-commonjs/components/TeachingPopover/index.js.map +1 -0
- package/lib-commonjs/components/TeachingPopover/renderTeachingPopover.js +12 -0
- package/lib-commonjs/components/TeachingPopover/renderTeachingPopover.js.map +1 -0
- package/lib-commonjs/components/TeachingPopover/useTeachingPopover.js +21 -0
- package/lib-commonjs/components/TeachingPopover/useTeachingPopover.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverBody/TeachingPopoverBody.js +23 -0
- package/lib-commonjs/components/TeachingPopoverBody/TeachingPopoverBody.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverBody/TeachingPopoverBody.types.js +4 -0
- package/lib-commonjs/components/TeachingPopoverBody/TeachingPopoverBody.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverBody/index.js +10 -0
- package/lib-commonjs/components/TeachingPopoverBody/index.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverBody/renderTeachingPopoverBody.js +21 -0
- package/lib-commonjs/components/TeachingPopoverBody/renderTeachingPopoverBody.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverBody/useTeachingPopoverBody.js +32 -0
- package/lib-commonjs/components/TeachingPopoverBody/useTeachingPopoverBody.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverBody/useTeachingPopoverBodyStyles.styles.js +98 -0
- package/lib-commonjs/components/TeachingPopoverBody/useTeachingPopoverBodyStyles.styles.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/Carousel.js +132 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/Carousel.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/Carousel.types.js +6 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/Carousel.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselContext.js +36 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselContext.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/CarouselItem.types.js +4 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/CarouselItem.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/Carouseltem.js +19 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/Carouseltem.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/renderCarouselItem.js +16 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/renderCarouselItem.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/useCarouselItem.js +39 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/CarouselItem/useCarouselItem.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/constants.js +20 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/constants.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/createCarouselStore.js +70 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/createCarouselStore.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/useCarouselValues.js +16 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/useCarouselValues.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/useCarouselWalker.js +109 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/Carousel/useCarouselWalker.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/TeachingPopoverCarousel.js +25 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/TeachingPopoverCarousel.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/TeachingPopoverCarousel.types.js +4 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/TeachingPopoverCarousel.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/index.js +11 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/index.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/renderTeachingPopoverCarousel.js +20 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/renderTeachingPopoverCarousel.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/useTeachingPopoverCarousel.js +43 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/useTeachingPopoverCarousel.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/useTeachingPopoverCarouselContextValues.js +22 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/useTeachingPopoverCarouselContextValues.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/useTeachingPopoverCarouselStyles.styles.js +31 -0
- package/lib-commonjs/components/TeachingPopoverCarousel/useTeachingPopoverCarouselStyles.styles.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.js +21 -0
- package/lib-commonjs/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.types.js +4 -0
- package/lib-commonjs/components/TeachingPopoverCarouselCard/TeachingPopoverCarouselCard.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselCard/index.js +10 -0
- package/lib-commonjs/components/TeachingPopoverCarouselCard/index.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselCard/renderTeachingPopoverCarouselCard.js +16 -0
- package/lib-commonjs/components/TeachingPopoverCarouselCard/renderTeachingPopoverCarouselCard.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCard.js +32 -0
- package/lib-commonjs/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCard.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCardStyles.styles.js +30 -0
- package/lib-commonjs/components/TeachingPopoverCarouselCard/useTeachingPopoverCarouselCardStyles.styles.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.js +21 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.types.js +6 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooter/TeachingPopoverCarouselFooter.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooter/index.js +10 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooter/index.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooter/renderTeachingPopoverCarouselFooter.js +24 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooter/renderTeachingPopoverCarouselFooter.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooter.js +48 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooter.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooterStyles.styles.js +60 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooter/useTeachingPopoverCarouselFooterStyles.styles.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.js +21 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.types.js +4 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/TeachingPopoverCarouselFooterButton.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/index.js +10 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/index.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/renderTeachingPopoverCarouselFooterButton.js +16 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/renderTeachingPopoverCarouselFooterButton.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButton.js +73 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButton.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButtonStyles.styles.js +129 -0
- package/lib-commonjs/components/TeachingPopoverCarouselFooterButton/useTeachingPopoverCarouselFooterButtonStyles.styles.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.js +21 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.types.js +6 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNav/TeachingPopoverCarouselNav.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNav/index.js +10 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNav/index.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNav/renderTeachingPopoverCarouselNav.js +23 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNav/renderTeachingPopoverCarouselNav.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNav.js +42 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNav.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNavStyles.styles.js +84 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNav/useTeachingPopoverCarouselNavStyles.styles.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNav/valueIdContext.js +30 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNav/valueIdContext.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.js +21 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.types.js +4 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNavButton/TeachingPopoverCarouselNavButton.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNavButton/index.js +10 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNavButton/index.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNavButton/renderTeachingPopoverCarouselNavButton.js +16 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNavButton/renderTeachingPopoverCarouselNavButton.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButton.js +55 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButton.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButtonStyles.styles.js +240 -0
- package/lib-commonjs/components/TeachingPopoverCarouselNavButton/useTeachingPopoverCarouselNavButtonStyles.styles.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.js +21 -0
- package/lib-commonjs/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.types.js +6 -0
- package/lib-commonjs/components/TeachingPopoverCarouselPageCount/TeachingPopoverCarouselPageCount.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselPageCount/index.js +10 -0
- package/lib-commonjs/components/TeachingPopoverCarouselPageCount/index.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselPageCount/renderTeachingPopoverCarouselPageCount.js +16 -0
- package/lib-commonjs/components/TeachingPopoverCarouselPageCount/renderTeachingPopoverCarouselPageCount.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCount.js +37 -0
- package/lib-commonjs/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCount.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCountStyles.styles.js +42 -0
- package/lib-commonjs/components/TeachingPopoverCarouselPageCount/useTeachingPopoverCarouselPageCountStyles.styles.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverFooter/TeachingPopoverFooter.js +21 -0
- package/lib-commonjs/components/TeachingPopoverFooter/TeachingPopoverFooter.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverFooter/TeachingPopoverFooter.types.js +4 -0
- package/lib-commonjs/components/TeachingPopoverFooter/TeachingPopoverFooter.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverFooter/index.js +10 -0
- package/lib-commonjs/components/TeachingPopoverFooter/index.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverFooter/renderTeachingPopoverFooter.js +21 -0
- package/lib-commonjs/components/TeachingPopoverFooter/renderTeachingPopoverFooter.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverFooter/useTeachingPopoverFooter.js +64 -0
- package/lib-commonjs/components/TeachingPopoverFooter/useTeachingPopoverFooter.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverFooter/useTeachingPopoverFooterStyles.styles.js +135 -0
- package/lib-commonjs/components/TeachingPopoverFooter/useTeachingPopoverFooterStyles.styles.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverHeader/TeachingPopoverHeader.js +23 -0
- package/lib-commonjs/components/TeachingPopoverHeader/TeachingPopoverHeader.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverHeader/TeachingPopoverHeader.types.js +4 -0
- package/lib-commonjs/components/TeachingPopoverHeader/TeachingPopoverHeader.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverHeader/index.js +10 -0
- package/lib-commonjs/components/TeachingPopoverHeader/index.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverHeader/renderTeachingPopoverHeader.js +22 -0
- package/lib-commonjs/components/TeachingPopoverHeader/renderTeachingPopoverHeader.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverHeader/useTeachingPopoverHeader.js +61 -0
- package/lib-commonjs/components/TeachingPopoverHeader/useTeachingPopoverHeader.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverHeader/useTeachingPopoverHeaderStyles.styles.js +230 -0
- package/lib-commonjs/components/TeachingPopoverHeader/useTeachingPopoverHeaderStyles.styles.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverSurface/TeachingPopoverSurface.js +23 -0
- package/lib-commonjs/components/TeachingPopoverSurface/TeachingPopoverSurface.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverSurface/TeachingPopoverSurface.types.js +4 -0
- package/lib-commonjs/components/TeachingPopoverSurface/TeachingPopoverSurface.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverSurface/index.js +10 -0
- package/lib-commonjs/components/TeachingPopoverSurface/index.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverSurface/renderTeachingPopoverSurface.js +17 -0
- package/lib-commonjs/components/TeachingPopoverSurface/renderTeachingPopoverSurface.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverSurface/useTeachingPopoverSurface.js +17 -0
- package/lib-commonjs/components/TeachingPopoverSurface/useTeachingPopoverSurface.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverSurface/useTeachingPopoverSurfaceStyles.styles.js +89 -0
- package/lib-commonjs/components/TeachingPopoverSurface/useTeachingPopoverSurfaceStyles.styles.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverTitle/TeachingPopoverTitle.js +23 -0
- package/lib-commonjs/components/TeachingPopoverTitle/TeachingPopoverTitle.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverTitle/TeachingPopoverTitle.types.js +4 -0
- package/lib-commonjs/components/TeachingPopoverTitle/TeachingPopoverTitle.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverTitle/index.js +10 -0
- package/lib-commonjs/components/TeachingPopoverTitle/index.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverTitle/renderTeachingPopoverTitle.js +21 -0
- package/lib-commonjs/components/TeachingPopoverTitle/renderTeachingPopoverTitle.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverTitle/useTeachingPopoverTitle.js +53 -0
- package/lib-commonjs/components/TeachingPopoverTitle/useTeachingPopoverTitle.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverTitle/useTeachingPopoverTitleStyles.styles.js +185 -0
- package/lib-commonjs/components/TeachingPopoverTitle/useTeachingPopoverTitleStyles.styles.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverTrigger/TeachingPopoverTrigger.js +21 -0
- package/lib-commonjs/components/TeachingPopoverTrigger/TeachingPopoverTrigger.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverTrigger/TeachingPopoverTrigger.types.js +4 -0
- package/lib-commonjs/components/TeachingPopoverTrigger/TeachingPopoverTrigger.types.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverTrigger/index.js +9 -0
- package/lib-commonjs/components/TeachingPopoverTrigger/index.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverTrigger/renderTeachingPopoverTrigger.js +15 -0
- package/lib-commonjs/components/TeachingPopoverTrigger/renderTeachingPopoverTrigger.js.map +1 -0
- package/lib-commonjs/components/TeachingPopoverTrigger/useTeachingPopoverTrigger.js +15 -0
- package/lib-commonjs/components/TeachingPopoverTrigger/useTeachingPopoverTrigger.js.map +1 -0
- package/lib-commonjs/index.js +224 -0
- package/lib-commonjs/index.js.map +1 -0
- package/package.json +69 -0
package/lib-commonjs/components/TeachingPopoverFooter/useTeachingPopoverFooterStyles.styles.js
ADDED
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
teachingPopoverFooterClassNames: function() {
|
|
13
|
+
return teachingPopoverFooterClassNames;
|
|
14
|
+
},
|
|
15
|
+
useTeachingPopoverFooterStyles_unstable: function() {
|
|
16
|
+
return useTeachingPopoverFooterStyles_unstable;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
const _react = require("@griffel/react");
|
|
20
|
+
const teachingPopoverFooterClassNames = {
|
|
21
|
+
root: 'fui-TeachingPopoverFooter',
|
|
22
|
+
primary: 'fui-TeachingPopoverFooter__primary',
|
|
23
|
+
secondary: 'fui-TeachingPopoverFooter__secondary'
|
|
24
|
+
};
|
|
25
|
+
const useStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
26
|
+
root: {
|
|
27
|
+
mc9l5x: "f22iagw",
|
|
28
|
+
i8kkvl: "f4px1ci",
|
|
29
|
+
Belr9w4: "fn67r4l",
|
|
30
|
+
z8tnut: "f1kcqot9"
|
|
31
|
+
},
|
|
32
|
+
rootVertical: {
|
|
33
|
+
Beiy3e4: "f1vx9l62"
|
|
34
|
+
},
|
|
35
|
+
rootHorizontal: {
|
|
36
|
+
Beiy3e4: "f1063pyq",
|
|
37
|
+
Brf1p80: "f9c4gz4"
|
|
38
|
+
},
|
|
39
|
+
buttonRootVertical: {
|
|
40
|
+
a9b677: "f14z66ap",
|
|
41
|
+
Bbmb7ep: [
|
|
42
|
+
"fff7au0",
|
|
43
|
+
"f1bjk9e1"
|
|
44
|
+
],
|
|
45
|
+
Beyfa6y: [
|
|
46
|
+
"f1bjk9e1",
|
|
47
|
+
"fff7au0"
|
|
48
|
+
],
|
|
49
|
+
B7oj6ja: [
|
|
50
|
+
"fwsfkhu",
|
|
51
|
+
"f8wkphi"
|
|
52
|
+
],
|
|
53
|
+
Btl43ni: [
|
|
54
|
+
"f8wkphi",
|
|
55
|
+
"fwsfkhu"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
buttonRootHorizontal: {
|
|
59
|
+
Bf4jedk: "f14es27b",
|
|
60
|
+
Bbmb7ep: [
|
|
61
|
+
"fff7au0",
|
|
62
|
+
"f1bjk9e1"
|
|
63
|
+
],
|
|
64
|
+
Beyfa6y: [
|
|
65
|
+
"f1bjk9e1",
|
|
66
|
+
"fff7au0"
|
|
67
|
+
],
|
|
68
|
+
B7oj6ja: [
|
|
69
|
+
"fwsfkhu",
|
|
70
|
+
"f8wkphi"
|
|
71
|
+
],
|
|
72
|
+
Btl43ni: [
|
|
73
|
+
"f8wkphi",
|
|
74
|
+
"fwsfkhu"
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
brandSecondary: {
|
|
78
|
+
g2u3we: "fm1ebug",
|
|
79
|
+
h3c5rm: [
|
|
80
|
+
"f28omuz",
|
|
81
|
+
"f1uhflii"
|
|
82
|
+
],
|
|
83
|
+
B9xav0g: "f1ixw5o4",
|
|
84
|
+
zhjwy3: [
|
|
85
|
+
"f1uhflii",
|
|
86
|
+
"f28omuz"
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
brandPrimary: {
|
|
90
|
+
sj55zd: "f16muhyy",
|
|
91
|
+
De3pzq: "f10s6wn9",
|
|
92
|
+
Bi91k9c: "f3ymbdj",
|
|
93
|
+
Jwef8y: "f1rgtb95",
|
|
94
|
+
B2d53fq: "f1pu27ff",
|
|
95
|
+
iro3zm: "f1d5c7in"
|
|
96
|
+
}
|
|
97
|
+
}, {
|
|
98
|
+
d: [
|
|
99
|
+
".f22iagw{display:flex;}",
|
|
100
|
+
".f4px1ci{column-gap:8px;}",
|
|
101
|
+
".fn67r4l{row-gap:8px;}",
|
|
102
|
+
".f1kcqot9{padding-top:12px;}",
|
|
103
|
+
".f1vx9l62{flex-direction:column;}",
|
|
104
|
+
".f1063pyq{flex-direction:row;}",
|
|
105
|
+
".f9c4gz4{justify-content:flex-end;}",
|
|
106
|
+
".f14z66ap{width:auto;}",
|
|
107
|
+
".fff7au0{border-bottom-right-radius:4px;}",
|
|
108
|
+
".f1bjk9e1{border-bottom-left-radius:4px;}",
|
|
109
|
+
".fwsfkhu{border-top-right-radius:4px;}",
|
|
110
|
+
".f8wkphi{border-top-left-radius:4px;}",
|
|
111
|
+
".f14es27b{min-width:96px;}",
|
|
112
|
+
".fm1ebug{border-top-color:var(--colorNeutralForegroundOnBrand);}",
|
|
113
|
+
".f28omuz{border-right-color:var(--colorNeutralForegroundOnBrand);}",
|
|
114
|
+
".f1uhflii{border-left-color:var(--colorNeutralForegroundOnBrand);}",
|
|
115
|
+
".f1ixw5o4{border-bottom-color:var(--colorNeutralForegroundOnBrand);}",
|
|
116
|
+
".f16muhyy{color:var(--colorBrandForeground1);}",
|
|
117
|
+
".f10s6wn9{background-color:var(--colorNeutralForegroundOnBrand);}"
|
|
118
|
+
],
|
|
119
|
+
h: [
|
|
120
|
+
".f3ymbdj:hover{color:var(--colorCompoundBrandForeground1Hover);}",
|
|
121
|
+
".f1rgtb95:hover{background-color:var(--colorNeutralForegroundOnBrand);}",
|
|
122
|
+
".f1pu27ff:hover:active{color:var(--colorCompoundBrandForeground1Pressed);}",
|
|
123
|
+
".f1d5c7in:hover:active{background-color:var(--colorNeutralForegroundOnBrand);}"
|
|
124
|
+
]
|
|
125
|
+
});
|
|
126
|
+
const useTeachingPopoverFooterStyles_unstable = (state)=>{
|
|
127
|
+
const styles = useStyles();
|
|
128
|
+
const { appearance, footerLayout } = state;
|
|
129
|
+
state.root.className = (0, _react.mergeClasses)(teachingPopoverFooterClassNames.root, styles.root, footerLayout === 'horizontal' ? styles.rootHorizontal : styles.rootVertical, state.root.className);
|
|
130
|
+
if (state.secondary) {
|
|
131
|
+
state.secondary.className = (0, _react.mergeClasses)(teachingPopoverFooterClassNames.secondary, footerLayout === 'horizontal' ? styles.buttonRootHorizontal : styles.buttonRootVertical, appearance === 'brand' ? styles.brandSecondary : undefined, state.secondary.className);
|
|
132
|
+
}
|
|
133
|
+
state.primary.className = (0, _react.mergeClasses)(teachingPopoverFooterClassNames.primary, footerLayout === 'horizontal' ? styles.buttonRootHorizontal : styles.buttonRootVertical, appearance === 'brand' ? styles.brandPrimary : undefined, state.primary.className);
|
|
134
|
+
return state;
|
|
135
|
+
}; //# sourceMappingURL=useTeachingPopoverFooterStyles.styles.js.map
|
package/lib-commonjs/components/TeachingPopoverFooter/useTeachingPopoverFooterStyles.styles.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["useTeachingPopoverFooterStyles.styles.js"],"sourcesContent":["import { __styles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens } from '@fluentui/react-theme';\nexport const teachingPopoverFooterClassNames = {\n root: 'fui-TeachingPopoverFooter',\n primary: 'fui-TeachingPopoverFooter__primary',\n secondary: 'fui-TeachingPopoverFooter__secondary'\n};\nconst useStyles = /*#__PURE__*/__styles({\n root: {\n mc9l5x: \"f22iagw\",\n i8kkvl: \"f4px1ci\",\n Belr9w4: \"fn67r4l\",\n z8tnut: \"f1kcqot9\"\n },\n rootVertical: {\n Beiy3e4: \"f1vx9l62\"\n },\n rootHorizontal: {\n Beiy3e4: \"f1063pyq\",\n Brf1p80: \"f9c4gz4\"\n },\n buttonRootVertical: {\n a9b677: \"f14z66ap\",\n Bbmb7ep: [\"fff7au0\", \"f1bjk9e1\"],\n Beyfa6y: [\"f1bjk9e1\", \"fff7au0\"],\n B7oj6ja: [\"fwsfkhu\", \"f8wkphi\"],\n Btl43ni: [\"f8wkphi\", \"fwsfkhu\"]\n },\n buttonRootHorizontal: {\n Bf4jedk: \"f14es27b\",\n Bbmb7ep: [\"fff7au0\", \"f1bjk9e1\"],\n Beyfa6y: [\"f1bjk9e1\", \"fff7au0\"],\n B7oj6ja: [\"fwsfkhu\", \"f8wkphi\"],\n Btl43ni: [\"f8wkphi\", \"fwsfkhu\"]\n },\n brandSecondary: {\n g2u3we: \"fm1ebug\",\n h3c5rm: [\"f28omuz\", \"f1uhflii\"],\n B9xav0g: \"f1ixw5o4\",\n zhjwy3: [\"f1uhflii\", \"f28omuz\"]\n },\n brandPrimary: {\n sj55zd: \"f16muhyy\",\n De3pzq: \"f10s6wn9\",\n Bi91k9c: \"f3ymbdj\",\n Jwef8y: \"f1rgtb95\",\n B2d53fq: \"f1pu27ff\",\n iro3zm: \"f1d5c7in\"\n }\n}, {\n d: [\".f22iagw{display:flex;}\", \".f4px1ci{column-gap:8px;}\", \".fn67r4l{row-gap:8px;}\", \".f1kcqot9{padding-top:12px;}\", \".f1vx9l62{flex-direction:column;}\", \".f1063pyq{flex-direction:row;}\", \".f9c4gz4{justify-content:flex-end;}\", \".f14z66ap{width:auto;}\", \".fff7au0{border-bottom-right-radius:4px;}\", \".f1bjk9e1{border-bottom-left-radius:4px;}\", \".fwsfkhu{border-top-right-radius:4px;}\", \".f8wkphi{border-top-left-radius:4px;}\", \".f14es27b{min-width:96px;}\", \".fm1ebug{border-top-color:var(--colorNeutralForegroundOnBrand);}\", \".f28omuz{border-right-color:var(--colorNeutralForegroundOnBrand);}\", \".f1uhflii{border-left-color:var(--colorNeutralForegroundOnBrand);}\", \".f1ixw5o4{border-bottom-color:var(--colorNeutralForegroundOnBrand);}\", \".f16muhyy{color:var(--colorBrandForeground1);}\", \".f10s6wn9{background-color:var(--colorNeutralForegroundOnBrand);}\"],\n h: [\".f3ymbdj:hover{color:var(--colorCompoundBrandForeground1Hover);}\", \".f1rgtb95:hover{background-color:var(--colorNeutralForegroundOnBrand);}\", \".f1pu27ff:hover:active{color:var(--colorCompoundBrandForeground1Pressed);}\", \".f1d5c7in:hover:active{background-color:var(--colorNeutralForegroundOnBrand);}\"]\n});\n/** Applies style classnames to slots */\nexport const useTeachingPopoverFooterStyles_unstable = state => {\n const styles = useStyles();\n const {\n appearance,\n footerLayout\n } = state;\n state.root.className = mergeClasses(teachingPopoverFooterClassNames.root, styles.root, footerLayout === 'horizontal' ? styles.rootHorizontal : styles.rootVertical, state.root.className);\n if (state.secondary) {\n state.secondary.className = mergeClasses(teachingPopoverFooterClassNames.secondary, footerLayout === 'horizontal' ? styles.buttonRootHorizontal : styles.buttonRootVertical, appearance === 'brand' ? styles.brandSecondary : undefined, state.secondary.className);\n }\n state.primary.className = mergeClasses(teachingPopoverFooterClassNames.primary, footerLayout === 'horizontal' ? styles.buttonRootHorizontal : styles.buttonRootVertical, appearance === 'brand' ? styles.brandPrimary : undefined, state.primary.className);\n return state;\n};\n//# sourceMappingURL=useTeachingPopoverFooterStyles.styles.js.map"],"names":["teachingPopoverFooterClassNames","useTeachingPopoverFooterStyles_unstable","root","primary","secondary","useStyles","__styles","mc9l5x","i8kkvl","Belr9w4","z8tnut","rootVertical","Beiy3e4","rootHorizontal","Brf1p80","buttonRootVertical","a9b677","Bbmb7ep","Beyfa6y","B7oj6ja","Btl43ni","buttonRootHorizontal","Bf4jedk","brandSecondary","g2u3we","h3c5rm","B9xav0g","zhjwy3","brandPrimary","sj55zd","De3pzq","Bi91k9c","Jwef8y","B2d53fq","iro3zm","d","h","state","styles","appearance","footerLayout","className","mergeClasses","undefined"],"mappings":";;;;;;;;;;;IAEaA,+BAA+B;eAA/BA;;IAoDAC,uCAAuC;eAAvCA;;;uBAtDsC;AAE5C,MAAMD,kCAAkC;IAC7CE,MAAM;IACNC,SAAS;IACTC,WAAW;AACb;AACA,MAAMC,YAAY,WAAW,GAAEC,IAAAA,eAAQ,EAAC;IACtCJ,MAAM;QACJK,QAAQ;QACRC,QAAQ;QACRC,SAAS;QACTC,QAAQ;IACV;IACAC,cAAc;QACZC,SAAS;IACX;IACAC,gBAAgB;QACdD,SAAS;QACTE,SAAS;IACX;IACAC,oBAAoB;QAClBC,QAAQ;QACRC,SAAS;YAAC;YAAW;SAAW;QAChCC,SAAS;YAAC;YAAY;SAAU;QAChCC,SAAS;YAAC;YAAW;SAAU;QAC/BC,SAAS;YAAC;YAAW;SAAU;IACjC;IACAC,sBAAsB;QACpBC,SAAS;QACTL,SAAS;YAAC;YAAW;SAAW;QAChCC,SAAS;YAAC;YAAY;SAAU;QAChCC,SAAS;YAAC;YAAW;SAAU;QAC/BC,SAAS;YAAC;YAAW;SAAU;IACjC;IACAG,gBAAgB;QACdC,QAAQ;QACRC,QAAQ;YAAC;YAAW;SAAW;QAC/BC,SAAS;QACTC,QAAQ;YAAC;YAAY;SAAU;IACjC;IACAC,cAAc;QACZC,QAAQ;QACRC,QAAQ;QACRC,SAAS;QACTC,QAAQ;QACRC,SAAS;QACTC,QAAQ;IACV;AACF,GAAG;IACDC,GAAG;QAAC;QAA2B;QAA6B;QAA0B;QAAgC;QAAqC;QAAkC;QAAuC;QAA0B;QAA6C;QAA6C;QAA0C;QAAyC;QAA8B;QAAoE;QAAsE;QAAsE;QAAwE;QAAkD;KAAoE;IACv1BC,GAAG;QAAC;QAAoE;QAA2E;QAA8E;KAAiF;AACpT;AAEO,MAAMnC,0CAA0CoC,CAAAA;IACrD,MAAMC,SAASjC;IACf,MAAM,EACJkC,UAAU,EACVC,YAAY,EACb,GAAGH;IACJA,MAAMnC,IAAI,CAACuC,SAAS,GAAGC,IAAAA,mBAAY,EAAC1C,gCAAgCE,IAAI,EAAEoC,OAAOpC,IAAI,EAAEsC,iBAAiB,eAAeF,OAAOzB,cAAc,GAAGyB,OAAO3B,YAAY,EAAE0B,MAAMnC,IAAI,CAACuC,SAAS;IACxL,IAAIJ,MAAMjC,SAAS,EAAE;QACnBiC,MAAMjC,SAAS,CAACqC,SAAS,GAAGC,IAAAA,mBAAY,EAAC1C,gCAAgCI,SAAS,EAAEoC,iBAAiB,eAAeF,OAAOjB,oBAAoB,GAAGiB,OAAOvB,kBAAkB,EAAEwB,eAAe,UAAUD,OAAOf,cAAc,GAAGoB,WAAWN,MAAMjC,SAAS,CAACqC,SAAS;IACpQ;IACAJ,MAAMlC,OAAO,CAACsC,SAAS,GAAGC,IAAAA,mBAAY,EAAC1C,gCAAgCG,OAAO,EAAEqC,iBAAiB,eAAeF,OAAOjB,oBAAoB,GAAGiB,OAAOvB,kBAAkB,EAAEwB,eAAe,UAAUD,OAAOV,YAAY,GAAGe,WAAWN,MAAMlC,OAAO,CAACsC,SAAS;IAC1P,OAAOJ;AACT,GACA,iEAAiE"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "TeachingPopoverHeader", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return TeachingPopoverHeader;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _interop_require_wildcard = require("@swc/helpers/_/_interop_require_wildcard");
|
|
12
|
+
const _react = /*#__PURE__*/ _interop_require_wildcard._(require("react"));
|
|
13
|
+
const _useTeachingPopoverHeader = require("./useTeachingPopoverHeader");
|
|
14
|
+
const _renderTeachingPopoverHeader = require("./renderTeachingPopoverHeader");
|
|
15
|
+
const _useTeachingPopoverHeaderStylesstyles = require("./useTeachingPopoverHeaderStyles.styles");
|
|
16
|
+
const _reactsharedcontexts = require("@fluentui/react-shared-contexts");
|
|
17
|
+
const TeachingPopoverHeader = /*#__PURE__*/ _react.forwardRef((props, ref)=>{
|
|
18
|
+
const state = (0, _useTeachingPopoverHeader.useTeachingPopoverHeader_unstable)(props, ref);
|
|
19
|
+
(0, _useTeachingPopoverHeaderStylesstyles.useTeachingPopoverHeaderStyles_unstable)(state);
|
|
20
|
+
(0, _reactsharedcontexts.useCustomStyleHook_unstable)('useTeachingPopoverHeaderStyles_unstable')(state);
|
|
21
|
+
return (0, _renderTeachingPopoverHeader.renderTeachingPopoverHeader_unstable)(state);
|
|
22
|
+
});
|
|
23
|
+
TeachingPopoverHeader.displayName = 'TeachingPopoverHeader';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["TeachingPopoverHeader.js"],"sourcesContent":["import * as React from 'react';\nimport { useTeachingPopoverHeader_unstable } from './useTeachingPopoverHeader';\nimport { renderTeachingPopoverHeader_unstable } from './renderTeachingPopoverHeader';\nimport { useTeachingPopoverHeaderStyles_unstable } from './useTeachingPopoverHeaderStyles.styles';\nimport { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';\n/**\n * Define a styled TeachingPopoverHeader, using the `useTeachingPopoverHeader_unstable` and `useTeachingPopoverHeaderStyles_unstable`\n * hooks.\n *\n * TeachingPopoverHeader is an info subtitle located at the top of the popover, it provides a dismiss button by default (can be nulled)\n * and an info-tip icon that can be overridden or removed, subtitle displayed will be the children elements of TeachingPopoverHeader.\n */ export const TeachingPopoverHeader = /*#__PURE__*/ React.forwardRef((props, ref)=>{\n const state = useTeachingPopoverHeader_unstable(props, ref);\n useTeachingPopoverHeaderStyles_unstable(state);\n useCustomStyleHook_unstable('useTeachingPopoverHeaderStyles_unstable')(state);\n return renderTeachingPopoverHeader_unstable(state);\n});\nTeachingPopoverHeader.displayName = 'TeachingPopoverHeader';\n"],"names":["TeachingPopoverHeader","React","forwardRef","props","ref","state","useTeachingPopoverHeader_unstable","useTeachingPopoverHeaderStyles_unstable","useCustomStyleHook_unstable","renderTeachingPopoverHeader_unstable","displayName"],"mappings":";;;;+BAWiBA;;;eAAAA;;;;iEAXM;0CAC2B;6CACG;sDACG;qCACZ;AAOjC,MAAMA,wBAAwB,WAAW,GAAGC,OAAMC,UAAU,CAAC,CAACC,OAAOC;IAC5E,MAAMC,QAAQC,IAAAA,2DAAiC,EAACH,OAAOC;IACvDG,IAAAA,6EAAuC,EAACF;IACxCG,IAAAA,gDAA2B,EAAC,2CAA2CH;IACvE,OAAOI,IAAAA,iEAAoC,EAACJ;AAChD;AACAL,sBAAsBU,WAAW,GAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1,10 @@
|
|
|
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("./TeachingPopoverHeader"), exports);
|
|
7
|
+
_export_star._(require("./TeachingPopoverHeader.types"), exports);
|
|
8
|
+
_export_star._(require("./renderTeachingPopoverHeader"), exports);
|
|
9
|
+
_export_star._(require("./useTeachingPopoverHeader"), exports);
|
|
10
|
+
_export_star._(require("./useTeachingPopoverHeaderStyles.styles"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["index.js"],"sourcesContent":["export * from './TeachingPopoverHeader';\nexport * from './TeachingPopoverHeader.types';\nexport * from './renderTeachingPopoverHeader';\nexport * from './useTeachingPopoverHeader';\nexport * from './useTeachingPopoverHeaderStyles.styles';\n"],"names":[],"mappings":";;;;;uBAAc;uBACA;uBACA;uBACA;uBACA"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "renderTeachingPopoverHeader_unstable", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return renderTeachingPopoverHeader_unstable;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _jsxruntime = require("@fluentui/react-jsx-runtime/jsx-runtime");
|
|
12
|
+
const _reactutilities = require("@fluentui/react-utilities");
|
|
13
|
+
const renderTeachingPopoverHeader_unstable = (state)=>{
|
|
14
|
+
(0, _reactutilities.assertSlots)(state);
|
|
15
|
+
return /*#__PURE__*/ (0, _jsxruntime.jsxs)(state.root, {
|
|
16
|
+
children: [
|
|
17
|
+
state.icon && /*#__PURE__*/ (0, _jsxruntime.jsx)(state.icon, {}),
|
|
18
|
+
state.root.children,
|
|
19
|
+
state.dismissButton && /*#__PURE__*/ (0, _jsxruntime.jsx)(state.dismissButton, {})
|
|
20
|
+
]
|
|
21
|
+
});
|
|
22
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["renderTeachingPopoverHeader.js"],"sourcesContent":[" import { jsx as _jsx, jsxs as _jsxs } from \"@fluentui/react-jsx-runtime/jsx-runtime\";\nimport { assertSlots } from '@fluentui/react-utilities';\n/**\n * Render the final JSX of TeachingPopoverHeader\n */ export const renderTeachingPopoverHeader_unstable = (state)=>{\n assertSlots(state);\n return /*#__PURE__*/ _jsxs(state.root, {\n children: [\n state.icon && /*#__PURE__*/ _jsx(state.icon, {}),\n state.root.children,\n state.dismissButton && /*#__PURE__*/ _jsx(state.dismissButton, {})\n ]\n });\n};\n"],"names":["renderTeachingPopoverHeader_unstable","state","assertSlots","_jsxs","root","children","icon","_jsx","dismissButton"],"mappings":";;;;+BAIiBA;;;eAAAA;;;4BAJ4B;gCACjB;AAGjB,MAAMA,uCAAuC,CAACC;IACrDC,IAAAA,2BAAW,EAACD;IACZ,OAAO,WAAW,GAAGE,IAAAA,gBAAK,EAACF,MAAMG,IAAI,EAAE;QACnCC,UAAU;YACNJ,MAAMK,IAAI,IAAI,WAAW,GAAGC,IAAAA,eAAI,EAACN,MAAMK,IAAI,EAAE,CAAC;YAC9CL,MAAMG,IAAI,CAACC,QAAQ;YACnBJ,MAAMO,aAAa,IAAI,WAAW,GAAGD,IAAAA,eAAI,EAACN,MAAMO,aAAa,EAAE,CAAC;SACnE;IACL;AACJ"}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "useTeachingPopoverHeader_unstable", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return useTeachingPopoverHeader_unstable;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _interop_require_wildcard = require("@swc/helpers/_/_interop_require_wildcard");
|
|
12
|
+
const _react = /*#__PURE__*/ _interop_require_wildcard._(require("react"));
|
|
13
|
+
const _reactutilities = require("@fluentui/react-utilities");
|
|
14
|
+
const _reacticons = require("@fluentui/react-icons");
|
|
15
|
+
const _reactpopover = require("@fluentui/react-popover");
|
|
16
|
+
const useTeachingPopoverHeader_unstable = (props, ref)=>{
|
|
17
|
+
const { dismissButton, icon } = props;
|
|
18
|
+
const setOpen = (0, _reactpopover.usePopoverContext_unstable)((context)=>context.setOpen);
|
|
19
|
+
const triggerRef = (0, _reactpopover.usePopoverContext_unstable)((context)=>context.triggerRef);
|
|
20
|
+
const appearance = (0, _reactpopover.usePopoverContext_unstable)((context)=>context.appearance);
|
|
21
|
+
const onDismissButtonClick = (0, _reactutilities.useEventCallback)((ev)=>{
|
|
22
|
+
if (!ev.defaultPrevented) {
|
|
23
|
+
setOpen(ev, false);
|
|
24
|
+
}
|
|
25
|
+
if (triggerRef.current) {
|
|
26
|
+
triggerRef.current.focus();
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
return {
|
|
30
|
+
appearance,
|
|
31
|
+
components: {
|
|
32
|
+
root: 'h3',
|
|
33
|
+
dismissButton: 'button',
|
|
34
|
+
icon: 'div'
|
|
35
|
+
},
|
|
36
|
+
root: _reactutilities.slot.always((0, _reactutilities.getIntrinsicElementProps)('h3', {
|
|
37
|
+
ref,
|
|
38
|
+
...props
|
|
39
|
+
}), {
|
|
40
|
+
elementType: 'h3'
|
|
41
|
+
}),
|
|
42
|
+
icon: _reactutilities.slot.optional(icon, {
|
|
43
|
+
renderByDefault: true,
|
|
44
|
+
defaultProps: {
|
|
45
|
+
children: /*#__PURE__*/ _react.createElement(_reacticons.Lightbulb16Regular, null),
|
|
46
|
+
'aria-hidden': true
|
|
47
|
+
},
|
|
48
|
+
elementType: 'div'
|
|
49
|
+
}),
|
|
50
|
+
dismissButton: _reactutilities.slot.optional(dismissButton, {
|
|
51
|
+
renderByDefault: true,
|
|
52
|
+
defaultProps: {
|
|
53
|
+
children: /*#__PURE__*/ _react.createElement(_reacticons.Dismiss12Regular, null),
|
|
54
|
+
role: 'button',
|
|
55
|
+
'aria-label': 'dismiss',
|
|
56
|
+
onClick: onDismissButtonClick
|
|
57
|
+
},
|
|
58
|
+
elementType: 'button'
|
|
59
|
+
})
|
|
60
|
+
};
|
|
61
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["useTeachingPopoverHeader.js"],"sourcesContent":["import * as React from 'react';\nimport { getIntrinsicElementProps, useEventCallback, slot } from '@fluentui/react-utilities';\nimport { Dismiss12Regular, Lightbulb16Regular } from '@fluentui/react-icons';\nimport { usePopoverContext_unstable } from '@fluentui/react-popover';\n/**\n * Returns the props and state required to render the component\n * @param props - TeachingPopoverHeader properties\n * @param ref - reference to root HTMLElement of TeachingPopoverHeader\n */ export const useTeachingPopoverHeader_unstable = (props, ref)=>{\n const { dismissButton, icon } = props;\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 const onDismissButtonClick = useEventCallback((ev)=>{\n if (!ev.defaultPrevented) {\n setOpen(ev, false);\n }\n if (triggerRef.current) {\n triggerRef.current.focus();\n }\n });\n return {\n appearance,\n components: {\n root: 'h3',\n dismissButton: 'button',\n icon: 'div'\n },\n root: slot.always(getIntrinsicElementProps('h3', {\n ref,\n ...props\n }), {\n elementType: 'h3'\n }),\n icon: slot.optional(icon, {\n renderByDefault: true,\n defaultProps: {\n children: /*#__PURE__*/ React.createElement(Lightbulb16Regular, null),\n 'aria-hidden': true\n },\n elementType: 'div'\n }),\n dismissButton: slot.optional(dismissButton, {\n renderByDefault: true,\n defaultProps: {\n children: /*#__PURE__*/ React.createElement(Dismiss12Regular, null),\n role: 'button',\n 'aria-label': 'dismiss',\n onClick: onDismissButtonClick\n },\n elementType: 'button'\n })\n };\n};\n"],"names":["useTeachingPopoverHeader_unstable","props","ref","dismissButton","icon","setOpen","usePopoverContext_unstable","context","triggerRef","appearance","onDismissButtonClick","useEventCallback","ev","defaultPrevented","current","focus","components","root","slot","always","getIntrinsicElementProps","elementType","optional","renderByDefault","defaultProps","children","React","createElement","Lightbulb16Regular","Dismiss12Regular","role","onClick"],"mappings":";;;;+BAQiBA;;;eAAAA;;;;iEARM;gCAC0C;4BACZ;8BACV;AAKhC,MAAMA,oCAAoC,CAACC,OAAOC;IACzD,MAAM,EAAEC,aAAa,EAAEC,IAAI,EAAE,GAAGH;IAChC,MAAMI,UAAUC,IAAAA,wCAA0B,EAAC,CAACC,UAAUA,QAAQF,OAAO;IACrE,MAAMG,aAAaF,IAAAA,wCAA0B,EAAC,CAACC,UAAUA,QAAQC,UAAU;IAC3E,MAAMC,aAAaH,IAAAA,wCAA0B,EAAC,CAACC,UAAUA,QAAQE,UAAU;IAC3E,MAAMC,uBAAuBC,IAAAA,gCAAgB,EAAC,CAACC;QAC3C,IAAI,CAACA,GAAGC,gBAAgB,EAAE;YACtBR,QAAQO,IAAI;QAChB;QACA,IAAIJ,WAAWM,OAAO,EAAE;YACpBN,WAAWM,OAAO,CAACC,KAAK;QAC5B;IACJ;IACA,OAAO;QACHN;QACAO,YAAY;YACRC,MAAM;YACNd,eAAe;YACfC,MAAM;QACV;QACAa,MAAMC,oBAAI,CAACC,MAAM,CAACC,IAAAA,wCAAwB,EAAC,MAAM;YAC7ClB;YACA,GAAGD,KAAK;QACZ,IAAI;YACAoB,aAAa;QACjB;QACAjB,MAAMc,oBAAI,CAACI,QAAQ,CAAClB,MAAM;YACtBmB,iBAAiB;YACjBC,cAAc;gBACVC,UAAU,WAAW,GAAGC,OAAMC,aAAa,CAACC,8BAAkB,EAAE;gBAChE,eAAe;YACnB;YACAP,aAAa;QACjB;QACAlB,eAAee,oBAAI,CAACI,QAAQ,CAACnB,eAAe;YACxCoB,iBAAiB;YACjBC,cAAc;gBACVC,UAAU,WAAW,GAAGC,OAAMC,aAAa,CAACE,4BAAgB,EAAE;gBAC9DC,MAAM;gBACN,cAAc;gBACdC,SAASrB;YACb;YACAW,aAAa;QACjB;IACJ;AACJ"}
|
package/lib-commonjs/components/TeachingPopoverHeader/useTeachingPopoverHeaderStyles.styles.js
ADDED
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
teachingPopoverHeaderClassNames: function() {
|
|
13
|
+
return teachingPopoverHeaderClassNames;
|
|
14
|
+
},
|
|
15
|
+
useTeachingPopoverHeaderStyles_unstable: function() {
|
|
16
|
+
return useTeachingPopoverHeaderStyles_unstable;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
const _react = require("@griffel/react");
|
|
20
|
+
const teachingPopoverHeaderClassNames = {
|
|
21
|
+
root: 'fui-TeachingPopoverHeader',
|
|
22
|
+
dismissButton: 'fui-TeachingPopoverHeader__dismissButton',
|
|
23
|
+
icon: 'fui-TeachingPopoverHeader__icon'
|
|
24
|
+
};
|
|
25
|
+
const useStyles = /*#__PURE__*/ (0, _react.__styles)({
|
|
26
|
+
root: {
|
|
27
|
+
mc9l5x: "f22iagw",
|
|
28
|
+
Beiy3e4: "f1063pyq",
|
|
29
|
+
sj55zd: "f11d4kpn",
|
|
30
|
+
Bhrd7zp: "fl43uef",
|
|
31
|
+
Be2twd7: "fy9rknc",
|
|
32
|
+
Bg96gwp: "fwrc4pm",
|
|
33
|
+
Byoj8tv: "f14wxoun",
|
|
34
|
+
Bt984gj: "f122n59",
|
|
35
|
+
B6of3ja: "f1jkagg5",
|
|
36
|
+
jrapky: "fi2ljxd"
|
|
37
|
+
},
|
|
38
|
+
rootBrand: {
|
|
39
|
+
sj55zd: "f1phragk"
|
|
40
|
+
},
|
|
41
|
+
dismissButton: {
|
|
42
|
+
sj55zd: "fkfq4zb",
|
|
43
|
+
qhf8xq: "f10pi13n",
|
|
44
|
+
B4j52fo: "f192inf7",
|
|
45
|
+
Bekrc4i: [
|
|
46
|
+
"f5tn483",
|
|
47
|
+
"f1ojsxk5"
|
|
48
|
+
],
|
|
49
|
+
Bn0qgzm: "f1vxd6vx",
|
|
50
|
+
ibv6hh: [
|
|
51
|
+
"f1ojsxk5",
|
|
52
|
+
"f5tn483"
|
|
53
|
+
],
|
|
54
|
+
icvyot: "fzkkow9",
|
|
55
|
+
vrafjx: [
|
|
56
|
+
"f1n71otn",
|
|
57
|
+
"f1deefiw"
|
|
58
|
+
],
|
|
59
|
+
oivjwe: "fg706s2",
|
|
60
|
+
wvpqe5: [
|
|
61
|
+
"fjik90z",
|
|
62
|
+
"fcdblym"
|
|
63
|
+
],
|
|
64
|
+
g2u3we: "fghlq4f",
|
|
65
|
+
h3c5rm: [
|
|
66
|
+
"f1gn591s",
|
|
67
|
+
"fjscplz"
|
|
68
|
+
],
|
|
69
|
+
B9xav0g: "fb073pr",
|
|
70
|
+
zhjwy3: [
|
|
71
|
+
"fjscplz",
|
|
72
|
+
"f1gn591s"
|
|
73
|
+
],
|
|
74
|
+
mc9l5x: "f22iagw",
|
|
75
|
+
Bt984gj: "f122n59",
|
|
76
|
+
Bceei9c: "f1k6fduh",
|
|
77
|
+
Bahqtrf: "fk6fouc",
|
|
78
|
+
Be2twd7: "fkhj508",
|
|
79
|
+
Bhrd7zp: "figsok6",
|
|
80
|
+
Bg96gwp: "f1i3iumi",
|
|
81
|
+
De3pzq: "f1c21dwh",
|
|
82
|
+
B7ck84d: "f1ewtqcl",
|
|
83
|
+
B7oj6ja: [
|
|
84
|
+
"f3fg2lr",
|
|
85
|
+
"f13av6d4"
|
|
86
|
+
],
|
|
87
|
+
Bbmb7ep: [
|
|
88
|
+
"fzi6hpg",
|
|
89
|
+
"fyowgf4"
|
|
90
|
+
],
|
|
91
|
+
Jyy4pa: "f1lfeew",
|
|
92
|
+
z8tnut: "f1ywm7hm",
|
|
93
|
+
z189sj: [
|
|
94
|
+
"f7x41pl",
|
|
95
|
+
"fruq291"
|
|
96
|
+
],
|
|
97
|
+
Byoj8tv: "f14wxoun",
|
|
98
|
+
uwmqm3: [
|
|
99
|
+
"fruq291",
|
|
100
|
+
"f7x41pl"
|
|
101
|
+
],
|
|
102
|
+
Bn4voq9: "f1p7hgxw",
|
|
103
|
+
g9k6zt: "f9znhxp",
|
|
104
|
+
Bfpq7zp: "fqrak0z",
|
|
105
|
+
kdpuga: [
|
|
106
|
+
"f1o2ludy",
|
|
107
|
+
"f1kjnpwc"
|
|
108
|
+
],
|
|
109
|
+
Bw81rd7: [
|
|
110
|
+
"f1kjnpwc",
|
|
111
|
+
"f1o2ludy"
|
|
112
|
+
],
|
|
113
|
+
B6xbmo0: [
|
|
114
|
+
"fxmnebo",
|
|
115
|
+
"f1witrsb"
|
|
116
|
+
],
|
|
117
|
+
dm238s: [
|
|
118
|
+
"f1witrsb",
|
|
119
|
+
"fxmnebo"
|
|
120
|
+
],
|
|
121
|
+
B8q5s1w: "f8hki3x",
|
|
122
|
+
Bci5o5g: [
|
|
123
|
+
"f1d2448m",
|
|
124
|
+
"ffh67wi"
|
|
125
|
+
],
|
|
126
|
+
n8qw10: "f1bjia2o",
|
|
127
|
+
Bdrgwmp: [
|
|
128
|
+
"ffh67wi",
|
|
129
|
+
"f1d2448m"
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
dismissBrand: {
|
|
133
|
+
sj55zd: "f1phragk"
|
|
134
|
+
},
|
|
135
|
+
icon: {
|
|
136
|
+
Bqenvij: "fsv12xs",
|
|
137
|
+
a9b677: "f19bqwv",
|
|
138
|
+
Bg96gwp: "fwrc4pm",
|
|
139
|
+
Be2twd7: "fy9rknc",
|
|
140
|
+
Bt984gj: "f122n59",
|
|
141
|
+
B7ck84d: "f1e4lqlz",
|
|
142
|
+
mc9l5x: "ftuwxu6",
|
|
143
|
+
Brf1p80: "f4d9j23",
|
|
144
|
+
w71qe1: "f1iuv45f",
|
|
145
|
+
ha4doy: "fmrv4ls",
|
|
146
|
+
qhf8xq: "f10pi13n",
|
|
147
|
+
De3pzq: "f1c21dwh",
|
|
148
|
+
sj55zd: "fkfq4zb",
|
|
149
|
+
Bokbzmb: "fpvr8q1"
|
|
150
|
+
},
|
|
151
|
+
iconBrand: {
|
|
152
|
+
sj55zd: "f1phragk"
|
|
153
|
+
}
|
|
154
|
+
}, {
|
|
155
|
+
d: [
|
|
156
|
+
".f22iagw{display:flex;}",
|
|
157
|
+
".f1063pyq{flex-direction:row;}",
|
|
158
|
+
".f11d4kpn{color:var(--colorNeutralForeground3);}",
|
|
159
|
+
".fl43uef{font-weight:var(--fontWeightSemibold);}",
|
|
160
|
+
".fy9rknc{font-size:var(--fontSizeBase200);}",
|
|
161
|
+
".fwrc4pm{line-height:var(--lineHeightBase200);}",
|
|
162
|
+
".f14wxoun{padding-bottom:var(--spacingVerticalXS);}",
|
|
163
|
+
".f122n59{align-items:center;}",
|
|
164
|
+
".f1jkagg5{margin-top:var(--spacingHorizontalNone);}",
|
|
165
|
+
".fi2ljxd{margin-bottom:var(--spacingHorizontalNone);}",
|
|
166
|
+
".f1phragk{color:var(--colorNeutralForegroundOnBrand);}",
|
|
167
|
+
".fkfq4zb{color:var(--colorNeutralForeground2);}",
|
|
168
|
+
".f10pi13n{position:relative;}",
|
|
169
|
+
".f192inf7{border-top-width:var(--strokeWidthThin);}",
|
|
170
|
+
".f5tn483{border-right-width:var(--strokeWidthThin);}",
|
|
171
|
+
".f1ojsxk5{border-left-width:var(--strokeWidthThin);}",
|
|
172
|
+
".f1vxd6vx{border-bottom-width:var(--strokeWidthThin);}",
|
|
173
|
+
".fzkkow9{border-top-style:solid;}",
|
|
174
|
+
".f1n71otn{border-right-style:none;}",
|
|
175
|
+
".f1deefiw{border-left-style:none;}",
|
|
176
|
+
".fg706s2{border-bottom-style:solid;}",
|
|
177
|
+
".fjik90z{border-left-style:solid;}",
|
|
178
|
+
".fcdblym{border-right-style:solid;}",
|
|
179
|
+
".fghlq4f{border-top-color:var(--colorTransparentStroke);}",
|
|
180
|
+
".f1gn591s{border-right-color:var(--colorTransparentStroke);}",
|
|
181
|
+
".fjscplz{border-left-color:var(--colorTransparentStroke);}",
|
|
182
|
+
".fb073pr{border-bottom-color:var(--colorTransparentStroke);}",
|
|
183
|
+
".f1k6fduh{cursor:pointer;}",
|
|
184
|
+
".fk6fouc{font-family:var(--fontFamilyBase);}",
|
|
185
|
+
".fkhj508{font-size:var(--fontSizeBase300);}",
|
|
186
|
+
".figsok6{font-weight:var(--fontWeightRegular);}",
|
|
187
|
+
".f1i3iumi{line-height:var(--lineHeightBase300);}",
|
|
188
|
+
".f1c21dwh{background-color:var(--colorTransparentBackground);}",
|
|
189
|
+
".f1ewtqcl{box-sizing:border-box;}",
|
|
190
|
+
".f3fg2lr{border-top-right-radius:var(--borderRadiusNone);}",
|
|
191
|
+
".f13av6d4{border-top-left-radius:var(--borderRadiusNone);}",
|
|
192
|
+
".fzi6hpg{border-bottom-right-radius:var(--borderRadiusNone);}",
|
|
193
|
+
".fyowgf4{border-bottom-left-radius:var(--borderRadiusNone);}",
|
|
194
|
+
".f1lfeew{-webkit-margin-start:auto;margin-inline-start:auto;}",
|
|
195
|
+
".f1ywm7hm{padding-top:var(--spacingVerticalXS);}",
|
|
196
|
+
".f7x41pl{padding-right:var(--spacingHorizontalXS);}",
|
|
197
|
+
".fruq291{padding-left:var(--spacingHorizontalXS);}",
|
|
198
|
+
".f1p7hgxw[data-fui-focus-visible]{outline-width:var(--strokeWidthThick);}",
|
|
199
|
+
".f9znhxp[data-fui-focus-visible]{outline-style:solid;}",
|
|
200
|
+
".fqrak0z[data-fui-focus-visible]{outline-color:var(--colorStrokeFocus2);}",
|
|
201
|
+
".f1o2ludy[data-fui-focus-visible]{border-bottom-right-radius:var(--borderRadiusMedium);}",
|
|
202
|
+
".f1kjnpwc[data-fui-focus-visible]{border-bottom-left-radius:var(--borderRadiusMedium);}",
|
|
203
|
+
".fxmnebo[data-fui-focus-visible]{border-top-right-radius:var(--borderRadiusMedium);}",
|
|
204
|
+
".f1witrsb[data-fui-focus-visible]{border-top-left-radius:var(--borderRadiusMedium);}",
|
|
205
|
+
".f8hki3x[data-fui-focus-visible]{border-top-color:transparent;}",
|
|
206
|
+
".f1d2448m[data-fui-focus-visible]{border-right-color:transparent;}",
|
|
207
|
+
".ffh67wi[data-fui-focus-visible]{border-left-color:transparent;}",
|
|
208
|
+
".f1bjia2o[data-fui-focus-visible]{border-bottom-color:transparent;}",
|
|
209
|
+
".fsv12xs{height:var(--fontSizeBase200);}",
|
|
210
|
+
".f19bqwv{width:var(--fontSizeBase200);}",
|
|
211
|
+
".f1e4lqlz{box-sizing:content-box;}",
|
|
212
|
+
".ftuwxu6{display:inline-flex;}",
|
|
213
|
+
".f4d9j23{justify-content:center;}",
|
|
214
|
+
".f1iuv45f{text-decoration-line:none;}",
|
|
215
|
+
".fmrv4ls{vertical-align:middle;}",
|
|
216
|
+
".fpvr8q1{-webkit-margin-end:var(--spacingHorizontalXS);margin-inline-end:var(--spacingHorizontalXS);}"
|
|
217
|
+
]
|
|
218
|
+
});
|
|
219
|
+
const useTeachingPopoverHeaderStyles_unstable = (state)=>{
|
|
220
|
+
const styles = useStyles();
|
|
221
|
+
const { appearance } = state;
|
|
222
|
+
state.root.className = (0, _react.mergeClasses)(teachingPopoverHeaderClassNames.root, styles.root, appearance === 'brand' && styles.rootBrand, state.root.className);
|
|
223
|
+
if (state.dismissButton) {
|
|
224
|
+
state.dismissButton.className = (0, _react.mergeClasses)(teachingPopoverHeaderClassNames.dismissButton, styles.dismissButton, appearance === 'brand' ? styles.dismissBrand : undefined, state.dismissButton.className);
|
|
225
|
+
}
|
|
226
|
+
if (state.icon) {
|
|
227
|
+
state.icon.className = (0, _react.mergeClasses)(teachingPopoverHeaderClassNames.icon, styles.icon, appearance === 'brand' ? styles.iconBrand : undefined, state.icon.className);
|
|
228
|
+
}
|
|
229
|
+
return state;
|
|
230
|
+
}; //# sourceMappingURL=useTeachingPopoverHeaderStyles.styles.js.map
|
package/lib-commonjs/components/TeachingPopoverHeader/useTeachingPopoverHeaderStyles.styles.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["useTeachingPopoverHeaderStyles.styles.js"],"sourcesContent":["import { shorthands, __styles, 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 = /*#__PURE__*/__styles({\n root: {\n mc9l5x: \"f22iagw\",\n Beiy3e4: \"f1063pyq\",\n sj55zd: \"f11d4kpn\",\n Bhrd7zp: \"fl43uef\",\n Be2twd7: \"fy9rknc\",\n Bg96gwp: \"fwrc4pm\",\n Byoj8tv: \"f14wxoun\",\n Bt984gj: \"f122n59\",\n B6of3ja: \"f1jkagg5\",\n jrapky: \"fi2ljxd\"\n },\n rootBrand: {\n sj55zd: \"f1phragk\"\n },\n dismissButton: {\n sj55zd: \"fkfq4zb\",\n qhf8xq: \"f10pi13n\",\n B4j52fo: \"f192inf7\",\n Bekrc4i: [\"f5tn483\", \"f1ojsxk5\"],\n Bn0qgzm: \"f1vxd6vx\",\n ibv6hh: [\"f1ojsxk5\", \"f5tn483\"],\n icvyot: \"fzkkow9\",\n vrafjx: [\"f1n71otn\", \"f1deefiw\"],\n oivjwe: \"fg706s2\",\n wvpqe5: [\"fjik90z\", \"fcdblym\"],\n g2u3we: \"fghlq4f\",\n h3c5rm: [\"f1gn591s\", \"fjscplz\"],\n B9xav0g: \"fb073pr\",\n zhjwy3: [\"fjscplz\", \"f1gn591s\"],\n mc9l5x: \"f22iagw\",\n Bt984gj: \"f122n59\",\n Bceei9c: \"f1k6fduh\",\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fkhj508\",\n Bhrd7zp: \"figsok6\",\n Bg96gwp: \"f1i3iumi\",\n De3pzq: \"f1c21dwh\",\n B7ck84d: \"f1ewtqcl\",\n B7oj6ja: [\"f3fg2lr\", \"f13av6d4\"],\n Bbmb7ep: [\"fzi6hpg\", \"fyowgf4\"],\n Jyy4pa: \"f1lfeew\",\n z8tnut: \"f1ywm7hm\",\n z189sj: [\"f7x41pl\", \"fruq291\"],\n Byoj8tv: \"f14wxoun\",\n uwmqm3: [\"fruq291\", \"f7x41pl\"],\n Bn4voq9: \"f1p7hgxw\",\n g9k6zt: \"f9znhxp\",\n Bfpq7zp: \"fqrak0z\",\n kdpuga: [\"f1o2ludy\", \"f1kjnpwc\"],\n Bw81rd7: [\"f1kjnpwc\", \"f1o2ludy\"],\n B6xbmo0: [\"fxmnebo\", \"f1witrsb\"],\n dm238s: [\"f1witrsb\", \"fxmnebo\"],\n B8q5s1w: \"f8hki3x\",\n Bci5o5g: [\"f1d2448m\", \"ffh67wi\"],\n n8qw10: \"f1bjia2o\",\n Bdrgwmp: [\"ffh67wi\", \"f1d2448m\"]\n },\n dismissBrand: {\n sj55zd: \"f1phragk\"\n },\n icon: {\n Bqenvij: \"fsv12xs\",\n a9b677: \"f19bqwv\",\n Bg96gwp: \"fwrc4pm\",\n Be2twd7: \"fy9rknc\",\n Bt984gj: \"f122n59\",\n B7ck84d: \"f1e4lqlz\",\n mc9l5x: \"ftuwxu6\",\n Brf1p80: \"f4d9j23\",\n w71qe1: \"f1iuv45f\",\n ha4doy: \"fmrv4ls\",\n qhf8xq: \"f10pi13n\",\n De3pzq: \"f1c21dwh\",\n sj55zd: \"fkfq4zb\",\n Bokbzmb: \"fpvr8q1\"\n },\n iconBrand: {\n sj55zd: \"f1phragk\"\n }\n}, {\n 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);}\"]\n});\n/** Applies style classnames to slots */\nexport const useTeachingPopoverHeaderStyles_unstable = state => {\n const styles = useStyles();\n const {\n appearance\n } = 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//# sourceMappingURL=useTeachingPopoverHeaderStyles.styles.js.map"],"names":["teachingPopoverHeaderClassNames","useTeachingPopoverHeaderStyles_unstable","root","dismissButton","icon","useStyles","__styles","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","state","styles","appearance","className","mergeClasses","undefined"],"mappings":";;;;;;;;;;;IAGaA,+BAA+B;eAA/BA;;IA0FAC,uCAAuC;eAAvCA;;;uBA7FsC;AAG5C,MAAMD,kCAAkC;IAC7CE,MAAM;IACNC,eAAe;IACfC,MAAM;AACR;AACA,MAAMC,YAAY,WAAW,GAAEC,IAAAA,eAAQ,EAAC;IACtCJ,MAAM;QACJK,QAAQ;QACRC,SAAS;QACTC,QAAQ;QACRC,SAAS;QACTC,SAAS;QACTC,SAAS;QACTC,SAAS;QACTC,SAAS;QACTC,SAAS;QACTC,QAAQ;IACV;IACAC,WAAW;QACTR,QAAQ;IACV;IACAN,eAAe;QACbM,QAAQ;QACRS,QAAQ;QACRC,SAAS;QACTC,SAAS;YAAC;YAAW;SAAW;QAChCC,SAAS;QACTC,QAAQ;YAAC;YAAY;SAAU;QAC/BC,QAAQ;QACRC,QAAQ;YAAC;YAAY;SAAW;QAChCC,QAAQ;QACRC,QAAQ;YAAC;YAAW;SAAU;QAC9BC,QAAQ;QACRC,QAAQ;YAAC;YAAY;SAAU;QAC/BC,SAAS;QACTC,QAAQ;YAAC;YAAW;SAAW;QAC/BvB,QAAQ;QACRO,SAAS;QACTiB,SAAS;QACTC,SAAS;QACTrB,SAAS;QACTD,SAAS;QACTE,SAAS;QACTqB,QAAQ;QACRC,SAAS;QACTC,SAAS;YAAC;YAAW;SAAW;QAChCC,SAAS;YAAC;YAAW;SAAU;QAC/BC,QAAQ;QACRC,QAAQ;QACRC,QAAQ;YAAC;YAAW;SAAU;QAC9B1B,SAAS;QACT2B,QAAQ;YAAC;YAAW;SAAU;QAC9BC,SAAS;QACTC,QAAQ;QACRC,SAAS;QACTC,QAAQ;YAAC;YAAY;SAAW;QAChCC,SAAS;YAAC;YAAY;SAAW;QACjCC,SAAS;YAAC;YAAW;SAAW;QAChCC,QAAQ;YAAC;YAAY;SAAU;QAC/BC,SAAS;QACTC,SAAS;YAAC;YAAY;SAAU;QAChCC,QAAQ;QACRC,SAAS;YAAC;YAAW;SAAW;IAClC;IACAC,cAAc;QACZ3C,QAAQ;IACV;IACAL,MAAM;QACJiD,SAAS;QACTC,QAAQ;QACR1C,SAAS;QACTD,SAAS;QACTG,SAAS;QACToB,SAAS;QACT3B,QAAQ;QACRgD,SAAS;QACTC,QAAQ;QACRC,QAAQ;QACRvC,QAAQ;QACRe,QAAQ;QACRxB,QAAQ;QACRiD,SAAS;IACX;IACAC,WAAW;QACTlD,QAAQ;IACV;AACF,GAAG;IACDmD,GAAG;QAAC;QAA2B;QAAkC;QAAoD;QAAoD;QAA+C;QAAmD;QAAuD;QAAiC;QAAuD;QAAyD;QAA0D;QAAmD;QAAiC;QAAuD;QAAwD;QAAwD;QAA0D;QAAqC;QAAuC;QAAsC;QAAwC;QAAsC;QAAuC;QAA6D;QAAgE;QAA8D;QAAgE;QAA8B;QAAgD;QAA+C;QAAmD;QAAoD;QAAkE;QAAqC;QAA8D;QAA8D;QAAiE;QAAgE;QAAiE;QAAoD;QAAuD;QAAsD;QAA6E;QAA0D;QAA6E;QAA4F;QAA2F;QAAwF;QAAwF;QAAmE;QAAsE;QAAoE;QAAuE;QAA4C;QAA2C;QAAsC;QAAkC;QAAqC;QAAyC;QAAoC;KAAwG;AACxxG;AAEO,MAAM3D,0CAA0C4D,CAAAA;IACrD,MAAMC,SAASzD;IACf,MAAM,EACJ0D,UAAU,EACX,GAAGF;IACJA,MAAM3D,IAAI,CAAC8D,SAAS,GAAGC,IAAAA,mBAAY,EAACjE,gCAAgCE,IAAI,EAAE4D,OAAO5D,IAAI,EAAE6D,eAAe,WAAWD,OAAO7C,SAAS,EAAE4C,MAAM3D,IAAI,CAAC8D,SAAS;IACvJ,IAAIH,MAAM1D,aAAa,EAAE;QACvB0D,MAAM1D,aAAa,CAAC6D,SAAS,GAAGC,IAAAA,mBAAY,EAACjE,gCAAgCG,aAAa,EAAE2D,OAAO3D,aAAa,EAAE4D,eAAe,UAAUD,OAAOV,YAAY,GAAGc,WAAWL,MAAM1D,aAAa,CAAC6D,SAAS;IAC3M;IACA,IAAIH,MAAMzD,IAAI,EAAE;QACdyD,MAAMzD,IAAI,CAAC4D,SAAS,GAAGC,IAAAA,mBAAY,EAACjE,gCAAgCI,IAAI,EAAE0D,OAAO1D,IAAI,EAAE2D,eAAe,UAAUD,OAAOH,SAAS,GAAGO,WAAWL,MAAMzD,IAAI,CAAC4D,SAAS;IACpK;IACA,OAAOH;AACT,GACA,iEAAiE"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "TeachingPopoverSurface", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return TeachingPopoverSurface;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _interop_require_wildcard = require("@swc/helpers/_/_interop_require_wildcard");
|
|
12
|
+
const _react = /*#__PURE__*/ _interop_require_wildcard._(require("react"));
|
|
13
|
+
const _reactsharedcontexts = require("@fluentui/react-shared-contexts");
|
|
14
|
+
const _useTeachingPopoverSurface = require("./useTeachingPopoverSurface");
|
|
15
|
+
const _useTeachingPopoverSurfaceStylesstyles = require("./useTeachingPopoverSurfaceStyles.styles");
|
|
16
|
+
const _renderTeachingPopoverSurface = require("./renderTeachingPopoverSurface");
|
|
17
|
+
const TeachingPopoverSurface = /*#__PURE__*/ _react.forwardRef((props, ref)=>{
|
|
18
|
+
const state = (0, _useTeachingPopoverSurface.useTeachingPopoverSurface_unstable)(props, ref);
|
|
19
|
+
(0, _useTeachingPopoverSurfaceStylesstyles.useTeachingPopoverSurfaceStyles_unstable)(state);
|
|
20
|
+
(0, _reactsharedcontexts.useCustomStyleHook_unstable)('useTeachingPopoverSurfaceStyles_unstable')(state);
|
|
21
|
+
return (0, _renderTeachingPopoverSurface.renderTeachingPopoverSurface_unstable)(state);
|
|
22
|
+
});
|
|
23
|
+
TeachingPopoverSurface.displayName = 'TeachingPopoverSurface';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["TeachingPopoverSurface.js"],"sourcesContent":["import * as React from 'react';\nimport { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';\nimport { useTeachingPopoverSurface_unstable } from './useTeachingPopoverSurface';\nimport { useTeachingPopoverSurfaceStyles_unstable } from './useTeachingPopoverSurfaceStyles.styles';\nimport { renderTeachingPopoverSurface_unstable } from './renderTeachingPopoverSurface';\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 */ export const TeachingPopoverSurface = /*#__PURE__*/ React.forwardRef((props, ref)=>{\n const state = useTeachingPopoverSurface_unstable(props, ref);\n useTeachingPopoverSurfaceStyles_unstable(state);\n useCustomStyleHook_unstable('useTeachingPopoverSurfaceStyles_unstable')(state);\n return renderTeachingPopoverSurface_unstable(state);\n});\nTeachingPopoverSurface.displayName = 'TeachingPopoverSurface';\n"],"names":["TeachingPopoverSurface","React","forwardRef","props","ref","state","useTeachingPopoverSurface_unstable","useTeachingPopoverSurfaceStyles_unstable","useCustomStyleHook_unstable","renderTeachingPopoverSurface_unstable","displayName"],"mappings":";;;;+BASiBA;;;eAAAA;;;;iEATM;qCACqB;2CACO;uDACM;8CACH;AAK3C,MAAMA,yBAAyB,WAAW,GAAGC,OAAMC,UAAU,CAAC,CAACC,OAAOC;IAC7E,MAAMC,QAAQC,IAAAA,6DAAkC,EAACH,OAAOC;IACxDG,IAAAA,+EAAwC,EAACF;IACzCG,IAAAA,gDAA2B,EAAC,4CAA4CH;IACxE,OAAOI,IAAAA,mEAAqC,EAACJ;AACjD;AACAL,uBAAuBU,WAAW,GAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1,10 @@
|
|
|
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("./TeachingPopoverSurface"), exports);
|
|
7
|
+
_export_star._(require("./TeachingPopoverSurface.types"), exports);
|
|
8
|
+
_export_star._(require("./renderTeachingPopoverSurface"), exports);
|
|
9
|
+
_export_star._(require("./useTeachingPopoverSurface"), exports);
|
|
10
|
+
_export_star._(require("./useTeachingPopoverSurfaceStyles.styles"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["index.js"],"sourcesContent":["export * from './TeachingPopoverSurface';\nexport * from './TeachingPopoverSurface.types';\nexport * from './renderTeachingPopoverSurface';\nexport * from './useTeachingPopoverSurface';\nexport * from './useTeachingPopoverSurfaceStyles.styles';\n"],"names":[],"mappings":";;;;;uBAAc;uBACA;uBACA;uBACA;uBACA"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/** @jsxRuntime classic */ /** @jsx createElement */ "use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "renderTeachingPopoverSurface_unstable", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return renderTeachingPopoverSurface_unstable;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _reactutilities = require("@fluentui/react-utilities");
|
|
12
|
+
const _reactpopover = require("@fluentui/react-popover");
|
|
13
|
+
const renderTeachingPopoverSurface_unstable = (state)=>{
|
|
14
|
+
(0, _reactutilities.assertSlots)(state);
|
|
15
|
+
// For now we are just extending the base surface
|
|
16
|
+
return (0, _reactpopover.renderPopoverSurface_unstable)(state);
|
|
17
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["renderTeachingPopoverSurface.js"],"sourcesContent":["/** @jsxRuntime classic */ /** @jsx createElement */ import { assertSlots } from '@fluentui/react-utilities';\nimport { renderPopoverSurface_unstable } from '@fluentui/react-popover';\n/**\n * Render the final JSX of PopoverSurface\n */ export const renderTeachingPopoverSurface_unstable = (state)=>{\n assertSlots(state);\n // For now we are just extending the base surface\n return renderPopoverSurface_unstable(state);\n};\n"],"names":["renderTeachingPopoverSurface_unstable","state","assertSlots","renderPopoverSurface_unstable"],"mappings":"AAAA,wBAAwB,GAAG,uBAAuB;;;;+BAIjCA;;;eAAAA;;;gCAJgE;8BACnC;AAGnC,MAAMA,wCAAwC,CAACC;IACtDC,IAAAA,2BAAW,EAACD;IACZ,iDAAiD;IACjD,OAAOE,IAAAA,2CAA6B,EAACF;AACzC"}
|