proje-react-panel 1.9.0 → 1.10.0

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.
@@ -0,0 +1 @@
1
+ import 'reflect-metadata';
@@ -21,7 +21,16 @@ export interface CellOptions {
21
21
  placeHolder?: string;
22
22
  filter?: Filter | StaticSelectFilter;
23
23
  style?: {
24
+ /**
25
+ * @deprecated Tablo `table-layout: fixed` kullaniyor; sabit duzende hucre
26
+ * `min-width`'i kolon genisligini etkilemiyor (CSS 2.1 17.5.2.1). Bunun
27
+ * yerine `width` verin.
28
+ */
24
29
  minWidth?: string;
30
+ /**
31
+ * Kolon genisligi. Sabit duzende birebir uygulanir; yuzde vermek tabloyu
32
+ * konteynere sigdirir, px vermek toplam konteyneri asarsa yatay scroll acar.
33
+ */
25
34
  width?: string;
26
35
  };
27
36
  }