@yesilyazilim/web.spa 1.0.76 → 1.0.78
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/index.js +2 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +7 -2
- package/types.d.ts.map +1 -1
package/index.js
CHANGED
|
@@ -1775,7 +1775,7 @@ class $94579973dd0f02f3$export$624631f482c54f59 {
|
|
|
1775
1775
|
skeleton = (0, $a4ec6344e43cd0d9$export$9384b7c9a83116bf).paragraph(props.lines);
|
|
1776
1776
|
break;
|
|
1777
1777
|
case 'text':
|
|
1778
|
-
skeleton = (0, $a4ec6344e43cd0d9$export$9384b7c9a83116bf).text(props.lines);
|
|
1778
|
+
skeleton = (0, $a4ec6344e43cd0d9$export$9384b7c9a83116bf).text(props.lines, props.width);
|
|
1779
1779
|
break;
|
|
1780
1780
|
case 'button':
|
|
1781
1781
|
skeleton = (0, $a4ec6344e43cd0d9$export$9384b7c9a83116bf).button();
|
|
@@ -6948,6 +6948,7 @@ let $1b4e3c1abfa7ee85$export$df30df7ec97b32b5 = class DataTable extends (0, $ea0
|
|
|
6948
6948
|
const cd = srccols[key];
|
|
6949
6949
|
if (!cd) continue;
|
|
6950
6950
|
if (!cd.field) continue;
|
|
6951
|
+
if (cd.visible == false) continue;
|
|
6951
6952
|
cols.push({
|
|
6952
6953
|
key: cd.field,
|
|
6953
6954
|
title: cd.title || cd.field
|