- MANUAL-PRODUTO.md: Manual do usuário final - MANUAL-VENDAS.md: Estratégia comercial e vendas - MANUAL-TECNICO.md: Infraestrutura e deploy - README.md: Visão geral do projeto
15 lines
280 B
JavaScript
15 lines
280 B
JavaScript
import { drag } from '../../motion/features/drag.mjs';
|
|
import { layout } from '../../motion/features/layout.mjs';
|
|
import { domAnimation } from './features-animation.mjs';
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
const domMax = {
|
|
...domAnimation,
|
|
...drag,
|
|
...layout,
|
|
};
|
|
|
|
export { domMax };
|