1. 07 Jun, 2025 37 commits
  2. 06 Jun, 2025 3 commits
    • 🎨 feat(table): add conditional row expansion for LogsTable · f4b6ec4f
      Implement rowExpandable property to control which rows can be expanded
      in the logs table. Rows are now only expandable when they have actual
      expand data content, preventing empty expansion sections from being
      displayed to users.
      
      - Add rowExpandable function to check if expandData exists and has content
      - Improve user experience by hiding expand functionality for rows without details
      - Maintain existing expand behavior for rows with valid expansion data
      Apple\Apple committed
    • feat: add support for OpenAI o1/o3/o4 series models in model categorization · da535b95
      - Extended OpenAI model filter to include o1, o3, and o4 series models
      - Updated model categorization logic to properly classify reasoning models
      - Ensures all OpenAI model variants (o1-mini, o1-preview, o3, o4, etc.) are correctly grouped under OpenAI category
      - Maintains backward compatibility with existing GPT and other OpenAI model series
      Apple\Apple committed
    • 🎨 style(table): customize table scrollbar appearance · 85ade00e
      Enhance table scrollbar visual design with lighter and thinner styling for better user experience.
      
      Changes:
      - Add custom scrollbar styling for .semi-table-body
      - Set scrollbar dimensions to 6px width/height
      - Apply lighter color using rgba(var(--semi-grey-2), 0.3) with 30% opacity
      - Add hover effect with 50% opacity for better interaction feedback
      - Use 2px border radius for smoother appearance
      - Keep scrollbar track transparent for clean look
      - Utilize Semi Design color variables for theme consistency
      
      The new scrollbar design provides a more elegant and less intrusive horizontal scrolling experience across all data tables.
      Apple\Apple committed