Skip to content

Commit

Permalink
chore(project): remove unstable prefix for applicable components (#10768
Browse files Browse the repository at this point in the history
)

* chore(project): remove unstable prefix for applicable components

* chore(project): remove unstable prefix for applicable components

* chore(project): remove unstable prefix for applicable components

* revert(exports): context menu remains unstable

* test(exports): update snaps

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
tay1orjones and kodiakhq[bot] authored Mar 1, 2022
1 parent 3e8273c commit f0c64cf
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 17 deletions.
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

0 comments on commit f0c64cf

Please sign in to comment.