@goodandready/dsh-russian-lang 0.1.17 → 0.1.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/client.js +10 -14
  2. package/package.json +1 -1
package/lib/client.js CHANGED
@@ -4060,20 +4060,16 @@ window.__ModuleLoader__.load({
4060
4060
  : (status === 'unavailable' ? t('statusUnavailable') : t('statusLoading'))
4061
4061
  const disabled = status !== 'ready'
4062
4062
 
4063
- // Ядровый шеврон раскрытия; в урезанной сборке запасной SVG той же формы.
4064
- const Chevron = (() => {
4065
- try {
4066
- const primitives = require('@deepseek-ai/dsh-client-ui-primitives')
4067
- if (primitives && primitives.IconChevronDownOutline14) return primitives.IconChevronDownOutline14
4068
- } catch (e) { /* нет набора */ }
4069
- return () => React.createElement('svg', {
4070
- width: 14, height: 14, viewBox: '0 0 14 14', fill: 'none',
4071
- 'aria-hidden': 'true',
4072
- }, React.createElement('path', {
4073
- d: 'M3.5 5.25 7 8.75l3.5-3.5', stroke: 'currentColor',
4074
- 'stroke-width': 1.5, 'stroke-linecap': 'round', 'stroke-linejoin': 'round',
4075
- }))
4076
- })()
4063
+ // Шеврон раскрытиячистый SVG той же формы, что ядровый
4064
+ // (без зависимости от @deepseek-ai/dsh-client-ui-primitives: этот модуль
4065
+ // не зарегистрирован в module table старых ядер и валил загрузчик).
4066
+ const Chevron = () => React.createElement('svg', {
4067
+ width: 14, height: 14, viewBox: '0 0 14 14', fill: 'none',
4068
+ 'aria-hidden': 'true',
4069
+ }, React.createElement('path', {
4070
+ d: 'M3.5 5.25 7 8.75l3.5-3.5', stroke: 'currentColor',
4071
+ 'stroke-width': 1.5, 'stroke-linecap': 'round', 'stroke-linejoin': 'round',
4072
+ }))
4077
4073
 
4078
4074
  return React.createElement('div', { className: 'rl-card' },
4079
4075
  React.createElement('button', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodandready/dsh-russian-lang",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "Russian localization for the DeepSeek Harness web UI: adds Русский as the third option in the native Settings - General - Language menu. Translates the full core surface (100% coverage of DSH 0.1.1-rc.2) plus 16 community plugin namespaces - 52 namespaces, 2795 strings (many machine-drafted, queued for manual review), with Russian plural forms, count-key plurals, a typography pass (guillemets, em dash, nbsp), a wrong-layout input hint and browser spellcheck. The locale runtime snapshot is extended at runtime on unpatched cores; no files in the DSH installation are modified. The choice is persisted through the plugin-owned russian-lang namespace.",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",