@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.
- package/@types/export.d.ts +6 -0
- package/@types/types.d.ts +51 -5
- package/components/AccountPopover/AccountPopover.styles.js +5 -2
- package/components/AccountPopover/slots/AccountPopoverSlots.d.ts +6 -6
- package/components/ActionsGroup/ActionsGroup.d.ts +5 -0
- package/components/ActionsGroup/ActionsGroup.js +40 -0
- package/components/ActionsGroup/ActionsGroup.styles.d.ts +2 -0
- package/components/ActionsGroup/ActionsGroup.styles.js +95 -0
- package/components/ActionsGroup/__tests__/ActionsGroup.test.d.ts +1 -0
- package/components/ActionsGroup/constants.d.ts +2 -0
- package/components/ActionsGroup/constants.js +8 -0
- package/components/ActionsGroup/icons.d.ts +3 -0
- package/components/ActionsGroup/icons.js +6 -0
- package/components/ActionsGroup/index.d.ts +1 -0
- package/components/ActionsGroup/index.js +1 -0
- package/components/ActionsGroup/slots/ActionsGroupEnum.d.ts +8 -0
- package/components/ActionsGroup/slots/ActionsGroupEnum.js +12 -0
- package/components/ActionsGroup/slots/ActionsGroupSlots.d.ts +15 -0
- package/components/ActionsGroup/slots/ActionsGroupSlots.js +35 -0
- package/components/ActionsGroup/subcomponents/ActionIconButton/ActionIconButton.d.ts +6 -0
- package/components/ActionsGroup/subcomponents/ActionIconButton/ActionIconButton.js +76 -0
- package/components/ActionsGroup/subcomponents/ActionIconButton/types.d.ts +7 -0
- package/components/ActionsGroup/types.d.ts +60 -0
- package/components/AppBar/slots/AppBarSlots.d.ts +1 -1
- package/components/Chip/slots/ChipSlots.d.ts +2 -2
- package/components/CommonActions/components/ActionCancel/slots/ActionsCancelSlots.d.ts +1 -1
- package/components/CommonActions/components/ActionFormCancel/slots/ActionFormCancelSlots.d.ts +1 -1
- package/components/CommonActions/components/ActionIntro/slots/ActionsIntroSlots.d.ts +1 -1
- package/components/CommonActions/components/ActionsContainer/slots/ActionsContainerSlots.d.ts +1 -1
- package/components/DataGrid/DataGrid.js +2 -0
- package/components/DataGrid/Datagrid.styles.js +12 -2
- package/components/DataGrid/contexts/DataGridContext/index.js +2 -0
- package/components/DataGrid/contexts/DataGridContext/types.d.ts +2 -2
- package/components/DataGrid/formatters/ColumnImageFormatter/ImageFormatterCell.d.ts +13 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/ImageFormatterCell.js +33 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/constants.d.ts +6 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/constants.js +6 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/formatter.d.ts +8 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/formatter.js +25 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/index.d.ts +3 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/index.js +1 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/tests/ColumnImageFormatter.test.d.ts +1 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/types.d.ts +44 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/types.js +1 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/useColumnImage.d.ts +9 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/useColumnImage.js +22 -0
- package/components/DataGrid/formatters/index.d.ts +1 -0
- package/components/DataGrid/subcomponents/Cards/helpers/scrollToCardElement.js +2 -2
- package/components/DataGrid/subcomponents/Cards/index.js +16 -3
- package/components/DataGrid/subcomponents/Cards/subcomponents/CardHeader/index.js +15 -7
- package/components/DataGrid/subcomponents/Cards/subcomponents/CardRow/index.js +1 -0
- package/components/DataGrid/subcomponents/CheckboxCellAdapter/index.js +4 -1
- package/components/DataGrid/subcomponents/HeaderActions/subcomponents/Density/index.js +0 -3
- package/components/DataGrid/subcomponents/Table/hooks/useSortColumnsRows.js +6 -2
- package/components/DataGrid/subcomponents/Table/index.js +10 -1
- package/components/DataGrid/subcomponents/Table/subcomponents/ActionsColumn.js +0 -3
- package/components/DataGrid/subcomponents/Table/subcomponents/RadioButtonFormatter.d.ts +6 -0
- package/components/DataGrid/subcomponents/Table/subcomponents/RadioButtonFormatter.js +12 -0
- package/components/DataGrid/subcomponents/Table/subcomponents/RadioSelectColumn.d.ts +64 -0
- package/components/DataGrid/subcomponents/Table/subcomponents/RadioSelectColumn.js +46 -0
- package/components/DataGrid/tests/helpers/types.d.ts +10 -0
- package/components/DataGrid/tests/table/subcomponents/RadioButtonFormatter.test.d.ts +1 -0
- package/components/DataGrid/tests/table/subcomponents/RadioSelectColumn.test.d.ts +1 -0
- package/components/DataGrid/types.d.ts +7 -0
- package/components/DynamicFilter/DynamicFilter.styles.js +5 -2
- package/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +2 -2
- package/components/DynamicSort/DynamicSort.styles.js +5 -2
- package/components/DynamicSort/slots/DynamicSortSlots.d.ts +2 -2
- package/components/EditLabel/constants.d.ts +1 -1
- package/components/EditLabel/slots/EditLabelSlots.d.ts +4 -4
- package/components/GridLayout/styles.js +0 -1
- package/components/HelperError/slots/HelperErrorSlots.d.ts +1 -1
- package/components/ImageText/constants.d.ts +1 -1
- package/components/ImageText/slots/ImageTextSlots.d.ts +2 -2
- package/components/Label/index.d.ts +1 -1
- package/components/Label/slots/LabelSlots.d.ts +3 -3
- package/components/Label/types.d.ts +6 -0
- package/components/LanguagePopover/slots/LanguagePopoverSlots.d.ts +1 -1
- package/components/LoadingError/slots/LoadingErrorSlots.d.ts +1 -1
- package/components/MFLoader/styles.js +0 -1
- package/components/MenuActions/slots/MenuActionsSlots.d.ts +2 -2
- package/components/ModalDialog/ModalDialog.styles.js +8 -1
- package/components/ModalDialog/slots/ModalDialogSlots.d.ts +2 -2
- package/components/NumberInput/slots/NumberInputSlots.d.ts +2 -2
- package/components/ObjectLogs/slots/ObjectLogsSlots.d.ts +1 -1
- package/components/Pager/slots/PagerSlots.d.ts +3 -3
- package/components/PaperForm/slots/PaperFormSlots.d.ts +1 -1
- package/components/PrintingSystem/PrintingSystem.js +3 -1
- package/components/PrintingSystem/PrintingSystem.styles.js +179 -2
- package/components/SettingsLayout/slots/SettingsLayoutSlots.d.ts +3 -3
- package/components/SideBar/slots/SideBarSlots.d.ts +1 -1
- package/components/SideBar/subcomponents/SideBarMobile/index.js +0 -3
- package/components/Stepper/slots/StepperSlot.d.ts +4 -4
- package/components/TabsNavigator/slots/TabsNavigatorSlots.d.ts +12 -12
- package/components/ToastContainer/slots/toastContainerSlots.d.ts +4 -4
- package/components/WindowBase/WindowBase.styles.js +8 -0
- package/components/WindowBase/slots/WindowBaseSlots.d.ts +2 -2
- package/components/WindowBase/subcomponents/Header/useButtonActions.js +23 -13
- package/components/animate/variants/background.d.ts +9 -9
- package/components/animate/variants/bounce.d.ts +9 -9
- package/components/animate/variants/fade.d.ts +20 -20
- package/components/animate/variants/flip.d.ts +6 -6
- package/components/animate/variants/rotate.d.ts +3 -3
- package/components/animate/variants/scale.d.ts +6 -6
- package/components/animate/variants/slide.d.ts +16 -16
- package/components/animate/variants/transition.d.ts +3 -3
- package/components/animate/variants/zoom.d.ts +15 -15
- package/components/areas/components/AreasAdmin/slots/AreasAdminSlots.d.ts +3 -3
- package/components/commercial/AppBarCommercial/styles.js +1 -3
- package/components/commercial/HamburgerMenu/styles.js +1 -3
- package/components/commercial/SectionCommercial/styles.js +1 -3
- package/components/commercial/TopBar/component/ConteinItem/subcomponets/NavItem/index.js +1 -3
- package/components/commercial/TopBar/style.js +1 -3
- package/components/extended/React-Resizable/Resizable/slots/ResizableSlots.d.ts +1 -1
- package/components/extended/React-Resizable/ResizableBox/slots/ResizableBoxSlots.d.ts +1 -1
- package/components/extended/React-resizable-panels/slots/SplitLayoutSlots.d.ts +6 -6
- package/components/formatters/BooleanFormatter/slots/BooleanFormatterSlots.d.ts +1 -1
- package/components/formatters/ConcatenatedFormatter/slots/ConcatenatedFormatterSlots.d.ts +1 -1
- package/components/formatters/DateFormatter/slots/DateFormatterSlots.d.ts +1 -1
- package/components/formatters/DistanceToNowFormatter/slots/DistanceToNowFormatterSlots.d.ts +1 -1
- package/components/formatters/ImageFormatter/ImageFormatter.d.ts +10 -0
- package/components/formatters/ImageFormatter/ImageFormatter.js +72 -0
- package/components/formatters/ImageFormatter/ImageFormatter.styles.d.ts +2 -0
- package/components/formatters/ImageFormatter/ImageFormatter.styles.js +42 -0
- package/components/formatters/ImageFormatter/constants.d.ts +5 -0
- package/components/formatters/ImageFormatter/constants.js +10 -0
- package/components/formatters/ImageFormatter/index.d.ts +2 -0
- package/components/formatters/ImageFormatter/index.js +1 -0
- package/components/formatters/ImageFormatter/slots/ImageFormatterEnum.d.ts +5 -0
- package/components/formatters/ImageFormatter/slots/ImageFormatterEnum.js +9 -0
- package/components/formatters/ImageFormatter/slots/ImageFormatterSlots.d.ts +9 -0
- package/components/formatters/ImageFormatter/slots/ImageFormatterSlots.js +23 -0
- package/components/formatters/ImageFormatter/tests/ImageFormatter.test.d.ts +1 -0
- package/components/formatters/ImageFormatter/types.d.ts +51 -0
- package/components/formatters/ImageFormatter/types.js +1 -0
- package/components/formatters/PeriodFormatter/slots/PeriodFormatterSlots.d.ts +1 -1
- package/components/formatters/PointsFormatter/slots/ointsFormatterSlots.d.ts +1 -1
- package/components/formatters/PriceFormatter/slots/PriceFormatterSlots.d.ts +1 -1
- package/components/formatters/UncertaintyFormatter/slots/UncertaintyFormatterSlots.d.ts +1 -1
- package/components/formatters/index.d.ts +1 -0
- package/components/hook-form/RHFActionsGroup/RHFActionsGroup.d.ts +7 -0
- package/components/hook-form/RHFActionsGroup/RHFActionsGroup.js +87 -0
- package/components/hook-form/RHFActionsGroup/RHFActionsGroupStyles.d.ts +2 -0
- package/components/hook-form/RHFActionsGroup/RHFActionsGroupStyles.js +14 -0
- package/components/hook-form/RHFActionsGroup/constants.d.ts +9 -0
- package/components/hook-form/RHFActionsGroup/constants.js +8 -0
- package/components/hook-form/RHFActionsGroup/index.d.ts +2 -0
- package/components/hook-form/RHFActionsGroup/index.js +1 -0
- package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupEnum.d.ts +3 -0
- package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupEnum.js +7 -0
- package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupSlots.d.ts +1 -0
- package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupSlots.js +11 -0
- package/components/hook-form/RHFActionsGroup/slots/index.d.ts +2 -0
- package/components/hook-form/RHFActionsGroup/slots/index.js +1 -0
- package/components/hook-form/RHFActionsGroup/tests/RHFActionsGroup.test.d.ts +1 -0
- package/components/hook-form/RHFActionsGroup/tests/common.d.ts +28 -0
- package/components/hook-form/RHFActionsGroup/types.d.ts +54 -0
- package/components/hook-form/RHFCheckbox/slots/RHFCheckBoxSlots.d.ts +1 -1
- package/components/hook-form/RHFColorPicker/slots/RHFColorPickerSlots.d.ts +1 -1
- package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +1 -1
- package/components/hook-form/RHFSelect/constants.d.ts +1 -1
- package/components/hook-form/RHFSelect/slots/RHFSlots.d.ts +1 -1
- package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +1 -1
- package/components/hook-form/RHFTextFieldPassword/slots/RHFTextFieldPasswordSlots.d.ts +2 -2
- package/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageSlots.d.ts +3 -3
- package/components/hook-form/RHFUpload/RHFUploadSingleFile/constants.d.ts +1 -1
- package/components/hook-form/RHFUpload/RHFUploadSingleFile/slots/RHFUploadSingleFileSlots.d.ts +7 -7
- package/components/hook-form/RHFormProvider/classes/index.d.ts +1 -1
- package/components/hook-form/RHFormProvider/styles.js +4 -3
- package/components/hook-form/index.d.ts +1 -0
- package/components/index.d.ts +1 -0
- package/components/mui_extended/Accordion/slots/AccordionSlots.d.ts +3 -3
- package/components/mui_extended/Accordion/styles.js +9 -5
- package/components/mui_extended/Autocomplete/Autocomplete.styles.js +11 -1
- package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +6 -6
- package/components/mui_extended/Avatar/slots/AvatarSlots.d.ts +1 -1
- package/components/mui_extended/Badge/slots/BadgeSlots.d.ts +1 -1
- package/components/mui_extended/Button/slots/ButtonSlots.d.ts +2 -2
- package/components/mui_extended/CheckBox/slots/CheckBoxSlots.d.ts +2 -2
- package/components/mui_extended/DateTimePicker/DateTimePicker.styles.js +5 -1
- package/components/mui_extended/DateTimePicker/slots/DateTimePickerSlots.d.ts +4 -4
- package/components/mui_extended/Divider/slots/DividerSlots.d.ts +1 -1
- package/components/mui_extended/IconButton/constants.d.ts +1 -1
- package/components/mui_extended/IconButton/slots/IconButtonSlots.d.ts +1 -1
- package/components/mui_extended/ImageButton/styles.js +1 -3
- package/components/mui_extended/LoadingButton/slots/LoadingButtonSlots.d.ts +1 -1
- package/components/mui_extended/MenuDivider/slots/MenuDividerSlots.d.ts +1 -1
- package/components/mui_extended/MenuItem/slots/MenuItemSlots.d.ts +2 -2
- package/components/mui_extended/NavLink/slots/NavLinkSlots.d.ts +1 -1
- package/components/mui_extended/Popper/slots/PopperStlots.d.ts +1 -1
- package/components/mui_extended/RadioButton/RadioButton.d.ts +24 -0
- package/components/mui_extended/RadioButton/RadioButton.js +110 -0
- package/components/mui_extended/RadioButton/RadioButton.styles.d.ts +2 -0
- package/components/mui_extended/RadioButton/RadioButton.styles.js +126 -0
- package/components/mui_extended/RadioButton/constants.d.ts +1 -0
- package/components/mui_extended/RadioButton/constants.js +4 -0
- package/components/mui_extended/RadioButton/icons.d.ts +4 -0
- package/components/mui_extended/RadioButton/icons.js +7 -0
- package/components/mui_extended/RadioButton/index.d.ts +1 -0
- package/components/mui_extended/RadioButton/index.js +1 -0
- package/components/mui_extended/RadioButton/slots/RadioButtonEnum.d.ts +8 -0
- package/components/mui_extended/RadioButton/slots/RadioButtonEnum.js +12 -0
- package/components/mui_extended/RadioButton/slots/RadioButtonSlots.d.ts +20 -0
- package/components/mui_extended/RadioButton/slots/RadioButtonSlots.js +39 -0
- package/components/mui_extended/RadioButton/tests/RadioButton.test.d.ts +1 -0
- package/components/mui_extended/RadioButton/types.d.ts +50 -0
- package/components/mui_extended/Select/Select.js +2 -18
- package/components/mui_extended/Select/Select.styles.js +33 -1
- package/components/mui_extended/Select/constants.d.ts +2 -1
- package/components/mui_extended/Select/slots/SelectEnum.d.ts +2 -1
- package/components/mui_extended/Select/slots/SelectEnum.js +1 -0
- package/components/mui_extended/Select/slots/SelectSlots.d.ts +5 -5
- package/components/mui_extended/Skeleton/Slots/skeletonSlots.d.ts +1 -1
- package/components/mui_extended/Stack/slots/StackSlot.d.ts +1 -1
- package/components/mui_extended/Tab/Slots/TabSlots.d.ts +2 -2
- package/components/mui_extended/Tabs/slots/TabsSlots.d.ts +1 -1
- package/components/mui_extended/TextField/TextField.styles.js +2 -1
- package/components/mui_extended/TextField/slots/TextFieldSlots.d.ts +4 -4
- package/components/mui_extended/TimePicker/slots/TimePickerSlots.d.ts +3 -3
- package/components/mui_extended/ToggleButton/slots/ToggleButtonSlots.d.ts +1 -1
- package/components/mui_extended/ToggleIconButton/slots/ToggleIconButtonSlots.d.ts +1 -1
- package/components/mui_extended/Tooltip/Tooltip.styles.js +22 -4
- package/components/mui_extended/Tooltip/constants.d.ts +1 -1
- package/components/mui_extended/Typography/slots/typographySlots.d.ts +1 -1
- package/components/mui_extended/index.d.ts +1 -0
- package/index.js +143 -131
- 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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
198
|
+
ease: number[] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate";
|
|
199
199
|
};
|
|
200
200
|
};
|
|
201
201
|
};
|