@limetech/lime-elements 36.0.0-next.24 → 36.0.0-next.27

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.
@@ -6,6 +6,7 @@ import { Layout } from './layout';
6
6
  * @exampleComponent limel-example-table-custom-components
7
7
  * @exampleComponent limel-example-table-header-menu
8
8
  * @exampleComponent limel-example-table-movable-columns
9
+ * @exampleComponent limel-example-table-sorting-disabled
9
10
  * @exampleComponent limel-example-table-local
10
11
  * @exampleComponent limel-example-table-remote
11
12
  * @exampleComponent limel-example-table-activate-row
@@ -27,6 +27,10 @@ export interface Column<T extends object = any> {
27
27
  * Sets the horizontal text alignment for the column
28
28
  */
29
29
  horizontalAlign?: 'left' | 'center' | 'right';
30
+ /**
31
+ * Defines whether end-user can sort a column
32
+ */
33
+ headerSort?: boolean;
30
34
  }
31
35
  export declare type TableFormatter = (value: any, data?: object) => string;
32
36
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@limetech/lime-elements",
3
- "version": "36.0.0-next.24",
3
+ "version": "36.0.0-next.27",
4
4
  "description": "Lime Elements",
5
5
  "author": "Lime Technologies",
6
6
  "license": "Apache-2.0",