@m4l/components 9.3.34 → 9.3.35-BE20251129-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (227) hide show
  1. package/@types/export.d.ts +6 -0
  2. package/@types/types.d.ts +51 -5
  3. package/components/AccountPopover/AccountPopover.styles.js +5 -2
  4. package/components/AccountPopover/slots/AccountPopoverSlots.d.ts +6 -6
  5. package/components/ActionsGroup/ActionsGroup.d.ts +5 -0
  6. package/components/ActionsGroup/ActionsGroup.js +40 -0
  7. package/components/ActionsGroup/ActionsGroup.styles.d.ts +2 -0
  8. package/components/ActionsGroup/ActionsGroup.styles.js +95 -0
  9. package/components/ActionsGroup/__tests__/ActionsGroup.test.d.ts +1 -0
  10. package/components/ActionsGroup/constants.d.ts +2 -0
  11. package/components/ActionsGroup/constants.js +8 -0
  12. package/components/ActionsGroup/icons.d.ts +3 -0
  13. package/components/ActionsGroup/icons.js +6 -0
  14. package/components/ActionsGroup/index.d.ts +1 -0
  15. package/components/ActionsGroup/index.js +1 -0
  16. package/components/ActionsGroup/slots/ActionsGroupEnum.d.ts +8 -0
  17. package/components/ActionsGroup/slots/ActionsGroupEnum.js +12 -0
  18. package/components/ActionsGroup/slots/ActionsGroupSlots.d.ts +15 -0
  19. package/components/ActionsGroup/slots/ActionsGroupSlots.js +35 -0
  20. package/components/ActionsGroup/subcomponents/ActionIconButton/ActionIconButton.d.ts +6 -0
  21. package/components/ActionsGroup/subcomponents/ActionIconButton/ActionIconButton.js +76 -0
  22. package/components/ActionsGroup/subcomponents/ActionIconButton/types.d.ts +7 -0
  23. package/components/ActionsGroup/types.d.ts +60 -0
  24. package/components/AppBar/slots/AppBarSlots.d.ts +1 -1
  25. package/components/Chip/slots/ChipSlots.d.ts +2 -2
  26. package/components/CommonActions/components/ActionCancel/slots/ActionsCancelSlots.d.ts +1 -1
  27. package/components/CommonActions/components/ActionFormCancel/slots/ActionFormCancelSlots.d.ts +1 -1
  28. package/components/CommonActions/components/ActionIntro/slots/ActionsIntroSlots.d.ts +1 -1
  29. package/components/CommonActions/components/ActionsContainer/slots/ActionsContainerSlots.d.ts +1 -1
  30. package/components/DataGrid/DataGrid.js +2 -0
  31. package/components/DataGrid/Datagrid.styles.js +12 -2
  32. package/components/DataGrid/contexts/DataGridContext/index.js +2 -0
  33. package/components/DataGrid/contexts/DataGridContext/types.d.ts +2 -2
  34. package/components/DataGrid/formatters/ColumnImageFormatter/ImageFormatterCell.d.ts +13 -0
  35. package/components/DataGrid/formatters/ColumnImageFormatter/ImageFormatterCell.js +33 -0
  36. package/components/DataGrid/formatters/ColumnImageFormatter/constants.d.ts +6 -0
  37. package/components/DataGrid/formatters/ColumnImageFormatter/constants.js +6 -0
  38. package/components/DataGrid/formatters/ColumnImageFormatter/formatter.d.ts +8 -0
  39. package/components/DataGrid/formatters/ColumnImageFormatter/formatter.js +25 -0
  40. package/components/DataGrid/formatters/ColumnImageFormatter/index.d.ts +3 -0
  41. package/components/DataGrid/formatters/ColumnImageFormatter/index.js +1 -0
  42. package/components/DataGrid/formatters/ColumnImageFormatter/tests/ColumnImageFormatter.test.d.ts +1 -0
  43. package/components/DataGrid/formatters/ColumnImageFormatter/types.d.ts +44 -0
  44. package/components/DataGrid/formatters/ColumnImageFormatter/types.js +1 -0
  45. package/components/DataGrid/formatters/ColumnImageFormatter/useColumnImage.d.ts +9 -0
  46. package/components/DataGrid/formatters/ColumnImageFormatter/useColumnImage.js +22 -0
  47. package/components/DataGrid/formatters/index.d.ts +1 -0
  48. package/components/DataGrid/subcomponents/Cards/helpers/scrollToCardElement.js +2 -2
  49. package/components/DataGrid/subcomponents/Cards/index.js +16 -3
  50. package/components/DataGrid/subcomponents/Cards/subcomponents/CardHeader/index.js +15 -7
  51. package/components/DataGrid/subcomponents/Cards/subcomponents/CardRow/index.js +1 -0
  52. package/components/DataGrid/subcomponents/CheckboxCellAdapter/index.js +4 -1
  53. package/components/DataGrid/subcomponents/HeaderActions/subcomponents/Density/index.js +0 -3
  54. package/components/DataGrid/subcomponents/Table/hooks/useSortColumnsRows.js +6 -2
  55. package/components/DataGrid/subcomponents/Table/index.js +10 -1
  56. package/components/DataGrid/subcomponents/Table/subcomponents/ActionsColumn.js +0 -3
  57. package/components/DataGrid/subcomponents/Table/subcomponents/RadioButtonFormatter.d.ts +6 -0
  58. package/components/DataGrid/subcomponents/Table/subcomponents/RadioButtonFormatter.js +12 -0
  59. package/components/DataGrid/subcomponents/Table/subcomponents/RadioSelectColumn.d.ts +64 -0
  60. package/components/DataGrid/subcomponents/Table/subcomponents/RadioSelectColumn.js +46 -0
  61. package/components/DataGrid/tests/helpers/types.d.ts +10 -0
  62. package/components/DataGrid/tests/table/subcomponents/RadioButtonFormatter.test.d.ts +1 -0
  63. package/components/DataGrid/tests/table/subcomponents/RadioSelectColumn.test.d.ts +1 -0
  64. package/components/DataGrid/types.d.ts +7 -0
  65. package/components/DynamicFilter/DynamicFilter.styles.js +5 -2
  66. package/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +2 -2
  67. package/components/DynamicSort/DynamicSort.styles.js +5 -2
  68. package/components/DynamicSort/slots/DynamicSortSlots.d.ts +2 -2
  69. package/components/EditLabel/constants.d.ts +1 -1
  70. package/components/EditLabel/slots/EditLabelSlots.d.ts +4 -4
  71. package/components/GridLayout/styles.js +0 -1
  72. package/components/HelperError/slots/HelperErrorSlots.d.ts +1 -1
  73. package/components/ImageText/constants.d.ts +1 -1
  74. package/components/ImageText/slots/ImageTextSlots.d.ts +2 -2
  75. package/components/Label/index.d.ts +1 -1
  76. package/components/Label/slots/LabelSlots.d.ts +3 -3
  77. package/components/Label/types.d.ts +6 -0
  78. package/components/LanguagePopover/slots/LanguagePopoverSlots.d.ts +1 -1
  79. package/components/LoadingError/slots/LoadingErrorSlots.d.ts +1 -1
  80. package/components/MFLoader/styles.js +0 -1
  81. package/components/MenuActions/slots/MenuActionsSlots.d.ts +2 -2
  82. package/components/ModalDialog/ModalDialog.styles.js +8 -1
  83. package/components/ModalDialog/slots/ModalDialogSlots.d.ts +2 -2
  84. package/components/NumberInput/slots/NumberInputSlots.d.ts +2 -2
  85. package/components/ObjectLogs/slots/ObjectLogsSlots.d.ts +1 -1
  86. package/components/Pager/slots/PagerSlots.d.ts +3 -3
  87. package/components/PaperForm/slots/PaperFormSlots.d.ts +1 -1
  88. package/components/PrintingSystem/PrintingSystem.js +3 -1
  89. package/components/PrintingSystem/PrintingSystem.styles.js +179 -2
  90. package/components/SettingsLayout/slots/SettingsLayoutSlots.d.ts +3 -3
  91. package/components/SideBar/slots/SideBarSlots.d.ts +1 -1
  92. package/components/SideBar/subcomponents/SideBarMobile/index.js +0 -3
  93. package/components/Stepper/slots/StepperSlot.d.ts +4 -4
  94. package/components/TabsNavigator/slots/TabsNavigatorSlots.d.ts +12 -12
  95. package/components/ToastContainer/slots/toastContainerSlots.d.ts +4 -4
  96. package/components/WindowBase/WindowBase.styles.js +8 -0
  97. package/components/WindowBase/slots/WindowBaseSlots.d.ts +2 -2
  98. package/components/WindowBase/subcomponents/Header/useButtonActions.js +23 -13
  99. package/components/animate/variants/background.d.ts +9 -9
  100. package/components/animate/variants/bounce.d.ts +9 -9
  101. package/components/animate/variants/fade.d.ts +20 -20
  102. package/components/animate/variants/flip.d.ts +6 -6
  103. package/components/animate/variants/rotate.d.ts +3 -3
  104. package/components/animate/variants/scale.d.ts +6 -6
  105. package/components/animate/variants/slide.d.ts +16 -16
  106. package/components/animate/variants/transition.d.ts +3 -3
  107. package/components/animate/variants/zoom.d.ts +15 -15
  108. package/components/areas/components/AreasAdmin/slots/AreasAdminSlots.d.ts +3 -3
  109. package/components/commercial/AppBarCommercial/styles.js +1 -3
  110. package/components/commercial/HamburgerMenu/styles.js +1 -3
  111. package/components/commercial/SectionCommercial/styles.js +1 -3
  112. package/components/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/index.js +1 -3
  113. package/components/commercial/TopBar/style.js +1 -3
  114. package/components/extended/React-Resizable/Resizable/slots/ResizableSlots.d.ts +1 -1
  115. package/components/extended/React-Resizable/ResizableBox/slots/ResizableBoxSlots.d.ts +1 -1
  116. package/components/extended/React-resizable-panels/slots/SplitLayoutSlots.d.ts +6 -6
  117. package/components/formatters/BooleanFormatter/slots/BooleanFormatterSlots.d.ts +1 -1
  118. package/components/formatters/ConcatenatedFormatter/slots/ConcatenatedFormatterSlots.d.ts +1 -1
  119. package/components/formatters/DateFormatter/slots/DateFormatterSlots.d.ts +1 -1
  120. package/components/formatters/DistanceToNowFormatter/slots/DistanceToNowFormatterSlots.d.ts +1 -1
  121. package/components/formatters/ImageFormatter/ImageFormatter.d.ts +10 -0
  122. package/components/formatters/ImageFormatter/ImageFormatter.js +72 -0
  123. package/components/formatters/ImageFormatter/ImageFormatter.styles.d.ts +2 -0
  124. package/components/formatters/ImageFormatter/ImageFormatter.styles.js +42 -0
  125. package/components/formatters/ImageFormatter/constants.d.ts +5 -0
  126. package/components/formatters/ImageFormatter/constants.js +10 -0
  127. package/components/formatters/ImageFormatter/index.d.ts +2 -0
  128. package/components/formatters/ImageFormatter/index.js +1 -0
  129. package/components/formatters/ImageFormatter/slots/ImageFormatterEnum.d.ts +5 -0
  130. package/components/formatters/ImageFormatter/slots/ImageFormatterEnum.js +9 -0
  131. package/components/formatters/ImageFormatter/slots/ImageFormatterSlots.d.ts +9 -0
  132. package/components/formatters/ImageFormatter/slots/ImageFormatterSlots.js +23 -0
  133. package/components/formatters/ImageFormatter/tests/ImageFormatter.test.d.ts +1 -0
  134. package/components/formatters/ImageFormatter/types.d.ts +51 -0
  135. package/components/formatters/ImageFormatter/types.js +1 -0
  136. package/components/formatters/PeriodFormatter/slots/PeriodFormatterSlots.d.ts +1 -1
  137. package/components/formatters/PointsFormatter/slots/ointsFormatterSlots.d.ts +1 -1
  138. package/components/formatters/PriceFormatter/slots/PriceFormatterSlots.d.ts +1 -1
  139. package/components/formatters/UncertaintyFormatter/slots/UncertaintyFormatterSlots.d.ts +1 -1
  140. package/components/formatters/index.d.ts +1 -0
  141. package/components/hook-form/RHFActionsGroup/RHFActionsGroup.d.ts +7 -0
  142. package/components/hook-form/RHFActionsGroup/RHFActionsGroup.js +87 -0
  143. package/components/hook-form/RHFActionsGroup/RHFActionsGroupStyles.d.ts +2 -0
  144. package/components/hook-form/RHFActionsGroup/RHFActionsGroupStyles.js +14 -0
  145. package/components/hook-form/RHFActionsGroup/constants.d.ts +9 -0
  146. package/components/hook-form/RHFActionsGroup/constants.js +8 -0
  147. package/components/hook-form/RHFActionsGroup/index.d.ts +2 -0
  148. package/components/hook-form/RHFActionsGroup/index.js +1 -0
  149. package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupEnum.d.ts +3 -0
  150. package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupEnum.js +7 -0
  151. package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupSlots.d.ts +1 -0
  152. package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupSlots.js +11 -0
  153. package/components/hook-form/RHFActionsGroup/slots/index.d.ts +2 -0
  154. package/components/hook-form/RHFActionsGroup/slots/index.js +1 -0
  155. package/components/hook-form/RHFActionsGroup/tests/RHFActionsGroup.test.d.ts +1 -0
  156. package/components/hook-form/RHFActionsGroup/tests/common.d.ts +28 -0
  157. package/components/hook-form/RHFActionsGroup/types.d.ts +54 -0
  158. package/components/hook-form/RHFCheckbox/slots/RHFCheckBoxSlots.d.ts +1 -1
  159. package/components/hook-form/RHFColorPicker/slots/RHFColorPickerSlots.d.ts +1 -1
  160. package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +1 -1
  161. package/components/hook-form/RHFSelect/constants.d.ts +1 -1
  162. package/components/hook-form/RHFSelect/slots/RHFSlots.d.ts +1 -1
  163. package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +1 -1
  164. package/components/hook-form/RHFTextFieldPassword/slots/RHFTextFieldPasswordSlots.d.ts +2 -2
  165. package/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageSlots.d.ts +3 -3
  166. package/components/hook-form/RHFUpload/RHFUploadSingleFile/constants.d.ts +1 -1
  167. package/components/hook-form/RHFUpload/RHFUploadSingleFile/slots/RHFUploadSingleFileSlots.d.ts +7 -7
  168. package/components/hook-form/RHFormProvider/classes/index.d.ts +1 -1
  169. package/components/hook-form/RHFormProvider/styles.js +4 -3
  170. package/components/hook-form/index.d.ts +1 -0
  171. package/components/index.d.ts +1 -0
  172. package/components/mui_extended/Accordion/slots/AccordionSlots.d.ts +3 -3
  173. package/components/mui_extended/Accordion/styles.js +9 -5
  174. package/components/mui_extended/Autocomplete/Autocomplete.styles.js +11 -1
  175. package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +6 -6
  176. package/components/mui_extended/Avatar/slots/AvatarSlots.d.ts +1 -1
  177. package/components/mui_extended/Badge/slots/BadgeSlots.d.ts +1 -1
  178. package/components/mui_extended/Button/slots/ButtonSlots.d.ts +2 -2
  179. package/components/mui_extended/CheckBox/slots/CheckBoxSlots.d.ts +2 -2
  180. package/components/mui_extended/DateTimePicker/DateTimePicker.styles.js +5 -1
  181. package/components/mui_extended/DateTimePicker/slots/DateTimePickerSlots.d.ts +4 -4
  182. package/components/mui_extended/Divider/slots/DividerSlots.d.ts +1 -1
  183. package/components/mui_extended/IconButton/constants.d.ts +1 -1
  184. package/components/mui_extended/IconButton/slots/IconButtonSlots.d.ts +1 -1
  185. package/components/mui_extended/ImageButton/styles.js +1 -3
  186. package/components/mui_extended/LoadingButton/slots/LoadingButtonSlots.d.ts +1 -1
  187. package/components/mui_extended/MenuDivider/slots/MenuDividerSlots.d.ts +1 -1
  188. package/components/mui_extended/MenuItem/slots/MenuItemSlots.d.ts +2 -2
  189. package/components/mui_extended/NavLink/slots/NavLinkSlots.d.ts +1 -1
  190. package/components/mui_extended/Popper/slots/PopperStlots.d.ts +1 -1
  191. package/components/mui_extended/RadioButton/RadioButton.d.ts +24 -0
  192. package/components/mui_extended/RadioButton/RadioButton.js +110 -0
  193. package/components/mui_extended/RadioButton/RadioButton.styles.d.ts +2 -0
  194. package/components/mui_extended/RadioButton/RadioButton.styles.js +126 -0
  195. package/components/mui_extended/RadioButton/constants.d.ts +1 -0
  196. package/components/mui_extended/RadioButton/constants.js +4 -0
  197. package/components/mui_extended/RadioButton/icons.d.ts +4 -0
  198. package/components/mui_extended/RadioButton/icons.js +7 -0
  199. package/components/mui_extended/RadioButton/index.d.ts +1 -0
  200. package/components/mui_extended/RadioButton/index.js +1 -0
  201. package/components/mui_extended/RadioButton/slots/RadioButtonEnum.d.ts +8 -0
  202. package/components/mui_extended/RadioButton/slots/RadioButtonEnum.js +12 -0
  203. package/components/mui_extended/RadioButton/slots/RadioButtonSlots.d.ts +20 -0
  204. package/components/mui_extended/RadioButton/slots/RadioButtonSlots.js +39 -0
  205. package/components/mui_extended/RadioButton/tests/RadioButton.test.d.ts +1 -0
  206. package/components/mui_extended/RadioButton/types.d.ts +50 -0
  207. package/components/mui_extended/Select/Select.js +2 -18
  208. package/components/mui_extended/Select/Select.styles.js +33 -1
  209. package/components/mui_extended/Select/constants.d.ts +2 -1
  210. package/components/mui_extended/Select/slots/SelectEnum.d.ts +2 -1
  211. package/components/mui_extended/Select/slots/SelectEnum.js +1 -0
  212. package/components/mui_extended/Select/slots/SelectSlots.d.ts +5 -5
  213. package/components/mui_extended/Skeleton/Slots/skeletonSlots.d.ts +1 -1
  214. package/components/mui_extended/Stack/slots/StackSlot.d.ts +1 -1
  215. package/components/mui_extended/Tab/Slots/TabSlots.d.ts +2 -2
  216. package/components/mui_extended/Tabs/slots/TabsSlots.d.ts +1 -1
  217. package/components/mui_extended/TextField/TextField.styles.js +2 -1
  218. package/components/mui_extended/TextField/slots/TextFieldSlots.d.ts +4 -4
  219. package/components/mui_extended/TimePicker/slots/TimePickerSlots.d.ts +3 -3
  220. package/components/mui_extended/ToggleButton/slots/ToggleButtonSlots.d.ts +1 -1
  221. package/components/mui_extended/ToggleIconButton/slots/ToggleIconButtonSlots.d.ts +1 -1
  222. package/components/mui_extended/Tooltip/Tooltip.styles.js +22 -4
  223. package/components/mui_extended/Tooltip/constants.d.ts +1 -1
  224. package/components/mui_extended/Typography/slots/typographySlots.d.ts +1 -1
  225. package/components/mui_extended/index.d.ts +1 -0
  226. package/index.js +143 -131
  227. package/package.json +3 -3
@@ -11,14 +11,14 @@ export declare const varFade: (props?: VariantsType) => {
11
11
  opacity: number;
12
12
  transition: (props?: import('../type').TranEnterType) => {
13
13
  duration: number;
14
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
14
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
15
15
  };
16
16
  };
17
17
  exit: {
18
18
  opacity: number;
19
19
  transition: (props?: import('../type').TranExitType) => {
20
20
  duration: number;
21
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
21
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
22
22
  };
23
23
  };
24
24
  };
@@ -32,7 +32,7 @@ export declare const varFade: (props?: VariantsType) => {
32
32
  opacity: number;
33
33
  transition: {
34
34
  duration: number;
35
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
35
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
36
36
  };
37
37
  };
38
38
  exit: {
@@ -40,7 +40,7 @@ export declare const varFade: (props?: VariantsType) => {
40
40
  opacity: number;
41
41
  transition: {
42
42
  duration: number;
43
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
43
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
44
44
  };
45
45
  };
46
46
  };
@@ -54,7 +54,7 @@ export declare const varFade: (props?: VariantsType) => {
54
54
  opacity: number;
55
55
  transition: {
56
56
  duration: number;
57
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
57
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
58
58
  };
59
59
  };
60
60
  exit: {
@@ -62,7 +62,7 @@ export declare const varFade: (props?: VariantsType) => {
62
62
  opacity: number;
63
63
  transition: {
64
64
  duration: number;
65
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
65
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
66
66
  };
67
67
  };
68
68
  };
@@ -76,7 +76,7 @@ export declare const varFade: (props?: VariantsType) => {
76
76
  opacity: number;
77
77
  transition: {
78
78
  duration: number;
79
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
79
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
80
80
  };
81
81
  };
82
82
  exit: {
@@ -84,7 +84,7 @@ export declare const varFade: (props?: VariantsType) => {
84
84
  opacity: number;
85
85
  transition: {
86
86
  duration: number;
87
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
87
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
88
88
  };
89
89
  };
90
90
  };
@@ -98,7 +98,7 @@ export declare const varFade: (props?: VariantsType) => {
98
98
  opacity: number;
99
99
  transition: {
100
100
  duration: number;
101
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
101
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
102
102
  };
103
103
  };
104
104
  exit: {
@@ -106,7 +106,7 @@ export declare const varFade: (props?: VariantsType) => {
106
106
  opacity: number;
107
107
  transition: {
108
108
  duration: number;
109
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
109
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
110
110
  };
111
111
  };
112
112
  };
@@ -118,14 +118,14 @@ export declare const varFade: (props?: VariantsType) => {
118
118
  opacity: number;
119
119
  transition: {
120
120
  duration: number;
121
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
121
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
122
122
  };
123
123
  };
124
124
  exit: {
125
125
  opacity: number;
126
126
  transition: {
127
127
  duration: number;
128
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
128
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
129
129
  };
130
130
  };
131
131
  };
@@ -139,7 +139,7 @@ export declare const varFade: (props?: VariantsType) => {
139
139
  opacity: number;
140
140
  transition: {
141
141
  duration: number;
142
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
142
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
143
143
  };
144
144
  };
145
145
  exit: {
@@ -147,7 +147,7 @@ export declare const varFade: (props?: VariantsType) => {
147
147
  opacity: number;
148
148
  transition: {
149
149
  duration: number;
150
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
150
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
151
151
  };
152
152
  };
153
153
  };
@@ -161,7 +161,7 @@ export declare const varFade: (props?: VariantsType) => {
161
161
  opacity: number;
162
162
  transition: {
163
163
  duration: number;
164
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
164
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
165
165
  };
166
166
  };
167
167
  exit: {
@@ -169,7 +169,7 @@ export declare const varFade: (props?: VariantsType) => {
169
169
  opacity: number;
170
170
  transition: {
171
171
  duration: number;
172
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
172
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
173
173
  };
174
174
  };
175
175
  };
@@ -183,7 +183,7 @@ export declare const varFade: (props?: VariantsType) => {
183
183
  opacity: number;
184
184
  transition: {
185
185
  duration: number;
186
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
186
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
187
187
  };
188
188
  };
189
189
  exit: {
@@ -191,7 +191,7 @@ export declare const varFade: (props?: VariantsType) => {
191
191
  opacity: number;
192
192
  transition: {
193
193
  duration: number;
194
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
194
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
195
195
  };
196
196
  };
197
197
  };
@@ -205,7 +205,7 @@ export declare const varFade: (props?: VariantsType) => {
205
205
  opacity: number;
206
206
  transition: {
207
207
  duration: number;
208
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
208
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
209
209
  };
210
210
  };
211
211
  exit: {
@@ -213,7 +213,7 @@ export declare const varFade: (props?: VariantsType) => {
213
213
  opacity: number;
214
214
  transition: {
215
215
  duration: number;
216
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
216
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
217
217
  };
218
218
  };
219
219
  };
@@ -13,7 +13,7 @@ export declare const varFlip: (props?: VariantsType) => {
13
13
  opacity: number;
14
14
  transition: {
15
15
  duration: number;
16
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
16
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
17
17
  };
18
18
  };
19
19
  exit: {
@@ -21,7 +21,7 @@ export declare const varFlip: (props?: VariantsType) => {
21
21
  opacity: number;
22
22
  transition: {
23
23
  duration: number;
24
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
24
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
25
25
  };
26
26
  };
27
27
  };
@@ -35,7 +35,7 @@ export declare const varFlip: (props?: VariantsType) => {
35
35
  opacity: number;
36
36
  transition: {
37
37
  duration: number;
38
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
38
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
39
39
  };
40
40
  };
41
41
  exit: {
@@ -43,7 +43,7 @@ export declare const varFlip: (props?: VariantsType) => {
43
43
  opacity: number;
44
44
  transition: {
45
45
  duration: number;
46
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
46
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
47
47
  };
48
48
  };
49
49
  };
@@ -57,7 +57,7 @@ export declare const varFlip: (props?: VariantsType) => {
57
57
  opacity: number;
58
58
  transition: {
59
59
  duration: number;
60
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
60
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
61
61
  };
62
62
  };
63
63
  };
@@ -71,7 +71,7 @@ export declare const varFlip: (props?: VariantsType) => {
71
71
  opacity: number;
72
72
  transition: {
73
73
  duration: number;
74
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
74
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
75
75
  };
76
76
  };
77
77
  };
@@ -13,7 +13,7 @@ export declare const varRotate: (props?: VariantsType) => {
13
13
  rotate: number;
14
14
  transition: {
15
15
  duration: number;
16
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
16
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
17
17
  };
18
18
  };
19
19
  exit: {
@@ -21,7 +21,7 @@ export declare const varRotate: (props?: VariantsType) => {
21
21
  rotate: number;
22
22
  transition: {
23
23
  duration: number;
24
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
24
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
25
25
  };
26
26
  };
27
27
  };
@@ -35,7 +35,7 @@ export declare const varRotate: (props?: VariantsType) => {
35
35
  rotate: number;
36
36
  transition: {
37
37
  duration: number;
38
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
38
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
39
39
  };
40
40
  };
41
41
  };
@@ -13,7 +13,7 @@ export declare const varScale: (props?: VariantsType) => {
13
13
  opacity: number;
14
14
  transition: {
15
15
  duration: number;
16
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
16
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
17
17
  };
18
18
  };
19
19
  exit: {
@@ -21,7 +21,7 @@ export declare const varScale: (props?: VariantsType) => {
21
21
  opacity: number;
22
22
  transition: {
23
23
  duration: number;
24
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
24
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
25
25
  };
26
26
  };
27
27
  };
@@ -35,7 +35,7 @@ export declare const varScale: (props?: VariantsType) => {
35
35
  opacity: number;
36
36
  transition: {
37
37
  duration: number;
38
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
38
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
39
39
  };
40
40
  };
41
41
  exit: {
@@ -43,7 +43,7 @@ export declare const varScale: (props?: VariantsType) => {
43
43
  opacity: number;
44
44
  transition: {
45
45
  duration: number;
46
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
46
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
47
47
  };
48
48
  };
49
49
  };
@@ -57,7 +57,7 @@ export declare const varScale: (props?: VariantsType) => {
57
57
  opacity: number;
58
58
  transition: {
59
59
  duration: number;
60
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
60
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
61
61
  };
62
62
  };
63
63
  };
@@ -71,7 +71,7 @@ export declare const varScale: (props?: VariantsType) => {
71
71
  opacity: number;
72
72
  transition: {
73
73
  duration: number;
74
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
74
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
75
75
  };
76
76
  };
77
77
  };
@@ -11,14 +11,14 @@ export declare const varSlide: (props?: VariantsType) => {
11
11
  y: number;
12
12
  transition: {
13
13
  duration: number;
14
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
14
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
15
15
  };
16
16
  };
17
17
  exit: {
18
18
  y: number;
19
19
  transition: {
20
20
  duration: number;
21
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
21
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
22
22
  };
23
23
  };
24
24
  };
@@ -30,14 +30,14 @@ export declare const varSlide: (props?: VariantsType) => {
30
30
  y: number;
31
31
  transition: {
32
32
  duration: number;
33
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
33
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
34
34
  };
35
35
  };
36
36
  exit: {
37
37
  y: number;
38
38
  transition: {
39
39
  duration: number;
40
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
40
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
41
41
  };
42
42
  };
43
43
  };
@@ -49,14 +49,14 @@ export declare const varSlide: (props?: VariantsType) => {
49
49
  x: number;
50
50
  transition: {
51
51
  duration: number;
52
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
52
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
53
53
  };
54
54
  };
55
55
  exit: {
56
56
  x: number;
57
57
  transition: {
58
58
  duration: number;
59
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
59
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
60
60
  };
61
61
  };
62
62
  };
@@ -68,14 +68,14 @@ export declare const varSlide: (props?: VariantsType) => {
68
68
  x: number;
69
69
  transition: {
70
70
  duration: number;
71
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
71
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
72
72
  };
73
73
  };
74
74
  exit: {
75
75
  x: number;
76
76
  transition: {
77
77
  duration: number;
78
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
78
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
79
79
  };
80
80
  };
81
81
  };
@@ -87,14 +87,14 @@ export declare const varSlide: (props?: VariantsType) => {
87
87
  y: number;
88
88
  transition: {
89
89
  duration: number;
90
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
90
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
91
91
  };
92
92
  };
93
93
  exit: {
94
94
  y: number;
95
95
  transition: {
96
96
  duration: number;
97
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
97
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
98
98
  };
99
99
  };
100
100
  };
@@ -106,14 +106,14 @@ export declare const varSlide: (props?: VariantsType) => {
106
106
  y: number;
107
107
  transition: {
108
108
  duration: number;
109
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
109
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
110
110
  };
111
111
  };
112
112
  exit: {
113
113
  y: number;
114
114
  transition: {
115
115
  duration: number;
116
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
116
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
117
117
  };
118
118
  };
119
119
  };
@@ -125,14 +125,14 @@ export declare const varSlide: (props?: VariantsType) => {
125
125
  x: number;
126
126
  transition: {
127
127
  duration: number;
128
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
128
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
129
129
  };
130
130
  };
131
131
  exit: {
132
132
  x: number;
133
133
  transition: {
134
134
  duration: number;
135
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
135
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
136
136
  };
137
137
  };
138
138
  };
@@ -144,14 +144,14 @@ export declare const varSlide: (props?: VariantsType) => {
144
144
  x: number;
145
145
  transition: {
146
146
  duration: number;
147
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
147
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
148
148
  };
149
149
  };
150
150
  exit: {
151
151
  x: number;
152
152
  transition: {
153
153
  duration: number;
154
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
154
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
155
155
  };
156
156
  };
157
157
  };
@@ -4,19 +4,19 @@ import { TranHoverType, TranEnterType, TranExitType } from '../type';
4
4
  */
5
5
  export declare const varTranHover: (props?: TranHoverType) => {
6
6
  duration: number;
7
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
7
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
8
8
  };
9
9
  /**
10
10
  * TODO: Documentar
11
11
  */
12
12
  export declare const varTranEnter: (props?: TranEnterType) => {
13
13
  duration: number;
14
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
14
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
15
15
  };
16
16
  /**
17
17
  * TODO: Documentar
18
18
  */
19
19
  export declare const varTranExit: (props?: TranExitType) => {
20
20
  duration: number;
21
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
21
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
22
22
  };
@@ -13,7 +13,7 @@ export declare const varZoom: (props?: VariantsType) => {
13
13
  opacity: number;
14
14
  transition: {
15
15
  duration: number;
16
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
16
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
17
17
  };
18
18
  };
19
19
  exit: {
@@ -21,7 +21,7 @@ export declare const varZoom: (props?: VariantsType) => {
21
21
  opacity: number;
22
22
  transition: {
23
23
  duration: number;
24
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
24
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
25
25
  };
26
26
  };
27
27
  };
@@ -37,7 +37,7 @@ export declare const varZoom: (props?: VariantsType) => {
37
37
  translateY: number;
38
38
  transition: {
39
39
  duration: number;
40
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
40
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
41
41
  };
42
42
  };
43
43
  exit: {
@@ -46,7 +46,7 @@ export declare const varZoom: (props?: VariantsType) => {
46
46
  translateY: number;
47
47
  transition: {
48
48
  duration: number;
49
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
49
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
50
50
  };
51
51
  };
52
52
  };
@@ -62,7 +62,7 @@ export declare const varZoom: (props?: VariantsType) => {
62
62
  translateY: number;
63
63
  transition: {
64
64
  duration: number;
65
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
65
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
66
66
  };
67
67
  };
68
68
  exit: {
@@ -71,7 +71,7 @@ export declare const varZoom: (props?: VariantsType) => {
71
71
  translateY: number;
72
72
  transition: {
73
73
  duration: number;
74
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
74
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
75
75
  };
76
76
  };
77
77
  };
@@ -87,7 +87,7 @@ export declare const varZoom: (props?: VariantsType) => {
87
87
  translateX: number;
88
88
  transition: {
89
89
  duration: number;
90
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
90
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
91
91
  };
92
92
  };
93
93
  exit: {
@@ -96,7 +96,7 @@ export declare const varZoom: (props?: VariantsType) => {
96
96
  translateX: number;
97
97
  transition: {
98
98
  duration: number;
99
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
99
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
100
100
  };
101
101
  };
102
102
  };
@@ -112,7 +112,7 @@ export declare const varZoom: (props?: VariantsType) => {
112
112
  translateX: number;
113
113
  transition: {
114
114
  duration: number;
115
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
115
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
116
116
  };
117
117
  };
118
118
  exit: {
@@ -121,7 +121,7 @@ export declare const varZoom: (props?: VariantsType) => {
121
121
  translateX: number;
122
122
  transition: {
123
123
  duration: number;
124
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
124
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
125
125
  };
126
126
  };
127
127
  };
@@ -135,7 +135,7 @@ export declare const varZoom: (props?: VariantsType) => {
135
135
  opacity: number;
136
136
  transition: {
137
137
  duration: number;
138
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
138
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
139
139
  };
140
140
  };
141
141
  };
@@ -150,7 +150,7 @@ export declare const varZoom: (props?: VariantsType) => {
150
150
  translateY: number;
151
151
  transition: {
152
152
  duration: number;
153
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
153
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
154
154
  };
155
155
  };
156
156
  };
@@ -165,7 +165,7 @@ export declare const varZoom: (props?: VariantsType) => {
165
165
  translateY: number;
166
166
  transition: {
167
167
  duration: number;
168
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
168
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
169
169
  };
170
170
  };
171
171
  };
@@ -180,7 +180,7 @@ export declare const varZoom: (props?: VariantsType) => {
180
180
  translateX: number;
181
181
  transition: {
182
182
  duration: number;
183
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
183
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
184
184
  };
185
185
  };
186
186
  };
@@ -195,7 +195,7 @@ export declare const varZoom: (props?: VariantsType) => {
195
195
  translateX: number;
196
196
  transition: {
197
197
  duration: number;
198
- ease: "linear" | number[] | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
198
+ ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
199
199
  };
200
200
  };
201
201
  };