@commercetools-uikit/data-table-manager 14.0.0 → 14.0.3
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/commercetools-uikit-data-table-manager.cjs.dev.js +1 -1
- package/dist/commercetools-uikit-data-table-manager.cjs.prod.js +1 -1
- package/dist/commercetools-uikit-data-table-manager.esm.js +1 -1
- package/dist/declarations/src/data-table-manager.d.ts +3 -3
- package/dist/declarations/src/export-types.d.ts +1 -0
- package/dist/declarations/src/index.d.ts +1 -0
- package/package.json +17 -17
|
@@ -935,7 +935,7 @@ DataTableManager.displayName = 'DataTableManager';
|
|
|
935
935
|
var DataTableManager$1 = DataTableManager;
|
|
936
936
|
|
|
937
937
|
// NOTE: This string will be replaced on build time with the package version.
|
|
938
|
-
var version = "14.0.
|
|
938
|
+
var version = "14.0.3";
|
|
939
939
|
|
|
940
940
|
Object.defineProperty(exports, 'useRowSelection', {
|
|
941
941
|
enumerable: true,
|
|
@@ -791,7 +791,7 @@ DataTableManager.displayName = 'DataTableManager';
|
|
|
791
791
|
var DataTableManager$1 = DataTableManager;
|
|
792
792
|
|
|
793
793
|
// NOTE: This string will be replaced on build time with the package version.
|
|
794
|
-
var version = "14.0.
|
|
794
|
+
var version = "14.0.3";
|
|
795
795
|
|
|
796
796
|
Object.defineProperty(exports, 'useRowSelection', {
|
|
797
797
|
enumerable: true,
|
|
@@ -897,6 +897,6 @@ DataTableManager.displayName = 'DataTableManager';
|
|
|
897
897
|
var DataTableManager$1 = DataTableManager;
|
|
898
898
|
|
|
899
899
|
// NOTE: This string will be replaced on build time with the package version.
|
|
900
|
-
var version = "14.0.
|
|
900
|
+
var version = "14.0.3";
|
|
901
901
|
|
|
902
902
|
export { UPDATE_ACTIONS, DataTableManager$1 as default, version };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { type ReactElement, type ReactNode, type MouseEventHandler } from 'react';
|
|
2
2
|
import { type TDataTableSettingsProps } from './data-table-settings';
|
|
3
|
-
interface TRow {
|
|
3
|
+
export interface TRow {
|
|
4
4
|
id: string;
|
|
5
5
|
}
|
|
6
|
-
declare type
|
|
6
|
+
export declare type TColumnProps = {
|
|
7
7
|
key: string;
|
|
8
8
|
label: ReactNode;
|
|
9
9
|
width?: string;
|
|
@@ -17,7 +17,7 @@ declare type TColumProps = {
|
|
|
17
17
|
shouldIgnoreRowClick?: boolean;
|
|
18
18
|
};
|
|
19
19
|
declare type TDataTableManagerProps = {
|
|
20
|
-
columns:
|
|
20
|
+
columns: TColumnProps[];
|
|
21
21
|
children: ReactElement;
|
|
22
22
|
displaySettings?: TDataTableSettingsProps['displaySettings'];
|
|
23
23
|
columnManager?: TDataTableSettingsProps['columnManager'];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { TRow, TColumnProps } from './data-table-manager';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-uikit/data-table-manager",
|
|
3
3
|
"description": "This component enhances the DataTable component and additionally provides a UI and state management to handle configuration of the table such as column manager.",
|
|
4
|
-
"version": "14.0.
|
|
4
|
+
"version": "14.0.3",
|
|
5
5
|
"bugs": "https://github.com/commercetools/ui-kit/issues",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -21,25 +21,25 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@babel/runtime": "^7.17.2",
|
|
23
23
|
"@babel/runtime-corejs3": "^7.17.2",
|
|
24
|
-
"@commercetools-uikit/accessible-button": "14.0.
|
|
24
|
+
"@commercetools-uikit/accessible-button": "14.0.1",
|
|
25
25
|
"@commercetools-uikit/accessible-hidden": "14.0.0",
|
|
26
|
-
"@commercetools-uikit/async-select-input": "14.0.
|
|
27
|
-
"@commercetools-uikit/card": "14.0.
|
|
28
|
-
"@commercetools-uikit/collapsible-motion": "14.0.
|
|
26
|
+
"@commercetools-uikit/async-select-input": "14.0.2",
|
|
27
|
+
"@commercetools-uikit/card": "14.0.1",
|
|
28
|
+
"@commercetools-uikit/collapsible-motion": "14.0.3",
|
|
29
29
|
"@commercetools-uikit/design-system": "14.0.0",
|
|
30
|
-
"@commercetools-uikit/field-label": "14.0.
|
|
30
|
+
"@commercetools-uikit/field-label": "14.0.2",
|
|
31
31
|
"@commercetools-uikit/grid": "14.0.0",
|
|
32
|
-
"@commercetools-uikit/hooks": "14.0.
|
|
33
|
-
"@commercetools-uikit/icons": "14.0.
|
|
34
|
-
"@commercetools-uikit/primary-button": "14.0.
|
|
35
|
-
"@commercetools-uikit/radio-input": "14.0.
|
|
36
|
-
"@commercetools-uikit/secondary-button": "14.0.
|
|
37
|
-
"@commercetools-uikit/secondary-icon-button": "14.0.
|
|
38
|
-
"@commercetools-uikit/select-input": "14.0.
|
|
39
|
-
"@commercetools-uikit/spacings": "14.0.
|
|
40
|
-
"@commercetools-uikit/tag": "14.0.
|
|
41
|
-
"@commercetools-uikit/text": "14.0.
|
|
42
|
-
"@commercetools-uikit/utils": "14.0.
|
|
32
|
+
"@commercetools-uikit/hooks": "14.0.3",
|
|
33
|
+
"@commercetools-uikit/icons": "14.0.1",
|
|
34
|
+
"@commercetools-uikit/primary-button": "14.0.1",
|
|
35
|
+
"@commercetools-uikit/radio-input": "14.0.2",
|
|
36
|
+
"@commercetools-uikit/secondary-button": "14.0.2",
|
|
37
|
+
"@commercetools-uikit/secondary-icon-button": "14.0.2",
|
|
38
|
+
"@commercetools-uikit/select-input": "14.0.2",
|
|
39
|
+
"@commercetools-uikit/spacings": "14.0.1",
|
|
40
|
+
"@commercetools-uikit/tag": "14.0.1",
|
|
41
|
+
"@commercetools-uikit/text": "14.0.1",
|
|
42
|
+
"@commercetools-uikit/utils": "14.0.1",
|
|
43
43
|
"@emotion/react": "^11.4.0",
|
|
44
44
|
"@emotion/styled": "^11.3.0",
|
|
45
45
|
"debounce-promise": "^3.1.2",
|