Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(project): remove unstable prefix for applicable components #10768

Merged
12 changes: 6 additions & 6 deletions packages/carbon-react/__tests__/index-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ describe('Carbon Components React', () => {
"Heading",
"IconButton",
"IconSkeleton",
"IconTab",
"InlineLoading",
"InlineNotification",
"Layer",
Expand All @@ -106,6 +107,7 @@ describe('Carbon Components React', () => {
"Popover",
"PopoverContent",
"PrimaryButton",
"ProgressBar",
"ProgressIndicator",
"ProgressIndicatorSkeleton",
"ProgressStep",
Expand Down Expand Up @@ -157,6 +159,9 @@ describe('Carbon Components React', () => {
"SwitcherItem",
"Tab",
"TabContent",
"TabList",
"TabPanel",
"TabPanels",
"Table",
"TableActionList",
"TableBatchAction",
Expand Down Expand Up @@ -186,6 +191,7 @@ describe('Carbon Components React', () => {
"TextInput",
"TextInputSkeleton",
"Theme",
"ThemeContext",
"Tile",
"TileAboveTheFoldContent",
"TileBelowTheFoldContent",
Expand All @@ -206,7 +212,6 @@ describe('Carbon Components React', () => {
"Tooltip",
"UnorderedList",
"VStack",
"unstable_IconTab",
"unstable_Menu",
"unstable_MenuDivider",
"unstable_MenuGroup",
Expand All @@ -215,11 +220,6 @@ describe('Carbon Components React', () => {
"unstable_MenuSelectableItem",
"unstable_PageSelector",
"unstable_Pagination",
"unstable_ProgressBar",
"unstable_TabList",
"unstable_TabPanel",
"unstable_TabPanels",
"unstable_ThemeContext",
"unstable_TreeNode",
"unstable_TreeView",
"unstable_useContextMenu",
Expand Down
13 changes: 6 additions & 7 deletions packages/carbon-react/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,6 @@ export {
Grid,
Column,
unstable_FlexGrid as FlexGrid,
// Experimental
unstable_useContextMenu,
unstable_FeatureFlags as FeatureFlags,
unstable_Heading as Heading,
Expand All @@ -204,14 +203,14 @@ export {
unstable_Pagination,
unstable_Popover as Popover,
unstable_PopoverContent as PopoverContent,
unstable_ProgressBar,
unstable_ProgressBar as ProgressBar,
unstable_Section as Section,
unstable_Stack as Stack,
unstable_TabPanel,
unstable_TabPanels,
unstable_TabList,
unstable_IconTab,
unstable_ThemeContext,
unstable_TabPanel as TabPanel,
unstable_TabPanels as TabPanels,
unstable_TabList as TabList,
unstable_IconTab as IconTab,
unstable_ThemeContext as ThemeContext,
unstable_Theme as Theme,
unstable_Tooltip as Tooltip,
unstable_DefinitionTooltip as DefinitionTooltip,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import React from 'react';
import { IconButton } from '../';

export default {
title: 'Experimental/unstable_IconButton',
title: 'IconButton',
component: IconButton,
parameters: {
controls: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { Popover, PopoverContent } from '../../Popover';
import mdx from './Popover.mdx';

export default {
title: 'Experimental/unstable_Popover',
title: 'Popover',
component: Popover,
subcomponents: {
PopoverContent,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import React, { useState, useEffect } from 'react';
import ProgressBar from '../';

export default {
title: 'Experimental/unstable_ProgressBar',
title: 'ProgressBar',
component: ProgressBar,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { Tooltip } from '../next';
import { DefinitionTooltip } from './DefinitionTooltip.js';

export default {
title: 'Experimental/unstable_Tooltip',
title: 'Tooltip',
component: Tooltip,
parameters: {
controls: {
Expand Down