@razorpay/blade 12.0.0 → 12.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/build/lib/native/components/ActionList/ActionListItem.js +1 -0
  2. package/build/lib/native/components/ActionList/ActionListItem.js.map +1 -1
  3. package/build/lib/native/components/AnimateInteractions/AnimateInteractions.native.js +11 -0
  4. package/build/lib/native/components/AnimateInteractions/AnimateInteractions.native.js.map +1 -0
  5. package/build/lib/native/components/Stagger/Stagger.native.js +11 -0
  6. package/build/lib/native/components/Stagger/Stagger.native.js.map +1 -0
  7. package/build/lib/native/components/index.js +2 -0
  8. package/build/lib/native/components/index.js.map +1 -1
  9. package/build/lib/native/utils/useCallbackRef.js +3 -2
  10. package/build/lib/native/utils/useCallbackRef.js.map +1 -1
  11. package/build/lib/web/development/components/AnimateInteractions/AnimateInteractions.web.js +37 -0
  12. package/build/lib/web/development/components/AnimateInteractions/AnimateInteractions.web.js.map +1 -0
  13. package/build/lib/web/development/components/AnimateInteractions/index.js +2 -0
  14. package/build/lib/web/development/components/AnimateInteractions/index.js.map +1 -0
  15. package/build/lib/web/development/components/AnimateInteractions/useFocusWithin.js +30 -0
  16. package/build/lib/web/development/components/AnimateInteractions/useFocusWithin.js.map +1 -0
  17. package/build/lib/web/development/components/Stagger/Stagger.web.js +73 -0
  18. package/build/lib/web/development/components/Stagger/Stagger.web.js.map +1 -0
  19. package/build/lib/web/development/components/Stagger/index.js +2 -0
  20. package/build/lib/web/development/components/Stagger/index.js.map +1 -0
  21. package/build/lib/web/development/components/index.js +4 -0
  22. package/build/lib/web/development/components/index.js.map +1 -1
  23. package/build/lib/web/development/utils/useCallbackRef.js +11 -5
  24. package/build/lib/web/development/utils/useCallbackRef.js.map +1 -1
  25. package/build/lib/web/production/components/AnimateInteractions/AnimateInteractions.web.js +37 -0
  26. package/build/lib/web/production/components/AnimateInteractions/AnimateInteractions.web.js.map +1 -0
  27. package/build/lib/web/production/components/AnimateInteractions/index.js +2 -0
  28. package/build/lib/web/production/components/AnimateInteractions/index.js.map +1 -0
  29. package/build/lib/web/production/components/AnimateInteractions/useFocusWithin.js +30 -0
  30. package/build/lib/web/production/components/AnimateInteractions/useFocusWithin.js.map +1 -0
  31. package/build/lib/web/production/components/Stagger/Stagger.web.js +73 -0
  32. package/build/lib/web/production/components/Stagger/Stagger.web.js.map +1 -0
  33. package/build/lib/web/production/components/Stagger/index.js +2 -0
  34. package/build/lib/web/production/components/Stagger/index.js.map +1 -0
  35. package/build/lib/web/production/components/index.js +4 -0
  36. package/build/lib/web/production/components/index.js.map +1 -1
  37. package/build/lib/web/production/utils/useCallbackRef.js +11 -5
  38. package/build/lib/web/production/utils/useCallbackRef.js.map +1 -1
  39. package/build/types/components/index.d.ts +239 -145
  40. package/build/types/components/index.native.d.ts +179 -145
  41. package/package.json +1 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useFocusWithin.js","sources":["../../../../../../src/components/AnimateInteractions/useFocusWithin.ts"],"sourcesContent":["import { useEffect } from 'react';\n\ntype FocusWithinHandlers = {\n onFocusWithin?: () => void;\n onBlurWithin?: () => void;\n};\n\nexport const useFocusWithin = <T extends HTMLElement>(\n ref: React.RefObject<T>,\n { onFocusWithin, onBlurWithin }: FocusWithinHandlers,\n): void => {\n useEffect(() => {\n const element = ref.current;\n if (!element) return;\n\n const handleFocusIn = (): void => {\n onFocusWithin?.();\n };\n\n const handleFocusOut = (event: FocusEvent): void => {\n // Ensure that focus is not still within the container\n if (element && !element.contains(event.relatedTarget as Node)) {\n onBlurWithin?.();\n }\n };\n\n element.addEventListener('focusin', handleFocusIn);\n element.addEventListener('focusout', handleFocusOut);\n\n // eslint-disable-next-line consistent-return\n return () => {\n element.removeEventListener('focusin', handleFocusIn);\n element.removeEventListener('focusout', handleFocusOut);\n };\n }, [ref, onFocusWithin, onBlurWithin]);\n};\n"],"names":["useFocusWithin","ref","_ref","onFocusWithin","onBlurWithin","useEffect","element","current","handleFocusIn","handleFocusOut","event","contains","relatedTarget","addEventListener","removeEventListener"],"mappings":";;AAOO,IAAMA,cAAc,GAAG,SAAjBA,cAAcA,CACzBC,GAAuB,EAAAC,IAAA,EAEd;AAAA,EAAA,IADPC,aAAa,GAAAD,IAAA,CAAbC,aAAa;IAAEC,YAAY,GAAAF,IAAA,CAAZE,YAAY,CAAA;AAE7BC,EAAAA,SAAS,CAAC,YAAM;AACd,IAAA,IAAMC,OAAO,GAAGL,GAAG,CAACM,OAAO,CAAA;IAC3B,IAAI,CAACD,OAAO,EAAE,OAAA;AAEd,IAAA,IAAME,aAAa,GAAG,SAAhBA,aAAaA,GAAe;AAChCL,MAAAA,aAAa,KAAbA,IAAAA,IAAAA,aAAa,KAAbA,KAAAA,CAAAA,GAAAA,KAAAA,CAAAA,GAAAA,aAAa,EAAI,CAAA;KAClB,CAAA;AAED,IAAA,IAAMM,cAAc,GAAG,SAAjBA,cAAcA,CAAIC,KAAiB,EAAW;AAClD;MACA,IAAIJ,OAAO,IAAI,CAACA,OAAO,CAACK,QAAQ,CAACD,KAAK,CAACE,aAAqB,CAAC,EAAE;AAC7DR,QAAAA,YAAY,KAAZA,IAAAA,IAAAA,YAAY,KAAZA,KAAAA,CAAAA,GAAAA,KAAAA,CAAAA,GAAAA,YAAY,EAAI,CAAA;AAClB,OAAA;KACD,CAAA;AAEDE,IAAAA,OAAO,CAACO,gBAAgB,CAAC,SAAS,EAAEL,aAAa,CAAC,CAAA;AAClDF,IAAAA,OAAO,CAACO,gBAAgB,CAAC,UAAU,EAAEJ,cAAc,CAAC,CAAA;;AAEpD;AACA,IAAA,OAAO,YAAM;AACXH,MAAAA,OAAO,CAACQ,mBAAmB,CAAC,SAAS,EAAEN,aAAa,CAAC,CAAA;AACrDF,MAAAA,OAAO,CAACQ,mBAAmB,CAAC,UAAU,EAAEL,cAAc,CAAC,CAAA;KACxD,CAAA;GACF,EAAE,CAACR,GAAG,EAAEE,aAAa,EAAEC,YAAY,CAAC,CAAC,CAAA;AACxC;;;;"}
@@ -0,0 +1,73 @@
1
+ import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import _typeof from '@babel/runtime/helpers/typeof';
3
+ import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
4
+ import React__default from 'react';
5
+ import { AnimatePresence } from 'framer-motion';
6
+ import { StaggerContext } from './StaggerProvider.js';
7
+ import '../BaseMotion/index.js';
8
+ import { msToSeconds } from '../../utils/msToSeconds.js';
9
+ import '../../utils/index.js';
10
+ import { jsx } from 'react/jsx-runtime';
11
+ import useTheme from '../BladeProvider/useTheme.js';
12
+ import { BaseMotionBox } from '../BaseMotion/BaseMotion.js';
13
+
14
+ var _excluded = ["children", "isVisible", "type", "shouldUnmountWhenHidden", "delay", "motionTriggers"];
15
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
16
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
17
+ var Stagger = function Stagger(_ref) {
18
+ var children = _ref.children,
19
+ _ref$isVisible = _ref.isVisible,
20
+ isVisible = _ref$isVisible === void 0 ? true : _ref$isVisible,
21
+ _ref$type = _ref.type,
22
+ type = _ref$type === void 0 ? 'inout' : _ref$type,
23
+ _ref$shouldUnmountWhe = _ref.shouldUnmountWhenHidden,
24
+ shouldUnmountWhenHidden = _ref$shouldUnmountWhe === void 0 ? false : _ref$shouldUnmountWhe,
25
+ delay = _ref.delay,
26
+ motionTriggers = _ref.motionTriggers,
27
+ boxProps = _objectWithoutProperties(_ref, _excluded);
28
+ var _useTheme = useTheme(),
29
+ theme = _useTheme.theme;
30
+ // Only need AnimatePresence when we have to unmount the component
31
+ var AnimateWrapper = shouldUnmountWhenHidden ? AnimatePresence : React__default.Fragment;
32
+ // keep it always mounted when shouldUnmountWhenHidden is false
33
+ var isMounted = shouldUnmountWhenHidden ? isVisible : true;
34
+ var enterDelay = _typeof(delay) === 'object' ? delay.enter : delay;
35
+ var exitDelay = _typeof(delay) === 'object' ? delay.exit : delay;
36
+ var staggerVariants = {
37
+ initial: {},
38
+ animate: {
39
+ transition: _objectSpread(_objectSpread({}, enterDelay ? {
40
+ delayChildren: msToSeconds(theme.motion.delay[enterDelay])
41
+ } : {}), {}, {
42
+ staggerChildren: msToSeconds(theme.motion.duration['2xquick'])
43
+ })
44
+ },
45
+ exit: {
46
+ transition: _objectSpread(_objectSpread({}, exitDelay ? {
47
+ delayChildren: msToSeconds(theme.motion.delay[exitDelay])
48
+ } : {}), {}, {
49
+ staggerChildren: msToSeconds(theme.motion.duration['2xquick'])
50
+ })
51
+ }
52
+ };
53
+ return /*#__PURE__*/jsx(AnimateWrapper, {
54
+ children: isMounted ? /*#__PURE__*/jsx(BaseMotionBox, _objectSpread(_objectSpread(_objectSpread({
55
+ type: type,
56
+ motionVariants: staggerVariants,
57
+ motionTriggers: motionTriggers
58
+ }, shouldUnmountWhenHidden ? {} : {
59
+ animateVisibility: isVisible ? 'animate' : 'exit'
60
+ }), boxProps), {}, {
61
+ children: /*#__PURE__*/jsx(StaggerContext.Provider, {
62
+ value: {
63
+ isInsideStaggerContainer: true,
64
+ staggerType: type
65
+ },
66
+ children: children
67
+ })
68
+ })) : null
69
+ });
70
+ };
71
+
72
+ export { Stagger };
73
+ //# sourceMappingURL=Stagger.web.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Stagger.web.js","sources":["../../../../../../src/components/Stagger/Stagger.web.tsx"],"sourcesContent":["import React from 'react';\nimport { AnimatePresence } from 'framer-motion';\nimport { StaggerContext } from './StaggerProvider';\nimport type { StaggerProps } from './types';\nimport { BaseMotionBox } from '~components/BaseMotion';\nimport type { MotionVariantsType } from '~components/BaseMotion';\nimport { msToSeconds } from '~utils/msToSeconds';\nimport { useTheme } from '~utils';\n\n/**\n * ## Stagger\n *\n * Stagger is a utility motion preset we expose from blade to help you implement stagger animations.\n *\n * You can use any of the base entry / exit presets like `Fade`, `Move`, `Slide` inside of it and the components will appear one after the other instead of all at once.\n *\n * **Note:** Unlike other motion presets, Stagger is not an enhancer components and renders a Box instead. You can use BoxProps on this component.\n *\n * ### Usage\n *\n * #### Move with Stagger\n *\n * ```jsx\n * <Stagger>\n * <Move><Chip /></Move>\n * <Move><Chip /></Move>\n * <Move><Chip /></Move>\n * </Stagger>\n * ```\n *\n * #### Conditionally make the parent visible or invisible\n *\n * `isVisible` prop in this case should be on Stagger instead of children preset component\n *\n * ```jsx\n * <Stagger isVisible={isVisibleState}>\n * <Move><Chip /></Move>\n * <Move><Chip /></Move>\n * <Move><Chip /></Move>\n * </Stagger>\n * ```\n *\n */\nconst Stagger = ({\n children,\n isVisible = true,\n type = 'inout',\n shouldUnmountWhenHidden = false,\n delay,\n motionTriggers,\n ...boxProps\n}: StaggerProps): React.ReactElement => {\n const { theme } = useTheme();\n // Only need AnimatePresence when we have to unmount the component\n const AnimateWrapper = shouldUnmountWhenHidden ? AnimatePresence : React.Fragment;\n // keep it always mounted when shouldUnmountWhenHidden is false\n const isMounted = shouldUnmountWhenHidden ? isVisible : true;\n\n const enterDelay = typeof delay === 'object' ? delay.enter : delay;\n const exitDelay = typeof delay === 'object' ? delay.exit : delay;\n\n const staggerVariants: MotionVariantsType = {\n initial: {},\n animate: {\n transition: {\n ...(enterDelay ? { delayChildren: msToSeconds(theme.motion.delay[enterDelay]) } : {}),\n staggerChildren: msToSeconds(theme.motion.duration['2xquick']),\n },\n },\n exit: {\n transition: {\n ...(exitDelay ? { delayChildren: msToSeconds(theme.motion.delay[exitDelay]) } : {}),\n staggerChildren: msToSeconds(theme.motion.duration['2xquick']),\n },\n },\n };\n\n return (\n <AnimateWrapper>\n {isMounted ? (\n <BaseMotionBox\n type={type}\n motionVariants={staggerVariants}\n motionTriggers={motionTriggers}\n {...(shouldUnmountWhenHidden\n ? {}\n : { animateVisibility: isVisible ? 'animate' : 'exit' })}\n {...boxProps}\n >\n <StaggerContext.Provider value={{ isInsideStaggerContainer: true, staggerType: type }}>\n {children}\n </StaggerContext.Provider>\n </BaseMotionBox>\n ) : null}\n </AnimateWrapper>\n );\n};\n\nexport { Stagger };\n"],"names":["Stagger","_ref","children","_ref$isVisible","isVisible","_ref$type","type","_ref$shouldUnmountWhe","shouldUnmountWhenHidden","delay","motionTriggers","boxProps","_objectWithoutProperties","_excluded","_useTheme","useTheme","theme","AnimateWrapper","AnimatePresence","React","Fragment","isMounted","enterDelay","_typeof","enter","exitDelay","exit","staggerVariants","initial","animate","transition","_objectSpread","delayChildren","msToSeconds","motion","staggerChildren","duration","_jsx","BaseMotionBox","motionVariants","animateVisibility","StaggerContext","Provider","value","isInsideStaggerContainer","staggerType"],"mappings":";;;;;;;;;;;;;;;;AA2CA,IAAMA,OAAO,GAAG,SAAVA,OAAOA,CAAAC,IAAA,EAQ2B;AAAA,EAAA,IAPtCC,QAAQ,GAAAD,IAAA,CAARC,QAAQ;IAAAC,cAAA,GAAAF,IAAA,CACRG,SAAS;AAATA,IAAAA,SAAS,GAAAD,cAAA,KAAG,KAAA,CAAA,GAAA,IAAI,GAAAA,cAAA;IAAAE,SAAA,GAAAJ,IAAA,CAChBK,IAAI;AAAJA,IAAAA,IAAI,GAAAD,SAAA,KAAG,KAAA,CAAA,GAAA,OAAO,GAAAA,SAAA;IAAAE,qBAAA,GAAAN,IAAA,CACdO,uBAAuB;AAAvBA,IAAAA,uBAAuB,GAAAD,qBAAA,KAAG,KAAA,CAAA,GAAA,KAAK,GAAAA,qBAAA;IAC/BE,KAAK,GAAAR,IAAA,CAALQ,KAAK;IACLC,cAAc,GAAAT,IAAA,CAAdS,cAAc;AACXC,IAAAA,QAAQ,GAAAC,wBAAA,CAAAX,IAAA,EAAAY,SAAA,CAAA,CAAA;AAEX,EAAA,IAAAC,SAAA,GAAkBC,QAAQ,EAAE;IAApBC,KAAK,GAAAF,SAAA,CAALE,KAAK,CAAA;AACb;EACA,IAAMC,cAAc,GAAGT,uBAAuB,GAAGU,eAAe,GAAGC,cAAK,CAACC,QAAQ,CAAA;AACjF;AACA,EAAA,IAAMC,SAAS,GAAGb,uBAAuB,GAAGJ,SAAS,GAAG,IAAI,CAAA;AAE5D,EAAA,IAAMkB,UAAU,GAAGC,OAAA,CAAOd,KAAK,CAAA,KAAK,QAAQ,GAAGA,KAAK,CAACe,KAAK,GAAGf,KAAK,CAAA;AAClE,EAAA,IAAMgB,SAAS,GAAGF,OAAA,CAAOd,KAAK,CAAA,KAAK,QAAQ,GAAGA,KAAK,CAACiB,IAAI,GAAGjB,KAAK,CAAA;AAEhE,EAAA,IAAMkB,eAAmC,GAAG;IAC1CC,OAAO,EAAE,EAAE;AACXC,IAAAA,OAAO,EAAE;AACPC,MAAAA,UAAU,EAAAC,aAAA,CAAAA,aAAA,CAAA,EAAA,EACJT,UAAU,GAAG;QAAEU,aAAa,EAAEC,WAAW,CAACjB,KAAK,CAACkB,MAAM,CAACzB,KAAK,CAACa,UAAU,CAAC,CAAA;OAAG,GAAG,EAAE,CAAA,EAAA,EAAA,EAAA;QACpFa,eAAe,EAAEF,WAAW,CAACjB,KAAK,CAACkB,MAAM,CAACE,QAAQ,CAAC,SAAS,CAAC,CAAA;AAAC,OAAA,CAAA;KAEjE;AACDV,IAAAA,IAAI,EAAE;AACJI,MAAAA,UAAU,EAAAC,aAAA,CAAAA,aAAA,CAAA,EAAA,EACJN,SAAS,GAAG;QAAEO,aAAa,EAAEC,WAAW,CAACjB,KAAK,CAACkB,MAAM,CAACzB,KAAK,CAACgB,SAAS,CAAC,CAAA;OAAG,GAAG,EAAE,CAAA,EAAA,EAAA,EAAA;QAClFU,eAAe,EAAEF,WAAW,CAACjB,KAAK,CAACkB,MAAM,CAACE,QAAQ,CAAC,SAAS,CAAC,CAAA;AAAC,OAAA,CAAA;AAElE,KAAA;GACD,CAAA;EAED,oBACEC,GAAA,CAACpB,cAAc,EAAA;IAAAf,QAAA,EACZmB,SAAS,gBACRgB,GAAA,CAACC,aAAa,EAAAP,aAAA,CAAAA,aAAA,CAAAA,aAAA,CAAA;AACZzB,MAAAA,IAAI,EAAEA,IAAK;AACXiC,MAAAA,cAAc,EAAEZ,eAAgB;AAChCjB,MAAAA,cAAc,EAAEA,cAAAA;AAAe,KAAA,EAC1BF,uBAAuB,GACxB,EAAE,GACF;AAAEgC,MAAAA,iBAAiB,EAAEpC,SAAS,GAAG,SAAS,GAAG,MAAA;AAAO,KAAC,GACrDO,QAAQ,CAAA,EAAA,EAAA,EAAA;AAAAT,MAAAA,QAAA,eAEZmC,GAAA,CAACI,cAAc,CAACC,QAAQ,EAAA;AAACC,QAAAA,KAAK,EAAE;AAAEC,UAAAA,wBAAwB,EAAE,IAAI;AAAEC,UAAAA,WAAW,EAAEvC,IAAAA;SAAO;AAAAJ,QAAAA,QAAA,EACnFA,QAAAA;OACsB,CAAA;AAAC,KAAA,CACb,CAAC,GACd,IAAA;AAAI,GACM,CAAC,CAAA;AAErB;;;;"}
@@ -0,0 +1,2 @@
1
+ export { Stagger } from './Stagger.web.js';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -2,6 +2,7 @@ import './Accordion/index.js';
2
2
  import './ActionList/index.js';
3
3
  import './Alert/index.js';
4
4
  import './Amount/index.js';
5
+ import './AnimateInteractions/index.js';
5
6
  import './Avatar/index.js';
6
7
  import './Badge/index.js';
7
8
  import './BladeProvider/index.js';
@@ -49,6 +50,7 @@ import './Skeleton/index.js';
49
50
  import './SkipNav/index.web.js';
50
51
  import './Spinner/index.js';
51
52
  import './SpotlightPopoverTour/index.js';
53
+ import './Stagger/index.js';
52
54
  import './StepGroup/index.js';
53
55
  import './Slide/index.js';
54
56
  import './Switch/index.js';
@@ -70,6 +72,7 @@ export { ActionListItem, ActionListItemAvatar, ActionListItemBadge, ActionListIt
70
72
  export { ActionListItemAsset } from './ActionList/ActionListItemAsset.web.js';
71
73
  export { Alert } from './Alert/Alert.js';
72
74
  export { Amount } from './Amount/Amount.js';
75
+ export { AnimateInteractions } from './AnimateInteractions/AnimateInteractions.web.js';
73
76
  export { Avatar } from './Avatar/Avatar.web.js';
74
77
  export { AvatarGroup } from './Avatar/AvatarGroup.web.js';
75
78
  export { TrustedBadgeIcon } from './Avatar/TrustedBadgeIcon.web.js';
@@ -523,6 +526,7 @@ export { Spinner } from './Spinner/Spinner/Spinner.js';
523
526
  export { SpotlightPopoverTour } from './SpotlightPopoverTour/Tour.web.js';
524
527
  export { SpotlightPopoverTourFooter } from './SpotlightPopoverTour/TourFooter.web.js';
525
528
  export { SpotlightPopoverTourStep } from './SpotlightPopoverTour/TourStep.web.js';
529
+ export { Stagger } from './Stagger/Stagger.web.js';
526
530
  export { StepGroup } from './StepGroup/StepGroup.web.js';
527
531
  export { StepItem } from './StepGroup/StepItem.web.js';
528
532
  export { StepItemIcon, StepItemIndicator } from './StepGroup/StepItemMarker.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,7 +1,15 @@
1
- import { useRef, useInsertionEffect, useCallback } from 'react';
1
+ import React__default, { useRef, useCallback } from 'react';
2
+ import { useIsomorphicLayoutEffect } from './useIsomorphicLayoutEffect.js';
2
3
 
4
+ /* eslint-disable @typescript-eslint/no-explicit-any */
3
5
  /* eslint-disable @typescript-eslint/explicit-function-return-type */
4
6
 
7
+ // Prevent webpack from importing this:
8
+ // https://github.com/webpack/webpack/issues/14814#issuecomment-1536757985
9
+ // https://github.com/radix-ui/primitives/issues/2796
10
+ var useReactInsertionEffect = React__default[' useInsertionEffect '.trim().toString()];
11
+ var useInsertionEffectFallback = useReactInsertionEffect || useIsomorphicLayoutEffect;
12
+
5
13
  /**
6
14
  * This hook is user-land implementation of the experimental `useEffectEvent` hook.
7
15
  * React docs: https://react.dev/learn/separating-events-from-effects#declaring-an-effect-event
@@ -10,10 +18,8 @@ import { useRef, useInsertionEffect, useCallback } from 'react';
10
18
  */
11
19
  function useCallbackRef(callback) {
12
20
  var deps = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
13
- var callbackRef = useRef(function () {
14
- throw new Error('Cannot call an event handler while rendering.');
15
- });
16
- useInsertionEffect(function () {
21
+ var callbackRef = useRef(callback);
22
+ useInsertionEffectFallback(function () {
17
23
  callbackRef.current = callback;
18
24
  });
19
25
 
@@ -1 +1 @@
1
- {"version":3,"file":"useCallbackRef.js","sources":["../../../../../src/utils/useCallbackRef.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/explicit-function-return-type */\nimport { useCallback, useInsertionEffect, useRef } from 'react';\n\n/**\n * This hook is user-land implementation of the experimental `useEffectEvent` hook.\n * React docs: https://react.dev/learn/separating-events-from-effects#declaring-an-effect-event\n *\n * This hook is useful when you want to use a callback function inside a useEffect while keeping it \"fresh\" but you don't want to add it to the dependency array.\n */\nfunction useCallbackRef<Args extends unknown[], Return>(\n callback: ((...args: Args) => Return) | undefined,\n deps: React.DependencyList = [],\n) {\n const callbackRef = useRef<typeof callback>(() => {\n throw new Error('Cannot call an event handler while rendering.');\n });\n\n useInsertionEffect(() => {\n callbackRef.current = callback;\n });\n\n // eslint-disable-next-line react-hooks/exhaustive-deps\n return useCallback((...args: Args) => callbackRef.current?.(...args), deps);\n}\n\nexport { useCallbackRef };\n"],"names":["useCallbackRef","callback","deps","arguments","length","undefined","callbackRef","useRef","Error","useInsertionEffect","current","useCallback","_callbackRef$current","_len","args","Array","_key","call","apply","concat"],"mappings":";;AAAA;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,cAAcA,CACrBC,QAAiD,EAEjD;AAAA,EAAA,IADAC,IAA0B,GAAAC,SAAA,CAAAC,MAAA,GAAA,CAAA,IAAAD,SAAA,CAAA,CAAA,CAAA,KAAAE,SAAA,GAAAF,SAAA,CAAA,CAAA,CAAA,GAAG,EAAE,CAAA;AAE/B,EAAA,IAAMG,WAAW,GAAGC,MAAM,CAAkB,YAAM;AAChD,IAAA,MAAM,IAAIC,KAAK,CAAC,+CAA+C,CAAC,CAAA;AAClE,GAAC,CAAC,CAAA;AAEFC,EAAAA,kBAAkB,CAAC,YAAM;IACvBH,WAAW,CAACI,OAAO,GAAGT,QAAQ,CAAA;AAChC,GAAC,CAAC,CAAA;;AAEF;AACA,EAAA,OAAOU,WAAW,CAAC,YAAA;AAAA,IAAA,IAAAC,oBAAA,CAAA;AAAA,IAAA,KAAA,IAAAC,IAAA,GAAAV,SAAA,CAAAC,MAAA,EAAIU,IAAI,GAAAC,IAAAA,KAAA,CAAAF,IAAA,GAAAG,IAAA,GAAA,CAAA,EAAAA,IAAA,GAAAH,IAAA,EAAAG,IAAA,EAAA,EAAA;AAAJF,MAAAA,IAAI,CAAAE,IAAA,CAAAb,GAAAA,SAAA,CAAAa,IAAA,CAAA,CAAA;AAAA,KAAA;IAAA,OAAAJ,CAAAA,oBAAA,GAAWN,WAAW,CAACI,OAAO,MAAAE,IAAAA,IAAAA,oBAAA,uBAAnBA,oBAAA,CAAAK,IAAA,CAAAC,KAAA,CAAAN,oBAAA,EAAA,CAAAN,WAAW,CAAAa,CAAAA,MAAA,CAAcL,IAAI,CAAC,CAAA,CAAA;AAAA,GAAA,EAAEZ,IAAI,CAAC,CAAA;AAC7E;;;;"}
1
+ {"version":3,"file":"useCallbackRef.js","sources":["../../../../../src/utils/useCallbackRef.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-explicit-any */\n/* eslint-disable @typescript-eslint/explicit-function-return-type */\nimport React, { useCallback, useRef } from 'react';\nimport { useIsomorphicLayoutEffect } from './useIsomorphicLayoutEffect';\n\n// Prevent webpack from importing this:\n// https://github.com/webpack/webpack/issues/14814#issuecomment-1536757985\n// https://github.com/radix-ui/primitives/issues/2796\nconst useReactInsertionEffect = (React as any)[' useInsertionEffect '.trim().toString()];\nconst useInsertionEffectFallback = useReactInsertionEffect || useIsomorphicLayoutEffect;\n\n/**\n * This hook is user-land implementation of the experimental `useEffectEvent` hook.\n * React docs: https://react.dev/learn/separating-events-from-effects#declaring-an-effect-event\n *\n * This hook is useful when you want to use a callback function inside a useEffect while keeping it \"fresh\" but you don't want to add it to the dependency array.\n */\nfunction useCallbackRef<Args extends unknown[], Return>(\n callback: ((...args: Args) => Return) | undefined,\n deps: React.DependencyList = [],\n) {\n const callbackRef = useRef<typeof callback>(callback);\n\n useInsertionEffectFallback(() => {\n callbackRef.current = callback;\n });\n\n // eslint-disable-next-line react-hooks/exhaustive-deps\n return useCallback((...args: Args) => callbackRef.current?.(...args), deps);\n}\n\nexport { useCallbackRef };\n"],"names":["useReactInsertionEffect","React","trim","toString","useInsertionEffectFallback","useIsomorphicLayoutEffect","useCallbackRef","callback","deps","arguments","length","undefined","callbackRef","useRef","current","useCallback","_callbackRef$current","_len","args","Array","_key","call","apply","concat"],"mappings":";;;AAAA;AACA;;AAIA;AACA;AACA;AACA,IAAMA,uBAAuB,GAAIC,cAAK,CAAS,sBAAsB,CAACC,IAAI,EAAE,CAACC,QAAQ,EAAE,CAAC,CAAA;AACxF,IAAMC,0BAA0B,GAAGJ,uBAAuB,IAAIK,yBAAyB,CAAA;;AAEvF;AACA;AACA;AACA;AACA;AACA;AACA,SAASC,cAAcA,CACrBC,QAAiD,EAEjD;AAAA,EAAA,IADAC,IAA0B,GAAAC,SAAA,CAAAC,MAAA,GAAA,CAAA,IAAAD,SAAA,CAAA,CAAA,CAAA,KAAAE,SAAA,GAAAF,SAAA,CAAA,CAAA,CAAA,GAAG,EAAE,CAAA;AAE/B,EAAA,IAAMG,WAAW,GAAGC,MAAM,CAAkBN,QAAQ,CAAC,CAAA;AAErDH,EAAAA,0BAA0B,CAAC,YAAM;IAC/BQ,WAAW,CAACE,OAAO,GAAGP,QAAQ,CAAA;AAChC,GAAC,CAAC,CAAA;;AAEF;AACA,EAAA,OAAOQ,WAAW,CAAC,YAAA;AAAA,IAAA,IAAAC,oBAAA,CAAA;AAAA,IAAA,KAAA,IAAAC,IAAA,GAAAR,SAAA,CAAAC,MAAA,EAAIQ,IAAI,GAAAC,IAAAA,KAAA,CAAAF,IAAA,GAAAG,IAAA,GAAA,CAAA,EAAAA,IAAA,GAAAH,IAAA,EAAAG,IAAA,EAAA,EAAA;AAAJF,MAAAA,IAAI,CAAAE,IAAA,CAAAX,GAAAA,SAAA,CAAAW,IAAA,CAAA,CAAA;AAAA,KAAA;IAAA,OAAAJ,CAAAA,oBAAA,GAAWJ,WAAW,CAACE,OAAO,MAAAE,IAAAA,IAAAA,oBAAA,uBAAnBA,oBAAA,CAAAK,IAAA,CAAAC,KAAA,CAAAN,oBAAA,EAAA,CAAAJ,WAAW,CAAAW,CAAAA,MAAA,CAAcL,IAAI,CAAC,CAAA,CAAA;AAAA,GAAA,EAAEV,IAAI,CAAC,CAAA;AAC7E;;;;"}
@@ -5479,6 +5479,204 @@ type AmountCommonProps = {
5479
5479
  type AmountProps = AmountTypeProps & AmountCommonProps;
5480
5480
  declare const Amount: React__default.ForwardRefExoticComponent<AmountProps & React__default.RefAttributes<BladeElementRef>>;
5481
5481
 
5482
+ type MotionTriggerEntryExitType = 'mount' | 'in-view' | 'focus' | 'on-animate-interactions';
5483
+ type MotionTriggersType = MotionTriggerEntryExitType | 'hover' | 'tap';
5484
+ type MotionVariantsType = {
5485
+ initial: TargetAndTransition & {
5486
+ transition?: Tween;
5487
+ };
5488
+ animate: TargetAndTransition & {
5489
+ transition?: Tween;
5490
+ };
5491
+ exit: TargetAndTransition & {
5492
+ transition?: Tween;
5493
+ };
5494
+ };
5495
+ type MotionDelay = keyof Delay | {
5496
+ enter: keyof Delay;
5497
+ exit: keyof Delay;
5498
+ };
5499
+ type BaseMotionBoxProps = {
5500
+ as?: React__default.ReactElement;
5501
+ children: React__default.ReactElement;
5502
+ /**
5503
+ * Whether component should animate in, animate out, or animate both in and out
5504
+ *
5505
+ * With type="in", component will only animate in but immediately be removed on exit without animation
5506
+ * With type="out", component will only animate out but immediately mount on enter without animation
5507
+ * With type="inout", component animates in and out both
5508
+ *
5509
+ * @default 'inout'
5510
+ */
5511
+ type?: 'in' | 'out' | 'inout';
5512
+ /**
5513
+ * @default ['mount']
5514
+ */
5515
+ motionTriggers?: MotionTriggersType[];
5516
+ /**
5517
+ * This internally maps to `variants` of motion/react
5518
+ */
5519
+ motionVariants?: MotionVariantsType;
5520
+ /**
5521
+ * Option to override the animate
5522
+ *
5523
+ * Useful when you want to control animation custom
5524
+ *
5525
+ * E.g.
5526
+ * ```js
5527
+ * const controls = useAnimationControls();
5528
+ *
5529
+ * animate={controls}
5530
+ * ```
5531
+ */
5532
+ animate?: AnimationControls;
5533
+ /**
5534
+ * This is for scenarios where you want to conditionally animate a component instead of it having static defined animation.
5535
+ *
5536
+ * E.g. In scenarios where your motion component is always mounted, you can use this to switch visibility
5537
+ *
5538
+ * ```js
5539
+ * animateVisibility={isVisible ? 'animate' : 'exit'}
5540
+ * ```
5541
+ */
5542
+ animateVisibility?: keyof MotionVariantsType;
5543
+ };
5544
+ type BaseMotionEntryExitProps = Pick<BaseMotionBoxProps, 'children' | 'motionVariants' | 'type'> & {
5545
+ /**
5546
+ * Handle visibility of motion component.
5547
+ *
5548
+ * By default components animate on mount but if you want to mount/unmount them, use this prop instead
5549
+ *
5550
+ * ### ❌ Incorrect way to handle visibility of components
5551
+ *
5552
+ * ```jsx
5553
+ * isVisible ? <Fade><MyComponent /></Fade> : null
5554
+ * ```
5555
+ *
5556
+ * ### ✅ Correct way
5557
+ *
5558
+ * ```jsx
5559
+ * <Fade isVisible={isVisible}><MyComponent />
5560
+ * ```
5561
+ *
5562
+ * This prop allows us to handle exit animations before the component unmounts
5563
+ */
5564
+ isVisible?: boolean;
5565
+ /**
5566
+ * ### Usage
5567
+ *
5568
+ * ```jsx
5569
+ * <Fade motionTriggers={['in-view']}>
5570
+ * <Text>I appear when the component is in view of the scroll</Text>
5571
+ * </Fade>
5572
+ * ```
5573
+ *
5574
+ * Values:
5575
+ * - mount: Component animates when it mounts
5576
+ * - in-view: Component animates when its in view of the scroll
5577
+ * - focus: Component animates in when its in focus
5578
+ * - on-animate-interactions: Component animates based on motionTriggers of <AnimateInteractions /> component
5579
+ *
5580
+ * @default ['mount']
5581
+ */
5582
+ motionTriggers?: MotionTriggerEntryExitType[];
5583
+ /**
5584
+ * By default components are only made opacity: 0. When this prop is set to true, components will unmount and be removed from the page.
5585
+ *
5586
+ * **Warn:** Setting this true might cause layout shifts in your page since component will be removed so do check it once and add minHeight to its container
5587
+ *
5588
+ * @default false
5589
+ */
5590
+ shouldUnmountWhenHidden?: boolean;
5591
+ /**
5592
+ * Handles delay of animations
5593
+ *
5594
+ * ## Usage
5595
+ *
5596
+ * ```jsx
5597
+ * <Fade delay="quick"></Fade>
5598
+ * ```
5599
+ *
5600
+ * ### Different delays for enter and exit
5601
+ *
5602
+ * ```jsx
5603
+ * <Fade delay={{ enter: 'quick', exit: 'gentle' }}></Fade>
5604
+ * ```
5605
+ *
5606
+ * @default undefined
5607
+ */
5608
+ delay?: MotionDelay;
5609
+ };
5610
+ type MotionMeta = {
5611
+ innerRef: React__default.Ref<HTMLElement>;
5612
+ isEnhanced: boolean;
5613
+ };
5614
+ type MotionMetaProp = {
5615
+ /**
5616
+ * @private
5617
+ *
5618
+ * This prop is internally injected when Motion Preset enhances some component.
5619
+ *
5620
+ * You only need to add this prop to component that requires you to pass ref to some internal component. E.g. in checkbox, we need ref on internal input component but we also need one ref on outer component.
5621
+ * Use this in combination with `getOuterMotionRef` and `getInnerMotionRef` utilities
5622
+ */
5623
+ _motionMeta?: MotionMeta;
5624
+ };
5625
+
5626
+ type AnimateInteractionsProps = {
5627
+ children: React.ReactElement;
5628
+ /**
5629
+ * AnimateInteractions is a component meant to give you triggers that animate children inside of it.
5630
+ *
5631
+ * So the motionTriggers you apply here will be applied on AnimateInteractions and children will animate based on that.
5632
+ *
5633
+ * E.g.
5634
+ *
5635
+ * ```jsx
5636
+ * <AnimateInteractions
5637
+ * motionTriggers={['hover']}
5638
+ * > // <-- When this is hovered
5639
+ * <Box>
5640
+ * <Move
5641
+ * motionTriggers={['on-animate-interactions']}
5642
+ * > // <-- this animates in
5643
+ * <Box />
5644
+ * </Move>
5645
+ * </Box>
5646
+ * </AnimateInteractions>
5647
+ * ```
5648
+ */
5649
+ motionTriggers?: BaseMotionBoxProps['motionTriggers'];
5650
+ };
5651
+
5652
+ /**
5653
+ * ## AnimateInteractions
5654
+ *
5655
+ * AnimateInteractions is the utility preset that we offer to help you animate children when the parent is interacted.
5656
+ *
5657
+ * This is in a way equivalent to following CSS-
5658
+ * ```css
5659
+ * .parent:hover .child { }
5660
+ * ```
5661
+ *
5662
+ * ### Usage
5663
+ *
5664
+ * ```jsx
5665
+ * <AnimateInteractions
5666
+ * motionTriggers={['hover']}
5667
+ * > // <-- When this is hovered
5668
+ * <Box>
5669
+ * <Move
5670
+ * motionTriggers={['on-animate-interactions']}
5671
+ * > // <-- this animates in
5672
+ * <Box />
5673
+ * </Move>
5674
+ * </Box>
5675
+ * </AnimateInteractions>
5676
+ * ```
5677
+ */
5678
+ declare const AnimateInteractions: ({ children, motionTriggers, }: AnimateInteractionsProps) => React__default.ReactElement;
5679
+
5482
5680
  /**
5483
5681
  * ### Avatar Component
5484
5682
  *
@@ -11193,150 +11391,6 @@ type CarouselProps = {
11193
11391
  height?: BoxProps['height'];
11194
11392
  } & StyledPropsBlade & DataAnalyticsAttribute;
11195
11393
 
11196
- type MotionTriggerEntryExitType = 'mount' | 'in-view' | 'focus' | 'on-animate-interactions';
11197
- type MotionTriggersType = MotionTriggerEntryExitType | 'hover' | 'tap';
11198
- type MotionVariantsType = {
11199
- initial: TargetAndTransition & {
11200
- transition?: Tween;
11201
- };
11202
- animate: TargetAndTransition & {
11203
- transition?: Tween;
11204
- };
11205
- exit: TargetAndTransition & {
11206
- transition?: Tween;
11207
- };
11208
- };
11209
- type MotionDelay = keyof Delay | {
11210
- enter: keyof Delay;
11211
- exit: keyof Delay;
11212
- };
11213
- type BaseMotionBoxProps = {
11214
- as?: React__default.ReactElement;
11215
- children: React__default.ReactElement;
11216
- /**
11217
- * Whether component should animate in, animate out, or animate both in and out
11218
- *
11219
- * With type="in", component will only animate in but immediately be removed on exit without animation
11220
- * With type="out", component will only animate out but immediately mount on enter without animation
11221
- * With type="inout", component animates in and out both
11222
- *
11223
- * @default 'inout'
11224
- */
11225
- type?: 'in' | 'out' | 'inout';
11226
- /**
11227
- * @default ['mount']
11228
- */
11229
- motionTriggers?: MotionTriggersType[];
11230
- /**
11231
- * This internally maps to `variants` of motion/react
11232
- */
11233
- motionVariants?: MotionVariantsType;
11234
- /**
11235
- * Option to override the animate
11236
- *
11237
- * Useful when you want to control animation custom
11238
- *
11239
- * E.g.
11240
- * ```js
11241
- * const controls = useAnimationControls();
11242
- *
11243
- * animate={controls}
11244
- * ```
11245
- */
11246
- animate?: AnimationControls;
11247
- /**
11248
- * This is for scenarios where you want to conditionally animate a component instead of it having static defined animation.
11249
- *
11250
- * E.g. In scenarios where your motion component is always mounted, you can use this to switch visibility
11251
- *
11252
- * ```js
11253
- * animateVisibility={isVisible ? 'animate' : 'exit'}
11254
- * ```
11255
- */
11256
- animateVisibility?: keyof MotionVariantsType;
11257
- };
11258
- type BaseMotionEntryExitProps = Pick<BaseMotionBoxProps, 'children' | 'motionVariants' | 'type'> & {
11259
- /**
11260
- * Handle visibility of motion component.
11261
- *
11262
- * By default components animate on mount but if you want to mount/unmount them, use this prop instead
11263
- *
11264
- * ### ❌ Incorrect way to handle visibility of components
11265
- *
11266
- * ```jsx
11267
- * isVisible ? <Fade><MyComponent /></Fade> : null
11268
- * ```
11269
- *
11270
- * ### ✅ Correct way
11271
- *
11272
- * ```jsx
11273
- * <Fade isVisible={isVisible}><MyComponent />
11274
- * ```
11275
- *
11276
- * This prop allows us to handle exit animations before the component unmounts
11277
- */
11278
- isVisible?: boolean;
11279
- /**
11280
- * ### Usage
11281
- *
11282
- * ```jsx
11283
- * <Fade motionTriggers={['in-view']}>
11284
- * <Text>I appear when the component is in view of the scroll</Text>
11285
- * </Fade>
11286
- * ```
11287
- *
11288
- * Values:
11289
- * - mount: Component animates when it mounts
11290
- * - in-view: Component animates when its in view of the scroll
11291
- * - focus: Component animates in when its in focus
11292
- * - on-animate-interactions: Component animates based on motionTriggers of <AnimateInteractions /> component
11293
- *
11294
- * @default ['mount']
11295
- */
11296
- motionTriggers?: MotionTriggerEntryExitType[];
11297
- /**
11298
- * By default components are only made opacity: 0. When this prop is set to true, components will unmount and be removed from the page.
11299
- *
11300
- * **Warn:** Setting this true might cause layout shifts in your page since component will be removed so do check it once and add minHeight to its container
11301
- *
11302
- * @default false
11303
- */
11304
- shouldUnmountWhenHidden?: boolean;
11305
- /**
11306
- * Handles delay of animations
11307
- *
11308
- * ## Usage
11309
- *
11310
- * ```jsx
11311
- * <Fade delay="quick"></Fade>
11312
- * ```
11313
- *
11314
- * ### Different delays for enter and exit
11315
- *
11316
- * ```jsx
11317
- * <Fade delay={{ enter: 'quick', exit: 'gentle' }}></Fade>
11318
- * ```
11319
- *
11320
- * @default undefined
11321
- */
11322
- delay?: MotionDelay;
11323
- };
11324
- type MotionMeta = {
11325
- innerRef: React__default.Ref<HTMLElement>;
11326
- isEnhanced: boolean;
11327
- };
11328
- type MotionMetaProp = {
11329
- /**
11330
- * @private
11331
- *
11332
- * This prop is internally injected when Motion Preset enhances some component.
11333
- *
11334
- * You only need to add this prop to component that requires you to pass ref to some internal component. E.g. in checkbox, we need ref on internal input component but we also need one ref on outer component.
11335
- * Use this in combination with `getOuterMotionRef` and `getInnerMotionRef` utilities
11336
- */
11337
- _motionMeta?: MotionMeta;
11338
- };
11339
-
11340
11394
  type OnChange$1 = ({ isChecked, event, value, }: {
11341
11395
  isChecked: boolean;
11342
11396
  event?: React__default.ChangeEvent;
@@ -21400,6 +21454,46 @@ declare const SpotlightPopoverTourFooter: ({ activeStep, totalSteps, actions, }:
21400
21454
 
21401
21455
  declare const SpotlightPopoverTourStep: React__default.MemoExoticComponent<({ name, children, }: SpotlightPopoverTourStepProps) => React__default.ReactElement>;
21402
21456
 
21457
+ type StaggerProps = Pick<BaseMotionEntryExitProps, 'isVisible' | 'motionTriggers' | 'shouldUnmountWhenHidden' | 'type' | 'delay'> & {
21458
+ children: React.ReactElement[] | React.ReactElement;
21459
+ } & Omit<BoxProps, 'as'>;
21460
+
21461
+ /**
21462
+ * ## Stagger
21463
+ *
21464
+ * Stagger is a utility motion preset we expose from blade to help you implement stagger animations.
21465
+ *
21466
+ * You can use any of the base entry / exit presets like `Fade`, `Move`, `Slide` inside of it and the components will appear one after the other instead of all at once.
21467
+ *
21468
+ * **Note:** Unlike other motion presets, Stagger is not an enhancer components and renders a Box instead. You can use BoxProps on this component.
21469
+ *
21470
+ * ### Usage
21471
+ *
21472
+ * #### Move with Stagger
21473
+ *
21474
+ * ```jsx
21475
+ * <Stagger>
21476
+ * <Move><Chip /></Move>
21477
+ * <Move><Chip /></Move>
21478
+ * <Move><Chip /></Move>
21479
+ * </Stagger>
21480
+ * ```
21481
+ *
21482
+ * #### Conditionally make the parent visible or invisible
21483
+ *
21484
+ * `isVisible` prop in this case should be on Stagger instead of children preset component
21485
+ *
21486
+ * ```jsx
21487
+ * <Stagger isVisible={isVisibleState}>
21488
+ * <Move><Chip /></Move>
21489
+ * <Move><Chip /></Move>
21490
+ * <Move><Chip /></Move>
21491
+ * </Stagger>
21492
+ * ```
21493
+ *
21494
+ */
21495
+ declare const Stagger: ({ children, isVisible, type, shouldUnmountWhenHidden, delay, motionTriggers, ...boxProps }: StaggerProps) => React__default.ReactElement;
21496
+
21403
21497
  /**
21404
21498
  * ## StepGroup
21405
21499
  *
@@ -25936,4 +26030,4 @@ declare const VisuallyHidden: ({ children, testID }: VisuallyHiddenProps) => Rea
25936
26030
  */
25937
26031
  declare const screenReaderStyles: CSSObject;
25938
26032
 
25939
- export { AcceptPaymentsIcon, Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemAvatar, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionProps, ActivityIcon, AddressBookIcon, AffordabilityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AttachmentIcon, AutoComplete, AutoCompleteProps, AutomateAccountingIcon, AutomatePayrollIcon, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, AwardIcon, Badge, BadgeProps, BankAccountVerificationIcon, BankIcon, BarChartAltIcon, BarChartIcon, BarCodeIcon, Battery100PercentIcon, Battery20PercentIcon, Battery40PercentIcon, Battery60PercentIcon, Battery80PercentIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BfsiIcon, BillIcon, BillMeIcon, BladeCommonEvents, BladeFile, BladeFileList, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomNav, BottomNavItem, BottomNavItemProps, BottomNavProps, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, Breadcrumb, BreadcrumbItem, BreadcrumbItemProps, BreadcrumbProps, BriefcaseIcon, BugIcon, BuildingIcon, BulkPayoutsIcon, BusinessBankingIcon, BusinessSpendManagementIcon, Button, ButtonGroup, ButtonGroupProps, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, CashIcon, CastIcon, CheckCircle2Icon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, ClosedCaptioningIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodeSnippetIcon, CodepenIcon, CoinIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompanyRegistrationIcon, CompassIcon, ComponentIds, ConfettiIcon, ContactlessPaymentIcon, CookieIcon, CopyIcon, CopyrightIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CreditsAndLoansIcon, CropIcon, CrosshairIcon, CurrentAccountIcon, CustomersIcon, CutIcon, DashboardIcon, DatePicker, DatePickerProps, DeleteIcon, DigitalLendingIcon, DisbursePaymentsIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DotIcon, DownloadCloudIcon, DownloadIcon, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EcommerceIcon, EditComposeIcon, EditIcon, EditInlineIcon, EducationIcon, EqualsIcon, EscrowAccountIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, Fade, FadeProps, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileUploadProps, FileZipIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, ForexManagementIcon, FreelanceIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphoneIcon, HeadphonesIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, IndiaFlagIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InstantSettlementIcon, InternationalPaymentsIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, LoaderIcon, LoansForBusinessesIcon, LockIcon, LogInIcon, LogOutIcon, MagicCheckoutIcon, MagicKonnectIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, Menu, MenuDivider, MenuDotsIcon, MenuFooter, MenuFooterProps, MenuHeader, MenuHeaderProps, MenuIcon, MenuItem, MenuItemProps, MenuOverlay, MenuOverlayProps, MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MobileAppIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreIcon, MoreVerticalIcon, Morph, MorphProps, Move, MoveIcon, MoveProps, MusicIcon, MyAccountIcon, NavigationIcon, NoSignalIcon, OTPInput, OTPInputCommonProps, OTPInputProps, OctagonIcon, OffersIcon, OptimizerIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonIcon, PaymentButtonsIcon, PaymentGatewayIcon, PaymentLinkIcon, PaymentLinksIcon, PaymentPagesIcon, PayoutLinkIcon, PayrollAddonsIcon, PayrollForCaIcon, PayrollForStartupOrSmeIcon, PercentIcon, PettyCashBudgetIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneNumberInput, PhoneNumberInputProps, PhoneOffIcon, PhoneOutgoingIcon, PictureInPictureIcon, PieChartIcon, PinIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, PosIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RayIcon, RazorpayIcon, RazorpayXIcon, RazorpayxPayrollIcon, RefreshIcon, RepeatIcon, ReportsIcon, ResizerIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RouteIcon, RoutesIcon, RupeeIcon, RupeesIcon, SIDE_NAV_EXPANDED_L1_WIDTH_BASE, SIDE_NAV_EXPANDED_L1_WIDTH_XL, SaasIcon, SaveIcon, Scale, ScaleProps, ScissorsIcon, SearchIcon, SearchInput, SearchInputProps, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SideNav, SideNavBody, SideNavFooter, SideNavFooterProps, SideNavItem, SideNavItemProps, SideNavLevel, SideNavLink, SideNavLinkProps, SideNavProps, SideNavSection, SideNavSectionProps, SidebarIcon, Signal1BarIcon, Signal2BarIcon, Signal3BarIcon, Signal4BarIcon, SignalIcon, SimCardIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, Slide, SlideProps, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SolutionsIcon, SourceToPayIcon, SparklesIcon, SpeakerIcon, Spinner, SpinnerProps, SpotlightPopoverStepRenderProps, SpotlightPopoverTour, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, StampIcon, StarIcon, StepGroup, StepGroupProps, StepItem, StepItemIcon, StepItemIndicator, StepItemProps, StopCircleIcon, StorefrontIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabNav, TabNavItem, TabNavItemData, TabNavItemProps, TabNavItems, TabNavProps, TabPanel, TabPanelProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableEditableCell, TableEditableCellProps, TableEditableDropdownCell, TableEditableDropdownCellProps, TableFooter, TableFooterCell, TableFooterCellProps, TableFooterProps, TableFooterRow, TableFooterRowProps, TableHeader, TableHeaderCell, TableHeaderCellProps, TableHeaderProps, TableHeaderRow, TableHeaderRowProps, TableNode, TablePagination, TablePaginationProps, TableProps, TableRow, TableRowProps, TableToolbar, TableToolbarActions, TableToolbarActionsProps, TableToolbarProps, TabletIcon, Tabs, TabsProps, Tag, TagIcon, TagProps, TargetIcon, TaxPaymentsIcon, TestIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, TicketIcon, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, TokenHqIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TopNav, TopNavActions, TopNavBrand, TopNavContent, TopNavProps, TrademarkIcon, TrademarkRegisteredIcon, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TrustedBadgeIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UpiAutopayIcon, UpiIcon, UploadCloudIcon, UploadIcon, UseToastReturn, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VendorPaymentsIcon, VideoIcon, VideoOffIcon, ViewLiveDemoIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WalletIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, WorldwideIcon, XCircleIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, drawerPadding, getHeadingProps, getTextProps, screenReaderStyles, useTheme, useToast };
26033
+ export { AcceptPaymentsIcon, Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemAvatar, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionProps, ActivityIcon, AddressBookIcon, AffordabilityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnimateInteractions, AnimateInteractionsProps, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AttachmentIcon, AutoComplete, AutoCompleteProps, AutomateAccountingIcon, AutomatePayrollIcon, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, AwardIcon, Badge, BadgeProps, BankAccountVerificationIcon, BankIcon, BarChartAltIcon, BarChartIcon, BarCodeIcon, Battery100PercentIcon, Battery20PercentIcon, Battery40PercentIcon, Battery60PercentIcon, Battery80PercentIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BfsiIcon, BillIcon, BillMeIcon, BladeCommonEvents, BladeFile, BladeFileList, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomNav, BottomNavItem, BottomNavItemProps, BottomNavProps, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, Breadcrumb, BreadcrumbItem, BreadcrumbItemProps, BreadcrumbProps, BriefcaseIcon, BugIcon, BuildingIcon, BulkPayoutsIcon, BusinessBankingIcon, BusinessSpendManagementIcon, Button, ButtonGroup, ButtonGroupProps, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, CashIcon, CastIcon, CheckCircle2Icon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, ClosedCaptioningIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodeSnippetIcon, CodepenIcon, CoinIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompanyRegistrationIcon, CompassIcon, ComponentIds, ConfettiIcon, ContactlessPaymentIcon, CookieIcon, CopyIcon, CopyrightIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CreditsAndLoansIcon, CropIcon, CrosshairIcon, CurrentAccountIcon, CustomersIcon, CutIcon, DashboardIcon, DatePicker, DatePickerProps, DeleteIcon, DigitalLendingIcon, DisbursePaymentsIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DotIcon, DownloadCloudIcon, DownloadIcon, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EcommerceIcon, EditComposeIcon, EditIcon, EditInlineIcon, EducationIcon, EqualsIcon, EscrowAccountIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, Fade, FadeProps, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileUploadProps, FileZipIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, ForexManagementIcon, FreelanceIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphoneIcon, HeadphonesIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, IndiaFlagIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InstantSettlementIcon, InternationalPaymentsIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, LoaderIcon, LoansForBusinessesIcon, LockIcon, LogInIcon, LogOutIcon, MagicCheckoutIcon, MagicKonnectIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, Menu, MenuDivider, MenuDotsIcon, MenuFooter, MenuFooterProps, MenuHeader, MenuHeaderProps, MenuIcon, MenuItem, MenuItemProps, MenuOverlay, MenuOverlayProps, MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MobileAppIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreIcon, MoreVerticalIcon, Morph, MorphProps, Move, MoveIcon, MoveProps, MusicIcon, MyAccountIcon, NavigationIcon, NoSignalIcon, OTPInput, OTPInputCommonProps, OTPInputProps, OctagonIcon, OffersIcon, OptimizerIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonIcon, PaymentButtonsIcon, PaymentGatewayIcon, PaymentLinkIcon, PaymentLinksIcon, PaymentPagesIcon, PayoutLinkIcon, PayrollAddonsIcon, PayrollForCaIcon, PayrollForStartupOrSmeIcon, PercentIcon, PettyCashBudgetIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneNumberInput, PhoneNumberInputProps, PhoneOffIcon, PhoneOutgoingIcon, PictureInPictureIcon, PieChartIcon, PinIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, PosIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RayIcon, RazorpayIcon, RazorpayXIcon, RazorpayxPayrollIcon, RefreshIcon, RepeatIcon, ReportsIcon, ResizerIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RouteIcon, RoutesIcon, RupeeIcon, RupeesIcon, SIDE_NAV_EXPANDED_L1_WIDTH_BASE, SIDE_NAV_EXPANDED_L1_WIDTH_XL, SaasIcon, SaveIcon, Scale, ScaleProps, ScissorsIcon, SearchIcon, SearchInput, SearchInputProps, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SideNav, SideNavBody, SideNavFooter, SideNavFooterProps, SideNavItem, SideNavItemProps, SideNavLevel, SideNavLink, SideNavLinkProps, SideNavProps, SideNavSection, SideNavSectionProps, SidebarIcon, Signal1BarIcon, Signal2BarIcon, Signal3BarIcon, Signal4BarIcon, SignalIcon, SimCardIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, Slide, SlideProps, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SolutionsIcon, SourceToPayIcon, SparklesIcon, SpeakerIcon, Spinner, SpinnerProps, SpotlightPopoverStepRenderProps, SpotlightPopoverTour, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, Stagger, StaggerProps, StampIcon, StarIcon, StepGroup, StepGroupProps, StepItem, StepItemIcon, StepItemIndicator, StepItemProps, StopCircleIcon, StorefrontIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabNav, TabNavItem, TabNavItemData, TabNavItemProps, TabNavItems, TabNavProps, TabPanel, TabPanelProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableEditableCell, TableEditableCellProps, TableEditableDropdownCell, TableEditableDropdownCellProps, TableFooter, TableFooterCell, TableFooterCellProps, TableFooterProps, TableFooterRow, TableFooterRowProps, TableHeader, TableHeaderCell, TableHeaderCellProps, TableHeaderProps, TableHeaderRow, TableHeaderRowProps, TableNode, TablePagination, TablePaginationProps, TableProps, TableRow, TableRowProps, TableToolbar, TableToolbarActions, TableToolbarActionsProps, TableToolbarProps, TabletIcon, Tabs, TabsProps, Tag, TagIcon, TagProps, TargetIcon, TaxPaymentsIcon, TestIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, TicketIcon, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, TokenHqIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TopNav, TopNavActions, TopNavBrand, TopNavContent, TopNavProps, TrademarkIcon, TrademarkRegisteredIcon, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TrustedBadgeIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UpiAutopayIcon, UpiIcon, UploadCloudIcon, UploadIcon, UseToastReturn, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VendorPaymentsIcon, VideoIcon, VideoOffIcon, ViewLiveDemoIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WalletIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, WorldwideIcon, XCircleIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, drawerPadding, getHeadingProps, getTextProps, screenReaderStyles, useTheme, useToast };