/** * Centralized Selector System * * Single source of truth for data-cy selectors. * Components consume selectors from this module, ensuring consistency * between UI components, POM classes, and tests. * * Architecture: * - `core-selectors.ts` - CORE_SELECTORS object (selector definitions) * - `selector-factory.ts` - createSelectorHelpers() factory function * - `selectors.ts` (this file) - Pre-bound exports for core usage * * @example Component usage: * ```tsx * import { sel } from '@nextsparkjs/core/selectors' * *