UNPKG

@anpdgovbr/shared-ui

Version:

Biblioteca de componentes React com MUI v7 e padrão GovBR-ds para ANPD

25 lines 1.67 kB
/** * Exportações centralizadas de todas as foundations do tema GovBR e ANPD * * Este arquivo centraliza todos os elementos base do Design System: * - Palette (cores e tokens) * - Typography (tipografia e fontes) * - Spacing (espaçamentos e grid) * - Breakpoints (responsividade) * - Shadows (elevação e sombras) * - Surface (bordas, opacidades, arredondamentos) * - States (estados interativos avançados) * - Motion (animações e z-index) */ export { breakpoints, containerBreakpoints, govbrBreakpointValues, gridBreakpoints, mediaQueries, } from './breakpoints'; export { animationDurations, animationEasings, animationHelpers, animationTokens, commonAnimations, componentAnimations, motionProperties, zIndexTokens, zLayers, } from './motion'; export { anpdColors, anpdPalette, govbrColors, govbrPalette } from './paletteValues'; export { contextualShadows, createShadow, responsiveShadows, shadowColors, shadows, } from './shadows'; export { createSpacing, govbrSpacing, spacingBreakpoints, spacingUtils } from './spacing'; export { dragStates, focusStates, hoverStates, pressedStates, specialStates, stateEffects, stateMixins, stateTokens, } from './states'; export { surfaceBlurs, surfaceMaps, surfaceOffsets, surfaceOpacities, surfaceRounders, surfaceTokens, surfaceWidths, } from './surface'; export { typography } from './typography'; export type { AnimationDuration, AnimationEasing, CommonAnimation, ZLayer } from './motion'; export type { HoverState, PressedState, SpecialState } from './states'; export type { SurfaceBlur, SurfaceOffset, SurfaceOpacity, SurfaceRounder, SurfaceWidth, } from './surface'; //# sourceMappingURL=index.d.ts.map