-
{title}
-
+
{subtitle && (
{
const Illustration = getIllustration(kind);
return (
-
+
);
};
diff --git a/packages/ibm-products/src/components/EmptyStates/EmptyStates.stories.jsx b/packages/ibm-products/src/components/EmptyStates/EmptyStates.stories.jsx
index 814b434ddb..2483644622 100644
--- a/packages/ibm-products/src/components/EmptyStates/EmptyStates.stories.jsx
+++ b/packages/ibm-products/src/components/EmptyStates/EmptyStates.stories.jsx
@@ -42,6 +42,7 @@ export default {
};
const emptyStateCommonProps = {
+ headingAs: 'h3',
title: 'Start by adding data assets',
subtitle: (
<>
diff --git a/packages/ibm-products/src/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.stories.jsx b/packages/ibm-products/src/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.stories.jsx
index 7317cbf0f4..592d442338 100644
--- a/packages/ibm-products/src/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.stories.jsx
+++ b/packages/ibm-products/src/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.stories.jsx
@@ -41,6 +41,7 @@ export default {
};
const defaultStoryProps = {
+ headingAs: 'h3',
title: 'Empty state title',
subtitle: 'Description text explaining why this section is empty.',
illustrationDescription: 'Test alt text',
diff --git a/packages/ibm-products/src/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.tsx b/packages/ibm-products/src/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.tsx
index 0b70b344ec..3724ee6890 100644
--- a/packages/ibm-products/src/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.tsx
+++ b/packages/ibm-products/src/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.tsx
@@ -6,7 +6,7 @@
*/
// Import portions of React that are needed.
-import React, { ReactNode } from 'react';
+import React, { ElementType, ReactNode } from 'react';
// Other standard imports.
import PropTypes from 'prop-types';
@@ -68,6 +68,10 @@ export interface ErrorEmptyStateProps {
href?: string;
};
+ /**
+ * Empty state headingAs allows you to customize the type of heading element
+ */
+ headingAs?: (() => ReactNode) | string | ElementType;
/**
* Empty state size
*/
@@ -102,6 +106,7 @@ export let ErrorEmptyState = React.forwardRef<
illustrationTheme,
link,
size = defaults.size,
+ headingAs = defaults.headingAs,
subtitle,
title,
@@ -134,6 +139,7 @@ export let ErrorEmptyState = React.forwardRef<
action={action}
link={link}
size={size}
+ headingAs={headingAs}
subtitle={subtitle}
title={title || ''}
/>
@@ -171,6 +177,11 @@ ErrorEmptyState.propTypes = {
*/
className: PropTypes.string,
+ /**
+ * Empty state headingAs allows you to customize the type of heading element
+ */
+ headingAs: PropTypes.elementType,
+
/**
* The alt text for empty state svg images. If not provided , title will be used.
*/
diff --git a/packages/ibm-products/src/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.stories.jsx b/packages/ibm-products/src/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.stories.jsx
index 805b133e6e..3b4cd4ea60 100644
--- a/packages/ibm-products/src/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.stories.jsx
+++ b/packages/ibm-products/src/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.stories.jsx
@@ -41,6 +41,7 @@ export default {
};
const defaultStoryProps = {
+ headingAs: 'h3',
title: 'Empty state title',
subtitle: 'Description text explaining why this section is empty.',
illustrationDescription: 'Test alt text',
diff --git a/packages/ibm-products/src/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.tsx b/packages/ibm-products/src/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.tsx
index a8e61a941e..1c61549b4a 100644
--- a/packages/ibm-products/src/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.tsx
+++ b/packages/ibm-products/src/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.tsx
@@ -6,7 +6,7 @@
*/
// Import portions of React that are needed.
-import React, { ReactNode } from 'react';
+import React, { ElementType, ReactNode } from 'react';
// Other standard imports.
import PropTypes from 'prop-types';
@@ -67,6 +67,11 @@ export interface NoDataEmptyStateProps {
href?: string;
};
+ /**
+ * Empty state headingAs allows you to customize the type of heading element
+ */
+ headingAs?: (() => ReactNode) | string | ElementType;
+
/**
* Empty state size
*/
@@ -101,6 +106,7 @@ export let NoDataEmptyState = React.forwardRef<
illustrationDescription,
link,
size = defaults.size,
+ headingAs = defaults.headingAs,
subtitle,
title,
@@ -133,6 +139,7 @@ export let NoDataEmptyState = React.forwardRef<
action={action}
link={link}
size={size}
+ headingAs={headingAs}
subtitle={subtitle}
title={title || ''}
/>
@@ -170,6 +177,11 @@ NoDataEmptyState.propTypes = {
*/
className: PropTypes.string,
+ /**
+ * Empty state headingAs allows you to customize the type of heading element
+ */
+ headingAs: PropTypes.elementType,
+
/**
* The alt text for empty state svg images. If not provided , title will be used.
*/
diff --git a/packages/ibm-products/src/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.stories.jsx b/packages/ibm-products/src/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.stories.jsx
index 982d7df14e..0b3ffbdcc2 100644
--- a/packages/ibm-products/src/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.stories.jsx
+++ b/packages/ibm-products/src/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.stories.jsx
@@ -41,6 +41,7 @@ export default {
};
const defaultStoryProps = {
+ headingAs: 'h3',
title: 'Empty state title',
subtitle: 'Description text explaining why this section is empty.',
illustrationDescription: 'Test alt text',
diff --git a/packages/ibm-products/src/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.tsx b/packages/ibm-products/src/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.tsx
index 9acf8297b9..d34ff4e8c1 100644
--- a/packages/ibm-products/src/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.tsx
+++ b/packages/ibm-products/src/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.tsx
@@ -6,7 +6,7 @@
*/
// Import portions of React that are needed.
-import React, { ReactNode } from 'react';
+import React, { ElementType, ReactNode } from 'react';
// Other standard imports.
import PropTypes from 'prop-types';
@@ -68,6 +68,11 @@ export interface NoTagsEmptyStateProps {
href?: string;
};
+ /**
+ * Empty state headingAs allows you to customize the type of heading element
+ */
+ headingAs?: (() => ReactNode) | string | ElementType;
+
/**
* Empty state size
*/
@@ -102,6 +107,7 @@ export let NoTagsEmptyState = React.forwardRef<
illustrationDescription,
link,
size = defaults.size,
+ headingAs = defaults.headingAs,
subtitle,
title,
@@ -134,6 +140,7 @@ export let NoTagsEmptyState = React.forwardRef<
action={action}
link={link}
size={size}
+ headingAs={headingAs}
subtitle={subtitle}
title={(title = '')}
/>
@@ -171,6 +178,11 @@ NoTagsEmptyState.propTypes = {
*/
className: PropTypes.string,
+ /**
+ * Empty state headingAs allows you to customize the type of heading element
+ */
+ headingAs: PropTypes.elementType,
+
/**
* The alt text for empty state svg images. If not provided , title will be used.
*/
diff --git a/packages/ibm-products/src/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.stories.jsx b/packages/ibm-products/src/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.stories.jsx
index 2e496e9581..2c3eab81df 100644
--- a/packages/ibm-products/src/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.stories.jsx
+++ b/packages/ibm-products/src/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.stories.jsx
@@ -40,6 +40,7 @@ export default {
};
const defaultStoryProps = {
+ headingAs: 'h3',
title: 'Empty state title',
subtitle: 'Description text explaining why this section is empty.',
illustrationDescription: 'Test alt text',
diff --git a/packages/ibm-products/src/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.tsx b/packages/ibm-products/src/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.tsx
index bc4b82417c..c32c08bd7d 100644
--- a/packages/ibm-products/src/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.tsx
+++ b/packages/ibm-products/src/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.tsx
@@ -6,7 +6,7 @@
*/
// Import portions of React that are needed.
-import React, { ReactNode } from 'react';
+import React, { ElementType, ReactNode } from 'react';
// Other standard imports.
import PropTypes from 'prop-types';
@@ -67,6 +67,11 @@ export interface NotFoundEmptyStateProps {
href?: string;
};
+ /**
+ * Empty state headingAs allows you to customize the type of heading element
+ */
+ headingAs?: (() => ReactNode) | string | ElementType;
+
/**
* Empty state size
*/
@@ -101,6 +106,7 @@ export let NotFoundEmptyState = React.forwardRef<
illustrationDescription,
link,
size = defaults.size,
+ headingAs = defaults.headingAs,
subtitle,
title,
@@ -133,6 +139,7 @@ export let NotFoundEmptyState = React.forwardRef<
action={action}
link={link}
size={size}
+ headingAs={headingAs}
subtitle={subtitle}
title={title || ''}
/>
@@ -173,6 +180,11 @@ NotFoundEmptyState.propTypes = {
*/
className: PropTypes.string,
+ /**
+ * Empty state headingAs allows you to customize the type of heading element
+ */
+ headingAs: PropTypes.elementType,
+
/**
* The alt text for empty state svg images. If not provided , title will be used.
*/
diff --git a/packages/ibm-products/src/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.stories.jsx b/packages/ibm-products/src/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.stories.jsx
index d838c2ed13..d14b9258a9 100644
--- a/packages/ibm-products/src/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.stories.jsx
+++ b/packages/ibm-products/src/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.stories.jsx
@@ -40,6 +40,7 @@ export default {
};
const defaultStoryProps = {
+ headingAs: 'h3',
title: 'Empty state title',
subtitle: 'Description text explaining why this section is empty.',
illustrationDescription: 'Test alt text',
diff --git a/packages/ibm-products/src/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.tsx b/packages/ibm-products/src/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.tsx
index 51a3afc4a1..e2a4a98a3b 100644
--- a/packages/ibm-products/src/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.tsx
+++ b/packages/ibm-products/src/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.tsx
@@ -6,7 +6,7 @@
*/
// Import portions of React that are needed.
-import React, { ReactNode } from 'react';
+import React, { ElementType, ReactNode } from 'react';
// Other standard imports.
import PropTypes from 'prop-types';
@@ -69,6 +69,11 @@ export interface NotificationsEmptyStateProps {
href?: string;
};
+ /**
+ * Empty state headingAs allows you to customize the type of heading element
+ */
+ headingAs?: (() => ReactNode) | string | ElementType;
+
/**
* Empty state size
*/
@@ -103,6 +108,7 @@ export let NotificationsEmptyState = React.forwardRef<
illustrationDescription,
link,
size = defaults.size,
+ headingAs = defaults.headingAs,
subtitle,
title,
@@ -135,6 +141,7 @@ export let NotificationsEmptyState = React.forwardRef<
action={action}
link={link}
size={size}
+ headingAs={headingAs}
subtitle={subtitle}
title={title || ''}
/>
@@ -175,6 +182,11 @@ NotificationsEmptyState.propTypes = {
*/
className: PropTypes.string,
+ /**
+ * Empty state headingAs allows you to customize the type of heading element
+ */
+ headingAs: PropTypes.elementType,
+
/**
* The alt text for empty state svg images. If not provided , title will be used.
*/
diff --git a/packages/ibm-products/src/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.stories.jsx b/packages/ibm-products/src/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.stories.jsx
index 685625a6e9..c259d147ca 100644
--- a/packages/ibm-products/src/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.stories.jsx
+++ b/packages/ibm-products/src/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.stories.jsx
@@ -40,6 +40,7 @@ export default {
};
const defaultStoryProps = {
+ headingAs: 'h3',
title: 'Empty state title',
subtitle: 'Description text explaining why this section is empty.',
illustrationDescription: 'Test alt text',
diff --git a/packages/ibm-products/src/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.tsx b/packages/ibm-products/src/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.tsx
index 138de84a24..f1008b03ca 100644
--- a/packages/ibm-products/src/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.tsx
+++ b/packages/ibm-products/src/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.tsx
@@ -6,7 +6,7 @@
*/
// Import portions of React that are needed.
-import React, { ReactNode } from 'react';
+import React, { ElementType, ReactNode } from 'react';
// Other standard imports.
import PropTypes from 'prop-types';
@@ -66,6 +66,10 @@ export interface UnauthorizedEmptyStateProps {
text?: string | ReactNode;
href?: string;
};
+ /**
+ * Empty state headingAs allows you to customize the type of heading element
+ */
+ headingAs?: (() => ReactNode) | string | ElementType;
/**
* Empty state size
@@ -101,6 +105,7 @@ export let UnauthorizedEmptyState = React.forwardRef<
illustrationDescription,
link,
size = defaults.size,
+ headingAs = defaults.headingAs,
subtitle,
title,
@@ -133,6 +138,7 @@ export let UnauthorizedEmptyState = React.forwardRef<
action={action}
link={link}
size={size}
+ headingAs={headingAs}
subtitle={subtitle}
title={title || ''}
/>
@@ -173,6 +179,11 @@ UnauthorizedEmptyState.propTypes = {
*/
className: PropTypes.string,
+ /**
+ * Empty state headingAs allows you to customize the type of heading element
+ */
+ headingAs: PropTypes.elementType,
+
/**
* The alt text for empty state svg images. If not provided , title will be used.
*/
@@ -190,7 +201,6 @@ UnauthorizedEmptyState.propTypes = {
* `illustrationTheme={appTheme === ('carbon--g100' || 'carbon--g90') ? 'dark' : 'light'}`
*/
illustrationTheme: PropTypes.oneOf(['light', 'dark']),
-
/**
* Empty state link object
*/
@@ -200,7 +210,6 @@ UnauthorizedEmptyState.propTypes = {
text: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
href: PropTypes.string,
}),
-
/**
* Empty state size
*/
diff --git a/packages/ibm-products/src/components/EmptyStates/assets/ErrorIllustration.js b/packages/ibm-products/src/components/EmptyStates/assets/ErrorIllustration.js
index 099556deec..996829c636 100644
--- a/packages/ibm-products/src/components/EmptyStates/assets/ErrorIllustration.js
+++ b/packages/ibm-products/src/components/EmptyStates/assets/ErrorIllustration.js
@@ -32,6 +32,7 @@ export const ErrorIllustration = ({ theme, size, alt, ...rest }) => {
`${blockClass}__illustration--${size}`,
])}
role="img"
+ aria-hidden="true"
>
{alt}
{theme === 'dark' ? (
diff --git a/packages/ibm-products/src/components/EmptyStates/assets/NoDataIllustration.js b/packages/ibm-products/src/components/EmptyStates/assets/NoDataIllustration.js
index af6da233ab..530a64f450 100644
--- a/packages/ibm-products/src/components/EmptyStates/assets/NoDataIllustration.js
+++ b/packages/ibm-products/src/components/EmptyStates/assets/NoDataIllustration.js
@@ -32,6 +32,7 @@ export const NoDataIllustration = ({ theme, size, alt, ...rest }) => {
`${blockClass}__illustration--${size}`,
])}
role="img"
+ aria-hidden="true"
>
{alt}
{theme === 'dark' ? (
diff --git a/packages/ibm-products/src/components/EmptyStates/assets/NoTagsIllustration.js b/packages/ibm-products/src/components/EmptyStates/assets/NoTagsIllustration.js
index f88b77e2c2..2818fe7b54 100644
--- a/packages/ibm-products/src/components/EmptyStates/assets/NoTagsIllustration.js
+++ b/packages/ibm-products/src/components/EmptyStates/assets/NoTagsIllustration.js
@@ -33,6 +33,7 @@ export const NoTagsIllustration = ({ theme, size, alt, ...rest }) => {
`${blockClass}__illustration--${size}`,
])}
role="img"
+ aria-hidden="true"
>
{alt}
{theme === 'dark' ? (
diff --git a/packages/ibm-products/src/components/EmptyStates/assets/NotFoundIllustration.js b/packages/ibm-products/src/components/EmptyStates/assets/NotFoundIllustration.js
index 00b7106e56..870e100120 100644
--- a/packages/ibm-products/src/components/EmptyStates/assets/NotFoundIllustration.js
+++ b/packages/ibm-products/src/components/EmptyStates/assets/NotFoundIllustration.js
@@ -32,6 +32,7 @@ export const NotFoundIllustration = ({ theme, size, alt, ...rest }) => {
`${blockClass}__illustration--${size}`,
])}
role="img"
+ aria-hidden="true"
>
{alt}
{theme === 'dark' ? (
diff --git a/packages/ibm-products/src/components/EmptyStates/assets/NotificationsIllustration.js b/packages/ibm-products/src/components/EmptyStates/assets/NotificationsIllustration.js
index a8f2c0b44a..005206edc2 100644
--- a/packages/ibm-products/src/components/EmptyStates/assets/NotificationsIllustration.js
+++ b/packages/ibm-products/src/components/EmptyStates/assets/NotificationsIllustration.js
@@ -31,6 +31,7 @@ export const NotificationsIllustration = ({ theme, size, alt, ...rest }) => {
`${blockClass}__illustration-notification`,
`${blockClass}__illustration--${size}`,
])}
+ aria-hidden="true"
>
{alt}
{theme === 'dark' ? (
diff --git a/packages/ibm-products/src/components/EmptyStates/assets/UnauthorizedIllustration.js b/packages/ibm-products/src/components/EmptyStates/assets/UnauthorizedIllustration.js
index ea8945180a..7759ff89a5 100644
--- a/packages/ibm-products/src/components/EmptyStates/assets/UnauthorizedIllustration.js
+++ b/packages/ibm-products/src/components/EmptyStates/assets/UnauthorizedIllustration.js
@@ -33,6 +33,7 @@ export const UnauthorizedIllustration = ({ theme, size, alt, ...rest }) => {
`${blockClass}__illustration--${size}`,
])}
role="img"
+ aria-hidden="true"
>
{alt}
{theme === 'dark' ? (
diff --git a/yarn.lock b/yarn.lock
index 3454dc89b4..e952a9c971 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1681,7 +1681,7 @@ __metadata:
resolution: "@carbon/ibm-cloud-cognitive-core@workspace:packages/core"
dependencies:
"@carbon/grid": "npm:^11.29.0"
- "@carbon/ibm-products-styles": "npm:^2.52.0"
+ "@carbon/ibm-products-styles": "npm:^2.53.0-rc.0"
"@carbon/layout": "npm:^11.28.0"
"@carbon/motion": "npm:^11.24.0"
"@carbon/react": "npm:^1.72.0"
@@ -1722,7 +1722,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@carbon/ibm-products-styles@npm:^2.52.0, @carbon/ibm-products-styles@workspace:packages/ibm-products-styles":
+"@carbon/ibm-products-styles@npm:^2.53.0-rc.0, @carbon/ibm-products-styles@workspace:packages/ibm-products-styles":
version: 0.0.0-use.local
resolution: "@carbon/ibm-products-styles@workspace:packages/ibm-products-styles"
dependencies:
@@ -1732,7 +1732,7 @@ __metadata:
cross-env: "npm:^7.0.3"
glob: "npm:^10.3.10"
jest: "npm:^29.7.0"
- jest-config-ibm-cloud-cognitive: "npm:^1.15.0"
+ jest-config-ibm-cloud-cognitive: "npm:^1.16.0-rc.0"
jest-environment-jsdom: "npm:^29.7.0"
npm-check-updates: "npm:^17.1.11"
npm-run-all: "npm:^4.1.5"
@@ -1752,7 +1752,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@carbon/ibm-products-web-components@workspace:packages/ibm-products-web-components"
dependencies:
- "@carbon/ibm-products-styles": "npm:^2.52.0"
+ "@carbon/ibm-products-styles": "npm:^2.53.0-rc.0"
"@carbon/icons": "npm:^11.53.0"
"@carbon/motion": "npm:^11.24.0"
"@carbon/styles": "npm:1.71.0"
@@ -1811,7 +1811,7 @@ __metadata:
"@babel/preset-typescript": "npm:^7.21.5"
"@babel/runtime": "npm:^7.23.9"
"@carbon/feature-flags": "npm:^0.24.0"
- "@carbon/ibm-products-styles": "npm:^2.52.0"
+ "@carbon/ibm-products-styles": "npm:^2.53.0-rc.0"
"@carbon/telemetry": "npm:^0.1.0"
"@dnd-kit/core": "npm:^6.0.8"
"@dnd-kit/modifiers": "npm:^7.0.0"
@@ -1825,7 +1825,7 @@ __metadata:
"@rollup/plugin-typescript": "npm:^12.1.1"
"@types/react-table": "npm:^7.7.20"
babel-plugin-dev-expression: "npm:^0.2.3"
- babel-preset-ibm-cloud-cognitive: "npm:^0.14.40"
+ babel-preset-ibm-cloud-cognitive: "npm:^0.15.0-rc.0"
chalk: "npm:^4.1.2"
change-case: "npm:4.1.2"
classnames: "npm:^2.5.1"
@@ -1836,7 +1836,7 @@ __metadata:
glob: "npm:^10.3.10"
immutability-helper: "npm:^3.1.1"
jest: "npm:^29.7.0"
- jest-config-ibm-cloud-cognitive: "npm:^1.15.0"
+ jest-config-ibm-cloud-cognitive: "npm:^1.16.0-rc.0"
jest-environment-jsdom: "npm:^29.7.0"
lodash: "npm:^4.17.21"
lottie-web: "npm:^5.12.2"
@@ -8990,7 +8990,7 @@ __metadata:
languageName: node
linkType: hard
-"babel-preset-ibm-cloud-cognitive@npm:^0.14.40, babel-preset-ibm-cloud-cognitive@workspace:config/babel-preset-ibm-cloud-cognitive":
+"babel-preset-ibm-cloud-cognitive@npm:^0.15.0-rc.0, babel-preset-ibm-cloud-cognitive@workspace:config/babel-preset-ibm-cloud-cognitive":
version: 0.0.0-use.local
resolution: "babel-preset-ibm-cloud-cognitive@workspace:config/babel-preset-ibm-cloud-cognitive"
dependencies:
@@ -14925,7 +14925,7 @@ __metadata:
languageName: node
linkType: hard
-"jest-config-ibm-cloud-cognitive@npm:^1.15.0, jest-config-ibm-cloud-cognitive@workspace:config/jest-config-ibm-cloud-cognitive":
+"jest-config-ibm-cloud-cognitive@npm:^1.16.0-rc.0, jest-config-ibm-cloud-cognitive@workspace:config/jest-config-ibm-cloud-cognitive":
version: 0.0.0-use.local
resolution: "jest-config-ibm-cloud-cognitive@workspace:config/jest-config-ibm-cloud-cognitive"
dependencies:
@@ -14940,7 +14940,7 @@ __metadata:
accessibility-checker: "npm:^3.1.78"
axe-core: "npm:^4.8.3"
babel-jest: "npm:^29.7.0"
- babel-preset-ibm-cloud-cognitive: "npm:^0.14.40"
+ babel-preset-ibm-cloud-cognitive: "npm:^0.15.0-rc.0"
chalk: "npm:^4.1.2"
identity-obj-proxy: "npm:^3.0.0"
jest-circus: "npm:^29.7.0"