We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5ffc28 commit 56c8c24Copy full SHA for 56c8c24
packages/crud/src/vaadin-crud-grid-mixin.d.ts
@@ -36,4 +36,10 @@ export declare class CrudGridMixinClass {
36
* @attr {boolean} no-head
37
*/
38
noHead: boolean | null | undefined;
39
+
40
+ /**
41
+ * Determines whether the edit column should be hidden.
42
+ * @attr {boolean} hide-edit-column
43
+ */
44
+ hideEditColumn: boolean | null | undefined;
45
}
packages/crud/src/vaadin-crud-grid-mixin.js
@@ -39,8 +39,13 @@ export const CrudGridMixin = (superClass) =>
noHead: Boolean,
- /** @private */
- __hideEditColumn: Boolean,
46
+ hideEditColumn: {
47
+ type: Boolean,
48
+ },
49
};
50
51
0 commit comments