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.
- package/dist/__tests__/components/list/CellField.test.d.ts +1 -0
- package/dist/decorators/list/Cell.d.ts +9 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/package.json +1 -1
- package/src/__tests__/components/list/CellField.test.tsx +67 -0
- package/src/components/list/CellField.tsx +24 -0
- package/src/components/list/Datagrid.tsx +11 -2
- package/src/components/list/cells/ImageCell.tsx +4 -1
- package/src/decorators/list/Cell.ts +9 -0
- package/src/styles/list.scss +19 -1
|
@@ -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
|
}
|