You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**Spanish Translations**: Added Spanish (`es`) locale support with complete translations for all UI elements and commands.
10
10
11
+
-**Annotation Sidebar Translations**: Sidebar titles are now properly translated using i18n keys. Added missing translation keys (`annotation.freeText`, `annotation.square`, `annotation.styles`, `annotation.defaults`) to all 5 languages.
12
+
11
13
### Improvements
12
14
13
15
-**Partial Plugin Configs**: All plugin configuration options in `PDFViewerConfig` now use `Partial<>` types, making it easier to override only the settings you need without specifying all required fields.
14
16
17
+
-**Reactive Blend Mode Labels**: Blend mode dropdown labels in the annotation sidebar now update reactively when the language changes.
18
+
19
+
-**Search Sidebar Layout**: Changed search options checkboxes from horizontal to vertical layout for better compatibility with longer translated labels.
20
+
15
21
```typescript
16
-
// Before: Had to provide full config objects
17
-
// After: Can override just specific settings
22
+
// Override just specific settings
18
23
<PDFViewer
19
24
config={{
20
25
src: '/document.pdf',
21
-
zoom: { defaultZoomLevel: ZoomMode.FitWidth },// Only override what you need
26
+
zoom: { defaultZoomLevel: ZoomMode.FitWidth },
22
27
i18n: { defaultLocale: 'es' }, // Use Spanish translations
0 commit comments