@topconsultnpm/sdkui-react-beta 6.10.23 → 6.10.24

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.
@@ -18,17 +18,29 @@ export declare enum TMDataGridPageSize {
18
18
  Large = 100
19
19
  }
20
20
  export interface TMDataGridProps<T> extends IDataGridOptions {
21
+ /** An array of grid columns */
21
22
  dataColumns: Array<IColumnProps>;
23
+ /** Specifies initially or currently focused grid row's key */
22
24
  focusedRowKey: number | undefined;
25
+ /** Allows you to select rows or determine which rows are selected. Applies only if selection.deferred is false */
23
26
  selectedRowKeys?: Array<number>;
27
+ /** Defines the number of rows per page in the data grid (Small = 30 rows, Medium = 50 rows, Large = 100 rows) */
24
28
  pageSize?: TMDataGridPageSize;
29
+ /** Configures the search panel position in the toolbar */
25
30
  searchPanelToolbarPosition?: 'before' | 'default';
31
+ /** Show the header filter */
26
32
  showHeaderFilter?: boolean;
33
+ /** Show the filter panel */
27
34
  showFilterPanel?: boolean;
35
+ /** Show the load panel */
28
36
  showLoadPanel?: boolean;
37
+ /** Show the column chooser */
29
38
  showColumnChooser?: boolean;
39
+ /** Show the search panel */
30
40
  showSearchPanel?: boolean;
41
+ /** Show the group panel */
31
42
  showGroupPanel?: boolean;
43
+ /** Counter configuration */
32
44
  counterConfig?: ITMCounterContainerProps;
33
45
  }
34
46
  declare const TMDataGrid: React.ForwardRefExoticComponent<TMDataGridProps<unknown> & React.RefAttributes<dxDataGrid<any, any>>>;
@@ -32,6 +32,10 @@ export function useSaveForm(formMode, id, sfo, validator, onSaved, onStatusChang
32
32
  d.level = UserLevels.Member;
33
33
  d.type = UserTypes.TopMedia;
34
34
  d.secureAuth = 1;
35
+ d.canDST = 0;
36
+ d.disabled = false;
37
+ d.neutralNames = 0;
38
+ d.onlyOnBehalfOf = 0;
35
39
  return d;
36
40
  }
37
41
  // #endregion
@@ -1,7 +1,7 @@
1
1
  import { Meta } from '@storybook/react';
2
2
  declare const _default: Meta;
3
3
  export default _default;
4
- import 'devextreme/dist/css/dx.material.blue.light.css';
4
+ import 'devextreme/dist/css/dx.fluent.blue.light.compact.css';
5
5
  import '/lib/css/tm-sdkui.css';
6
6
  export declare const DefaultTMDatagrid: any;
7
7
  /******* 2. Default Template and Datagrid with Search Panel to Right *******/
@@ -279,7 +279,7 @@ export default {
279
279
  }),
280
280
  };
281
281
  // Importing the DevExtreme library's Material Design theme in light blue color scheme
282
- import 'devextreme/dist/css/dx.material.blue.light.css';
282
+ import 'devextreme/dist/css/dx.fluent.blue.light.compact.css';
283
283
  // Importing custom styles for the tm-sdkui library
284
284
  import '/lib/css/tm-sdkui.css';
285
285
  import { sortArgTypes } from './TMStoriesUtils';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@topconsultnpm/sdkui-react-beta",
3
- "version": "6.10.23",
3
+ "version": "6.10.24",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",