UNPKG

purgetss

Version:

A package that simplifies mobile app creation for Titanium developers.

45 lines (30 loc) 1.18 kB
// Main entry point for helpers modules // Re-exports all functions from specialized modules to maintain backward compatibility // Core functionality and global configurations export * from './helpers/core.js' // Utility functions used across modules export * from './helpers/utils.js' // Color-related functions export * from './helpers/colors.js' // Layout and sizing functions export * from './helpers/layout.js' // Typography and text functions export * from './helpers/typography.js' // UI Properties - basic component properties export * from './helpers/ui-properties.js' // Animation and effects functions export * from './helpers/animation.js' // Platform-specific functions export * from './helpers/platform.js' // Input and form-related functions export * from './helpers/input.js' // Scrolling and navigation functions export * from './helpers/scrolling.js' // List and table view functions export * from './helpers/lists.js' // Media and graphics functions export * from './helpers/media.js' // Form controls and UI components export * from './helpers/form-controls.js' // Accessibility and interaction functions export * from './helpers/accessibility.js'