{"version":3,"sources":["../../src/display/constants.ts"],"names":["DISPLAY_CONSTANTS","CHAR_CODES"],"mappings":";AAYO,IAAMA,EAAoB,CAI/B,oBAAA,CAAsB,EAAA,CAKtB,sBAAA,CAAwB,GAKxB,iBAAA,CAAmB,CACrB,CAAA,CAKaC,CAAAA,CAAa,CAIxB,WAAA,CAAa,EAAA,CAKb,aAAA,CAAe,EAAA,CAKf,MAAO,EACT","file":"index.cjs","sourcesContent":["/**\n * Display and Character Constants\n *\n * Constants for display formatting, charting,\n * and character code operations.\n *\n * @module display/constants\n */\n\n/**\n * Display and chart formatting constants\n */\nexport const DISPLAY_CONSTANTS = {\n  /**\n   * Maximum length for chart bar display\n   */\n  CHART_BAR_MAX_LENGTH: 40,\n\n  /**\n   * Length of chart separator lines\n   */\n  CHART_SEPARATOR_LENGTH: 60,\n\n  /**\n   * Number of decimal places for display precision\n   */\n  DECIMAL_PRECISION: 3,\n} as const;\n\n/**\n * Character code constants\n */\nexport const CHAR_CODES = {\n  /**\n   * ASCII code for lowercase 'a'\n   */\n  LOWERCASE_A: 97,\n\n  /**\n   * Number of letters in the alphabet\n   */\n  ALPHABET_SIZE: 26,\n\n  /**\n   * ASCII code for space character\n   */\n  SPACE: 32,\n} as const;\n\n/**\n * Type for display constant values\n */\nexport type DisplayConstant = (typeof DISPLAY_CONSTANTS)[keyof typeof DISPLAY_CONSTANTS];\n\n/**\n * Type for character code values\n */\nexport type CharCode = (typeof CHAR_CODES)[keyof typeof CHAR_CODES];\n"]}