bito-code-review[bot] commented on PR #35799:
URL: https://github.com/apache/superset/pull/35799#issuecomment-3433300010
<details open>
<summary><strong>Interaction Diagram by <a
href="https://bito.ai#sequence_diagram">Bito</a></strong></summary>
```mermaid
sequenceDiagram
participant DEV as Developer
participant UI as UI Components
participant SEL as Select Component
participant HDR as StyledHeader<br/>🔄 Updated | ●○○ Low
participant TXT as TextAreaControl<br/>🔄 Updated | ●○○ Low
participant I18N as Internationalization
participant THM as Theme System
participant APP as Application UI
Note over HDR, TXT: Font styling & i18n text updates
DEV->>UI: Render Select components
UI->>SEL: Initialize Select with header
SEL->>HDR: Apply styled header with font size
HDR->>THM: Use theme.fontSizeSM for styling
UI->>TXT: Render TextAreaControl with modal
TXT->>I18N: Format 'Edit %s in modal' text
I18N-->>TXT: Return localized text
TXT-->>APP: Display updated button text
HDR-->>APP: Render with consistent font sizing
```
Critical path: UI Components->Select Component->StyledHeader->Theme
System and UI
Components->TextAreaControl->Internationalization->Application UI
> **Note:** The changes improve UI consistency by standardizing font sizes
in Select headers and consolidating internationalization text formatting in
TextAreaControl. The Select component now uses theme.fontSizeSM for consistent
typography, while TextAreaControl uses parameterized translation strings for
better localization.
</details>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]