@carbon/ibm-products 2.43.2-canary.94 → 2.43.2-canary.96
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/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +1 -1
- package/es/components/FullPageError/FullPageError.d.ts +36 -2
- package/es/components/FullPageError/FullPageError.js +0 -3
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +1 -1
- package/lib/components/FullPageError/FullPageError.d.ts +36 -2
- package/lib/components/FullPageError/FullPageError.js +0 -3
- package/package.json +2 -2
@@ -203,7 +203,7 @@ var InlineEditCell = function InlineEditCell(_ref) {
|
|
203
203
|
};
|
204
204
|
var getNewCellId = function getNewCellId(key) {
|
205
205
|
var totalRows = instance.rows.length;
|
206
|
-
var newCellId = key === 'Enter' ? "column-".concat(columnIndex, "-row-").concat(cell.row.index < totalRows - 1 ? cell.row.index + 1 : cell.row.index) : "column-".concat(columnIndex < instance.columns.length - 1 ? columnIndex + 1 : columnIndex, "-row-").concat(cell.row.index);
|
206
|
+
var newCellId = key === 'Enter' ? "column-".concat(columnIndex, "-row-").concat(cell.row.index < totalRows - 1 && type === 'checkbox' ? cell.row.index + 1 : cell.row.index) : "column-".concat(columnIndex < instance.columns.length - 1 ? columnIndex + 1 : columnIndex, "-row-").concat(cell.row.index);
|
207
207
|
return newCellId;
|
208
208
|
};
|
209
209
|
var handleKeyDown = function handleKeyDown(event) {
|
@@ -1,6 +1,40 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright IBM Corp. 2024, 2024
|
3
|
+
*
|
4
|
+
* This source code is licensed under the Apache-2.0 license found in the
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
6
|
+
*/
|
7
|
+
import React, { ReactNode } from 'react';
|
8
|
+
interface FullPageErrorProps {
|
9
|
+
/**
|
10
|
+
* Provide the contents of the FullPageError.
|
11
|
+
*/
|
12
|
+
children?: ReactNode;
|
13
|
+
/**
|
14
|
+
* Provide an optional class to be applied to the containing node.
|
15
|
+
*/
|
16
|
+
className?: string;
|
17
|
+
/**
|
18
|
+
* String that will provide the description for the error code. <br/>
|
19
|
+
* This is optional for 403 and 404 kinds, and passing this would override their default descriptions.
|
20
|
+
*/
|
21
|
+
description: string;
|
22
|
+
/**
|
23
|
+
* The kind of error page to be displayed, default is custom
|
24
|
+
*/
|
25
|
+
kind?: 'custom' | '403' | '404';
|
26
|
+
/**
|
27
|
+
* String that will describe the error that occurred
|
28
|
+
*/
|
29
|
+
label: string;
|
30
|
+
/**
|
31
|
+
* This will be for the main title of the FullPageError component
|
32
|
+
*/
|
33
|
+
title: string;
|
34
|
+
}
|
1
35
|
/**
|
2
36
|
* Display a full-page error when the requested page is unavailable to the user.
|
3
37
|
* This is typically caused by issues with the requested URL or access permissions.
|
4
38
|
*/
|
5
|
-
export let FullPageError: React.ForwardRefExoticComponent<React.RefAttributes<
|
6
|
-
|
39
|
+
export declare let FullPageError: React.ForwardRefExoticComponent<FullPageErrorProps & React.RefAttributes<HTMLDivElement>>;
|
40
|
+
export {};
|
@@ -21,9 +21,6 @@ var _excluded = ["children", "className", "description", "label", "kind", "title
|
|
21
21
|
// The block part of our conventional BEM class names (blockClass__E--M).
|
22
22
|
var blockClass = "".concat(pkg.prefix, "--full-page-error");
|
23
23
|
var componentName = 'FullPageError';
|
24
|
-
|
25
|
-
// NOTE: the component SCSS is not imported here: it is rolled up separately.
|
26
|
-
|
27
24
|
// Default values for props
|
28
25
|
var defaults = {
|
29
26
|
kind: 'custom'
|
@@ -212,7 +212,7 @@ var InlineEditCell = function InlineEditCell(_ref) {
|
|
212
212
|
};
|
213
213
|
var getNewCellId = function getNewCellId(key) {
|
214
214
|
var totalRows = instance.rows.length;
|
215
|
-
var newCellId = key === 'Enter' ? "column-".concat(columnIndex, "-row-").concat(cell.row.index < totalRows - 1 ? cell.row.index + 1 : cell.row.index) : "column-".concat(columnIndex < instance.columns.length - 1 ? columnIndex + 1 : columnIndex, "-row-").concat(cell.row.index);
|
215
|
+
var newCellId = key === 'Enter' ? "column-".concat(columnIndex, "-row-").concat(cell.row.index < totalRows - 1 && type === 'checkbox' ? cell.row.index + 1 : cell.row.index) : "column-".concat(columnIndex < instance.columns.length - 1 ? columnIndex + 1 : columnIndex, "-row-").concat(cell.row.index);
|
216
216
|
return newCellId;
|
217
217
|
};
|
218
218
|
var handleKeyDown = function handleKeyDown(event) {
|
@@ -1,6 +1,40 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright IBM Corp. 2024, 2024
|
3
|
+
*
|
4
|
+
* This source code is licensed under the Apache-2.0 license found in the
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
6
|
+
*/
|
7
|
+
import React, { ReactNode } from 'react';
|
8
|
+
interface FullPageErrorProps {
|
9
|
+
/**
|
10
|
+
* Provide the contents of the FullPageError.
|
11
|
+
*/
|
12
|
+
children?: ReactNode;
|
13
|
+
/**
|
14
|
+
* Provide an optional class to be applied to the containing node.
|
15
|
+
*/
|
16
|
+
className?: string;
|
17
|
+
/**
|
18
|
+
* String that will provide the description for the error code. <br/>
|
19
|
+
* This is optional for 403 and 404 kinds, and passing this would override their default descriptions.
|
20
|
+
*/
|
21
|
+
description: string;
|
22
|
+
/**
|
23
|
+
* The kind of error page to be displayed, default is custom
|
24
|
+
*/
|
25
|
+
kind?: 'custom' | '403' | '404';
|
26
|
+
/**
|
27
|
+
* String that will describe the error that occurred
|
28
|
+
*/
|
29
|
+
label: string;
|
30
|
+
/**
|
31
|
+
* This will be for the main title of the FullPageError component
|
32
|
+
*/
|
33
|
+
title: string;
|
34
|
+
}
|
1
35
|
/**
|
2
36
|
* Display a full-page error when the requested page is unavailable to the user.
|
3
37
|
* This is typically caused by issues with the requested URL or access permissions.
|
4
38
|
*/
|
5
|
-
export let FullPageError: React.ForwardRefExoticComponent<React.RefAttributes<
|
6
|
-
|
39
|
+
export declare let FullPageError: React.ForwardRefExoticComponent<FullPageErrorProps & React.RefAttributes<HTMLDivElement>>;
|
40
|
+
export {};
|
@@ -30,9 +30,6 @@ var _excluded = ["children", "className", "description", "label", "kind", "title
|
|
30
30
|
// The block part of our conventional BEM class names (blockClass__E--M).
|
31
31
|
var blockClass = "".concat(settings.pkg.prefix, "--full-page-error");
|
32
32
|
var componentName = 'FullPageError';
|
33
|
-
|
34
|
-
// NOTE: the component SCSS is not imported here: it is rolled up separately.
|
35
|
-
|
36
33
|
// Default values for props
|
37
34
|
var defaults = {
|
38
35
|
kind: 'custom'
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@carbon/ibm-products",
|
3
3
|
"description": "Carbon for IBM Products",
|
4
|
-
"version": "2.43.2-canary.
|
4
|
+
"version": "2.43.2-canary.96+43d4802a4",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"main": "lib/index.js",
|
7
7
|
"module": "es/index.js",
|
@@ -120,5 +120,5 @@
|
|
120
120
|
"react": "^16.8.6 || ^17.0.1 || ^18.2.0",
|
121
121
|
"react-dom": "^16.8.6 || ^17.0.1 || ^18.2.0"
|
122
122
|
},
|
123
|
-
"gitHead": "
|
123
|
+
"gitHead": "43d4802a4d774512900ceba3e99adb572ad890ac"
|
124
124
|
}
|