{"version":3,"file":"intro.js-react-ZI9mXWlY.js","sources":["../../node_modules/intro.js-react/dist/esm/helpers/proptypes.mjs","../../node_modules/intro.js-react/dist/esm/helpers/defaultProps.mjs","../../node_modules/intro.js-react/dist/esm/helpers/server.mjs","../../node_modules/intro.js-react/dist/esm/components/Steps/index.mjs","../../node_modules/intro.js-react/dist/esm/components/Hints/index.mjs"],"sourcesContent":["import PropTypes from 'prop-types';\n\n/**\n * Intro.js tooltip position proptype.\n * @type {Function}\n */\nexport const tooltipPosition = PropTypes.oneOf(['top', 'right', 'bottom', 'left', 'bottom-left-aligned', 'bottom-middle-aligned', 'bottom-right-aligned', 'top-left-aligned', 'top-middle-aligned', 'top-right-aligned', 'auto']);\n\n/**\n * Intro.js hint position proptype.\n * @type {Function}\n */\nexport const hintPosition = PropTypes.oneOf(['top-middle', 'top-left', 'top-right', 'bottom-left', 'bottom-right', 'bottom-middle', 'middle-left', 'middle-right', 'middle-middle']);\nexport const options = PropTypes.shape({\n nextLabel: PropTypes.string,\n prevLabel: PropTypes.string,\n skipLabel: PropTypes.string,\n doneLabel: PropTypes.string,\n hidePrev: PropTypes.bool,\n hideNext: PropTypes.bool,\n tooltipPosition,\n tooltipClass: PropTypes.string,\n highlightClass: PropTypes.string,\n exitOnEsc: PropTypes.bool,\n exitOnOverlayClick: PropTypes.bool,\n showStepNumbers: PropTypes.bool,\n keyboardNavigation: PropTypes.bool,\n showButtons: PropTypes.bool,\n showBullets: PropTypes.bool,\n showProgress: PropTypes.bool,\n scrollToElement: PropTypes.bool,\n overlayOpacity: PropTypes.number,\n scrollPadding: PropTypes.number,\n positionPrecedence: PropTypes.arrayOf(PropTypes.string),\n disableInteraction: PropTypes.bool,\n hintPosition,\n hintButtonLabel: PropTypes.string,\n hintAnimation: PropTypes.bool\n});","/**\n * Intro.js options default proptypes.\n * @type {Object}\n */\nexport const options = {\n hidePrev: true,\n hideNext: true\n};","export function isServer() {\n return typeof window === 'undefined';\n}","import introJs from 'intro.js';\nimport PropTypes from 'prop-types';\nimport { Component, isValidElement } from 'react';\nimport { renderToStaticMarkup } from 'react-dom/server';\nimport * as introJsPropTypes from \"../../helpers/proptypes.mjs\";\nimport * as introJsDefaultProps from \"../../helpers/defaultProps.mjs\";\nimport { isServer } from \"../../helpers/server.mjs\";\n/**\n * Intro.js Steps Component.\n */\nexport default class Steps extends Component {\n /**\n * React Props\n * @type {Object}\n */\n static propTypes = {\n enabled: PropTypes.bool,\n initialStep: PropTypes.number.isRequired,\n steps: PropTypes.arrayOf(PropTypes.shape({\n element: PropTypes.oneOfType([PropTypes.string, /* istanbul ignore next */\n typeof Element === 'undefined' ? PropTypes.any : PropTypes.instanceOf(Element)]),\n intro: PropTypes.node.isRequired,\n position: introJsPropTypes.tooltipPosition,\n tooltipClass: PropTypes.string,\n highlightClass: PropTypes.string\n })).isRequired,\n onStart: PropTypes.func,\n onExit: PropTypes.func.isRequired,\n onBeforeExit: PropTypes.func,\n onBeforeChange: PropTypes.func,\n onAfterChange: PropTypes.func,\n onChange: PropTypes.func,\n onPreventChange: PropTypes.func,\n onComplete: PropTypes.func,\n options: introJsPropTypes.options\n };\n\n /**\n * React Default Props\n * @type {Object}\n */\n static defaultProps = {\n enabled: false,\n onStart: null,\n onBeforeExit: null,\n onBeforeChange: null,\n onAfterChange: null,\n onChange: null,\n onPreventChange: null,\n onComplete: null,\n options: introJsDefaultProps.options\n };\n\n /**\n * Creates a new instance of the component.\n * @class\n * @param {Object} props - The props of the component.\n */\n constructor(props) {\n super(props);\n this.introJs = null;\n this.isConfigured = false;\n // We need to manually keep track of the visibility state to avoid a callback hell.\n this.isVisible = false;\n this.installIntroJs();\n }\n\n /**\n * Lifecycle: componentDidMount.\n * We use this event to enable Intro.js steps at mount time if enabled right from the start.\n */\n componentDidMount() {\n if (this.props.enabled) {\n this.configureIntroJs();\n this.renderSteps();\n }\n }\n\n /**\n * Lifecycle: componentDidUpdate.\n * @param {Object} prevProps - The previous props.\n */\n componentDidUpdate(prevProps) {\n const {\n enabled,\n steps,\n options\n } = this.props;\n if (!this.isConfigured || prevProps.steps !== steps || prevProps.options !== options) {\n this.configureIntroJs();\n this.renderSteps();\n }\n if (prevProps.enabled !== enabled) {\n this.renderSteps();\n }\n }\n\n /**\n * Lifecycle: componentWillUnmount.\n * We use this even to hide the steps when the component is unmounted.\n */\n componentWillUnmount() {\n this.introJs.exit();\n }\n\n /**\n * Triggered when Intro.js steps are exited.\n */\n onExit = () => {\n const {\n onExit\n } = this.props;\n this.isVisible = false;\n onExit(this.introJs._currentStep);\n };\n\n /**\n * Triggered before exiting the intro.\n * @return {Boolean} Returning `false` will prevent exiting the intro.\n */\n onBeforeExit = () => {\n const {\n onBeforeExit\n } = this.props;\n if (onBeforeExit) {\n return onBeforeExit(this.introJs._currentStep);\n }\n return true;\n };\n\n /**\n * Triggered before changing step.\n * @return {Boolean} Returning `false` will prevent the step transition.\n */\n onBeforeChange = nextElement => {\n if (!this.isVisible) {\n return true;\n }\n const {\n onBeforeChange,\n onPreventChange\n } = this.props;\n if (onBeforeChange) {\n const continueStep = onBeforeChange(this.introJs._currentStep, nextElement);\n if (continueStep === false && onPreventChange) {\n setTimeout(() => {\n onPreventChange(this.introJs._currentStep);\n }, 0);\n }\n return continueStep;\n }\n return true;\n };\n\n /**\n * Triggered after changing step.\n * @param {HTMLElement} element - The element associated to the new step.\n */\n onAfterChange = element => {\n if (!this.isVisible) {\n return;\n }\n const {\n onAfterChange\n } = this.props;\n if (onAfterChange) {\n onAfterChange(this.introJs._currentStep, element);\n }\n };\n\n /**\n * Triggered when changing step.\n * @param {HTMLElement} element - The element associated to the next step.\n */\n onChange = element => {\n if (!this.isVisible) {\n return;\n }\n const {\n onChange\n } = this.props;\n if (onChange) {\n onChange(this.introJs._currentStep, element);\n }\n };\n\n /**\n * Triggered when completing all the steps.\n */\n onComplete = () => {\n const {\n onComplete\n } = this.props;\n if (onComplete) {\n onComplete();\n }\n };\n\n /**\n * Updates the element associated to a step based on its index.\n * This is useful when the associated element is not present in the DOM on page load.\n * @param {number} stepIndex - The index of the step to update.\n */\n updateStepElement = stepIndex => {\n const element = document.querySelector(this.introJs._options.steps[stepIndex].element);\n if (element) {\n this.introJs._introItems[stepIndex].element = element;\n this.introJs._introItems[stepIndex].position = this.introJs._options.steps[stepIndex].position || 'auto';\n }\n };\n\n /**\n * Installs Intro.js.\n */\n installIntroJs() {\n if (isServer()) {\n return;\n }\n this.introJs = introJs();\n this.introJs.onexit(this.onExit);\n this.introJs.onbeforeexit(this.onBeforeExit);\n this.introJs.onbeforechange(this.onBeforeChange);\n this.introJs.onafterchange(this.onAfterChange);\n this.introJs.onchange(this.onChange);\n this.introJs.oncomplete(this.onComplete);\n }\n\n /**\n * Configures Intro.js if not already configured.\n */\n configureIntroJs() {\n const {\n options,\n steps\n } = this.props;\n const sanitizedSteps = steps.map(step => {\n if ( /*#__PURE__*/isValidElement(step.intro)) {\n return {\n ...step,\n intro: renderToStaticMarkup(step.intro)\n };\n }\n return step;\n });\n this.introJs.setOptions({\n ...options,\n steps: sanitizedSteps\n });\n this.isConfigured = true;\n }\n\n /**\n * Renders the Intro.js steps.\n */\n renderSteps() {\n const {\n enabled,\n initialStep,\n steps,\n onStart\n } = this.props;\n if (enabled && steps.length > 0 && !this.isVisible) {\n this.introJs.start();\n this.isVisible = true;\n this.introJs.goToStepNumber(initialStep + 1);\n if (onStart) {\n onStart(this.introJs._currentStep);\n }\n } else if (!enabled && this.isVisible) {\n this.isVisible = false;\n this.introJs.exit();\n }\n }\n\n /**\n * Renders the component.\n * @return {null} We do not want to render anything.\n */\n render() {\n return null;\n }\n}","import introJs from 'intro.js';\nimport PropTypes from 'prop-types';\nimport { Component } from 'react';\nimport * as introJsPropTypes from \"../../helpers/proptypes.mjs\";\nimport * as introJsDefaultProps from \"../../helpers/defaultProps.mjs\";\nimport { isServer } from \"../../helpers/server.mjs\";\n/**\n * Intro.js Hints Component.\n */\nexport default class Hints extends Component {\n /**\n * React Props\n * @type {Object}\n */\n static propTypes = {\n enabled: PropTypes.bool,\n hints: PropTypes.arrayOf(PropTypes.shape({\n element: PropTypes.string.isRequired,\n hint: PropTypes.string.isRequired,\n hintPosition: introJsPropTypes.hintPosition\n })).isRequired,\n onClick: PropTypes.func,\n onClose: PropTypes.func,\n options: introJsPropTypes.options\n };\n\n /**\n * React Default Props\n * @type {Object}\n */\n static defaultProps = {\n enabled: false,\n onClick: null,\n onClose: null,\n options: introJsDefaultProps.options\n };\n\n /**\n * Creates a new instance of the component.\n * @class\n * @param {Object} props - The props of the component.\n */\n constructor(props) {\n super(props);\n this.introJs = null;\n this.isConfigured = false;\n this.installIntroJs();\n }\n\n /**\n * Lifecycle: componentDidMount.\n * We use this event to enable Intro.js hints at mount time if enabled right from the start.\n */\n componentDidMount() {\n if (this.props.enabled) {\n this.configureIntroJs();\n this.renderHints();\n }\n }\n\n /**\n * Lifecycle: componentDidUpdate.\n * @param {Object} prevProps - The previous props.\n */\n componentDidUpdate(prevProps) {\n const {\n enabled,\n hints,\n options\n } = this.props;\n if (!this.isConfigured || prevProps.hints !== hints || prevProps.options !== options) {\n this.configureIntroJs();\n this.renderHints();\n }\n if (prevProps.enabled !== enabled) {\n this.renderHints();\n }\n }\n\n /**\n * Lifecycle: componentWillUnmount.\n * We use this even to hide the hints when the component is unmounted.\n */\n componentWillUnmount() {\n this.introJs.hideHints();\n }\n\n /**\n * Installs Intro.js.\n */\n installIntroJs() {\n if (isServer()) {\n return;\n }\n this.introJs = introJs();\n const {\n onClick,\n onClose\n } = this.props;\n if (onClick) {\n this.introJs.onhintclick(onClick);\n }\n if (onClose) {\n this.introJs.onhintclose(onClose);\n }\n }\n\n /**\n * Configures Intro.js if not already configured.\n */\n configureIntroJs() {\n const {\n options,\n hints\n } = this.props;\n\n // We need to remove all hints otherwise new hints won't be added.\n this.introJs.removeHints();\n this.introJs.setOptions({\n ...options,\n hints\n });\n this.isConfigured = true;\n }\n\n /**\n * Renders the Intro.js hints.\n */\n renderHints() {\n const {\n enabled,\n hints\n } = this.props;\n if (enabled && hints.length > 0) {\n this.introJs.showHints();\n } else if (!enabled) {\n this.introJs.hideHints();\n }\n }\n\n /**\n * Renders the component.\n * @return {null} We do not want to render anything.\n */\n render() {\n return null;\n }\n}"],"names":["tooltipPosition","PropTypes","hintPosition","options","isServer","Steps","Component","props","__publicField","onExit","onBeforeExit","nextElement","onBeforeChange","onPreventChange","continueStep","element","onAfterChange","onChange","onComplete","stepIndex","prevProps","enabled","steps","introJs","sanitizedSteps","step","isValidElement","renderToStaticMarkup","initialStep","onStart","introJsPropTypes.tooltipPosition","introJsPropTypes.options","introJsDefaultProps.options","Hints","hints","onClick","onClose","introJsPropTypes.hintPosition"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4]}