open-grid 0.3.1 → 0.3.2

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.
@@ -289,6 +289,16 @@
289
289
  word-break: break-word;
290
290
  line-height: 1.35;
291
291
  }
292
+ /* 셀 내부 텍스트 span(.og-cell-text/.og-cell-date)은 렌더러가 인라인으로
293
+ white-space:nowrap 을 박는다. wrap 컬럼에서는 그 인라인을 !important 로 무력화해야
294
+ 실제로 여러 줄로 꺾인다(클래스만으로는 인라인을 못 이김). */
295
+ .og-cell--wrap .og-cell-text,
296
+ .og-cell--wrap .og-cell-date {
297
+ white-space: normal !important;
298
+ text-overflow: clip !important;
299
+ overflow: visible;
300
+ word-break: break-word;
301
+ }
292
302
 
293
303
  /* WCAG 2.2 2.4.13: 포커스 셀 outline 최소 3px, 대비 3:1 이상 */
294
304
  .og-cell.og-cell-focused {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-grid",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "High-performance, framework-agnostic data grid with Vue 3 and React 18 support",
5
5
  "type": "module",
6
6
  "main": "dist/open-grid.cjs",