diff --git a/apps/E2E/src/TabsLegacy/consts.ts b/apps/E2E/src/TabsLegacy/consts.ts deleted file mode 100644 index 6c8dbd2c0..000000000 --- a/apps/E2E/src/TabsLegacy/consts.ts +++ /dev/null @@ -1,24 +0,0 @@ -export const HOMEPAGE_TABS_BUTTON = 'Homepage_Tabs_Button'; -export const TABS_TESTPAGE = 'Tabs_TestPage'; - -/* E2E Testing Tabs 1. This Tabs group has THREE Tab Items, all listed below. */ -export const TABS_TEST_COMPONENT = 'Tabs_Test_Component'; -export const TABS_ACCESSIBILITY_LABEL = 'E2E testing Tabs accessibility label'; - -/* E2E Testing TabItem 1 (1 of 3) */ -export const FIRST_TABS_ITEM = 'First_Tabs_Item'; -export const FIRST_TABS_ITEM_ACCESSIBILITY_LABEL = 'E2E testing TabItem accessibility label'; -export const FIRST_TABS_ITEM_CONTENT = 'Tabs #1 content'; // Content to be shown when TabItem is clicked - -/* E2E Testing TabItem 2 (2 of 3) */ -export const SECOND_TABS_ITEM = 'Second_Tabs_Item'; -export const SECOND_TABS_ITEM_CONTENT = 'Tabs #2 content'; // Content to be shown when TabItem is clicked - -/* E2E Testing TabItem 3 (3 of 3) This is used to test the case of not setting accessibilityLabel */ -export const THIRD_TABS_ITEM = 'Third_Tabs_Item'; -export const THIRD_TABS_ITEM_LABEL = 'Test TabItem2 - No Accessibility Label'; -export const THIRD_TABS_ITEM_CONTENT = 'Tabs #3 content'; // Content to be shown when TabItem is clicked - -/* E2E Testing Tabs 2 */ -export const TABS_NO_A11Y_LABEL_COMPONENT = 'Tabs_No_A11y_label_Component'; -export const TABS_TEST_COMPONENT_LABEL = 'Test Tabs2 - No Accessibility Label'; // A component on each specific test page diff --git a/apps/E2E/src/TabsLegacy/pages/TabsLegacyPageObject.ts b/apps/E2E/src/TabsLegacy/pages/TabsLegacyPageObject.ts deleted file mode 100644 index 3be137967..000000000 --- a/apps/E2E/src/TabsLegacy/pages/TabsLegacyPageObject.ts +++ /dev/null @@ -1,73 +0,0 @@ -import { BasePage, By } from '../../common/BasePage'; -import { - TABS_TESTPAGE, - TABS_TEST_COMPONENT, - HOMEPAGE_TABS_BUTTON, - FIRST_TABS_ITEM, - SECOND_TABS_ITEM, - THIRD_TABS_ITEM, - FIRST_TABS_ITEM_CONTENT, - SECOND_TABS_ITEM_CONTENT, - THIRD_TABS_ITEM_CONTENT, -} from '../consts'; - -/* This enum gives the spec file an EASY way to interact with SPECIFIC UI elements on the page. - * The spec file should import this enum and use it when wanting to interact with different elements on the page. - * The main Tab group we are testing has THREE tab items. The spec file will - * import this enum to easily write tests using these 3 tab items */ -type TabItem = - | 'First' // this._firstTabItem - | 'Second' // this._secondTabItem - | 'Third'; // this._thirdTabItem - -class TabsLegacyPageObject extends BasePage { - /******************************************************************/ - /**************** UI Element Interaction Methods ******************/ - /******************************************************************/ - - async waitForTabItemContentToLoad(tabItemSelector: TabItem, errorMsg: string): Promise { - const content = await this.getTabItemContent(tabItemSelector); - return await this.waitForCondition(async () => await content.isDisplayed(), errorMsg); - } - - /* Returns the correct WebDriverIO element from the TabItem Selector */ - async getTabItem(tabItemSelector: TabItem): Promise { - switch (tabItemSelector) { - case 'First': - return await By(FIRST_TABS_ITEM); - case 'Second': - return await By(SECOND_TABS_ITEM); - case 'Third': - return await By(THIRD_TABS_ITEM); - } - } - - /* Returns the correct WebDriverIO element from the TabItem Selector */ - async getTabItemContent(tabItemSelector: TabItem): Promise { - switch (tabItemSelector) { - case 'First': - return await By(FIRST_TABS_ITEM_CONTENT); - case 'Second': - return await By(SECOND_TABS_ITEM_CONTENT); - case 'Third': - return await By(THIRD_TABS_ITEM_CONTENT); - } - } - - /*****************************************/ - /**************** Getters ****************/ - /*****************************************/ - get _pageName() { - return TABS_TESTPAGE; - } - - get _primaryComponentName() { - return TABS_TEST_COMPONENT; - } - - get _pageButtonName() { - return HOMEPAGE_TABS_BUTTON; - } -} - -export default new TabsLegacyPageObject(); diff --git a/apps/E2E/src/TabsLegacy/specs/TabsLegacy.spec.macos.ts b/apps/E2E/src/TabsLegacy/specs/TabsLegacy.spec.macos.ts deleted file mode 100644 index fa836df11..000000000 --- a/apps/E2E/src/TabsLegacy/specs/TabsLegacy.spec.macos.ts +++ /dev/null @@ -1,12 +0,0 @@ -import TabsLegacyPageObject from '../pages/TabsLegacyPageObject'; - -// Before testing begins, allow up to 60 seconds for app to open -describe('Tabs Legacy Testing Initialization', () => { - it('Wait for app load', async () => { - expect(await TabsLegacyPageObject.waitForInitialPageToDisplay()).toBeTrue(); - }); - - it('Click and navigate to Tabs Legacy test page', async () => { - expect(await TabsLegacyPageObject.navigateToPageAndLoadTests()).toBeTrue(); - }); -}); diff --git a/apps/E2E/src/TabsLegacy/specs/TabsLegacy.spec.win.ts b/apps/E2E/src/TabsLegacy/specs/TabsLegacy.spec.win.ts deleted file mode 100644 index 4a9ff3bbb..000000000 --- a/apps/E2E/src/TabsLegacy/specs/TabsLegacy.spec.win.ts +++ /dev/null @@ -1,108 +0,0 @@ -import { TAB_A11Y_ROLE, TABITEM_A11Y_ROLE, Keys, Attribute } from '../../common/consts'; -import TabsLegacyPageObject from '../pages/TabsLegacyPageObject'; - -// Before testing begins, allow up to 60 seconds for app to open -describe('Tabs Legacy Testing Initialization', () => { - it('Wait for app load', async () => { - expect(await TabsLegacyPageObject.waitForInitialPageToDisplay()).toBeTrue(); - }); - - it('Click and navigate to Tabs Legacy test page', async () => { - expect(await TabsLegacyPageObject.navigateToPageAndLoadTests()).toBeTrue(); - - /* Expand E2E section */ - expect(await TabsLegacyPageObject.enableE2ETesterMode()).toBeTrue(); - - expect(await TabsLegacyPageObject.didAssertPopup()) - .withContext(TabsLegacyPageObject.ERRORMESSAGE_ASSERT) - .toBeFalsy(); // Ensure no asserts popped up - }); -}); - -describe('Tabs Legacy Accessibility Testing', () => { - /* Scrolls and waits for the Tabs to be visible on the Test Page */ - beforeEach(async () => { - await TabsLegacyPageObject.scrollToTestElement(); - }); - - it('Validate Tab\'s "accessibilityRole" defaults to "ControlType.Tab".', async () => { - expect( - await TabsLegacyPageObject.compareAttribute(TabsLegacyPageObject._primaryComponent, Attribute.AccessibilityRole, TAB_A11Y_ROLE), - ).toBeTruthy(); - }); - - it('Validate TabItem\'s "accessibilityRole" defaults to "ControlType.TabItem".', async () => { - expect( - await TabsLegacyPageObject.compareAttribute(TabsLegacyPageObject.getTabItem('First'), Attribute.AccessibilityRole, TABITEM_A11Y_ROLE), - ).toBeTruthy(); - }); -}); - -describe('Tabs Legacy Functional Tests', () => { - /* Scrolls and waits for the Tabs to be visible on the Test Page */ - beforeEach(async () => { - await TabsLegacyPageObject.scrollToTestElement(); - - // Reset the TabGroup by putting focus on First tab item - await TabsLegacyPageObject.click(TabsLegacyPageObject.getTabItem('First')); - }); - - it('Click on the second tab header. Validate the second TabItem content is shown.', async () => { - await TabsLegacyPageObject.click(TabsLegacyPageObject.getTabItem('Second')); - - expect( - await TabsLegacyPageObject.waitForTabItemContentToLoad( - 'Second', - "Expected the second tab item's content to show by clicking the second tab item.", - ), - ).toBeTruthy(); - expect(await TabsLegacyPageObject.didAssertPopup()) - .withContext(TabsLegacyPageObject.ERRORMESSAGE_ASSERT) - .toBeFalsy(); - }); - - it('Input the following arrow keys on the tabs: Right -> Down -> Left -> Up. Validate the correct TabItem content gets shown.', async () => { - /* At First tab element, press Right Arrow to navigate to the Second tab element */ - await TabsLegacyPageObject.sendKeys(TabsLegacyPageObject.getTabItem('First'), [Keys.ARROW_RIGHT]); - - expect( - await TabsLegacyPageObject.waitForTabItemContentToLoad( - 'Second', - 'Expected the second tab item\'s content to show by pressing "Right Arrow" on the first tab item.', - ), - ).toBeTruthy(); - - /* At Second tab element, press Down Arrow to navigate to the Third tab element */ - await TabsLegacyPageObject.sendKeys(TabsLegacyPageObject.getTabItem('Second'), [Keys.ARROW_DOWN]); - - expect( - await TabsLegacyPageObject.waitForTabItemContentToLoad( - 'Third', - 'Expected the third tab item\'s content to show by pressing "Down Arrow" on the second tab item.', - ), - ).toBeTruthy(); - - /* At Third tab element, press Left Arrow to navigate to the Second tab element */ - await TabsLegacyPageObject.sendKeys(TabsLegacyPageObject.getTabItem('Third'), [Keys.ARROW_LEFT]); - - expect( - await TabsLegacyPageObject.waitForTabItemContentToLoad( - 'Second', - 'Expected the second tab item\'s content to show by pressing "Left Arrow" on the third tab item.', - ), - ).toBeTruthy(); - - /* At Second tab element, press Up Arrow to navigate to the First tab element */ - await TabsLegacyPageObject.sendKeys(TabsLegacyPageObject.getTabItem('Second'), [Keys.ARROW_UP]); - - expect( - await TabsLegacyPageObject.waitForTabItemContentToLoad( - 'First', - 'Expected the first tab item\'s content to show by pressing "Up Arrow" on the first tab item.', - ), - ).toBeTruthy(); - expect(await TabsLegacyPageObject.didAssertPopup()) - .withContext(TabsLegacyPageObject.ERRORMESSAGE_ASSERT) - .toBeFalsy(); - }); -}); diff --git a/apps/E2E/src/TabsLegacy/specs/TabsLegacy.spec.windows.ts b/apps/E2E/src/TabsLegacy/specs/TabsLegacy.spec.windows.ts deleted file mode 100644 index 9ba3fce3f..000000000 --- a/apps/E2E/src/TabsLegacy/specs/TabsLegacy.spec.windows.ts +++ /dev/null @@ -1,90 +0,0 @@ -import { TABITEM_A11Y_ROLE, TAB_A11Y_ROLE, Attribute } from '../../common/consts'; -import TabsLegacyPageObject from '../pages/TabsLegacyPageObject'; - -// Before testing begins, allow up to 60 seconds for app to open -describe('Tabs Legacy Testing Initialization', () => { - it('Wait for app load', async () => { - expect(await TabsLegacyPageObject.waitForInitialPageToDisplay()).toBeTrue(); - }); - - it('Click and navigate to Tabs Legacy test page', async () => { - expect(await TabsLegacyPageObject.navigateToPageAndLoadTests()).toBeTrue(); - - /* Expand E2E section */ - expect(await TabsLegacyPageObject.enableE2ETesterMode()).toBeTrue(); - - expect(await TabsLegacyPageObject.didAssertPopup()) - .withContext(TabsLegacyPageObject.ERRORMESSAGE_ASSERT) - .toBeFalsy(); // Ensure no asserts popped up - }); -}); - -describe('Tabs Legacy Accessibility Testing', () => { - /* Scrolls and waits for the Tabs to be visible on the Test Page */ - beforeEach(async () => { - await TabsLegacyPageObject.scrollToTestElement(); - }); - - it('Validate Tab\'s "accessibilityRole" defaults to "ControlType.Tab".', async () => { - expect( - await TabsLegacyPageObject.compareAttribute(TabsLegacyPageObject._primaryComponent, Attribute.AccessibilityRole, TAB_A11Y_ROLE), - ).toBeTruthy(); - }); - - it('Validate TabItem\'s "accessibilityRole" defaults to "ControlType.TabItem".', async () => { - expect( - await TabsLegacyPageObject.compareAttribute(TabsLegacyPageObject.getTabItem('First'), Attribute.AccessibilityRole, TABITEM_A11Y_ROLE), - ).toBeTruthy(); - }); -}); - -describe('Tabs Legacy Functional Tests', () => { - /* Scrolls and waits for the Tabs to be visible on the Test Page */ - beforeEach(async () => { - await TabsLegacyPageObject.scrollToTestElement(); - - // Reset the TabGroup by putting focus on First tab item - await TabsLegacyPageObject.click(TabsLegacyPageObject.getTabItem('First')); - }); - - it('Click on the second tab header. Validate the second TabItem content is shown.', async () => { - await TabsLegacyPageObject.click(TabsLegacyPageObject.getTabItem('Second')); - - expect( - await TabsLegacyPageObject.waitForTabItemContentToLoad( - 'Second', - "Expected the second tab item's content to show by clicking the second tab item.", - ), - ).toBeTruthy(); - expect(await TabsLegacyPageObject.didAssertPopup()) - .withContext(TabsLegacyPageObject.ERRORMESSAGE_ASSERT) - .toBeFalsy(); - }); - - // Keyboarding is currently not integrated for UWP tabs - Task #5758598 - // it('Keyboarding: Arrow Navigation: Right -> Down -> Left -> Up -> Validate the correct TabItem content is shown', () => { - // /* At First tab element, press Right Arrow to navigate to the Second tab element */ - // TabsPageObject.sendKey(Keys.Right_Arrow, 'First'); - // TabsPageObject.waitForTabsItemsToOpen('Second', PAGE_TIMEOUT); - - // expect(TabsPageObject.didTabItemContentLoad('Second')).toBeTruthy(); - - // /* At Second tab element, press Down Arrow to navigate to the Third tab element */ - // TabsPageObject.sendKey(Keys.Down_Arrow, 'Second'); - // TabsPageObject.waitForTabsItemsToOpen('Third', PAGE_TIMEOUT); - - // expect(TabsPageObject.didTabItemContentLoad('Third')).toBeTruthy(); - - // /* At Third tab element, press Left Arrow to navigate to the Second tab element */ - // TabsPageObject.sendKey(Keys.Left_Arrow, 'Third'); - // TabsPageObject.waitForTabsItemsToOpen('Second', PAGE_TIMEOUT); - - // expect(TabsPageObject.didTabItemContentLoad('Second')).toBeTruthy(); - - // /* At Second tab element, press Up Arrow to navigate to the First tab element */ - // TabsPageObject.sendKey(Keys.Up_Arrow, 'Second'); - // TabsPageObject.waitForTabsItemsToOpen('First', PAGE_TIMEOUT); - - // expect(TabsPageObject.didTabItemContentLoad('First')).toBeTruthy(); - // }); -}); diff --git a/apps/E2E/src/TabsV1/consts.ts b/apps/E2E/src/TabsV1/consts.ts deleted file mode 100644 index f737007d8..000000000 --- a/apps/E2E/src/TabsV1/consts.ts +++ /dev/null @@ -1,25 +0,0 @@ -export const HOMEPAGE_TABSV1_BUTTON = 'Homepage_TabsV1_Button'; -export const TABSV1_TESTPAGE = 'TabsV1_TestPage'; - -/* E2E Testing TabsV1 1 */ -export const TABSV1_TEST_COMPONENT = 'TabsV1_Test_Component'; // A component on each specific test page -export const TABSV1_ACCESSIBILITY_LABEL = 'E2E testing TabsV1 accessibility label'; - -/* E2E Testing TabsV1 2 */ -export const TABSV1_NO_A11Y_LABEL_COMPONENT = 'TabsV1_No_A11y_label_Component'; -export const TABSV1_TEST_COMPONENT_LABEL = 'Test TabsV1 2 - No Accessibility Label'; // A component on each specific test page - -/* E2E Testing TabsItemV1 1 */ -export const TABSITEMV1_ITEM_1_ACCESSIBILITY_LABEL = 'E2E testing TabItemV1 accessibility label'; - -export const TABSITEMV1_ITEM_1 = 'TabItemV1_Item_1'; // A component on each specific test page -export const TABSITEMV1_ITEM_2 = 'TabItemV1_Item_2'; -export const TABSITEMV1_ITEM_3 = 'TabItemV1_Item_3'; - -export const TABSITEMV1_CONTENT_1 = 'TabsItemV1_Content_1'; -export const TABSITEMV1_CONTENT_2 = 'TabsItemV1_Content_2'; -export const TABSITEMV1_CONTENT_3 = 'TabsItemV1_Content_3'; - -/* E2E Testing TabsItemV1 2 */ -export const TABSITEMV1_NO_A11Y_LABEL_COMPONENT = 'TabItemV1_No_A11y_label_Component'; -export const TABSITEMV1_TEST_COMPONENT_LABEL = 'Test TabItemV1 2 - No Accessibility Label'; // A component on each specific test page diff --git a/apps/E2E/src/TabsV1/pages/TabsV1PageObject.ts b/apps/E2E/src/TabsV1/pages/TabsV1PageObject.ts deleted file mode 100644 index 88a61fada..000000000 --- a/apps/E2E/src/TabsV1/pages/TabsV1PageObject.ts +++ /dev/null @@ -1,65 +0,0 @@ -import { BasePage, By } from '../../common/BasePage'; -import { - TABSV1_TESTPAGE, - TABSV1_TEST_COMPONENT, - HOMEPAGE_TABSV1_BUTTON, - TABSITEMV1_ITEM_1, - TABSITEMV1_ITEM_2, - TABSITEMV1_ITEM_3, - TABSITEMV1_CONTENT_1, - TABSITEMV1_CONTENT_2, - TABSITEMV1_CONTENT_3, -} from '../consts'; - -export type TabItem = 'First' | 'Second' | 'Third'; - -class TabsV1PageObject extends BasePage { - async resetListSelection(): Promise { - (await this.getTabItem('First')).click(); - await this.waitForTabItemContentToLoad('First', 'Reset TabList, first tab should be selected'); - } - - async waitForTabItemContentToLoad(selector: TabItem, errorMsg: string): Promise { - const content = await this.getTabItemContent(selector); - return await this.waitForCondition(async () => await content.isDisplayed(), errorMsg); - } - - async getTabItem(selector: TabItem): Promise { - switch (selector) { - case 'First': - return await By(TABSITEMV1_ITEM_1); - case 'Second': - return await By(TABSITEMV1_ITEM_2); - case 'Third': - return await By(TABSITEMV1_ITEM_3); - } - } - - async getTabItemContent(selector: TabItem): Promise { - switch (selector) { - case 'First': - return await By(TABSITEMV1_CONTENT_1); - case 'Second': - return await By(TABSITEMV1_CONTENT_2); - case 'Third': - return await By(TABSITEMV1_CONTENT_3); - } - } - - /*****************************************/ - /**************** Getters ****************/ - /*****************************************/ - get _pageName() { - return TABSV1_TESTPAGE; - } - - get _primaryComponentName() { - return TABSV1_TEST_COMPONENT; - } - - get _pageButtonName() { - return HOMEPAGE_TABSV1_BUTTON; - } -} - -export default new TabsV1PageObject(); diff --git a/apps/E2E/src/TabsV1/specs/TabsV1.spec.macos.ts b/apps/E2E/src/TabsV1/specs/TabsV1.spec.macos.ts deleted file mode 100644 index d38f1fdc9..000000000 --- a/apps/E2E/src/TabsV1/specs/TabsV1.spec.macos.ts +++ /dev/null @@ -1,12 +0,0 @@ -import TabsV1PageObject from '../pages/TabsV1PageObject'; - -// Before testing begins, allow up to 60 seconds for app to open -describe('TabsV1 Testing Initialization', () => { - it('Wait for app load', async () => { - expect(await TabsV1PageObject.waitForInitialPageToDisplay()).toBeTrue(); - }); - - it('Click and navigate to TabsV1 test page', async () => { - expect(await TabsV1PageObject.navigateToPageAndLoadTests()).toBeTrue(); - }); -}); diff --git a/apps/E2E/src/TabsV1/specs/TabsV1.spec.win.ts b/apps/E2E/src/TabsV1/specs/TabsV1.spec.win.ts deleted file mode 100644 index a415710c2..000000000 --- a/apps/E2E/src/TabsV1/specs/TabsV1.spec.win.ts +++ /dev/null @@ -1,104 +0,0 @@ -import { Attribute, Keys, TAB_A11Y_ROLE, TABITEM_A11Y_ROLE } from '../../common/consts'; -import TabsV1PageObject from '../pages/TabsV1PageObject'; - -// Before testing begins, allow up to 60 seconds for app to open -describe('TabsV1 Testing Initialization', () => { - it('Wait for app load', async () => { - expect(await TabsV1PageObject.waitForInitialPageToDisplay()).toBeTrue(); - }); - - it('Click and navigate to TabsV1 test page', async () => { - expect(await TabsV1PageObject.navigateToPageAndLoadTests()).toBeTrue(); - - /* Expand E2E section */ - expect(await TabsV1PageObject.enableE2ETesterMode()).toBeTrue(); - - expect(await TabsV1PageObject.didAssertPopup()) - .withContext(TabsV1PageObject.ERRORMESSAGE_ASSERT) - .toBeFalsy(); // Ensure no asserts popped up - }); -}); - -describe('TabsV1 Accessibility Testing', () => { - it('Validate Tab\'s "accessibilityRole" defaults to "ControlType.Tab".', async () => { - expect( - await TabsV1PageObject.compareAttribute(TabsV1PageObject._primaryComponent, Attribute.AccessibilityRole, TAB_A11Y_ROLE), - ).toBeTruthy(); - }); - - it('Validate TabItem\'s "accessibilityRole" defaults to "ControlType.TabItem".', async () => { - expect( - await TabsV1PageObject.compareAttribute(TabsV1PageObject.getTabItem('First'), Attribute.AccessibilityRole, TABITEM_A11Y_ROLE), - ).toBeTruthy(); - }); -}); - -describe('TabsV1 Functional Tests', () => { - /* Scrolls and waits for the Tabs to be visible on the Test Page */ - beforeEach(async () => { - await TabsV1PageObject.scrollToTestElement(); - - // Reset the TabGroup by putting focus on First tab item - await TabsV1PageObject.resetListSelection(); - }); - - it('Click on the second tab header. Validate the second TabItem content is shown.', async () => { - await TabsV1PageObject.click(TabsV1PageObject.getTabItem('Second')); - - expect( - await TabsV1PageObject.waitForTabItemContentToLoad( - 'Second', - "Expected the second tab item's content to show by clicking the second tab item.", - ), - ).toBeTruthy(); - expect(await TabsV1PageObject.didAssertPopup()) - .withContext(TabsV1PageObject.ERRORMESSAGE_ASSERT) - .toBeFalsy(); - }); - - it('Input the following arrow keys on the tabs: Right -> Down -> Left -> Up. Validate the correct TabItem content gets shown.', async () => { - /* At First tab element, press Right Arrow to navigate to the Second tab element */ - await TabsV1PageObject.sendKeys(TabsV1PageObject.getTabItem('First'), [Keys.ARROW_RIGHT]); - - expect( - await TabsV1PageObject.waitForTabItemContentToLoad( - 'Second', - 'Expected the second tab item\'s content to show by pressing "Right Arrow" on the first tab item.', - ), - ).toBeTruthy(); - - /* At Second tab element, press Down Arrow to navigate to the Third tab element */ - await TabsV1PageObject.sendKeys(TabsV1PageObject.getTabItem('Second'), [Keys.ARROW_DOWN]); - - expect( - await TabsV1PageObject.waitForTabItemContentToLoad( - 'Third', - 'Expected the third tab item\'s content to show by pressing "Down Arrow" on the second tab item.', - ), - ).toBeTruthy(); - - /* At Third tab element, press Left Arrow to navigate to the Second tab element */ - await TabsV1PageObject.sendKeys(TabsV1PageObject.getTabItem('Third'), [Keys.ARROW_LEFT]); - - expect( - await TabsV1PageObject.waitForTabItemContentToLoad( - 'Second', - 'Expected the second tab item\'s content to show by pressing "Left Arrow" on the third tab item.', - ), - ).toBeTruthy(); - - /* At Second tab element, press Up Arrow to navigate to the First tab element */ - await TabsV1PageObject.sendKeys(TabsV1PageObject.getTabItem('Second'), [Keys.ARROW_UP]); - - expect( - await TabsV1PageObject.waitForTabItemContentToLoad( - 'First', - 'Expected the first tab item\'s content to show by pressing "Up Arrow" on the first tab item.', - ), - ).toBeTruthy(); - - expect(await TabsV1PageObject.didAssertPopup()) - .withContext(TabsV1PageObject.ERRORMESSAGE_ASSERT) - .toBeFalsy(); - }); -}); diff --git a/apps/E2E/src/index.consts.ts b/apps/E2E/src/index.consts.ts index 0618a5d47..ed9f5a7b2 100644 --- a/apps/E2E/src/index.consts.ts +++ b/apps/E2E/src/index.consts.ts @@ -35,8 +35,6 @@ export * from './StrokeWidthTokens/consts'; export * from './Svg/consts'; export * from './Switch/consts'; export * from './TabList/consts'; -export * from './TabsLegacy/consts'; -export * from './TabsV1/consts'; export * from './TextLegacy/consts'; export * from './TextV1/consts'; export * from './Theme/consts'; diff --git a/apps/fluent-tester/package.json b/apps/fluent-tester/package.json index 4a07aefec..3d030daf8 100644 --- a/apps/fluent-tester/package.json +++ b/apps/fluent-tester/package.json @@ -56,7 +56,6 @@ "@fluentui-react-native/experimental-native-date-picker": ">=0.10.0 <1.0.0", "@fluentui-react-native/experimental-shadow": "0.5.6", "@fluentui-react-native/experimental-shimmer": "0.12.8", - "@fluentui-react-native/experimental-tabs": "0.10.7", "@fluentui-react-native/experimental-text": ">=0.14.6 <1.0.0", "@fluentui-react-native/framework": ">=0.13.5 <1.0.0", "@fluentui-react-native/icon": "0.20.7", diff --git a/apps/fluent-tester/src/TestComponents/TabsLegacy/TabsLegacyE2ETest.tsx b/apps/fluent-tester/src/TestComponents/TabsLegacy/TabsLegacyE2ETest.tsx deleted file mode 100644 index 9af227b71..000000000 --- a/apps/fluent-tester/src/TestComponents/TabsLegacy/TabsLegacyE2ETest.tsx +++ /dev/null @@ -1,94 +0,0 @@ -import * as React from 'react'; -import { View } from 'react-native'; - -import { Tabs, TabsItem, Text } from '@fluentui/react-native'; - -import { - TABS_TEST_COMPONENT, - TABS_ACCESSIBILITY_LABEL, - TABS_TEST_COMPONENT_LABEL, - TABS_NO_A11Y_LABEL_COMPONENT, - SECOND_TABS_ITEM_CONTENT, - FIRST_TABS_ITEM, - SECOND_TABS_ITEM, - THIRD_TABS_ITEM, - FIRST_TABS_ITEM_ACCESSIBILITY_LABEL, - THIRD_TABS_ITEM_LABEL, - THIRD_TABS_ITEM_CONTENT, - FIRST_TABS_ITEM_CONTENT, -} from '../../../../E2E/src/TabsLegacy/consts'; -import { stackStyle } from '../Common/styles'; -import { testProps } from '../Common/TestProps'; - -export const TabsLegacyE2ETest: React.FunctionComponent = () => { - return ( - - - - - - Tabs #1 - - - - - Tabs #2 - - - - - Tabs #3 - - - - - - - - Tabs #1 - - - Tabs #2 - - - Tabs #3 - - - - - ); -}; diff --git a/apps/fluent-tester/src/TestComponents/TabsLegacy/TabsLegacyTest.tsx b/apps/fluent-tester/src/TestComponents/TabsLegacy/TabsLegacyTest.tsx deleted file mode 100644 index 2127d3ae9..000000000 --- a/apps/fluent-tester/src/TestComponents/TabsLegacy/TabsLegacyTest.tsx +++ /dev/null @@ -1,302 +0,0 @@ -import * as React from 'react'; -import { Platform, View } from 'react-native'; - -import { Tabs, TabsItem, Text, Button } from '@fluentui/react-native'; - -import { TabsLegacyE2ETest } from './TabsLegacyE2ETest'; -import { TABS_TESTPAGE } from '../../../../E2E/src/TabsLegacy/consts'; -import { svgProps } from '../Common/iconExamples'; -import { stackStyle } from '../Common/styles'; -import type { TestSection, PlatformStatus } from '../Test'; -import { Test } from '../Test'; - -const TabsMainTest: React.FunctionComponent = () => { - return ( - - - - Tabs #1 - - - Tabs #2 - - - Tabs #3 - - - - ); -}; - -const DisabledTabs: React.FunctionComponent = () => { - return ( - - - - Tabs #1 - - - Tabs #2 - - - Tabs #3 - - - - ); -}; - -const TabsCountIcon: React.FunctionComponent = () => { - const svgExample = { - svgSource: svgProps, - width: 20, - height: 20, - }; - - return ( - - - - Tabs #1 - - - Tabs #2 - - - Tabs #3 - - - - ); -}; - -const TabsClickEventTest: React.FunctionComponent = () => { - const [selectedKey, setSelectedKey] = React.useState('home_key'); - - const onTabsClick = (key: string) => { - setSelectedKey(key); - }; - - return ( - - Last onTabsClick from: {selectedKey} - - - Tabs #1 - - - Tabs #2 - - - Tabs #3 - - - - ); -}; - -const TabsChangingViews: React.FunctionComponent = () => { - // If user wants to control what gets rendered example. - const [selectedKey, setSelectedKey] = React.useState('Tabs #1'); - - const onTabsClick = (key: string) => { - setSelectedKey(key); - }; - - return ( - - - - - - - - {selectedKey} - - - ); -}; - -const TabsRenderSeparately: React.FunctionComponent = () => { - const [selectedKey, setSelectedKey] = React.useState('rectangleRed'); - - const onTabsClick = (key: string) => { - setSelectedKey(key); - }; - - const getTabId = (key: string) => { - return `ShapeColorTabs_${key}`; - }; - - return ( - - - - - - - - - ); -}; - -const TabsSettingSelectedKey: React.FunctionComponent = () => { - // If user wants to programmatically set the tab's selectedKey with a button example. - const [selectedKey, setSelectedKey] = React.useState('home'); - const [currTabItemIndex, setCurrTabItemIndex] = React.useState(0); - const tabItems = ['home', 'file', 'setting']; - - const goToNextTab = () => { - const newCurrTabItemIndex = (currTabItemIndex + 1) % 3; - setCurrTabItemIndex(newCurrTabItemIndex); - setSelectedKey(tabItems[newCurrTabItemIndex]); - }; - - return ( - - - - Tabs #1 - - - Tabs #2 - - - Tabs #3 - - - - - ); -}; - -const TabsWithFlexibility: React.FunctionComponent = () => { - const [selectedKey, setSelectedKey] = React.useState('home'); - - const goHomeTab = React.useCallback(() => { - setSelectedKey('home'); - }, [setSelectedKey]); - - const onTabsClick = React.useCallback( - (key: string) => { - setSelectedKey(key); - }, - [setSelectedKey], - ); - - return ( - - - - Tabs #1 - - - Tabs #2 - - - Tabs #3 - - - - - ); -}; - -const tabsSections: TestSection[] = [ - { - name: 'Default Tabs', - testID: TABSV1_TESTPAGE, - component: TabsMainTest, - }, - { - name: 'Tabs with disabled', - component: DisabledTabs, - }, - { - name: 'Trigger onTabsClick event', - component: TabsClickEventTest, - }, - { - name: 'User Custom Render', - component: TabsChangingViews, - }, - { - name: 'Render Content Separately', - component: TabsRenderSeparately, - }, - { - name: 'Override Selected Key', - component: TabsSettingSelectedKey, - }, - { - name: 'More Flexibility', - component: TabsWithFlexibility, - }, -]; - -if (Platform.OS !== 'windows') { - tabsSections.push({ - name: 'Count and Icon', - component: TabsCountIcon, - }); -} - -const e2eSections: TestSection[] = [ - { - name: 'E2E Testing TabsV1', - component: TabsV1E2ETest, - }, -]; - -export const TabsV1Test: React.FunctionComponent = () => { - const status: PlatformStatus = { - win32Status: 'Production', - uwpStatus: 'Experimental', - iosStatus: 'Backlog', - macosStatus: 'Experimental', - androidStatus: 'Backlog', - }; - - const description = 'With Tabs, users can navigate to another view.'; - - return ; -}; diff --git a/apps/fluent-tester/src/TestComponents/TabsV1/index.ts b/apps/fluent-tester/src/TestComponents/TabsV1/index.ts deleted file mode 100644 index e2a6a6c2d..000000000 --- a/apps/fluent-tester/src/TestComponents/TabsV1/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './TabsV1Test'; diff --git a/apps/fluent-tester/src/testPages.ts b/apps/fluent-tester/src/testPages.ts index f1dfff6b6..462aba1d2 100644 --- a/apps/fluent-tester/src/testPages.ts +++ b/apps/fluent-tester/src/testPages.ts @@ -39,8 +39,6 @@ import { StrokeWidthTest } from './TestComponents/StrokeWidth'; import { SvgTest, RNSVGIconsTest } from './TestComponents/Svg'; import { SwitchTest } from './TestComponents/Switch'; import { TabListTest } from './TestComponents/TabList/TabListTest'; -import { TabsLegacyTest } from './TestComponents/TabsLegacy'; -import { TabsV1Test } from './TestComponents/TabsV1'; import { TextLegacyTest } from './TestComponents/TextLegacy'; import { TextV1Test } from './TestComponents/TextV1'; import { ThemeTest } from './TestComponents/Theme'; @@ -302,18 +300,6 @@ export const tests: TestDescription[] = [ testPageButton: Constants.HOMEPAGE_TABLIST_BUTTON, platforms: ['macos', 'win32', 'windows'], }, - { - name: 'Tabs Legacy', - component: TabsLegacyTest, - testPageButton: Constants.HOMEPAGE_TABS_BUTTON, - platforms: ['macos', 'win32', 'windows'], - }, - { - name: 'Tabs V1', - component: TabsV1Test, - testPageButton: Constants.HOMEPAGE_TABSV1_BUTTON, - platforms: ['macos', 'win32', 'windows'], - }, { name: 'Text Legacy', component: TextLegacyTest, diff --git a/change/@fluentui-react-native-674abd23-3b81-4c45-a9df-75b233f16537.json b/change/@fluentui-react-native-674abd23-3b81-4c45-a9df-75b233f16537.json new file mode 100644 index 000000000..7a84820e0 --- /dev/null +++ b/change/@fluentui-react-native-674abd23-3b81-4c45-a9df-75b233f16537.json @@ -0,0 +1,7 @@ +{ + "type": "minor", + "comment": "Remove Tabs and Experimental Tabs packages", + "packageName": "@fluentui/react-native", + "email": "winlarry@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-dependency-profiles-a9c781df-82fe-407e-a85c-7e43c371b8b2.json b/change/@fluentui-react-native-dependency-profiles-a9c781df-82fe-407e-a85c-7e43c371b8b2.json new file mode 100644 index 000000000..704fc35e3 --- /dev/null +++ b/change/@fluentui-react-native-dependency-profiles-a9c781df-82fe-407e-a85c-7e43c371b8b2.json @@ -0,0 +1,7 @@ +{ + "type": "minor", + "comment": "Remove Tabs and Experimental Tabs packages", + "packageName": "@fluentui-react-native/dependency-profiles", + "email": "winlarry@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-e2e-testing-a7825ea4-28de-4b09-9be0-14221e96e93b.json b/change/@fluentui-react-native-e2e-testing-a7825ea4-28de-4b09-9be0-14221e96e93b.json new file mode 100644 index 000000000..b4cf300c5 --- /dev/null +++ b/change/@fluentui-react-native-e2e-testing-a7825ea4-28de-4b09-9be0-14221e96e93b.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Remove Tabs and Experimental Tabs E2E tests", + "packageName": "@fluentui-react-native/e2e-testing", + "email": "winlarry@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-native-tester-5f731c89-8ecb-4a17-b437-1845fcd0a65e.json b/change/@fluentui-react-native-tester-5f731c89-8ecb-4a17-b437-1845fcd0a65e.json new file mode 100644 index 000000000..344c59b79 --- /dev/null +++ b/change/@fluentui-react-native-tester-5f731c89-8ecb-4a17-b437-1845fcd0a65e.json @@ -0,0 +1,7 @@ +{ + "type": "minor", + "comment": "Remove Tabs and Experimental Tabs test pages", + "packageName": "@fluentui-react-native/tester", + "email": "winlarry@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/docs/pages/Theming/Tokens/UsageWithComponentTokens.md b/docs/pages/Theming/Tokens/UsageWithComponentTokens.md index df88472df..8a6a82b17 100644 --- a/docs/pages/Theming/Tokens/UsageWithComponentTokens.md +++ b/docs/pages/Theming/Tokens/UsageWithComponentTokens.md @@ -18,7 +18,7 @@ export const tokens: TokenSettings = (t: Theme) => color: t.colors.neutralStrokeAccessible, } as TTokens); -export const Foo = compose({ +export const Foo = compose({ displayName: fooName, tokens: tokens, slots: { @@ -50,7 +50,7 @@ export const Foo = compose({ export default Foo; ``` -Our [Tab control](../../../../packages/experimental/Tabs/src/TabsItemTokens.ts) uses this system to integrate alias tokens. +Our [Radio control](../../../../packages/components/RadioGroup/src/Radio/RadioTokens.ts) uses this system to integrate alias tokens. ## Using useTokens hook diff --git a/packages/components/Tabs/.eslintrc.js b/packages/components/Tabs/.eslintrc.js deleted file mode 100644 index 16d1d51ba..000000000 --- a/packages/components/Tabs/.eslintrc.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - extends: ['@fluentui-react-native/eslint-config-rules'], -}; diff --git a/packages/components/Tabs/CHANGELOG.json b/packages/components/Tabs/CHANGELOG.json deleted file mode 100644 index 509392e1d..000000000 --- a/packages/components/Tabs/CHANGELOG.json +++ /dev/null @@ -1,7241 +0,0 @@ -{ - "name": "@fluentui-react-native/tabs", - "entries": [ - { - "date": "Thu, 04 Jan 2024 21:06:26 GMT", - "version": "0.14.7", - "tag": "@fluentui-react-native/tabs_v0.14.7", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.16.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.7", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.25.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.22.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.22.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.19", - "commit": "not available" - } - ] - } - }, - { - "date": "Thu, 04 Jan 2024 01:35:42 GMT", - "version": "0.14.6", - "tag": "@fluentui-react-native/tabs_v0.14.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.16.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.25.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.22.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.22.4", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.18", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 03 Jan 2024 00:15:20 GMT", - "version": "0.14.5", - "tag": "@fluentui-react-native/tabs_v0.14.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.16.4", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.25.4", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.22.4", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.22.3", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.17", - "commit": "not available" - } - ] - } - }, - { - "date": "Thu, 21 Dec 2023 01:31:00 GMT", - "version": "0.14.4", - "tag": "@fluentui-react-native/tabs_v0.14.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.16.3", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.4", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.25.3", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.22.3", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.22.2", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.16", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 20 Dec 2023 20:20:38 GMT", - "version": "0.14.3", - "tag": "@fluentui-react-native/tabs_v0.14.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.16.2", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.3", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.25.2", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.22.2", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.15", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 20 Dec 2023 00:05:24 GMT", - "version": "0.14.2", - "tag": "@fluentui-react-native/tabs_v0.14.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.16.1", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.2", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.25.1", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.22.1", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.22.1", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.14", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 06 Dec 2023 22:21:57 GMT", - "version": "0.14.1", - "tag": "@fluentui-react-native/tabs_v0.14.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.1", - "commit": "not available" - } - ] - } - }, - { - "date": "Thu, 09 Nov 2023 02:39:10 GMT", - "version": "0.14.0", - "tag": "@fluentui-react-native/tabs_v0.14.0", - "comments": { - "minor": [ - { - "author": "30809111+acoates-ms@users.noreply.github.com", - "package": "@fluentui-react-native/tabs", - "commit": "4a6a9cd63396c6e8fc6ffbfec7137652928e40ef", - "comment": "Update to react-native 0.72" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.12.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.16.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.25.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.22.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.22.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-composable to v0.12.3", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.13", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-settings to v0.14.0", - "commit": "not available" - } - ] - } - }, - { - "date": "Tue, 07 Nov 2023 20:20:35 GMT", - "version": "0.13.19", - "tag": "@fluentui-react-native/tabs_v0.13.19", - "comments": { - "patch": [ - { - "author": "safreibe@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "252935c886c6ffba5fd30593e63cbce4f61f7a90", - "comment": "Manually bump packages stuck in the pipeline" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.15.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.16", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.12", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.14", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.21.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.12", - "commit": "not available" - } - ] - } - }, - { - "date": "Tue, 31 Oct 2023 19:11:10 GMT", - "version": "0.13.17", - "tag": "@fluentui-react-native/tabs_v0.13.17", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.13.3", - "commit": "not available" - } - ] - } - }, - { - "date": "Mon, 30 Oct 2023 21:26:06 GMT", - "version": "0.13.16", - "tag": "@fluentui-react-native/tabs_v0.13.16", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.13.2", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.14", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.10", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.12", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.21.4", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.10", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 25 Oct 2023 20:50:34 GMT", - "version": "0.13.15", - "tag": "@fluentui-react-native/tabs_v0.13.15", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.13.1", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.13", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.9", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.11", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.9", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 25 Oct 2023 17:21:07 GMT", - "version": "0.13.14", - "tag": "@fluentui-react-native/tabs_v0.13.14", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.12", - "commit": "not available" - } - ] - } - }, - { - "date": "Tue, 17 Oct 2023 19:21:23 GMT", - "version": "0.13.13", - "tag": "@fluentui-react-native/tabs_v0.13.13", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.13.0", - "commit": "not available" - } - ] - } - }, - { - "date": "Mon, 25 Sep 2023 12:49:34 GMT", - "version": "0.13.12", - "tag": "@fluentui-react-native/tabs_v0.13.12", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.11", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.10", - "commit": "not available" - } - ] - } - }, - { - "date": "Tue, 29 Aug 2023 22:56:32 GMT", - "version": "0.13.11", - "tag": "@fluentui-react-native/tabs_v0.13.11", - "comments": { - "patch": [ - { - "author": "krsiler@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "b2c77a0f16222a3d7e3a333730e34a3b5991d3ca", - "comment": "update snapshots" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.11.3", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.10", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.10", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.8", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.9", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.21.3", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.8", - "commit": "not available" - } - ] - } - }, - { - "date": "Tue, 29 Aug 2023 21:59:04 GMT", - "version": "0.13.10", - "tag": "@fluentui-react-native/tabs_v0.13.10", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.9", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 23 Aug 2023 18:55:24 GMT", - "version": "0.13.9", - "tag": "@fluentui-react-native/tabs_v0.13.9", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.8", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.8", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.7", - "commit": "not available" - } - ] - } - }, - { - "date": "Mon, 14 Aug 2023 20:14:41 GMT", - "version": "0.13.8", - "tag": "@fluentui-react-native/tabs_v0.13.8", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.11.2", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.9", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.7", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.7", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.7", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.21.2", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.6", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 09 Aug 2023 22:02:15 GMT", - "version": "0.13.7", - "tag": "@fluentui-react-native/tabs_v0.13.7", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.8", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-composable to v0.12.2", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-settings to v0.13.2", - "commit": "not available" - } - ] - } - }, - { - "date": "Mon, 31 Jul 2023 19:29:59 GMT", - "version": "0.13.6", - "tag": "@fluentui-react-native/tabs_v0.13.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.7", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.4", - "commit": "not available" - } - ] - } - }, - { - "date": "Tue, 18 Jul 2023 19:09:32 GMT", - "tag": "@fluentui-react-native/tabs_v0.13.5", - "version": "0.13.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.6", - "commit": "225d20784228abaa4b80bd12b57d2c6972d9abd4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.4", - "commit": "225d20784228abaa4b80bd12b57d2c6972d9abd4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.4", - "commit": "225d20784228abaa4b80bd12b57d2c6972d9abd4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.4", - "commit": "225d20784228abaa4b80bd12b57d2c6972d9abd4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.3", - "commit": "225d20784228abaa4b80bd12b57d2c6972d9abd4" - } - ] - } - }, - { - "date": "Mon, 10 Jul 2023 17:25:04 GMT", - "tag": "@fluentui-react-native/tabs_v0.13.4", - "version": "0.13.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.5", - "commit": "d1fc0c774448d103085b5bb5ab0103678a62cbbc" - } - ] - } - }, - { - "date": "Fri, 07 Jul 2023 20:45:12 GMT", - "tag": "@fluentui-react-native/tabs_v0.13.3", - "version": "0.13.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.11.1", - "commit": "d2f6f8d12972593821ec0e2764953efd6dafb1a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.4", - "commit": "d2f6f8d12972593821ec0e2764953efd6dafb1a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.3", - "commit": "d2f6f8d12972593821ec0e2764953efd6dafb1a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.3", - "commit": "d2f6f8d12972593821ec0e2764953efd6dafb1a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.3", - "commit": "d2f6f8d12972593821ec0e2764953efd6dafb1a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.21.1", - "commit": "d2f6f8d12972593821ec0e2764953efd6dafb1a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.2", - "commit": "d2f6f8d12972593821ec0e2764953efd6dafb1a2" - } - ] - } - }, - { - "date": "Mon, 19 Jun 2023 18:37:35 GMT", - "tag": "@fluentui-react-native/tabs_v0.13.2", - "version": "0.13.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.3", - "commit": "8fb16fe41492ebb2f9b262a038928c9228c20ac2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.2", - "commit": "8fb16fe41492ebb2f9b262a038928c9228c20ac2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.2", - "commit": "8fb16fe41492ebb2f9b262a038928c9228c20ac2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.2", - "commit": "8fb16fe41492ebb2f9b262a038928c9228c20ac2" - } - ] - } - }, - { - "date": "Sat, 17 Jun 2023 00:00:18 GMT", - "tag": "@fluentui-react-native/tabs_v0.13.1", - "version": "0.13.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.2", - "commit": "30d5533f69785ce98f3f6fe79059ad18ee7136cc" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.1", - "commit": "30d5533f69785ce98f3f6fe79059ad18ee7136cc" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.1", - "commit": "30d5533f69785ce98f3f6fe79059ad18ee7136cc" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.1", - "commit": "30d5533f69785ce98f3f6fe79059ad18ee7136cc" - } - ] - } - }, - { - "date": "Mon, 12 Jun 2023 17:46:44 GMT", - "tag": "@fluentui-react-native/tabs_v0.13.0", - "version": "0.13.0", - "comments": { - "minor": [ - { - "author": "ayushsinghs@yahoo.in", - "package": "@fluentui-react-native/tabs", - "commit": "60d243e2af9f727a0265bf6a0aed49e687305f77", - "comment": "Add missing constant" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.1", - "commit": "6530042f4f24cbb296337a8bcf5fb32a09cc6378" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.0", - "commit": "6530042f4f24cbb296337a8bcf5fb32a09cc6378" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.0", - "commit": "6530042f4f24cbb296337a8bcf5fb32a09cc6378" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.0", - "commit": "6530042f4f24cbb296337a8bcf5fb32a09cc6378" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-composable to v0.12.1", - "commit": "6530042f4f24cbb296337a8bcf5fb32a09cc6378" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.1", - "commit": "6530042f4f24cbb296337a8bcf5fb32a09cc6378" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-settings to v0.13.1", - "commit": "6530042f4f24cbb296337a8bcf5fb32a09cc6378" - } - ] - } - }, - { - "date": "Fri, 09 Jun 2023 15:29:07 GMT", - "tag": "@fluentui-react-native/tabs_v0.12.1", - "version": "0.12.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.18.1", - "commit": "1791790bbd41797f0244fef65d4e5e6b095808e9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.20.1", - "commit": "1791790bbd41797f0244fef65d4e5e6b095808e9" - } - ] - } - }, - { - "date": "Mon, 05 Jun 2023 19:26:24 GMT", - "tag": "@fluentui-react-native/tabs_v0.12.0", - "version": "0.12.0", - "comments": { - "minor": [ - { - "author": "sanajmi@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "8c0f9d27e34913da82c00299c12c399877257325", - "comment": "Upgrade to React Native 0.71" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.11.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.18.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.23.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.20.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.21.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-composable to v0.12.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.14.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-settings to v0.13.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - } - ] - } - }, - { - "date": "Tue, 30 May 2023 20:34:15 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.47", - "version": "0.11.47", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.43", - "commit": "09fa3b65fd9d29f4dc4769e1e479fb5a82812979" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.27", - "commit": "09fa3b65fd9d29f4dc4769e1e479fb5a82812979" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.31", - "commit": "09fa3b65fd9d29f4dc4769e1e479fb5a82812979" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.33", - "commit": "09fa3b65fd9d29f4dc4769e1e479fb5a82812979" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.16", - "commit": "09fa3b65fd9d29f4dc4769e1e479fb5a82812979" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.13.10", - "commit": "09fa3b65fd9d29f4dc4769e1e479fb5a82812979" - } - ] - } - }, - { - "date": "Wed, 03 May 2023 07:08:51 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.46", - "version": "0.11.46", - "comments": { - "patch": [ - { - "author": "78454019+lyzhan7@users.noreply.github.com", - "package": "@fluentui-react-native/tabs", - "commit": "52a53e376865d500b73f26ea9935e13036b04b1a", - "comment": "Update design-tokens package to 0.47.0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.42", - "commit": "52a53e376865d500b73f26ea9935e13036b04b1a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.26", - "commit": "52a53e376865d500b73f26ea9935e13036b04b1a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.30", - "commit": "52a53e376865d500b73f26ea9935e13036b04b1a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.32", - "commit": "52a53e376865d500b73f26ea9935e13036b04b1a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.15", - "commit": "52a53e376865d500b73f26ea9935e13036b04b1a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.13.9", - "commit": "52a53e376865d500b73f26ea9935e13036b04b1a" - } - ] - } - }, - { - "date": "Mon, 10 Apr 2023 19:48:24 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.45", - "version": "0.11.45", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.41", - "commit": "fd67dc8a7f2d938086f0b5d3eebd13b12a8d0f7c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.25", - "commit": "fd67dc8a7f2d938086f0b5d3eebd13b12a8d0f7c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.29", - "commit": "fd67dc8a7f2d938086f0b5d3eebd13b12a8d0f7c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.31", - "commit": "fd67dc8a7f2d938086f0b5d3eebd13b12a8d0f7c" - } - ] - } - }, - { - "date": "Thu, 23 Mar 2023 20:49:23 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.44", - "version": "0.11.44", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.40", - "commit": "58c71da6843a333d3b6faca82a851916205a4fd0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.24", - "commit": "58c71da6843a333d3b6faca82a851916205a4fd0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.28", - "commit": "58c71da6843a333d3b6faca82a851916205a4fd0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.30", - "commit": "58c71da6843a333d3b6faca82a851916205a4fd0" - } - ] - } - }, - { - "date": "Tue, 21 Mar 2023 21:53:45 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.43", - "version": "0.11.43", - "comments": { - "patch": [ - { - "author": "krsiler@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6", - "comment": "Trigger manual bump (no changes)" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.39", - "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.23", - "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.27", - "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.29", - "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.14", - "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.13.8", - "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6" - } - ] - } - }, - { - "date": "Sat, 18 Mar 2023 17:22:31 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.42", - "version": "0.11.42", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.38", - "commit": "601309349ca2bc18780a3fb71c59337f7c26f9bf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.22", - "commit": "601309349ca2bc18780a3fb71c59337f7c26f9bf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.26", - "commit": "601309349ca2bc18780a3fb71c59337f7c26f9bf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.28", - "commit": "601309349ca2bc18780a3fb71c59337f7c26f9bf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.13", - "commit": "601309349ca2bc18780a3fb71c59337f7c26f9bf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.13.7", - "commit": "601309349ca2bc18780a3fb71c59337f7c26f9bf" - } - ] - } - }, - { - "date": "Fri, 17 Mar 2023 14:13:25 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.41", - "version": "0.11.41", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.21", - "commit": "7d5d72719836693db47a35fdbd4c03f92fe2c8ca" - } - ] - } - }, - { - "date": "Tue, 14 Mar 2023 20:50:45 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.40", - "version": "0.11.40", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.37", - "commit": "b2d39b11dbaa12600bd96a9d54e0ebd013d9597f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.20", - "commit": "b2d39b11dbaa12600bd96a9d54e0ebd013d9597f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.25", - "commit": "b2d39b11dbaa12600bd96a9d54e0ebd013d9597f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.27", - "commit": "b2d39b11dbaa12600bd96a9d54e0ebd013d9597f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.12", - "commit": "b2d39b11dbaa12600bd96a9d54e0ebd013d9597f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.13.6", - "commit": "b2d39b11dbaa12600bd96a9d54e0ebd013d9597f" - } - ] - } - }, - { - "date": "Tue, 07 Mar 2023 20:54:15 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.39", - "version": "0.11.39", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.36", - "commit": "6c33cfe45061ab74b7eee11b78341c74f88f9473" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.19", - "commit": "6c33cfe45061ab74b7eee11b78341c74f88f9473" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.24", - "commit": "6c33cfe45061ab74b7eee11b78341c74f88f9473" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.26", - "commit": "6c33cfe45061ab74b7eee11b78341c74f88f9473" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.13.5", - "commit": "6c33cfe45061ab74b7eee11b78341c74f88f9473" - } - ] - } - }, - { - "date": "Sat, 04 Mar 2023 00:02:26 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.38", - "version": "0.11.38", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.35", - "commit": "888d0ceb90a25d267654b74902dee81f5b4c8052" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.18", - "commit": "888d0ceb90a25d267654b74902dee81f5b4c8052" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.23", - "commit": "888d0ceb90a25d267654b74902dee81f5b4c8052" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.25", - "commit": "888d0ceb90a25d267654b74902dee81f5b4c8052" - } - ] - } - }, - { - "date": "Fri, 03 Mar 2023 06:47:26 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.37", - "version": "0.11.37", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.34", - "commit": "4659b74650377d2f746a81a321346a481816a5af" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.17", - "commit": "4659b74650377d2f746a81a321346a481816a5af" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.22", - "commit": "4659b74650377d2f746a81a321346a481816a5af" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.24", - "commit": "4659b74650377d2f746a81a321346a481816a5af" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.11", - "commit": "4659b74650377d2f746a81a321346a481816a5af" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.13.4", - "commit": "4659b74650377d2f746a81a321346a481816a5af" - } - ] - } - }, - { - "date": "Thu, 02 Mar 2023 19:11:57 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.36", - "version": "0.11.36", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.16", - "commit": "da29d8e517ff5aa9e203506bffe7366ec3d967b6" - } - ] - } - }, - { - "date": "Tue, 28 Feb 2023 21:34:10 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.35", - "version": "0.11.35", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.33", - "commit": "175d5c71de6bd6cd59fab8bffee463ff1e595b2f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.15", - "commit": "175d5c71de6bd6cd59fab8bffee463ff1e595b2f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.21", - "commit": "175d5c71de6bd6cd59fab8bffee463ff1e595b2f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.23", - "commit": "175d5c71de6bd6cd59fab8bffee463ff1e595b2f" - } - ] - } - }, - { - "date": "Fri, 24 Feb 2023 20:39:59 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.34", - "version": "0.11.34", - "comments": { - "patch": [ - { - "author": "78454019+lyzhan7@users.noreply.github.com", - "package": "@fluentui-react-native/tabs", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2", - "comment": "Order imports" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.10.2", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.32", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.14", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.20", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.22", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.10", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-composable to v0.11.3", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.13.3", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-settings to v0.12.3", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - } - ] - } - }, - { - "date": "Fri, 24 Feb 2023 02:22:40 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.33", - "version": "0.11.33", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.31", - "commit": "a266ece54bfecbd7edd912a26f46dae655bf48ef" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.13", - "commit": "a266ece54bfecbd7edd912a26f46dae655bf48ef" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.19", - "commit": "a266ece54bfecbd7edd912a26f46dae655bf48ef" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.21", - "commit": "a266ece54bfecbd7edd912a26f46dae655bf48ef" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.9", - "commit": "a266ece54bfecbd7edd912a26f46dae655bf48ef" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.13.2", - "commit": "a266ece54bfecbd7edd912a26f46dae655bf48ef" - } - ] - } - }, - { - "date": "Sat, 11 Feb 2023 01:32:30 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.32", - "version": "0.11.32", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.30", - "commit": "271dc7378669e31e355a4ca8f131a96872d8049a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.12", - "commit": "271dc7378669e31e355a4ca8f131a96872d8049a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.18", - "commit": "271dc7378669e31e355a4ca8f131a96872d8049a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.20", - "commit": "271dc7378669e31e355a4ca8f131a96872d8049a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.8", - "commit": "271dc7378669e31e355a4ca8f131a96872d8049a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.13.1", - "commit": "271dc7378669e31e355a4ca8f131a96872d8049a" - } - ] - } - }, - { - "date": "Fri, 03 Feb 2023 01:49:36 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.31", - "version": "0.11.31", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.29", - "commit": "83735cdac7bd038933e31191400008b3187e3eb1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.11", - "commit": "83735cdac7bd038933e31191400008b3187e3eb1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.17", - "commit": "83735cdac7bd038933e31191400008b3187e3eb1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.19", - "commit": "83735cdac7bd038933e31191400008b3187e3eb1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.13.0", - "commit": "83735cdac7bd038933e31191400008b3187e3eb1" - } - ] - } - }, - { - "date": "Thu, 02 Feb 2023 01:29:39 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.30", - "version": "0.11.30", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.28", - "commit": "8babef935750d57271f466a1c446e6531ee1b0a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.10", - "commit": "8babef935750d57271f466a1c446e6531ee1b0a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.16", - "commit": "8babef935750d57271f466a1c446e6531ee1b0a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.18", - "commit": "8babef935750d57271f466a1c446e6531ee1b0a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.39", - "commit": "8babef935750d57271f466a1c446e6531ee1b0a5" - } - ] - } - }, - { - "date": "Wed, 01 Feb 2023 22:33:16 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.29", - "version": "0.11.29", - "comments": { - "patch": [ - { - "author": "30809111+acoates-ms@users.noreply.github.com", - "package": "@fluentui-react-native/tabs", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910", - "comment": "Enable @typescript-eslint/consistent-type-imports" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.10.1", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.27", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.9", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.15", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.17", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.7", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-composable to v0.11.2", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.38", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-settings to v0.12.2", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - } - ] - } - }, - { - "date": "Mon, 30 Jan 2023 15:17:32 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.28", - "version": "0.11.28", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@fluentui-react-native/tabs", - "commit": "4de4c2b37c835ebd9af015ff767f9dd68452f786", - "comment": "Migrate to align-deps" - } - ] - } - }, - { - "date": "Mon, 30 Jan 2023 07:12:38 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.28", - "version": "0.11.28", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.26", - "commit": "f6f403b2efe86a229448a618b043601ceefd9a5f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.8", - "commit": "f6f403b2efe86a229448a618b043601ceefd9a5f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.14", - "commit": "f6f403b2efe86a229448a618b043601ceefd9a5f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.16", - "commit": "f6f403b2efe86a229448a618b043601ceefd9a5f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.6", - "commit": "f6f403b2efe86a229448a618b043601ceefd9a5f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.37", - "commit": "f6f403b2efe86a229448a618b043601ceefd9a5f" - } - ] - } - }, - { - "date": "Wed, 25 Jan 2023 21:31:18 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.27", - "version": "0.11.27", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.25", - "commit": "391f3d691e286300dfad37cad539bed54d4436b4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.7", - "commit": "391f3d691e286300dfad37cad539bed54d4436b4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.13", - "commit": "391f3d691e286300dfad37cad539bed54d4436b4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.15", - "commit": "391f3d691e286300dfad37cad539bed54d4436b4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.5", - "commit": "391f3d691e286300dfad37cad539bed54d4436b4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.36", - "commit": "391f3d691e286300dfad37cad539bed54d4436b4" - } - ] - } - }, - { - "date": "Fri, 20 Jan 2023 21:49:21 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.26", - "version": "0.11.26", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.6", - "commit": "deddda487f4054e6d16f9fca34cedd2b8547da65" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.14", - "commit": "deddda487f4054e6d16f9fca34cedd2b8547da65" - } - ] - } - }, - { - "date": "Fri, 20 Jan 2023 18:06:46 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.25", - "version": "0.11.25", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.24", - "commit": "c1e32c4ac99ccc1dd2b4279b970e9d3b2507b1db" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.5", - "commit": "c1e32c4ac99ccc1dd2b4279b970e9d3b2507b1db" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.12", - "commit": "c1e32c4ac99ccc1dd2b4279b970e9d3b2507b1db" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.13", - "commit": "c1e32c4ac99ccc1dd2b4279b970e9d3b2507b1db" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.35", - "commit": "c1e32c4ac99ccc1dd2b4279b970e9d3b2507b1db" - } - ] - } - }, - { - "date": "Wed, 18 Jan 2023 01:55:11 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.24", - "version": "0.11.24", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.23", - "commit": "f7626f6eb1f6c267c40c60c9aef8b8cd899a046b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.4", - "commit": "f7626f6eb1f6c267c40c60c9aef8b8cd899a046b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.11", - "commit": "f7626f6eb1f6c267c40c60c9aef8b8cd899a046b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.12", - "commit": "f7626f6eb1f6c267c40c60c9aef8b8cd899a046b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.4", - "commit": "f7626f6eb1f6c267c40c60c9aef8b8cd899a046b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.34", - "commit": "f7626f6eb1f6c267c40c60c9aef8b8cd899a046b" - } - ] - } - }, - { - "date": "Tue, 10 Jan 2023 20:17:18 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.23", - "version": "0.11.23", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.22", - "commit": "bd23a4ac5dd35729323268e384aeb1e970fce4ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.3", - "commit": "bd23a4ac5dd35729323268e384aeb1e970fce4ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.10", - "commit": "bd23a4ac5dd35729323268e384aeb1e970fce4ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.11", - "commit": "bd23a4ac5dd35729323268e384aeb1e970fce4ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.3", - "commit": "bd23a4ac5dd35729323268e384aeb1e970fce4ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.33", - "commit": "bd23a4ac5dd35729323268e384aeb1e970fce4ac" - } - ] - } - }, - { - "date": "Mon, 09 Jan 2023 22:25:00 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.22", - "version": "0.11.22", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.21", - "commit": "17bf1b56555ea10ad474c765d447718a1742b982" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.2", - "commit": "17bf1b56555ea10ad474c765d447718a1742b982" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.9", - "commit": "17bf1b56555ea10ad474c765d447718a1742b982" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.10", - "commit": "17bf1b56555ea10ad474c765d447718a1742b982" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.32", - "commit": "17bf1b56555ea10ad474c765d447718a1742b982" - } - ] - } - }, - { - "date": "Fri, 06 Jan 2023 12:26:31 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.21", - "version": "0.11.21", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.20", - "commit": "984ee826e94da2e7dabf162d02007727adba53ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.1", - "commit": "984ee826e94da2e7dabf162d02007727adba53ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.8", - "commit": "984ee826e94da2e7dabf162d02007727adba53ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.9", - "commit": "984ee826e94da2e7dabf162d02007727adba53ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.31", - "commit": "984ee826e94da2e7dabf162d02007727adba53ac" - } - ] - } - }, - { - "date": "Thu, 05 Jan 2023 11:24:52 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.20", - "version": "0.11.20", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.0", - "commit": "371e8e828737cabe6e7819359b6df2390c726d98" - } - ] - } - }, - { - "date": "Wed, 04 Jan 2023 16:55:53 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.19", - "version": "0.11.19", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.19", - "commit": "60c0e928993c257e84e6078343f34495b6738301" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.11", - "commit": "60c0e928993c257e84e6078343f34495b6738301" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.7", - "commit": "60c0e928993c257e84e6078343f34495b6738301" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.8", - "commit": "60c0e928993c257e84e6078343f34495b6738301" - } - ] - } - }, - { - "date": "Tue, 03 Jan 2023 23:38:40 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.18", - "version": "0.11.18", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.10", - "commit": "4ba3eb0acc4abbce94655bfcc8037f1656c92289" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.7", - "commit": "4ba3eb0acc4abbce94655bfcc8037f1656c92289" - } - ] - } - }, - { - "date": "Fri, 30 Dec 2022 16:09:27 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.17", - "version": "0.11.17", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.18", - "commit": "8aefb1921c84f220ddf5c5def669c5ab9a036219" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.9", - "commit": "8aefb1921c84f220ddf5c5def669c5ab9a036219" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.6", - "commit": "8aefb1921c84f220ddf5c5def669c5ab9a036219" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.6", - "commit": "8aefb1921c84f220ddf5c5def669c5ab9a036219" - } - ] - } - }, - { - "date": "Fri, 30 Dec 2022 03:49:05 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.16", - "version": "0.11.16", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.17", - "commit": "74a8dcd019534a36c7ee5b1e00b46904a42a37cb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.8", - "commit": "74a8dcd019534a36c7ee5b1e00b46904a42a37cb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.5", - "commit": "74a8dcd019534a36c7ee5b1e00b46904a42a37cb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.5", - "commit": "74a8dcd019534a36c7ee5b1e00b46904a42a37cb" - } - ] - } - }, - { - "date": "Thu, 29 Dec 2022 08:02:57 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.15", - "version": "0.11.15", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.7", - "commit": "b388c484e4b9e6c80cbbebb3be3b1a03ca919cd0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.4", - "commit": "b388c484e4b9e6c80cbbebb3be3b1a03ca919cd0" - } - ] - } - }, - { - "date": "Thu, 29 Dec 2022 03:47:47 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.14", - "version": "0.11.14", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.16", - "commit": "6d8afaea8495b16c2acd8aa4d1de62036110968c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.6", - "commit": "6d8afaea8495b16c2acd8aa4d1de62036110968c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.4", - "commit": "6d8afaea8495b16c2acd8aa4d1de62036110968c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.3", - "commit": "6d8afaea8495b16c2acd8aa4d1de62036110968c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.2", - "commit": "6d8afaea8495b16c2acd8aa4d1de62036110968c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.30", - "commit": "6d8afaea8495b16c2acd8aa4d1de62036110968c" - } - ] - } - }, - { - "date": "Tue, 27 Dec 2022 22:21:15 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.13", - "version": "0.11.13", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.15", - "commit": "9877f2f456807b697afd5aefce756a493a607746" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.5", - "commit": "9877f2f456807b697afd5aefce756a493a607746" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.3", - "commit": "9877f2f456807b697afd5aefce756a493a607746" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.2", - "commit": "9877f2f456807b697afd5aefce756a493a607746" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.1", - "commit": "9877f2f456807b697afd5aefce756a493a607746" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.29", - "commit": "9877f2f456807b697afd5aefce756a493a607746" - } - ] - } - }, - { - "date": "Tue, 27 Dec 2022 10:18:14 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.12", - "version": "0.11.12", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.14", - "commit": "19c7982576e025a7601af0fb727ae6850b8d4aea" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.4", - "commit": "19c7982576e025a7601af0fb727ae6850b8d4aea" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.2", - "commit": "19c7982576e025a7601af0fb727ae6850b8d4aea" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.1", - "commit": "19c7982576e025a7601af0fb727ae6850b8d4aea" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.28", - "commit": "19c7982576e025a7601af0fb727ae6850b8d4aea" - } - ] - } - }, - { - "date": "Thu, 15 Dec 2022 14:50:50 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.11", - "version": "0.11.11", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.13", - "commit": "ac1a77d965fb36b5ecdcfed3c7beaff4c93b1670" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.3", - "commit": "ac1a77d965fb36b5ecdcfed3c7beaff4c93b1670" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.1", - "commit": "ac1a77d965fb36b5ecdcfed3c7beaff4c93b1670" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.0", - "commit": "ac1a77d965fb36b5ecdcfed3c7beaff4c93b1670" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.0", - "commit": "ac1a77d965fb36b5ecdcfed3c7beaff4c93b1670" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.27", - "commit": "ac1a77d965fb36b5ecdcfed3c7beaff4c93b1670" - } - ] - } - }, - { - "date": "Fri, 09 Dec 2022 05:23:38 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.10", - "version": "0.11.10", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.12", - "commit": "837811eb630178f3f6b5ec201f89b30a30afb3f0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.2", - "commit": "837811eb630178f3f6b5ec201f89b30a30afb3f0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.0", - "commit": "837811eb630178f3f6b5ec201f89b30a30afb3f0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.18.2", - "commit": "837811eb630178f3f6b5ec201f89b30a30afb3f0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.19.1", - "commit": "837811eb630178f3f6b5ec201f89b30a30afb3f0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.26", - "commit": "837811eb630178f3f6b5ec201f89b30a30afb3f0" - } - ] - } - }, - { - "date": "Tue, 06 Dec 2022 16:59:54 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.9", - "version": "0.11.9", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.11", - "commit": "194db935512b14a024c78b97466f6bf5cd94074b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.1", - "commit": "194db935512b14a024c78b97466f6bf5cd94074b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.21.5", - "commit": "194db935512b14a024c78b97466f6bf5cd94074b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.18.1", - "commit": "194db935512b14a024c78b97466f6bf5cd94074b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.25", - "commit": "194db935512b14a024c78b97466f6bf5cd94074b" - } - ] - } - }, - { - "date": "Tue, 06 Dec 2022 02:02:55 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.8", - "version": "0.11.8", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.0", - "commit": "d64b7100cfa70fd9763d2c593ee606bc899801ee" - } - ] - } - }, - { - "date": "Tue, 06 Dec 2022 00:46:41 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.7", - "version": "0.11.7", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.10", - "commit": "8e94deaeff8869396c506ca186a614eb0acd9f93" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.15.5", - "commit": "8e94deaeff8869396c506ca186a614eb0acd9f93" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.21.4", - "commit": "8e94deaeff8869396c506ca186a614eb0acd9f93" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.18.0", - "commit": "8e94deaeff8869396c506ca186a614eb0acd9f93" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.19.0", - "commit": "8e94deaeff8869396c506ca186a614eb0acd9f93" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.24", - "commit": "8e94deaeff8869396c506ca186a614eb0acd9f93" - } - ] - } - }, - { - "date": "Thu, 01 Dec 2022 03:12:20 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.6", - "version": "0.11.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.9", - "commit": "9faf7ab61974a5d5f7dd0c5aa84a123a68d786f8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.15.4", - "commit": "9faf7ab61974a5d5f7dd0c5aa84a123a68d786f8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.21.3", - "commit": "9faf7ab61974a5d5f7dd0c5aa84a123a68d786f8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.17.1", - "commit": "9faf7ab61974a5d5f7dd0c5aa84a123a68d786f8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.18.1", - "commit": "9faf7ab61974a5d5f7dd0c5aa84a123a68d786f8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.23", - "commit": "9faf7ab61974a5d5f7dd0c5aa84a123a68d786f8" - } - ] - } - }, - { - "date": "Wed, 30 Nov 2022 21:33:19 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.5", - "version": "0.11.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.8", - "commit": "ed6ad65f29fd421eccbfc22d3ecb5725b5360f83" - } - ] - } - }, - { - "date": "Tue, 29 Nov 2022 20:39:50 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.4", - "version": "0.11.4", - "comments": { - "patch": [ - { - "author": "ruaraki@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "2f6ea0cc82dd0e1f24d68dba83d69555772f01af", - "comment": "Update config" - } - ] - } - }, - { - "date": "Mon, 28 Nov 2022 19:49:35 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.3", - "version": "0.11.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.15.3", - "commit": "1b0f4b66f9ed9c9be49ad296d1b0d2f57c56bbc4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.17.0", - "commit": "1b0f4b66f9ed9c9be49ad296d1b0d2f57c56bbc4" - } - ] - } - }, - { - "date": "Mon, 28 Nov 2022 11:51:06 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.2", - "version": "0.11.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.7", - "commit": "890ff26064088ee92d44bb8730b8629143533451" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.15.2", - "commit": "890ff26064088ee92d44bb8730b8629143533451" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.21.2", - "commit": "890ff26064088ee92d44bb8730b8629143533451" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.16.2", - "commit": "890ff26064088ee92d44bb8730b8629143533451" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.18.0", - "commit": "890ff26064088ee92d44bb8730b8629143533451" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.22", - "commit": "890ff26064088ee92d44bb8730b8629143533451" - } - ] - } - }, - { - "date": "Wed, 16 Nov 2022 08:47:25 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.1", - "version": "0.11.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.6", - "commit": "ac846edd3f16fd427bca196a070653adaf702450" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.15.1", - "commit": "ac846edd3f16fd427bca196a070653adaf702450" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.21.1", - "commit": "ac846edd3f16fd427bca196a070653adaf702450" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.16.1", - "commit": "ac846edd3f16fd427bca196a070653adaf702450" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.21", - "commit": "ac846edd3f16fd427bca196a070653adaf702450" - } - ] - } - }, - { - "date": "Sun, 13 Nov 2022 09:17:06 GMT", - "tag": "@fluentui-react-native/tabs_v0.11.0", - "version": "0.11.0", - "comments": { - "minor": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/tabs", - "commit": "42685ad6d78fdec7de899153a20b40863bad12f3", - "comment": "fix double clicking on inline links" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.5", - "commit": "42685ad6d78fdec7de899153a20b40863bad12f3" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.15.0", - "commit": "42685ad6d78fdec7de899153a20b40863bad12f3" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.21.0", - "commit": "42685ad6d78fdec7de899153a20b40863bad12f3" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.16.0", - "commit": "42685ad6d78fdec7de899153a20b40863bad12f3" - } - ] - } - }, - { - "date": "Fri, 11 Nov 2022 18:06:32 GMT", - "tag": "@fluentui-react-native/tabs_v0.10.4", - "version": "0.10.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.4", - "commit": "b4bc2de7906d898e7a08e4fae106ae66023a49c0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.14.1", - "commit": "b4bc2de7906d898e7a08e4fae106ae66023a49c0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.20.2", - "commit": "b4bc2de7906d898e7a08e4fae106ae66023a49c0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.15", - "commit": "b4bc2de7906d898e7a08e4fae106ae66023a49c0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.20", - "commit": "b4bc2de7906d898e7a08e4fae106ae66023a49c0" - } - ] - } - }, - { - "date": "Fri, 11 Nov 2022 01:02:57 GMT", - "tag": "@fluentui-react-native/tabs_v0.10.3", - "version": "0.10.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.3", - "commit": "634f6d3d043439166ba9fcd904e831ef85c73df0" - } - ] - } - }, - { - "date": "Thu, 10 Nov 2022 02:05:55 GMT", - "tag": "@fluentui-react-native/tabs_v0.10.2", - "version": "0.10.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.2", - "commit": "6bff867afa27546f52943f5b677f81ddef6a0764" - } - ] - } - }, - { - "date": "Wed, 09 Nov 2022 22:52:11 GMT", - "tag": "@fluentui-react-native/tabs_v0.10.1", - "version": "0.10.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.1", - "commit": "cad484c342321e75b0fa8920ebd3ffe4c2509d30" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.20.1", - "commit": "cad484c342321e75b0fa8920ebd3ffe4c2509d30" - } - ] - } - }, - { - "date": "Tue, 08 Nov 2022 22:18:44 GMT", - "tag": "@fluentui-react-native/tabs_v0.10.0", - "version": "0.10.0", - "comments": { - "minor": [ - { - "author": "krsiler@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae", - "comment": "update @office-iss/react-native-win32 to 0.68.8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.10.0", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.0", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.14.0", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.20.0", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.14", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.8", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.19", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae" - } - ] - } - }, - { - "date": "Tue, 08 Nov 2022 19:22:01 GMT", - "tag": "@fluentui-react-native/tabs_v0.9.2", - "version": "0.9.2", - "comments": { - "patch": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/tabs", - "commit": "2a423f2b00d2039d1c67fc60b4d81b942e45a9dc", - "comment": "Snapshots" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.35", - "commit": "2a423f2b00d2039d1c67fc60b4d81b942e45a9dc" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.22", - "commit": "2a423f2b00d2039d1c67fc60b4d81b942e45a9dc" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.7", - "commit": "2a423f2b00d2039d1c67fc60b4d81b942e45a9dc" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.13", - "commit": "2a423f2b00d2039d1c67fc60b4d81b942e45a9dc" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.18", - "commit": "2a423f2b00d2039d1c67fc60b4d81b942e45a9dc" - } - ] - } - }, - { - "date": "Mon, 07 Nov 2022 21:42:58 GMT", - "tag": "@fluentui-react-native/tabs_v0.9.1", - "version": "0.9.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.34", - "commit": "1c37d1859d1ed1009e1efe0e894ada950483a9bf" - } - ] - } - }, - { - "date": "Fri, 04 Nov 2022 14:36:23 GMT", - "tag": "@fluentui-react-native/tabs_v0.9.0", - "version": "0.9.0", - "comments": { - "minor": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/tabs", - "commit": "ddd021042b3e70af9dcc976f1d89e9c912defa65", - "comment": "missingTokens" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.33", - "commit": "ddd021042b3e70af9dcc976f1d89e9c912defa65" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.21", - "commit": "ddd021042b3e70af9dcc976f1d89e9c912defa65" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.6", - "commit": "ddd021042b3e70af9dcc976f1d89e9c912defa65" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.12", - "commit": "ddd021042b3e70af9dcc976f1d89e9c912defa65" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.7", - "commit": "ddd021042b3e70af9dcc976f1d89e9c912defa65" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.17", - "commit": "ddd021042b3e70af9dcc976f1d89e9c912defa65" - } - ] - } - }, - { - "date": "Wed, 02 Nov 2022 00:59:45 GMT", - "tag": "@fluentui-react-native/tabs_v0.8.3", - "version": "0.8.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.32", - "commit": "3eab416738df9b04a2fdf51b43d2c191843b4ae5" - } - ] - } - }, - { - "date": "Tue, 01 Nov 2022 16:30:56 GMT", - "tag": "@fluentui-react-native/tabs_v0.8.2", - "version": "0.8.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.31", - "commit": "f85015b9cf0c2a823556db6023fce48b6cac124c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.5", - "commit": "f85015b9cf0c2a823556db6023fce48b6cac124c" - } - ] - } - }, - { - "date": "Thu, 27 Oct 2022 21:01:42 GMT", - "tag": "@fluentui-react-native/tabs_v0.8.1", - "version": "0.8.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.30", - "commit": "d5c85eced1b43510215dc7aa7f79a3db80616ce7" - } - ] - } - }, - { - "date": "Thu, 27 Oct 2022 11:09:35 GMT", - "tag": "@fluentui-react-native/tabs_v0.8.0", - "version": "0.8.0", - "comments": { - "minor": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/tabs", - "commit": "ceeb4be38b8e0008315f65711c064c5fbd3d8bb8", - "comment": "Snapshot Update" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.29", - "commit": "ceeb4be38b8e0008315f65711c064c5fbd3d8bb8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.20", - "commit": "ceeb4be38b8e0008315f65711c064c5fbd3d8bb8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.4", - "commit": "ceeb4be38b8e0008315f65711c064c5fbd3d8bb8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.11", - "commit": "ceeb4be38b8e0008315f65711c064c5fbd3d8bb8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.6", - "commit": "ceeb4be38b8e0008315f65711c064c5fbd3d8bb8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.16", - "commit": "ceeb4be38b8e0008315f65711c064c5fbd3d8bb8" - } - ] - } - }, - { - "date": "Tue, 25 Oct 2022 22:47:45 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.29", - "version": "0.7.29", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.28", - "commit": "1e46feedf33b4bddf2888af9c6134f2cd705fa7b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.19", - "commit": "1e46feedf33b4bddf2888af9c6134f2cd705fa7b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.3", - "commit": "1e46feedf33b4bddf2888af9c6134f2cd705fa7b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.10", - "commit": "1e46feedf33b4bddf2888af9c6134f2cd705fa7b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.15", - "commit": "1e46feedf33b4bddf2888af9c6134f2cd705fa7b" - } - ] - } - }, - { - "date": "Fri, 21 Oct 2022 13:09:26 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.28", - "version": "0.7.28", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.27", - "commit": "5a21fe82f7540f64ec4fe8937cf5f86f11d1c9df" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.18", - "commit": "5a21fe82f7540f64ec4fe8937cf5f86f11d1c9df" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.2", - "commit": "5a21fe82f7540f64ec4fe8937cf5f86f11d1c9df" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.9", - "commit": "5a21fe82f7540f64ec4fe8937cf5f86f11d1c9df" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.14", - "commit": "5a21fe82f7540f64ec4fe8937cf5f86f11d1c9df" - } - ] - } - }, - { - "date": "Thu, 20 Oct 2022 19:21:06 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.27", - "version": "0.7.27", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.26", - "commit": "62a7995be7842d498a6a000ee98df291069b41bf" - } - ] - } - }, - { - "date": "Thu, 20 Oct 2022 18:30:02 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.26", - "version": "0.7.26", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.25", - "commit": "9e827dde137238cae829145564cbc880bbdc5a90" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.1", - "commit": "9e827dde137238cae829145564cbc880bbdc5a90" - } - ] - } - }, - { - "date": "Tue, 18 Oct 2022 04:06:27 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.25", - "version": "0.7.25", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.24", - "commit": "9e7902b05f12947fdb475cdd0fc6fc7d7db774a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.0", - "commit": "9e7902b05f12947fdb475cdd0fc6fc7d7db774a5" - } - ] - } - }, - { - "date": "Mon, 17 Oct 2022 17:52:49 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.24", - "version": "0.7.24", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.23", - "commit": "14bd4084276efd59f022ab5074441eca421c96d0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.17", - "commit": "14bd4084276efd59f022ab5074441eca421c96d0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.15", - "commit": "14bd4084276efd59f022ab5074441eca421c96d0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.8", - "commit": "14bd4084276efd59f022ab5074441eca421c96d0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.13", - "commit": "14bd4084276efd59f022ab5074441eca421c96d0" - } - ] - } - }, - { - "date": "Fri, 14 Oct 2022 19:11:13 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.23", - "version": "0.7.23", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.9.3", - "commit": "7263bc3c7cd4796b28fadad4f14a73d967deda0f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.22", - "commit": "7263bc3c7cd4796b28fadad4f14a73d967deda0f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.16", - "commit": "7263bc3c7cd4796b28fadad4f14a73d967deda0f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.14", - "commit": "7263bc3c7cd4796b28fadad4f14a73d967deda0f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.7", - "commit": "7263bc3c7cd4796b28fadad4f14a73d967deda0f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.5", - "commit": "7263bc3c7cd4796b28fadad4f14a73d967deda0f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.12", - "commit": "7263bc3c7cd4796b28fadad4f14a73d967deda0f" - } - ] - } - }, - { - "date": "Wed, 12 Oct 2022 21:54:15 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.22", - "version": "0.7.22", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.21", - "commit": "e2edb2218d4c953ac465dc3460e2923441dfae5b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.15", - "commit": "e2edb2218d4c953ac465dc3460e2923441dfae5b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.13", - "commit": "e2edb2218d4c953ac465dc3460e2923441dfae5b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.6", - "commit": "e2edb2218d4c953ac465dc3460e2923441dfae5b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.4", - "commit": "e2edb2218d4c953ac465dc3460e2923441dfae5b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.11", - "commit": "e2edb2218d4c953ac465dc3460e2923441dfae5b" - } - ] - } - }, - { - "date": "Tue, 11 Oct 2022 22:41:44 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.21", - "version": "0.7.21", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.20", - "commit": "3547a335f47efb90f52c10443dc85f755046a324" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.14", - "commit": "3547a335f47efb90f52c10443dc85f755046a324" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.12", - "commit": "3547a335f47efb90f52c10443dc85f755046a324" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.5", - "commit": "3547a335f47efb90f52c10443dc85f755046a324" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.3", - "commit": "3547a335f47efb90f52c10443dc85f755046a324" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.10", - "commit": "3547a335f47efb90f52c10443dc85f755046a324" - } - ] - } - }, - { - "date": "Thu, 06 Oct 2022 17:24:49 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.20", - "version": "0.7.20", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.19", - "commit": "b7330fc87faaea399ba9f7f40ca691a3cdad8ccf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.13", - "commit": "b7330fc87faaea399ba9f7f40ca691a3cdad8ccf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.11", - "commit": "b7330fc87faaea399ba9f7f40ca691a3cdad8ccf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.4", - "commit": "b7330fc87faaea399ba9f7f40ca691a3cdad8ccf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.9", - "commit": "b7330fc87faaea399ba9f7f40ca691a3cdad8ccf" - } - ] - } - }, - { - "date": "Tue, 04 Oct 2022 21:09:28 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.19", - "version": "0.7.19", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.18", - "commit": "32b6348d1077759b38f33ffb00e7ab9db8d2c77c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.12", - "commit": "32b6348d1077759b38f33ffb00e7ab9db8d2c77c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.10", - "commit": "32b6348d1077759b38f33ffb00e7ab9db8d2c77c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.3", - "commit": "32b6348d1077759b38f33ffb00e7ab9db8d2c77c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.8", - "commit": "32b6348d1077759b38f33ffb00e7ab9db8d2c77c" - } - ] - } - }, - { - "date": "Mon, 03 Oct 2022 16:40:48 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.18", - "version": "0.7.18", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.17", - "commit": "41bf5eac728b15d0385431869982018ef3341491" - } - ] - } - }, - { - "date": "Fri, 30 Sep 2022 08:04:44 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.17", - "version": "0.7.17", - "comments": { - "none": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/tabs", - "commit": "609f7988754b77b86f2ed51d0ce4714fb2152293", - "comment": "snapshots update" - } - ], - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.16", - "commit": "609f7988754b77b86f2ed51d0ce4714fb2152293" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.11", - "commit": "609f7988754b77b86f2ed51d0ce4714fb2152293" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.9", - "commit": "609f7988754b77b86f2ed51d0ce4714fb2152293" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.2", - "commit": "609f7988754b77b86f2ed51d0ce4714fb2152293" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.2", - "commit": "609f7988754b77b86f2ed51d0ce4714fb2152293" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.7", - "commit": "609f7988754b77b86f2ed51d0ce4714fb2152293" - } - ] - } - }, - { - "date": "Fri, 30 Sep 2022 00:54:36 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.16", - "version": "0.7.16", - "comments": { - "patch": [ - { - "author": "krsiler@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "de9ddf75304295843613e144473e4fef3190f14b", - "comment": "Update react-native to 0.68" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.9.2", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.15", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.10", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.8", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.1", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.1", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-composable to v0.11.1", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.6", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-settings to v0.12.1", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - } - ] - } - }, - { - "date": "Mon, 26 Sep 2022 02:39:40 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.15", - "version": "0.7.15", - "comments": { - "patch": [ - { - "author": "sanajmi@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "db03501224be9a35673a60cb27da1f999cc57628", - "comment": "use PressablePropsExtended" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.14", - "commit": "db03501224be9a35673a60cb27da1f999cc57628" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.7", - "commit": "db03501224be9a35673a60cb27da1f999cc57628" - } - ] - } - }, - { - "date": "Thu, 22 Sep 2022 00:31:25 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.14", - "version": "0.7.14", - "comments": { - "patch": [ - { - "author": "sanajmi@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "7f4c8e9b8b19b4bd46a0fec20984e373871c8020", - "comment": "Use Pressable from React Native " - } - ] - } - }, - { - "date": "Wed, 21 Sep 2022 21:00:40 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.13", - "version": "0.7.13", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.13", - "commit": "6706e18d88a521539fdc717100516ec3ee4bb5e2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.9", - "commit": "6706e18d88a521539fdc717100516ec3ee4bb5e2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.6", - "commit": "6706e18d88a521539fdc717100516ec3ee4bb5e2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.9.12", - "commit": "6706e18d88a521539fdc717100516ec3ee4bb5e2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.0", - "commit": "6706e18d88a521539fdc717100516ec3ee4bb5e2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.0", - "commit": "6706e18d88a521539fdc717100516ec3ee4bb5e2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.5", - "commit": "6706e18d88a521539fdc717100516ec3ee4bb5e2" - } - ] - } - }, - { - "date": "Fri, 16 Sep 2022 01:53:06 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.12", - "version": "0.7.12", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.12", - "commit": "379d866e6ec5a3d954b5e945949467345f815513" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.8", - "commit": "379d866e6ec5a3d954b5e945949467345f815513" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.5", - "commit": "379d866e6ec5a3d954b5e945949467345f815513" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.9.11", - "commit": "379d866e6ec5a3d954b5e945949467345f815513" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.14.4", - "commit": "379d866e6ec5a3d954b5e945949467345f815513" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.16.2", - "commit": "379d866e6ec5a3d954b5e945949467345f815513" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.4", - "commit": "379d866e6ec5a3d954b5e945949467345f815513" - } - ] - } - }, - { - "date": "Wed, 14 Sep 2022 23:07:41 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.11", - "version": "0.7.11", - "comments": { - "patch": [ - { - "author": "ruaraki@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb", - "comment": "Update RN Win32" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.9.1", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.11", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.7", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.4", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.9.10", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.14.3", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.16.1", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.3", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb" - } - ] - } - }, - { - "date": "Fri, 09 Sep 2022 21:53:29 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.10", - "version": "0.7.10", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.10", - "commit": "09fde8faaa74ec81fe262fa43a82211197862854" - } - ] - } - }, - { - "date": "Tue, 06 Sep 2022 18:22:03 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.9", - "version": "0.7.9", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.9", - "commit": "202705df4fb6402793b3368e586bfe16f0961070" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.6", - "commit": "202705df4fb6402793b3368e586bfe16f0961070" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.3", - "commit": "202705df4fb6402793b3368e586bfe16f0961070" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.9.9", - "commit": "202705df4fb6402793b3368e586bfe16f0961070" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.14.2", - "commit": "202705df4fb6402793b3368e586bfe16f0961070" - } - ] - } - }, - { - "date": "Mon, 29 Aug 2022 23:21:44 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.8", - "version": "0.7.8", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.8", - "commit": "370259af6f245b97a9a9129d8defbdd30a0bbd9d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.5", - "commit": "370259af6f245b97a9a9129d8defbdd30a0bbd9d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.2", - "commit": "370259af6f245b97a9a9129d8defbdd30a0bbd9d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.9.8", - "commit": "370259af6f245b97a9a9129d8defbdd30a0bbd9d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.14.1", - "commit": "370259af6f245b97a9a9129d8defbdd30a0bbd9d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.2", - "commit": "370259af6f245b97a9a9129d8defbdd30a0bbd9d" - } - ] - } - }, - { - "date": "Fri, 05 Aug 2022 23:22:38 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.7", - "version": "0.7.7", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.7", - "commit": "b77d041fc8feb1088d2b4f1a1a755a9061148b97" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.4", - "commit": "b77d041fc8feb1088d2b4f1a1a755a9061148b97" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.1", - "commit": "b77d041fc8feb1088d2b4f1a1a755a9061148b97" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.9.7", - "commit": "b77d041fc8feb1088d2b4f1a1a755a9061148b97" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.14.0", - "commit": "b77d041fc8feb1088d2b4f1a1a755a9061148b97" - } - ] - } - }, - { - "date": "Fri, 29 Jul 2022 22:47:07 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.6", - "version": "0.7.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.6", - "commit": "6a615313c173e6d036bbdabfdaf05e62823ace00" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.0", - "commit": "6a615313c173e6d036bbdabfdaf05e62823ace00" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.9.6", - "commit": "6a615313c173e6d036bbdabfdaf05e62823ace00" - } - ] - } - }, - { - "date": "Fri, 29 Jul 2022 21:04:38 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.5", - "version": "0.7.5", - "comments": { - "none": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/tabs", - "commit": "bee467a2f783a35346bcb76687c200bd372a6086", - "comment": "move text from experimental to components dir" - } - ], - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.5", - "commit": "e6bfd0a36e3f554c1c2c148ed637f7886a0a31d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.3", - "commit": "e6bfd0a36e3f554c1c2c148ed637f7886a0a31d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.17.5", - "commit": "e6bfd0a36e3f554c1c2c148ed637f7886a0a31d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.9.5", - "commit": "e6bfd0a36e3f554c1c2c148ed637f7886a0a31d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.13.0", - "commit": "e6bfd0a36e3f554c1c2c148ed637f7886a0a31d9" - } - ] - } - }, - { - "date": "Thu, 28 Jul 2022 23:57:03 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.4", - "version": "0.7.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.4", - "commit": "4e4ecc84bcfda713e9a2c422174a4236a89c75d4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.2", - "commit": "4e4ecc84bcfda713e9a2c422174a4236a89c75d4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.17.4", - "commit": "4e4ecc84bcfda713e9a2c422174a4236a89c75d4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.9.4", - "commit": "4e4ecc84bcfda713e9a2c422174a4236a89c75d4" - } - ] - } - }, - { - "date": "Tue, 26 Jul 2022 19:30:23 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.3", - "version": "0.7.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.3", - "commit": "138a3ae19c80f405dd69525b808c627ef83ee0a0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.1", - "commit": "138a3ae19c80f405dd69525b808c627ef83ee0a0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.17.3", - "commit": "138a3ae19c80f405dd69525b808c627ef83ee0a0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.9.3", - "commit": "138a3ae19c80f405dd69525b808c627ef83ee0a0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.12.1", - "commit": "138a3ae19c80f405dd69525b808c627ef83ee0a0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.1", - "commit": "138a3ae19c80f405dd69525b808c627ef83ee0a0" - } - ] - } - }, - { - "date": "Mon, 25 Jul 2022 21:27:20 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.2", - "version": "0.7.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.2", - "commit": "0772c5674928d890bf843ca0891f646f58ff0673" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.17.2", - "commit": "0772c5674928d890bf843ca0891f646f58ff0673" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.9.2", - "commit": "0772c5674928d890bf843ca0891f646f58ff0673" - } - ] - } - }, - { - "date": "Sat, 23 Jul 2022 00:28:48 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.1", - "version": "0.7.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.1", - "commit": "74da6a6410babb413c05e7a5d6df23b1d9bc4ae1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.17.1", - "commit": "74da6a6410babb413c05e7a5d6df23b1d9bc4ae1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.9.1", - "commit": "74da6a6410babb413c05e7a5d6df23b1d9bc4ae1" - } - ] - } - }, - { - "date": "Thu, 14 Jul 2022 18:09:49 GMT", - "tag": "@fluentui-react-native/tabs_v0.7.0", - "version": "0.7.0", - "comments": { - "minor": [ - { - "author": "sanajmi@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b", - "comment": "Update to React Native 0.66" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.9.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.17.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.9.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.12.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.16.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-composable to v0.11.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.12.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-settings to v0.12.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - } - ] - } - }, - { - "date": "Fri, 08 Jul 2022 21:23:37 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.54", - "version": "0.6.54", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.35", - "commit": "c489bb685c8dbe94b7b6fe88957e7ce4d3c2d000" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.12.3", - "commit": "c489bb685c8dbe94b7b6fe88957e7ce4d3c2d000" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.16.5", - "commit": "c489bb685c8dbe94b7b6fe88957e7ce4d3c2d000" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.47", - "commit": "c489bb685c8dbe94b7b6fe88957e7ce4d3c2d000" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.28", - "commit": "c489bb685c8dbe94b7b6fe88957e7ce4d3c2d000" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.15.1", - "commit": "c489bb685c8dbe94b7b6fe88957e7ce4d3c2d000" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.23", - "commit": "c489bb685c8dbe94b7b6fe88957e7ce4d3c2d000" - } - ] - } - }, - { - "date": "Thu, 07 Jul 2022 21:24:07 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.53", - "version": "0.6.53", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.34", - "commit": "b4030a050a2c7223f45f498f3ab8cfc7f87059d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.12.2", - "commit": "b4030a050a2c7223f45f498f3ab8cfc7f87059d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.16.4", - "commit": "b4030a050a2c7223f45f498f3ab8cfc7f87059d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.46", - "commit": "b4030a050a2c7223f45f498f3ab8cfc7f87059d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.27", - "commit": "b4030a050a2c7223f45f498f3ab8cfc7f87059d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.15.0", - "commit": "b4030a050a2c7223f45f498f3ab8cfc7f87059d9" - } - ] - } - }, - { - "date": "Thu, 16 Jun 2022 17:09:28 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.52", - "version": "0.6.52", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.33", - "commit": "c5a694d12a1926f4c49d28ae83ad9f52c22ec7f7" - } - ] - } - }, - { - "date": "Mon, 13 Jun 2022 23:58:18 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.51", - "version": "0.6.51", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.32", - "commit": "0a93815f7fc4d837b1f0167a0029a90541ce045e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.16.3", - "commit": "0a93815f7fc4d837b1f0167a0029a90541ce045e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.45", - "commit": "0a93815f7fc4d837b1f0167a0029a90541ce045e" - } - ] - } - }, - { - "date": "Mon, 06 Jun 2022 19:20:10 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.50", - "version": "0.6.50", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.31", - "commit": "1042260cedd07b3d36af2bfee16166eb86e51a92" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.12.1", - "commit": "1042260cedd07b3d36af2bfee16166eb86e51a92" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.16.2", - "commit": "1042260cedd07b3d36af2bfee16166eb86e51a92" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.44", - "commit": "1042260cedd07b3d36af2bfee16166eb86e51a92" - } - ] - } - }, - { - "date": "Thu, 26 May 2022 21:22:22 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.49", - "version": "0.6.49", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.30", - "commit": "5ce45ff0909feaa0c8a83401be198050727659c6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.12.0", - "commit": "5ce45ff0909feaa0c8a83401be198050727659c6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.16.1", - "commit": "5ce45ff0909feaa0c8a83401be198050727659c6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.43", - "commit": "5ce45ff0909feaa0c8a83401be198050727659c6" - } - ] - } - }, - { - "date": "Thu, 26 May 2022 00:33:11 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.48", - "version": "0.6.48", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.29", - "commit": "61bb86f8797b05c8c0557dedebdba630abd3ef00" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.16.0", - "commit": "61bb86f8797b05c8c0557dedebdba630abd3ef00" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.42", - "commit": "61bb86f8797b05c8c0557dedebdba630abd3ef00" - } - ] - } - }, - { - "date": "Wed, 25 May 2022 18:43:09 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.47", - "version": "0.6.47", - "comments": { - "patch": [ - { - "author": "krsiler@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "f4e881a5caef5a8258094f2a2ba674c62321886d", - "comment": "beachball sync" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.28", - "commit": "f4e881a5caef5a8258094f2a2ba674c62321886d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.25", - "commit": "f4e881a5caef5a8258094f2a2ba674c62321886d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.10", - "commit": "f4e881a5caef5a8258094f2a2ba674c62321886d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.41", - "commit": "f4e881a5caef5a8258094f2a2ba674c62321886d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.26", - "commit": "f4e881a5caef5a8258094f2a2ba674c62321886d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.14.0", - "commit": "f4e881a5caef5a8258094f2a2ba674c62321886d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.22", - "commit": "f4e881a5caef5a8258094f2a2ba674c62321886d" - } - ] - } - }, - { - "date": "Sat, 21 May 2022 16:18:06 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.46", - "version": "0.6.46", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.27", - "commit": "313cc45fbeb5bfaff0b266194cc48608bf6d2c35" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.23", - "commit": "313cc45fbeb5bfaff0b266194cc48608bf6d2c35" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.8", - "commit": "313cc45fbeb5bfaff0b266194cc48608bf6d2c35" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.40", - "commit": "313cc45fbeb5bfaff0b266194cc48608bf6d2c35" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.24", - "commit": "313cc45fbeb5bfaff0b266194cc48608bf6d2c35" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.12.2", - "commit": "313cc45fbeb5bfaff0b266194cc48608bf6d2c35" - } - ] - } - }, - { - "date": "Sat, 21 May 2022 01:47:58 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.45", - "version": "0.6.45", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.26", - "commit": "36ea0d81629f9326eb8c23912d9949381014dade" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.22", - "commit": "36ea0d81629f9326eb8c23912d9949381014dade" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.7", - "commit": "36ea0d81629f9326eb8c23912d9949381014dade" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.39", - "commit": "36ea0d81629f9326eb8c23912d9949381014dade" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.23", - "commit": "36ea0d81629f9326eb8c23912d9949381014dade" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.12.1", - "commit": "36ea0d81629f9326eb8c23912d9949381014dade" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.20", - "commit": "36ea0d81629f9326eb8c23912d9949381014dade" - } - ] - } - }, - { - "date": "Wed, 04 May 2022 21:06:04 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.44", - "version": "0.6.44", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.25", - "commit": "d503e2af4e84ba5c8c1c40ea3698fcbd1691dda6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.21", - "commit": "d503e2af4e84ba5c8c1c40ea3698fcbd1691dda6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.6", - "commit": "d503e2af4e84ba5c8c1c40ea3698fcbd1691dda6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.38", - "commit": "d503e2af4e84ba5c8c1c40ea3698fcbd1691dda6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.22", - "commit": "d503e2af4e84ba5c8c1c40ea3698fcbd1691dda6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.12.0", - "commit": "d503e2af4e84ba5c8c1c40ea3698fcbd1691dda6" - } - ] - } - }, - { - "date": "Thu, 28 Apr 2022 19:09:51 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.43", - "version": "0.6.43", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.24", - "commit": "8cff404ca31eaa61017551a1d73fd3fdae7da132" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.20", - "commit": "8cff404ca31eaa61017551a1d73fd3fdae7da132" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.5", - "commit": "8cff404ca31eaa61017551a1d73fd3fdae7da132" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.37", - "commit": "8cff404ca31eaa61017551a1d73fd3fdae7da132" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.21", - "commit": "8cff404ca31eaa61017551a1d73fd3fdae7da132" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.11", - "commit": "8cff404ca31eaa61017551a1d73fd3fdae7da132" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.19", - "commit": "8cff404ca31eaa61017551a1d73fd3fdae7da132" - } - ] - } - }, - { - "date": "Wed, 27 Apr 2022 19:30:38 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.42", - "version": "0.6.42", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.23", - "commit": "f3481f50e20c6ab33f7f3ffca63e9f1e424fe2c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.19", - "commit": "f3481f50e20c6ab33f7f3ffca63e9f1e424fe2c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.4", - "commit": "f3481f50e20c6ab33f7f3ffca63e9f1e424fe2c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.36", - "commit": "f3481f50e20c6ab33f7f3ffca63e9f1e424fe2c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.20", - "commit": "f3481f50e20c6ab33f7f3ffca63e9f1e424fe2c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.10", - "commit": "f3481f50e20c6ab33f7f3ffca63e9f1e424fe2c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.18", - "commit": "f3481f50e20c6ab33f7f3ffca63e9f1e424fe2c1" - } - ] - } - }, - { - "date": "Thu, 21 Apr 2022 21:50:03 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.41", - "version": "0.6.41", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.22", - "commit": "9d96c6b126ce5293d5315054216af4bd3a447fbe" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.18", - "commit": "9d96c6b126ce5293d5315054216af4bd3a447fbe" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.3", - "commit": "9d96c6b126ce5293d5315054216af4bd3a447fbe" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.35", - "commit": "9d96c6b126ce5293d5315054216af4bd3a447fbe" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.19", - "commit": "9d96c6b126ce5293d5315054216af4bd3a447fbe" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.17", - "commit": "9d96c6b126ce5293d5315054216af4bd3a447fbe" - } - ] - } - }, - { - "date": "Tue, 19 Apr 2022 16:54:55 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.40", - "version": "0.6.40", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.21", - "commit": "cf5789633ef5230512cb21ab923cc9f71bfed4c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.17", - "commit": "cf5789633ef5230512cb21ab923cc9f71bfed4c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.2", - "commit": "cf5789633ef5230512cb21ab923cc9f71bfed4c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.34", - "commit": "cf5789633ef5230512cb21ab923cc9f71bfed4c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.18", - "commit": "cf5789633ef5230512cb21ab923cc9f71bfed4c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.16", - "commit": "cf5789633ef5230512cb21ab923cc9f71bfed4c1" - } - ] - } - }, - { - "date": "Mon, 18 Apr 2022 17:51:06 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.39", - "version": "0.6.39", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.20", - "commit": "924f19a6cda14eabbadcf4ece5e9f7e92e5c6986" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.1", - "commit": "924f19a6cda14eabbadcf4ece5e9f7e92e5c6986" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.33", - "commit": "924f19a6cda14eabbadcf4ece5e9f7e92e5c6986" - } - ] - } - }, - { - "date": "Wed, 13 Apr 2022 23:44:28 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.38", - "version": "0.6.38", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.19", - "commit": "129f628a9676a93f10466cea6efdfff1243e86f0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.0", - "commit": "129f628a9676a93f10466cea6efdfff1243e86f0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.32", - "commit": "129f628a9676a93f10466cea6efdfff1243e86f0" - } - ] - } - }, - { - "date": "Tue, 12 Apr 2022 21:53:04 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.37", - "version": "0.6.37", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.18", - "commit": "86b38c2e20e29fb4248bfd64e534da45deb35dfa" - } - ] - } - }, - { - "date": "Tue, 12 Apr 2022 00:35:09 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.36", - "version": "0.6.36", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.17", - "commit": "832066543f281fdec866f738d36f7f73f6bbb4f7" - } - ] - } - }, - { - "date": "Fri, 08 Apr 2022 18:53:12 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.35", - "version": "0.6.35", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.16", - "commit": "15d60684291bc64a6d104448587804bbcfbbb1e4" - } - ] - } - }, - { - "date": "Wed, 06 Apr 2022 22:58:22 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.34", - "version": "0.6.34", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.15", - "commit": "bcd4ac6dc74295095a0564905024ef32d6450cff" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.16", - "commit": "bcd4ac6dc74295095a0564905024ef32d6450cff" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.8", - "commit": "bcd4ac6dc74295095a0564905024ef32d6450cff" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.31", - "commit": "bcd4ac6dc74295095a0564905024ef32d6450cff" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.17", - "commit": "bcd4ac6dc74295095a0564905024ef32d6450cff" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.15", - "commit": "bcd4ac6dc74295095a0564905024ef32d6450cff" - } - ] - } - }, - { - "date": "Tue, 05 Apr 2022 20:05:50 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.33", - "version": "0.6.33", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.14", - "commit": "c183b7eb02925bf1d1284ad1b3c80c0f2e0c442f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.15", - "commit": "c183b7eb02925bf1d1284ad1b3c80c0f2e0c442f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.7", - "commit": "c183b7eb02925bf1d1284ad1b3c80c0f2e0c442f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.30", - "commit": "c183b7eb02925bf1d1284ad1b3c80c0f2e0c442f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.16", - "commit": "c183b7eb02925bf1d1284ad1b3c80c0f2e0c442f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.14", - "commit": "c183b7eb02925bf1d1284ad1b3c80c0f2e0c442f" - } - ] - } - }, - { - "date": "Thu, 31 Mar 2022 07:27:47 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.32", - "version": "0.6.32", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@fluentui-react-native/tabs", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed", - "comment": "Ban `export *` in index files for better tree-shakeability" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.8.5", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.13", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.14", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.6", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.29", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.15", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.9", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-composable to v0.10.3", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.13", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-settings to v0.11.3", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - } - ] - } - }, - { - "date": "Mon, 28 Mar 2022 15:02:37 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.31", - "version": "0.6.31", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.12", - "commit": "c85943cf17fb111a721e006e1619084e27650b39" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.5", - "commit": "c85943cf17fb111a721e006e1619084e27650b39" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.28", - "commit": "c85943cf17fb111a721e006e1619084e27650b39" - } - ] - } - }, - { - "date": "Wed, 23 Mar 2022 17:24:05 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.30", - "version": "0.6.30", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.11", - "commit": "0a18d2f8bb6505c6c6e2445ff3ba62ac79334872" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.13", - "commit": "0a18d2f8bb6505c6c6e2445ff3ba62ac79334872" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.4", - "commit": "0a18d2f8bb6505c6c6e2445ff3ba62ac79334872" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.27", - "commit": "0a18d2f8bb6505c6c6e2445ff3ba62ac79334872" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.14", - "commit": "0a18d2f8bb6505c6c6e2445ff3ba62ac79334872" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.12", - "commit": "0a18d2f8bb6505c6c6e2445ff3ba62ac79334872" - } - ] - } - }, - { - "date": "Mon, 21 Mar 2022 01:47:54 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.29", - "version": "0.6.29", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.10", - "commit": "b772dfe4542b7032f216bf5c2faa807c695fa2a7" - } - ] - } - }, - { - "date": "Fri, 11 Mar 2022 00:34:53 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.28", - "version": "0.6.28", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.9", - "commit": "489339a0f6ebd9a4687c1c84e9bf8d274d8806d5" - } - ] - } - }, - { - "date": "Mon, 07 Mar 2022 19:15:33 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.27", - "version": "0.6.27", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.8.4", - "commit": "d437b204aa63de4c9d4dd2f58ccf541c388ddaee" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.8", - "commit": "d437b204aa63de4c9d4dd2f58ccf541c388ddaee" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.12", - "commit": "d437b204aa63de4c9d4dd2f58ccf541c388ddaee" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.3", - "commit": "d437b204aa63de4c9d4dd2f58ccf541c388ddaee" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.26", - "commit": "d437b204aa63de4c9d4dd2f58ccf541c388ddaee" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.13", - "commit": "d437b204aa63de4c9d4dd2f58ccf541c388ddaee" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.8", - "commit": "d437b204aa63de4c9d4dd2f58ccf541c388ddaee" - } - ] - } - }, - { - "date": "Fri, 04 Mar 2022 23:43:10 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.26", - "version": "0.6.26", - "comments": { - "patch": [ - { - "author": "ruaraki@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "051e390caabfc13c4e53f9812f0ec7c5b56094a2", - "comment": "Bump @rnx-kit/eslint-plugin from 0.2.10 to 0.2.11" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.7", - "commit": "051e390caabfc13c4e53f9812f0ec7c5b56094a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.11", - "commit": "051e390caabfc13c4e53f9812f0ec7c5b56094a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.2", - "commit": "051e390caabfc13c4e53f9812f0ec7c5b56094a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.25", - "commit": "051e390caabfc13c4e53f9812f0ec7c5b56094a2" - } - ] - } - }, - { - "date": "Thu, 03 Mar 2022 20:20:09 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.25", - "version": "0.6.25", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.6", - "commit": "54222b74c7d5f16d1108fab470a6f549de8e9b45" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.10", - "commit": "54222b74c7d5f16d1108fab470a6f549de8e9b45" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.1", - "commit": "54222b74c7d5f16d1108fab470a6f549de8e9b45" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.24", - "commit": "54222b74c7d5f16d1108fab470a6f549de8e9b45" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.12", - "commit": "54222b74c7d5f16d1108fab470a6f549de8e9b45" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.7", - "commit": "54222b74c7d5f16d1108fab470a6f549de8e9b45" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.11", - "commit": "54222b74c7d5f16d1108fab470a6f549de8e9b45" - } - ] - } - }, - { - "date": "Tue, 01 Mar 2022 20:18:31 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.24", - "version": "0.6.24", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.5", - "commit": "6b5a35c07a9b7da4df7f250a4607f4fc6927d273" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.0", - "commit": "6b5a35c07a9b7da4df7f250a4607f4fc6927d273" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.23", - "commit": "6b5a35c07a9b7da4df7f250a4607f4fc6927d273" - } - ] - } - }, - { - "date": "Fri, 18 Feb 2022 23:27:11 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.23", - "version": "0.6.23", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.8.3", - "commit": "597b1e6bd7b3791df8fad2e0ec83810872261c54" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.4", - "commit": "597b1e6bd7b3791df8fad2e0ec83810872261c54" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.9", - "commit": "597b1e6bd7b3791df8fad2e0ec83810872261c54" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.13.3", - "commit": "597b1e6bd7b3791df8fad2e0ec83810872261c54" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.22", - "commit": "597b1e6bd7b3791df8fad2e0ec83810872261c54" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.11", - "commit": "597b1e6bd7b3791df8fad2e0ec83810872261c54" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.6", - "commit": "597b1e6bd7b3791df8fad2e0ec83810872261c54" - } - ] - } - }, - { - "date": "Thu, 17 Feb 2022 02:13:07 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.22", - "version": "0.6.22", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.3", - "commit": "616c894f75769553fe97f8f2d4550bbd615f2396" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.8", - "commit": "616c894f75769553fe97f8f2d4550bbd615f2396" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.13.2", - "commit": "616c894f75769553fe97f8f2d4550bbd615f2396" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.21", - "commit": "616c894f75769553fe97f8f2d4550bbd615f2396" - } - ] - } - }, - { - "date": "Thu, 17 Feb 2022 01:22:02 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.21", - "version": "0.6.21", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.2", - "commit": "039a993d13ae01ff2212e8b91295d1ed5676c82d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.7", - "commit": "039a993d13ae01ff2212e8b91295d1ed5676c82d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.13.1", - "commit": "039a993d13ae01ff2212e8b91295d1ed5676c82d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.20", - "commit": "039a993d13ae01ff2212e8b91295d1ed5676c82d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.10", - "commit": "039a993d13ae01ff2212e8b91295d1ed5676c82d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.10", - "commit": "039a993d13ae01ff2212e8b91295d1ed5676c82d" - } - ] - } - }, - { - "date": "Wed, 09 Feb 2022 20:14:50 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.20", - "version": "0.6.20", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.1", - "commit": "f7264338409e4a7e4cbb4f4fb815d4ab32276d8a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.13.0", - "commit": "f7264338409e4a7e4cbb4f4fb815d4ab32276d8a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.19", - "commit": "f7264338409e4a7e4cbb4f4fb815d4ab32276d8a" - } - ] - } - }, - { - "date": "Fri, 04 Feb 2022 20:31:52 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.19", - "version": "0.6.19", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.0", - "commit": "5588e7458b699e44d99bdf67c1440c3c30d8ed51" - } - ] - } - }, - { - "date": "Wed, 02 Feb 2022 02:29:07 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.18", - "version": "0.6.18", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.18", - "commit": "c42dec6d24b24ded9a85dd11076e49d9b92980aa" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.6", - "commit": "c42dec6d24b24ded9a85dd11076e49d9b92980aa" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.12.2", - "commit": "c42dec6d24b24ded9a85dd11076e49d9b92980aa" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.18", - "commit": "c42dec6d24b24ded9a85dd11076e49d9b92980aa" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.9", - "commit": "c42dec6d24b24ded9a85dd11076e49d9b92980aa" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.9", - "commit": "c42dec6d24b24ded9a85dd11076e49d9b92980aa" - } - ] - } - }, - { - "date": "Wed, 26 Jan 2022 20:31:04 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.17", - "version": "0.6.17", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.17", - "commit": "1f6a66699e8a06bfd55a613ee9019ba8ca27d0b4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.12.1", - "commit": "1f6a66699e8a06bfd55a613ee9019ba8ca27d0b4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.17", - "commit": "1f6a66699e8a06bfd55a613ee9019ba8ca27d0b4" - } - ] - } - }, - { - "date": "Wed, 26 Jan 2022 17:02:27 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.16", - "version": "0.6.16", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.16", - "commit": "883ef66b94a1efb5d429c5ecad015f312be3b4c3" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.12.0", - "commit": "883ef66b94a1efb5d429c5ecad015f312be3b4c3" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.16", - "commit": "883ef66b94a1efb5d429c5ecad015f312be3b4c3" - } - ] - } - }, - { - "date": "Tue, 25 Jan 2022 21:55:31 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.15", - "version": "0.6.15", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.15", - "commit": "ca505d0e9d6b3286c0025bde70305f4bbb49a7f2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.15", - "commit": "ca505d0e9d6b3286c0025bde70305f4bbb49a7f2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.15", - "commit": "ca505d0e9d6b3286c0025bde70305f4bbb49a7f2" - } - ] - } - }, - { - "date": "Tue, 25 Jan 2022 16:48:23 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.14", - "version": "0.6.14", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.14", - "commit": "f522217240f2b510443e2f898d212df2ee114398" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.14", - "commit": "f522217240f2b510443e2f898d212df2ee114398" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.14", - "commit": "f522217240f2b510443e2f898d212df2ee114398" - } - ] - } - }, - { - "date": "Fri, 14 Jan 2022 21:49:07 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.13", - "version": "0.6.13", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.13", - "commit": "5ff1c8ba46f401679119d71fe4035642dc175e15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.5", - "commit": "5ff1c8ba46f401679119d71fe4035642dc175e15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.13", - "commit": "5ff1c8ba46f401679119d71fe4035642dc175e15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.13", - "commit": "5ff1c8ba46f401679119d71fe4035642dc175e15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.8", - "commit": "5ff1c8ba46f401679119d71fe4035642dc175e15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.8", - "commit": "5ff1c8ba46f401679119d71fe4035642dc175e15" - } - ] - } - }, - { - "date": "Fri, 14 Jan 2022 01:00:03 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.12", - "version": "0.6.12", - "comments": { - "none": [ - { - "author": "sanajmi@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "163defba33412f6f44117750a540b8fdecd3bdca", - "comment": "Remove references to uifabricshared" - } - ], - "patch": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/tabs", - "commit": "ef3732e4e5b82e3f324ca0eed4b12b6617788299", - "comment": "fix disabled button" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.12", - "commit": "163defba33412f6f44117750a540b8fdecd3bdca" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.4", - "commit": "163defba33412f6f44117750a540b8fdecd3bdca" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.12", - "commit": "163defba33412f6f44117750a540b8fdecd3bdca" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.12", - "commit": "163defba33412f6f44117750a540b8fdecd3bdca" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.7", - "commit": "163defba33412f6f44117750a540b8fdecd3bdca" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.5", - "commit": "163defba33412f6f44117750a540b8fdecd3bdca" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.7", - "commit": "163defba33412f6f44117750a540b8fdecd3bdca" - } - ] - } - }, - { - "date": "Thu, 06 Jan 2022 23:14:38 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.11", - "version": "0.6.11", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.11", - "commit": "58c54eff228ec071098f3c18a91f11b4a89a6c15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.3", - "commit": "58c54eff228ec071098f3c18a91f11b4a89a6c15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.11", - "commit": "58c54eff228ec071098f3c18a91f11b4a89a6c15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.11", - "commit": "58c54eff228ec071098f3c18a91f11b4a89a6c15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.6", - "commit": "58c54eff228ec071098f3c18a91f11b4a89a6c15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.4", - "commit": "58c54eff228ec071098f3c18a91f11b4a89a6c15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.6", - "commit": "58c54eff228ec071098f3c18a91f11b4a89a6c15" - } - ] - } - }, - { - "date": "Thu, 06 Jan 2022 21:30:08 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.10", - "version": "0.6.10", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.10", - "commit": "06307699c93ffe31a57f8f1c1fb60beec83583e0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.2", - "commit": "06307699c93ffe31a57f8f1c1fb60beec83583e0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.10", - "commit": "06307699c93ffe31a57f8f1c1fb60beec83583e0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.10", - "commit": "06307699c93ffe31a57f8f1c1fb60beec83583e0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.5", - "commit": "06307699c93ffe31a57f8f1c1fb60beec83583e0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.5", - "commit": "06307699c93ffe31a57f8f1c1fb60beec83583e0" - } - ] - } - }, - { - "date": "Wed, 05 Jan 2022 23:53:54 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.9", - "version": "0.6.9", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.9", - "commit": "8622748288aa587df7a433e6741b5d3b9c53655b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.9", - "commit": "8622748288aa587df7a433e6741b5d3b9c53655b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.9", - "commit": "8622748288aa587df7a433e6741b5d3b9c53655b" - } - ] - } - }, - { - "date": "Tue, 21 Dec 2021 20:56:31 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.8", - "version": "0.6.8", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.8", - "commit": "a7d19d410d5714e2bdb61529d2687182061020a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.1", - "commit": "a7d19d410d5714e2bdb61529d2687182061020a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.8", - "commit": "a7d19d410d5714e2bdb61529d2687182061020a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.8", - "commit": "a7d19d410d5714e2bdb61529d2687182061020a5" - } - ] - } - }, - { - "date": "Mon, 20 Dec 2021 22:56:01 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.7", - "version": "0.6.7", - "comments": { - "patch": [ - { - "author": "ruaraki@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "f4a5b4f5c9c190400e3e34c4a33b3ed30696d41e", - "comment": "Add repository property to all package.json files" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.8.2", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.7", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.0", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.7", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.7", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.4", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.3", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-composable to v0.10.2", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.4", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-settings to v0.11.2", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - } - ] - } - }, - { - "date": "Sun, 19 Dec 2021 05:07:36 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.6", - "version": "0.6.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.6", - "commit": "caa9260512544269d7e177c2d35f15b7f513965b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.6", - "commit": "caa9260512544269d7e177c2d35f15b7f513965b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.6", - "commit": "caa9260512544269d7e177c2d35f15b7f513965b" - } - ] - } - }, - { - "date": "Sat, 18 Dec 2021 04:15:05 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.5", - "version": "0.6.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.5", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.10.4", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.5", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.5", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.3", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.2", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-composable to v0.10.1", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.3", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-settings to v0.11.1", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - } - ] - } - }, - { - "date": "Fri, 17 Dec 2021 22:06:58 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.4", - "version": "0.6.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.4", - "commit": "9dc61df83605c035822518c18cc46fb5503dff70" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.10.3", - "commit": "9dc61df83605c035822518c18cc46fb5503dff70" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.4", - "commit": "9dc61df83605c035822518c18cc46fb5503dff70" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.4", - "commit": "9dc61df83605c035822518c18cc46fb5503dff70" - } - ] - } - }, - { - "date": "Fri, 17 Dec 2021 19:53:21 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.3", - "version": "0.6.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.3", - "commit": "3012e075ca89e36931357442679b73d20540af8b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.10.2", - "commit": "3012e075ca89e36931357442679b73d20540af8b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.3", - "commit": "3012e075ca89e36931357442679b73d20540af8b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.3", - "commit": "3012e075ca89e36931357442679b73d20540af8b" - } - ] - } - }, - { - "date": "Fri, 17 Dec 2021 01:26:42 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.2", - "version": "0.6.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.2", - "commit": "511aeb31982a5fb9dd2f7196c0c7217cc4a3dbc6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.10.1", - "commit": "511aeb31982a5fb9dd2f7196c0c7217cc4a3dbc6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.2", - "commit": "511aeb31982a5fb9dd2f7196c0c7217cc4a3dbc6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.2", - "commit": "511aeb31982a5fb9dd2f7196c0c7217cc4a3dbc6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.2", - "commit": "511aeb31982a5fb9dd2f7196c0c7217cc4a3dbc6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.2", - "commit": "511aeb31982a5fb9dd2f7196c0c7217cc4a3dbc6" - } - ] - } - }, - { - "date": "Thu, 16 Dec 2021 23:00:57 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.1", - "version": "0.6.1", - "comments": { - "none": [ - { - "author": "dannyvv@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "25b3989739737bc598a5d699a941af4c0b4a421f", - "comment": "📦 applying package updates ***NO_CI***" - } - ] - } - }, - { - "date": "Thu, 16 Dec 2021 19:10:26 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.1", - "version": "0.6.1", - "comments": { - "patch": [ - { - "author": "sanajmi@microsoft.com", - "package": "@fluentui-react-native/tabs", - "commit": "e597717b14dce4916740076786391449dd4a7c69", - "comment": "Rename Jest snapshots to be platform agnostic " - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.8.1", - "commit": "6a9f067ae2510481b6ff3512c10c08e7de84f86e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.1", - "commit": "6a9f067ae2510481b6ff3512c10c08e7de84f86e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/icon to v0.10.0", - "commit": "6a9f067ae2510481b6ff3512c10c08e7de84f86e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.1", - "commit": "6a9f067ae2510481b6ff3512c10c08e7de84f86e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/pressable to v0.8.1", - "commit": "6a9f067ae2510481b6ff3512c10c08e7de84f86e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/text to v0.11.1", - "commit": "6a9f067ae2510481b6ff3512c10c08e7de84f86e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.1", - "commit": "6a9f067ae2510481b6ff3512c10c08e7de84f86e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/tabs", - "comment": "Bump @uifabricshared/foundation-compose to v1.11.1", - "commit": "6a9f067ae2510481b6ff3512c10c08e7de84f86e" - } - ] - } - }, - { - "date": "Wed, 17 Nov 2021 19:28:07 GMT", - "tag": "@fluentui-react-native/tabs_v0.6.0", - "version": "0.6.0", - "comments": { - "minor": [ - { - "comment": "Update to react-native 0.64", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Adding E2E Testing Improvements", - "author": "safreibe@microsoft.com", - "commit": "a8220e74a609bd04581fce9377c590fdacce604b", - "package": "@fluentui-react-native/tabs" - } - ], - "patch": [ - { - "comment": "Bump @fluentui-react-native/adapters to v0.8.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/pressable to v0.8.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/text to v0.11.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/icon to v0.9.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/tokens to v0.11.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @uifabricshared/foundation-compose to v1.11.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @uifabricshared/foundation-composable to v0.10.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @uifabricshared/foundation-settings to v0.11.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/test-tools to v0.1.1", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Fri, 12 Nov 2021 16:07:20 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.13", - "version": "0.5.13", - "comments": { - "none": [ - { - "comment": "Bump @fluentui-react-native/icon to v0.8.30", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "25673699e6c6c064b41f1246c2c995baa67a74ad", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Thu, 11 Nov 2021 23:17:41 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.13", - "version": "0.5.13", - "comments": { - "none": [ - { - "comment": "Rename uifabricshared/eslint-config-rules to fluentui-react-native/eslint-config-rules", - "author": "ruaraki@microsoft.com", - "commit": "110fba2a1721a914501404f6040f07656307549e", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 23:04:33 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.13", - "version": "0.5.13", - "comments": { - "patch": [ - { - "comment": "Bump @uifabricshared/foundation-compose to v1.10.22", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "8baa72ed4ec06f90a51cf757e1924e946f76a537", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 20:52:15 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.12", - "version": "0.5.12", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/focus-zone to v0.7.33", - "author": "sanajmi@microsoft.com", - "commit": "f6e7e6523713e641227f91113728da3d9816ef22", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 18:53:37 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.11", - "version": "0.5.11", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/focus-zone to v0.7.32", - "author": "sanajmi@microsoft.com", - "commit": "18757ce3c755d20f37bf436b7e99d3caee320c3b", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Mon, 25 Oct 2021 19:24:43 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.10", - "version": "0.5.10", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/tokens to v0.10.2", - "author": "ruaraki@microsoft.com", - "commit": "f6578742d6c957cf7e346db82f89171f80bedc3b", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Wed, 20 Oct 2021 03:46:25 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.9", - "version": "0.5.9", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/icon to v0.8.27", - "author": "ruaraki@microsoft.com", - "commit": "273f5addbeb5abeaec0b517e5416f52d8878152f", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Tue, 19 Oct 2021 20:23:36 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.8", - "version": "0.5.8", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/pressable to v0.7.26", - "author": "ruaraki@microsoft.com", - "commit": "a8209c3a6f52871eef88035c2dba2ef2b5ee83e7", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Thu, 07 Oct 2021 20:59:20 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.7", - "version": "0.5.7", - "comments": { - "patch": [ - { - "comment": "Bump @uifabricshared/foundation-compose to v1.10.18", - "author": "ruaraki@microsoft.com", - "commit": "f759f09649d7fd9b8ea8ada78677f5cb65519f6e", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Fri, 01 Oct 2021 17:52:17 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.6", - "version": "0.5.6", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/icon to v0.8.24", - "author": "ruaraki@microsoft.com", - "commit": "cb59746a9358af9ae32ea386aad1cfaa1922605d", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Tue, 28 Sep 2021 21:08:25 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.5", - "version": "0.5.5", - "comments": { - "patch": [ - { - "comment": "Delete NativeButton", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "335503904094894a91e53c6de328bf13e13bcc1c", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Tue, 21 Sep 2021 19:08:16 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.4", - "version": "0.5.4", - "comments": { - "none": [ - { - "comment": "Run prettier", - "author": "ruaraki@microsoft.com", - "commit": "e52c9b3d031599af4f43c261cb0a0327bc68a5ab", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Tue, 21 Sep 2021 16:32:12 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.4", - "version": "0.5.4", - "comments": { - "patch": [ - { - "comment": "adding an adapter for macOS", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "2d8e314d1cbdbccbd87251fbe125b14b1014486e", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Tue, 14 Sep 2021 19:31:04 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.3", - "version": "0.5.3", - "comments": { - "none": [ - { - "comment": "Revert \"Bump Prettier and run it (#997)\"", - "author": "ruaraki@microsoft.com", - "commit": "c3eefc2cd6e8e23d64ca72460586f33120edc336", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Mon, 13 Sep 2021 23:22:43 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.3", - "version": "0.5.3", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/icon to v0.8.21", - "author": "ruaraki@microsoft.com", - "commit": "a7179bb7cc1b8d1da09a0a11831b7b1712b8b720", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Fri, 10 Sep 2021 21:30:12 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.2", - "version": "0.5.2", - "comments": { - "none": [ - { - "comment": "Run the prettier", - "author": "ruaraki@microsoft.com", - "commit": "7ac71c6add6f05230c649dad60b5f7442f08cbb3", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Fri, 10 Sep 2021 18:16:59 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.2", - "version": "0.5.2", - "comments": { - "patch": [ - { - "comment": "Bump @uifabricshared/foundation-compose to v1.10.14", - "author": "ruaraki@microsoft.com", - "commit": "5f282af0873151b9f7a8eb75369619af42d092d4", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Thu, 09 Sep 2021 22:12:19 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.1", - "version": "0.5.1", - "comments": { - "patch": [ - { - "comment": "Bump @uifabricshared/foundation-compose to v1.10.13", - "author": "ruaraki@microsoft.com", - "commit": "6a82ccdd6a0cf0226f59e1f81ec34a0eb7e3d912", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Thu, 09 Sep 2021 20:03:01 GMT", - "tag": "@fluentui-react-native/tabs_v0.5.0", - "version": "0.5.0", - "comments": { - "patch": [ - { - "comment": "fixed comments, styling, and made props const", - "author": "sriyaaluru@gmail.com", - "commit": "bf44a8a21e66204a7bc51cee049f541995fc5062", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @uifabricshared/foundation-compose to v1.10.12", - "author": "ruaraki@microsoft.com", - "commit": "30bcd9859911c2bb83f2d6ea29dda12cc029265e", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/text to v0.10.14", - "author": "ruaraki@microsoft.com", - "commit": "30bcd9859911c2bb83f2d6ea29dda12cc029265e", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/icon to v0.8.18", - "author": "ruaraki@microsoft.com", - "commit": "30bcd9859911c2bb83f2d6ea29dda12cc029265e", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.10.41", - "author": "ruaraki@microsoft.com", - "commit": "30bcd9859911c2bb83f2d6ea29dda12cc029265e", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/focus-zone to v0.7.21", - "author": "ruaraki@microsoft.com", - "commit": "30bcd9859911c2bb83f2d6ea29dda12cc029265e", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/pressable to v0.7.18", - "author": "ruaraki@microsoft.com", - "commit": "30bcd9859911c2bb83f2d6ea29dda12cc029265e", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/tokens to v0.9.23", - "author": "ruaraki@microsoft.com", - "commit": "30bcd9859911c2bb83f2d6ea29dda12cc029265e", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/test-tools to v0.1.1", - "author": "ruaraki@microsoft.com", - "commit": "30bcd9859911c2bb83f2d6ea29dda12cc029265e", - "package": "@fluentui-react-native/tabs" - } - ], - "minor": [ - { - "comment": "Tabs Control for Windows", - "author": "dake.3601@gmail.com", - "commit": "ebfa19c9cf5c864b3c381865dbac212c2a77a0a5", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Dynamic TabsItem", - "author": "dake.3601@gmail.com", - "commit": "e25d70f89e7477fcbb7cec29d1eaf45ac450ca21", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 18:48:34 GMT", - "tag": "@fluentui-react-native/tabs_v0.4.0", - "version": "0.4.0", - "comments": { - "none": [ - { - "comment": "Add logic to pick a selected button when tabbing to a FocusZone", - "author": "chripear@microsoft.com", - "commit": "f72d366a82afcc1a40c0dd14e8a67c3d8ce94f74", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/icon to v0.8.17", - "author": "chripear@microsoft.com", - "commit": "f72d366a82afcc1a40c0dd14e8a67c3d8ce94f74", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.10.40", - "author": "chripear@microsoft.com", - "commit": "f72d366a82afcc1a40c0dd14e8a67c3d8ce94f74", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/pressable to v0.7.17", - "author": "chripear@microsoft.com", - "commit": "f72d366a82afcc1a40c0dd14e8a67c3d8ce94f74", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/text to v0.10.13", - "author": "chripear@microsoft.com", - "commit": "f72d366a82afcc1a40c0dd14e8a67c3d8ce94f74", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/tokens to v0.9.22", - "author": "chripear@microsoft.com", - "commit": "f72d366a82afcc1a40c0dd14e8a67c3d8ce94f74", - "package": "@fluentui-react-native/tabs" - } - ], - "minor": [ - { - "comment": "tabs control for macos", - "author": "sriyaaluru@gmail.com", - "commit": "06b45bf72d5a5b9129a0b07677114c821a483713", - "package": "@fluentui-react-native/tabs" - } - ], - "patch": [ - { - "comment": "Bump @fluentui-react-native/focus-zone to v0.7.20", - "author": "chripear@microsoft.com", - "commit": "f72d366a82afcc1a40c0dd14e8a67c3d8ce94f74", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Fri, 27 Aug 2021 15:48:49 GMT", - "tag": "@fluentui-react-native/tabs_v0.3.4", - "version": "0.3.4", - "comments": { - "none": [ - { - "comment": "Fix comment format in Tabs and TabsItem types", - "author": "krsiler@microsoft.com", - "commit": "0dc74db1f3f96263bf9bba5495421de121cfb04e", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Thu, 26 Aug 2021 21:02:08 GMT", - "tag": "@fluentui-react-native/tabs_v0.3.4", - "version": "0.3.4", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/pressable to v0.7.17", - "author": "ruaraki@microsoft.com", - "commit": "4628684e9b1b337af67c5d0a1833ad8646db170a", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Thu, 26 Aug 2021 04:48:40 GMT", - "tag": "@fluentui-react-native/tabs_v0.3.3", - "version": "0.3.3", - "comments": { - "patch": [ - { - "comment": "fix text truncation for radio button", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "b8c866644b2c5b64530990e59153424b0d6f5dcc", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 21:36:58 GMT", - "tag": "@fluentui-react-native/tabs_v0.3.2", - "version": "0.3.2", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/icon to v0.8.15", - "author": "sanajmi@microsoft.com", - "commit": "8f45901b85042f5f8d09f106608cb8f77ee260a8", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 18:08:30 GMT", - "tag": "@fluentui-react-native/tabs_v0.3.1", - "version": "0.3.1", - "comments": { - "patch": [ - { - "comment": "Use exported IconSourcesType from Icon package", - "author": "sanajmi@microsoft.com", - "commit": "a2124be0bdd820a4f38ae7017bd48e7ca3373300", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 23:35:47 GMT", - "tag": "@fluentui-react-native/tabs_v0.3.0", - "version": "0.3.0", - "comments": { - "minor": [ - { - "comment": "Deprecate aria- prefix properties", - "author": "krsiler@microsoft.com", - "commit": "2f478475a0cf511eaa281dd600411ed2b7b7e75f", - "package": "@fluentui-react-native/tabs" - } - ], - "patch": [ - { - "comment": "Bump @fluentui-react-native/adapters to v0.7.0", - "author": "dake.3601@gmail.com", - "commit": "84a24da6bdddd85adad1f5824e7af3d1804b1c1c", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/pressable to v0.7.13", - "author": "dake.3601@gmail.com", - "commit": "84a24da6bdddd85adad1f5824e7af3d1804b1c1c", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/text to v0.10.11", - "author": "dake.3601@gmail.com", - "commit": "84a24da6bdddd85adad1f5824e7af3d1804b1c1c", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/tokens to v0.9.20", - "author": "dake.3601@gmail.com", - "commit": "84a24da6bdddd85adad1f5824e7af3d1804b1c1c", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/icon to v0.8.13", - "author": "v.kozlova13@gmail.com", - "commit": "1f405d0b15fde31eb650b1d9bb5109dcc500440e", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.10.36", - "author": "sanajmi@microsoft.com", - "commit": "c4ee008b284d3e339cc19a6640c8e570d443d1cb", - "package": "@fluentui-react-native/tabs" - }, - { - "comment": "Bump @fluentui-react-native/focus-zone to v0.7.15", - "author": "sanajmi@microsoft.com", - "commit": "c4ee008b284d3e339cc19a6640c8e570d443d1cb", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Thu, 19 Aug 2021 18:31:21 GMT", - "tag": "@fluentui-react-native/tabs_v0.2.3", - "version": "0.2.3", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/tokens to v0.9.19", - "author": "ruaraki@microsoft.com", - "commit": "5849d234f12ab30c929e0b8ab256a2fc7523cbe9", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Wed, 18 Aug 2021 23:00:57 GMT", - "tag": "@fluentui-react-native/tabs_v0.2.2", - "version": "0.2.2", - "comments": { - "patch": [ - { - "comment": "Bump @uifabricshared/foundation-compose to v1.10.9", - "author": "ruaraki@microsoft.com", - "commit": "345d1de930ff42359260da7f1e68a16059f4d763", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Wed, 18 Aug 2021 20:17:46 GMT", - "tag": "@fluentui-react-native/tabs_v0.2.1", - "version": "0.2.1", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/icon to v0.8.10", - "author": "ruaraki@microsoft.com", - "commit": "9359dd854f286cb1c9f5b8cc74e895ad8538f3c0", - "package": "@fluentui-react-native/tabs" - } - ] - } - }, - { - "date": "Tue, 17 Aug 2021 20:02:00 GMT", - "tag": "@fluentui-react-native/tabs_v0.2.0", - "version": "0.2.0", - "comments": { - "minor": [ - { - "comment": "Implemented Tabs Control", - "author": "dake.3601@gmail.com", - "commit": "a22d4f8df2699f777049b529b071a21c672b399d", - "package": "@fluentui-react-native/tabs" - } - ], - "patch": [ - { - "comment": "Bump @fluentui-react-native/focus-zone to v0.7.11", - "author": "sanajmi@microsoft.com", - "commit": "2b95227026008b40cea7c2e5640874a8df392e17", - "package": "@fluentui-react-native/tabs" - } - ] - } - } - ] -} diff --git a/packages/components/Tabs/CHANGELOG.md b/packages/components/Tabs/CHANGELOG.md deleted file mode 100644 index 88496b866..000000000 --- a/packages/components/Tabs/CHANGELOG.md +++ /dev/null @@ -1,2283 +0,0 @@ -# Change Log - @fluentui-react-native/tabs - -This log was last generated on Thu, 04 Jan 2024 21:06:26 GMT and should not be manually modified. - - - -## 0.14.7 - -Thu, 04 Jan 2024 21:06:26 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.16.6 -- Bump @fluentui-react-native/icon to v0.20.7 -- Bump @fluentui-react-native/interactive-hooks to v0.25.6 -- Bump @fluentui-react-native/text to v0.22.6 -- Bump @fluentui-react-native/tokens to v0.22.5 -- Bump @uifabricshared/foundation-compose to v1.14.19 - -## 0.14.6 - -Thu, 04 Jan 2024 01:35:42 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.16.5 -- Bump @fluentui-react-native/icon to v0.20.6 -- Bump @fluentui-react-native/interactive-hooks to v0.25.5 -- Bump @fluentui-react-native/text to v0.22.5 -- Bump @fluentui-react-native/tokens to v0.22.4 -- Bump @uifabricshared/foundation-compose to v1.14.18 - -## 0.14.5 - -Wed, 03 Jan 2024 00:15:20 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.16.4 -- Bump @fluentui-react-native/icon to v0.20.5 -- Bump @fluentui-react-native/interactive-hooks to v0.25.4 -- Bump @fluentui-react-native/text to v0.22.4 -- Bump @fluentui-react-native/tokens to v0.22.3 -- Bump @uifabricshared/foundation-compose to v1.14.17 - -## 0.14.4 - -Thu, 21 Dec 2023 01:31:00 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.16.3 -- Bump @fluentui-react-native/icon to v0.20.4 -- Bump @fluentui-react-native/interactive-hooks to v0.25.3 -- Bump @fluentui-react-native/text to v0.22.3 -- Bump @fluentui-react-native/tokens to v0.22.2 -- Bump @uifabricshared/foundation-compose to v1.14.16 - -## 0.14.3 - -Wed, 20 Dec 2023 20:20:38 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.16.2 -- Bump @fluentui-react-native/icon to v0.20.3 -- Bump @fluentui-react-native/interactive-hooks to v0.25.2 -- Bump @fluentui-react-native/text to v0.22.2 -- Bump @uifabricshared/foundation-compose to v1.14.15 - -## 0.14.2 - -Wed, 20 Dec 2023 00:05:24 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.16.1 -- Bump @fluentui-react-native/icon to v0.20.2 -- Bump @fluentui-react-native/interactive-hooks to v0.25.1 -- Bump @fluentui-react-native/text to v0.22.1 -- Bump @fluentui-react-native/tokens to v0.22.1 -- Bump @uifabricshared/foundation-compose to v1.14.14 - -## 0.14.1 - -Wed, 06 Dec 2023 22:21:57 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.20.1 - -## 0.14.0 - -Thu, 09 Nov 2023 02:39:10 GMT - -### Minor changes - -- Update to react-native 0.72 (30809111+acoates-ms@users.noreply.github.com) -- Bump @fluentui-react-native/adapters to v0.12.0 -- Bump @fluentui-react-native/focus-zone to v0.16.0 -- Bump @fluentui-react-native/icon to v0.20.0 -- Bump @fluentui-react-native/interactive-hooks to v0.25.0 -- Bump @fluentui-react-native/text to v0.22.0 -- Bump @fluentui-react-native/tokens to v0.22.0 -- Bump @uifabricshared/foundation-composable to v0.12.3 -- Bump @uifabricshared/foundation-compose to v1.14.13 -- Bump @uifabricshared/foundation-settings to v0.14.0 - -## 0.13.19 - -Tue, 07 Nov 2023 20:20:35 GMT - -### Patches - -- Manually bump packages stuck in the pipeline (safreibe@microsoft.com) -- Bump @fluentui-react-native/focus-zone to v0.15.0 -- Bump @fluentui-react-native/icon to v0.19.16 -- Bump @fluentui-react-native/interactive-hooks to v0.24.12 -- Bump @fluentui-react-native/text to v0.21.14 -- Bump @fluentui-react-native/tokens to v0.21.6 -- Bump @uifabricshared/foundation-compose to v1.14.12 - -## 0.13.17 - -Tue, 31 Oct 2023 19:11:10 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.13.3 - -## 0.13.16 - -Mon, 30 Oct 2023 21:26:06 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.13.2 -- Bump @fluentui-react-native/icon to v0.19.14 -- Bump @fluentui-react-native/interactive-hooks to v0.24.10 -- Bump @fluentui-react-native/text to v0.21.12 -- Bump @fluentui-react-native/tokens to v0.21.4 -- Bump @uifabricshared/foundation-compose to v1.14.10 - -## 0.13.15 - -Wed, 25 Oct 2023 20:50:34 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.13.1 -- Bump @fluentui-react-native/icon to v0.19.13 -- Bump @fluentui-react-native/interactive-hooks to v0.24.9 -- Bump @fluentui-react-native/text to v0.21.11 -- Bump @uifabricshared/foundation-compose to v1.14.9 - -## 0.13.14 - -Wed, 25 Oct 2023 17:21:07 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.19.12 - -## 0.13.13 - -Tue, 17 Oct 2023 19:21:23 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.13.0 - -## 0.13.12 - -Mon, 25 Sep 2023 12:49:34 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.19.11 -- Bump @fluentui-react-native/text to v0.21.10 - -## 0.13.11 - -Tue, 29 Aug 2023 22:56:32 GMT - -### Patches - -- update snapshots (krsiler@microsoft.com) -- Bump @fluentui-react-native/adapters to v0.11.3 -- Bump @fluentui-react-native/focus-zone to v0.12.10 -- Bump @fluentui-react-native/icon to v0.19.10 -- Bump @fluentui-react-native/interactive-hooks to v0.24.8 -- Bump @fluentui-react-native/text to v0.21.9 -- Bump @fluentui-react-native/tokens to v0.21.3 -- Bump @uifabricshared/foundation-compose to v1.14.8 - -## 0.13.10 - -Tue, 29 Aug 2023 21:59:04 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.19.9 - -## 0.13.9 - -Wed, 23 Aug 2023 18:55:24 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.19.8 -- Bump @fluentui-react-native/text to v0.21.8 -- Bump @uifabricshared/foundation-compose to v1.14.7 - -## 0.13.8 - -Mon, 14 Aug 2023 20:14:41 GMT - -### Patches - -- Bump @fluentui-react-native/adapters to v0.11.2 -- Bump @fluentui-react-native/focus-zone to v0.12.9 -- Bump @fluentui-react-native/icon to v0.19.7 -- Bump @fluentui-react-native/interactive-hooks to v0.24.7 -- Bump @fluentui-react-native/text to v0.21.7 -- Bump @fluentui-react-native/tokens to v0.21.2 -- Bump @uifabricshared/foundation-compose to v1.14.6 - -## 0.13.7 - -Wed, 09 Aug 2023 22:02:15 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.12.8 -- Bump @fluentui-react-native/icon to v0.19.6 -- Bump @fluentui-react-native/interactive-hooks to v0.24.6 -- Bump @fluentui-react-native/text to v0.21.6 -- Bump @uifabricshared/foundation-composable to v0.12.2 -- Bump @uifabricshared/foundation-compose to v1.14.5 -- Bump @uifabricshared/foundation-settings to v0.13.2 - -## 0.13.6 - -Mon, 31 Jul 2023 19:29:59 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.12.7 -- Bump @fluentui-react-native/icon to v0.19.5 -- Bump @fluentui-react-native/interactive-hooks to v0.24.5 -- Bump @fluentui-react-native/text to v0.21.5 -- Bump @uifabricshared/foundation-compose to v1.14.4 - -## 0.13.5 - -Tue, 18 Jul 2023 19:09:32 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.12.6 -- Bump @fluentui-react-native/icon to v0.19.4 -- Bump @fluentui-react-native/interactive-hooks to v0.24.4 -- Bump @fluentui-react-native/text to v0.21.4 -- Bump @uifabricshared/foundation-compose to v1.14.3 - -## 0.13.4 - -Mon, 10 Jul 2023 17:25:04 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.12.5 - -## 0.13.3 - -Fri, 07 Jul 2023 20:45:12 GMT - -### Patches - -- Bump @fluentui-react-native/adapters to v0.11.1 -- Bump @fluentui-react-native/focus-zone to v0.12.4 -- Bump @fluentui-react-native/icon to v0.19.3 -- Bump @fluentui-react-native/interactive-hooks to v0.24.3 -- Bump @fluentui-react-native/text to v0.21.3 -- Bump @fluentui-react-native/tokens to v0.21.1 -- Bump @uifabricshared/foundation-compose to v1.14.2 - -## 0.13.2 - -Mon, 19 Jun 2023 18:37:35 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.12.3 -- Bump @fluentui-react-native/icon to v0.19.2 -- Bump @fluentui-react-native/interactive-hooks to v0.24.2 -- Bump @fluentui-react-native/text to v0.21.2 - -## 0.13.1 - -Sat, 17 Jun 2023 00:00:18 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.12.2 -- Bump @fluentui-react-native/icon to v0.19.1 -- Bump @fluentui-react-native/interactive-hooks to v0.24.1 -- Bump @fluentui-react-native/text to v0.21.1 - -## 0.13.0 - -Mon, 12 Jun 2023 17:46:44 GMT - -### Minor changes - -- Add missing constant (ayushsinghs@yahoo.in) -- Bump @fluentui-react-native/focus-zone to v0.12.1 -- Bump @fluentui-react-native/icon to v0.19.0 -- Bump @fluentui-react-native/interactive-hooks to v0.24.0 -- Bump @fluentui-react-native/text to v0.21.0 -- Bump @uifabricshared/foundation-composable to v0.12.1 -- Bump @uifabricshared/foundation-compose to v1.14.1 -- Bump @uifabricshared/foundation-settings to v0.13.1 - -## 0.12.1 - -Fri, 09 Jun 2023 15:29:07 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.18.1 -- Bump @fluentui-react-native/text to v0.20.1 - -## 0.12.0 - -Mon, 05 Jun 2023 19:26:24 GMT - -### Minor changes - -- Upgrade to React Native 0.71 (sanajmi@microsoft.com) -- Bump @fluentui-react-native/adapters to v0.11.0 -- Bump @fluentui-react-native/focus-zone to v0.12.0 -- Bump @fluentui-react-native/icon to v0.18.0 -- Bump @fluentui-react-native/interactive-hooks to v0.23.0 -- Bump @fluentui-react-native/text to v0.20.0 -- Bump @fluentui-react-native/tokens to v0.21.0 -- Bump @uifabricshared/foundation-composable to v0.12.0 -- Bump @uifabricshared/foundation-compose to v1.14.0 -- Bump @uifabricshared/foundation-settings to v0.13.0 - -## 0.11.47 - -Tue, 30 May 2023 20:34:15 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.43 -- Bump @fluentui-react-native/icon to v0.17.27 -- Bump @fluentui-react-native/interactive-hooks to v0.22.31 -- Bump @fluentui-react-native/text to v0.19.33 -- Bump @fluentui-react-native/tokens to v0.20.16 -- Bump @uifabricshared/foundation-compose to v1.13.10 - -## 0.11.46 - -Wed, 03 May 2023 07:08:51 GMT - -### Patches - -- Update design-tokens package to 0.47.0 (78454019+lyzhan7@users.noreply.github.com) -- Bump @fluentui-react-native/focus-zone to v0.11.42 -- Bump @fluentui-react-native/icon to v0.17.26 -- Bump @fluentui-react-native/interactive-hooks to v0.22.30 -- Bump @fluentui-react-native/text to v0.19.32 -- Bump @fluentui-react-native/tokens to v0.20.15 -- Bump @uifabricshared/foundation-compose to v1.13.9 - -## 0.11.45 - -Mon, 10 Apr 2023 19:48:24 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.41 -- Bump @fluentui-react-native/icon to v0.17.25 -- Bump @fluentui-react-native/interactive-hooks to v0.22.29 -- Bump @fluentui-react-native/text to v0.19.31 - -## 0.11.44 - -Thu, 23 Mar 2023 20:49:23 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.40 -- Bump @fluentui-react-native/icon to v0.17.24 -- Bump @fluentui-react-native/interactive-hooks to v0.22.28 -- Bump @fluentui-react-native/text to v0.19.30 - -## 0.11.43 - -Tue, 21 Mar 2023 21:53:45 GMT - -### Patches - -- Trigger manual bump (no changes) (krsiler@microsoft.com) -- Bump @fluentui-react-native/focus-zone to v0.11.39 -- Bump @fluentui-react-native/icon to v0.17.23 -- Bump @fluentui-react-native/interactive-hooks to v0.22.27 -- Bump @fluentui-react-native/text to v0.19.29 -- Bump @fluentui-react-native/tokens to v0.20.14 -- Bump @uifabricshared/foundation-compose to v1.13.8 - -## 0.11.42 - -Sat, 18 Mar 2023 17:22:31 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.38 -- Bump @fluentui-react-native/icon to v0.17.22 -- Bump @fluentui-react-native/interactive-hooks to v0.22.26 -- Bump @fluentui-react-native/text to v0.19.28 -- Bump @fluentui-react-native/tokens to v0.20.13 -- Bump @uifabricshared/foundation-compose to v1.13.7 - -## 0.11.41 - -Fri, 17 Mar 2023 14:13:25 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.17.21 - -## 0.11.40 - -Tue, 14 Mar 2023 20:50:45 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.37 -- Bump @fluentui-react-native/icon to v0.17.20 -- Bump @fluentui-react-native/interactive-hooks to v0.22.25 -- Bump @fluentui-react-native/text to v0.19.27 -- Bump @fluentui-react-native/tokens to v0.20.12 -- Bump @uifabricshared/foundation-compose to v1.13.6 - -## 0.11.39 - -Tue, 07 Mar 2023 20:54:15 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.36 -- Bump @fluentui-react-native/icon to v0.17.19 -- Bump @fluentui-react-native/interactive-hooks to v0.22.24 -- Bump @fluentui-react-native/text to v0.19.26 -- Bump @uifabricshared/foundation-compose to v1.13.5 - -## 0.11.38 - -Sat, 04 Mar 2023 00:02:26 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.35 -- Bump @fluentui-react-native/icon to v0.17.18 -- Bump @fluentui-react-native/interactive-hooks to v0.22.23 -- Bump @fluentui-react-native/text to v0.19.25 - -## 0.11.37 - -Fri, 03 Mar 2023 06:47:26 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.34 -- Bump @fluentui-react-native/icon to v0.17.17 -- Bump @fluentui-react-native/interactive-hooks to v0.22.22 -- Bump @fluentui-react-native/text to v0.19.24 -- Bump @fluentui-react-native/tokens to v0.20.11 -- Bump @uifabricshared/foundation-compose to v1.13.4 - -## 0.11.36 - -Thu, 02 Mar 2023 19:11:57 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.17.16 - -## 0.11.35 - -Tue, 28 Feb 2023 21:34:10 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.33 -- Bump @fluentui-react-native/icon to v0.17.15 -- Bump @fluentui-react-native/interactive-hooks to v0.22.21 -- Bump @fluentui-react-native/text to v0.19.23 - -## 0.11.34 - -Fri, 24 Feb 2023 20:39:59 GMT - -### Patches - -- Order imports (78454019+lyzhan7@users.noreply.github.com) -- Bump @fluentui-react-native/adapters to v0.10.2 -- Bump @fluentui-react-native/focus-zone to v0.11.32 -- Bump @fluentui-react-native/icon to v0.17.14 -- Bump @fluentui-react-native/interactive-hooks to v0.22.20 -- Bump @fluentui-react-native/text to v0.19.22 -- Bump @fluentui-react-native/tokens to v0.20.10 -- Bump @uifabricshared/foundation-composable to v0.11.3 -- Bump @uifabricshared/foundation-compose to v1.13.3 -- Bump @uifabricshared/foundation-settings to v0.12.3 - -## 0.11.33 - -Fri, 24 Feb 2023 02:22:40 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.31 -- Bump @fluentui-react-native/icon to v0.17.13 -- Bump @fluentui-react-native/interactive-hooks to v0.22.19 -- Bump @fluentui-react-native/text to v0.19.21 -- Bump @fluentui-react-native/tokens to v0.20.9 -- Bump @uifabricshared/foundation-compose to v1.13.2 - -## 0.11.32 - -Sat, 11 Feb 2023 01:32:30 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.30 -- Bump @fluentui-react-native/icon to v0.17.12 -- Bump @fluentui-react-native/interactive-hooks to v0.22.18 -- Bump @fluentui-react-native/text to v0.19.20 -- Bump @fluentui-react-native/tokens to v0.20.8 -- Bump @uifabricshared/foundation-compose to v1.13.1 - -## 0.11.31 - -Fri, 03 Feb 2023 01:49:36 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.29 -- Bump @fluentui-react-native/icon to v0.17.11 -- Bump @fluentui-react-native/interactive-hooks to v0.22.17 -- Bump @fluentui-react-native/text to v0.19.19 -- Bump @uifabricshared/foundation-compose to v1.13.0 - -## 0.11.30 - -Thu, 02 Feb 2023 01:29:39 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.28 -- Bump @fluentui-react-native/icon to v0.17.10 -- Bump @fluentui-react-native/interactive-hooks to v0.22.16 -- Bump @fluentui-react-native/text to v0.19.18 -- Bump @uifabricshared/foundation-compose to v1.12.39 - -## 0.11.29 - -Wed, 01 Feb 2023 22:33:16 GMT - -### Patches - -- Enable @typescript-eslint/consistent-type-imports (30809111+acoates-ms@users.noreply.github.com) -- Bump @fluentui-react-native/adapters to v0.10.1 -- Bump @fluentui-react-native/focus-zone to v0.11.27 -- Bump @fluentui-react-native/icon to v0.17.9 -- Bump @fluentui-react-native/interactive-hooks to v0.22.15 -- Bump @fluentui-react-native/text to v0.19.17 -- Bump @fluentui-react-native/tokens to v0.20.7 -- Bump @uifabricshared/foundation-composable to v0.11.2 -- Bump @uifabricshared/foundation-compose to v1.12.38 -- Bump @uifabricshared/foundation-settings to v0.12.2 - -## 0.11.28 - -Mon, 30 Jan 2023 07:12:38 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.26 -- Bump @fluentui-react-native/icon to v0.17.8 -- Bump @fluentui-react-native/interactive-hooks to v0.22.14 -- Bump @fluentui-react-native/text to v0.19.16 -- Bump @fluentui-react-native/tokens to v0.20.6 -- Bump @uifabricshared/foundation-compose to v1.12.37 - -## 0.11.27 - -Wed, 25 Jan 2023 21:31:18 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.25 -- Bump @fluentui-react-native/icon to v0.17.7 -- Bump @fluentui-react-native/interactive-hooks to v0.22.13 -- Bump @fluentui-react-native/text to v0.19.15 -- Bump @fluentui-react-native/tokens to v0.20.5 -- Bump @uifabricshared/foundation-compose to v1.12.36 - -## 0.11.26 - -Fri, 20 Jan 2023 21:49:21 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.17.6 -- Bump @fluentui-react-native/text to v0.19.14 - -## 0.11.25 - -Fri, 20 Jan 2023 18:06:46 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.24 -- Bump @fluentui-react-native/icon to v0.17.5 -- Bump @fluentui-react-native/interactive-hooks to v0.22.12 -- Bump @fluentui-react-native/text to v0.19.13 -- Bump @uifabricshared/foundation-compose to v1.12.35 - -## 0.11.24 - -Wed, 18 Jan 2023 01:55:11 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.23 -- Bump @fluentui-react-native/icon to v0.17.4 -- Bump @fluentui-react-native/interactive-hooks to v0.22.11 -- Bump @fluentui-react-native/text to v0.19.12 -- Bump @fluentui-react-native/tokens to v0.20.4 -- Bump @uifabricshared/foundation-compose to v1.12.34 - -## 0.11.23 - -Tue, 10 Jan 2023 20:17:18 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.22 -- Bump @fluentui-react-native/icon to v0.17.3 -- Bump @fluentui-react-native/interactive-hooks to v0.22.10 -- Bump @fluentui-react-native/text to v0.19.11 -- Bump @fluentui-react-native/tokens to v0.20.3 -- Bump @uifabricshared/foundation-compose to v1.12.33 - -## 0.11.22 - -Mon, 09 Jan 2023 22:25:00 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.21 -- Bump @fluentui-react-native/icon to v0.17.2 -- Bump @fluentui-react-native/interactive-hooks to v0.22.9 -- Bump @fluentui-react-native/text to v0.19.10 -- Bump @uifabricshared/foundation-compose to v1.12.32 - -## 0.11.21 - -Fri, 06 Jan 2023 12:26:31 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.20 -- Bump @fluentui-react-native/icon to v0.17.1 -- Bump @fluentui-react-native/interactive-hooks to v0.22.8 -- Bump @fluentui-react-native/text to v0.19.9 -- Bump @uifabricshared/foundation-compose to v1.12.31 - -## 0.11.20 - -Thu, 05 Jan 2023 11:24:52 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.17.0 - -## 0.11.19 - -Wed, 04 Jan 2023 16:55:53 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.19 -- Bump @fluentui-react-native/icon to v0.16.11 -- Bump @fluentui-react-native/interactive-hooks to v0.22.7 -- Bump @fluentui-react-native/text to v0.19.8 - -## 0.11.18 - -Tue, 03 Jan 2023 23:38:40 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.16.10 -- Bump @fluentui-react-native/text to v0.19.7 - -## 0.11.17 - -Fri, 30 Dec 2022 16:09:27 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.18 -- Bump @fluentui-react-native/icon to v0.16.9 -- Bump @fluentui-react-native/interactive-hooks to v0.22.6 -- Bump @fluentui-react-native/text to v0.19.6 - -## 0.11.16 - -Fri, 30 Dec 2022 03:49:05 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.17 -- Bump @fluentui-react-native/icon to v0.16.8 -- Bump @fluentui-react-native/interactive-hooks to v0.22.5 -- Bump @fluentui-react-native/text to v0.19.5 - -## 0.11.15 - -Thu, 29 Dec 2022 08:02:57 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.16.7 -- Bump @fluentui-react-native/text to v0.19.4 - -## 0.11.14 - -Thu, 29 Dec 2022 03:47:47 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.16 -- Bump @fluentui-react-native/icon to v0.16.6 -- Bump @fluentui-react-native/interactive-hooks to v0.22.4 -- Bump @fluentui-react-native/text to v0.19.3 -- Bump @fluentui-react-native/tokens to v0.20.2 -- Bump @uifabricshared/foundation-compose to v1.12.30 - -## 0.11.13 - -Tue, 27 Dec 2022 22:21:15 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.15 -- Bump @fluentui-react-native/icon to v0.16.5 -- Bump @fluentui-react-native/interactive-hooks to v0.22.3 -- Bump @fluentui-react-native/text to v0.19.2 -- Bump @fluentui-react-native/tokens to v0.20.1 -- Bump @uifabricshared/foundation-compose to v1.12.29 - -## 0.11.12 - -Tue, 27 Dec 2022 10:18:14 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.14 -- Bump @fluentui-react-native/icon to v0.16.4 -- Bump @fluentui-react-native/interactive-hooks to v0.22.2 -- Bump @fluentui-react-native/text to v0.19.1 -- Bump @uifabricshared/foundation-compose to v1.12.28 - -## 0.11.11 - -Thu, 15 Dec 2022 14:50:50 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.13 -- Bump @fluentui-react-native/icon to v0.16.3 -- Bump @fluentui-react-native/interactive-hooks to v0.22.1 -- Bump @fluentui-react-native/text to v0.19.0 -- Bump @fluentui-react-native/tokens to v0.20.0 -- Bump @uifabricshared/foundation-compose to v1.12.27 - -## 0.11.10 - -Fri, 09 Dec 2022 05:23:38 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.12 -- Bump @fluentui-react-native/icon to v0.16.2 -- Bump @fluentui-react-native/interactive-hooks to v0.22.0 -- Bump @fluentui-react-native/text to v0.18.2 -- Bump @fluentui-react-native/tokens to v0.19.1 -- Bump @uifabricshared/foundation-compose to v1.12.26 - -## 0.11.9 - -Tue, 06 Dec 2022 16:59:54 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.11 -- Bump @fluentui-react-native/icon to v0.16.1 -- Bump @fluentui-react-native/interactive-hooks to v0.21.5 -- Bump @fluentui-react-native/text to v0.18.1 -- Bump @uifabricshared/foundation-compose to v1.12.25 - -## 0.11.8 - -Tue, 06 Dec 2022 02:02:55 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.16.0 - -## 0.11.7 - -Tue, 06 Dec 2022 00:46:41 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.10 -- Bump @fluentui-react-native/icon to v0.15.5 -- Bump @fluentui-react-native/interactive-hooks to v0.21.4 -- Bump @fluentui-react-native/text to v0.18.0 -- Bump @fluentui-react-native/tokens to v0.19.0 -- Bump @uifabricshared/foundation-compose to v1.12.24 - -## 0.11.6 - -Thu, 01 Dec 2022 03:12:20 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.9 -- Bump @fluentui-react-native/icon to v0.15.4 -- Bump @fluentui-react-native/interactive-hooks to v0.21.3 -- Bump @fluentui-react-native/text to v0.17.1 -- Bump @fluentui-react-native/tokens to v0.18.1 -- Bump @uifabricshared/foundation-compose to v1.12.23 - -## 0.11.5 - -Wed, 30 Nov 2022 21:33:19 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.8 - -## 0.11.4 - -Tue, 29 Nov 2022 20:39:50 GMT - -### Patches - -- Update config (ruaraki@microsoft.com) - -## 0.11.3 - -Mon, 28 Nov 2022 19:49:35 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.15.3 -- Bump @fluentui-react-native/text to v0.17.0 - -## 0.11.2 - -Mon, 28 Nov 2022 11:51:06 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.7 -- Bump @fluentui-react-native/icon to v0.15.2 -- Bump @fluentui-react-native/interactive-hooks to v0.21.2 -- Bump @fluentui-react-native/text to v0.16.2 -- Bump @fluentui-react-native/tokens to v0.18.0 -- Bump @uifabricshared/foundation-compose to v1.12.22 - -## 0.11.1 - -Wed, 16 Nov 2022 08:47:25 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.6 -- Bump @fluentui-react-native/icon to v0.15.1 -- Bump @fluentui-react-native/interactive-hooks to v0.21.1 -- Bump @fluentui-react-native/text to v0.16.1 -- Bump @uifabricshared/foundation-compose to v1.12.21 - -## 0.11.0 - -Sun, 13 Nov 2022 09:17:06 GMT - -### Minor changes - -- fix double clicking on inline links (email not defined) -- Bump @fluentui-react-native/focus-zone to v0.11.5 -- Bump @fluentui-react-native/icon to v0.15.0 -- Bump @fluentui-react-native/interactive-hooks to v0.21.0 -- Bump @fluentui-react-native/text to v0.16.0 - -## 0.10.4 - -Fri, 11 Nov 2022 18:06:32 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.4 -- Bump @fluentui-react-native/icon to v0.14.1 -- Bump @fluentui-react-native/interactive-hooks to v0.20.2 -- Bump @fluentui-react-native/text to v0.15.15 -- Bump @uifabricshared/foundation-compose to v1.12.20 - -## 0.10.3 - -Fri, 11 Nov 2022 01:02:57 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.3 - -## 0.10.2 - -Thu, 10 Nov 2022 02:05:55 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.2 - -## 0.10.1 - -Wed, 09 Nov 2022 22:52:11 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.1 -- Bump @fluentui-react-native/interactive-hooks to v0.20.1 - -## 0.10.0 - -Tue, 08 Nov 2022 22:18:44 GMT - -### Minor changes - -- update @office-iss/react-native-win32 to 0.68.8 (krsiler@microsoft.com) -- Bump @fluentui-react-native/adapters to v0.10.0 -- Bump @fluentui-react-native/focus-zone to v0.11.0 -- Bump @fluentui-react-native/icon to v0.14.0 -- Bump @fluentui-react-native/interactive-hooks to v0.20.0 -- Bump @fluentui-react-native/text to v0.15.14 -- Bump @fluentui-react-native/tokens to v0.17.8 -- Bump @uifabricshared/foundation-compose to v1.12.19 - -## 0.9.2 - -Tue, 08 Nov 2022 19:22:01 GMT - -### Patches - -- Snapshots (email not defined) -- Bump @fluentui-react-native/focus-zone to v0.10.35 -- Bump @fluentui-react-native/icon to v0.13.22 -- Bump @fluentui-react-native/interactive-hooks to v0.19.7 -- Bump @fluentui-react-native/text to v0.15.13 -- Bump @uifabricshared/foundation-compose to v1.12.18 - -## 0.9.1 - -Mon, 07 Nov 2022 21:42:58 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.34 - -## 0.9.0 - -Fri, 04 Nov 2022 14:36:23 GMT - -### Minor changes - -- missingTokens (email not defined) -- Bump @fluentui-react-native/focus-zone to v0.10.33 -- Bump @fluentui-react-native/icon to v0.13.21 -- Bump @fluentui-react-native/interactive-hooks to v0.19.6 -- Bump @fluentui-react-native/text to v0.15.12 -- Bump @fluentui-react-native/tokens to v0.17.7 -- Bump @uifabricshared/foundation-compose to v1.12.17 - -## 0.8.3 - -Wed, 02 Nov 2022 00:59:45 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.32 - -## 0.8.2 - -Tue, 01 Nov 2022 16:30:56 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.31 -- Bump @fluentui-react-native/interactive-hooks to v0.19.5 - -## 0.8.1 - -Thu, 27 Oct 2022 21:01:42 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.30 - -## 0.8.0 - -Thu, 27 Oct 2022 11:09:35 GMT - -### Minor changes - -- Snapshot Update (email not defined) -- Bump @fluentui-react-native/focus-zone to v0.10.29 -- Bump @fluentui-react-native/icon to v0.13.20 -- Bump @fluentui-react-native/interactive-hooks to v0.19.4 -- Bump @fluentui-react-native/text to v0.15.11 -- Bump @fluentui-react-native/tokens to v0.17.6 -- Bump @uifabricshared/foundation-compose to v1.12.16 - -## 0.7.29 - -Tue, 25 Oct 2022 22:47:45 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.28 -- Bump @fluentui-react-native/icon to v0.13.19 -- Bump @fluentui-react-native/interactive-hooks to v0.19.3 -- Bump @fluentui-react-native/text to v0.15.10 -- Bump @uifabricshared/foundation-compose to v1.12.15 - -## 0.7.28 - -Fri, 21 Oct 2022 13:09:26 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.27 -- Bump @fluentui-react-native/icon to v0.13.18 -- Bump @fluentui-react-native/interactive-hooks to v0.19.2 -- Bump @fluentui-react-native/text to v0.15.9 -- Bump @uifabricshared/foundation-compose to v1.12.14 - -## 0.7.27 - -Thu, 20 Oct 2022 19:21:06 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.26 - -## 0.7.26 - -Thu, 20 Oct 2022 18:30:02 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.25 -- Bump @fluentui-react-native/interactive-hooks to v0.19.1 - -## 0.7.25 - -Tue, 18 Oct 2022 04:06:27 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.24 -- Bump @fluentui-react-native/interactive-hooks to v0.19.0 - -## 0.7.24 - -Mon, 17 Oct 2022 17:52:49 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.23 -- Bump @fluentui-react-native/icon to v0.13.17 -- Bump @fluentui-react-native/interactive-hooks to v0.18.15 -- Bump @fluentui-react-native/text to v0.15.8 -- Bump @uifabricshared/foundation-compose to v1.12.13 - -## 0.7.23 - -Fri, 14 Oct 2022 19:11:13 GMT - -### Patches - -- Bump @fluentui-react-native/adapters to v0.9.3 -- Bump @fluentui-react-native/focus-zone to v0.10.22 -- Bump @fluentui-react-native/icon to v0.13.16 -- Bump @fluentui-react-native/interactive-hooks to v0.18.14 -- Bump @fluentui-react-native/text to v0.15.7 -- Bump @fluentui-react-native/tokens to v0.17.5 -- Bump @uifabricshared/foundation-compose to v1.12.12 - -## 0.7.22 - -Wed, 12 Oct 2022 21:54:15 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.21 -- Bump @fluentui-react-native/icon to v0.13.15 -- Bump @fluentui-react-native/interactive-hooks to v0.18.13 -- Bump @fluentui-react-native/text to v0.15.6 -- Bump @fluentui-react-native/tokens to v0.17.4 -- Bump @uifabricshared/foundation-compose to v1.12.11 - -## 0.7.21 - -Tue, 11 Oct 2022 22:41:44 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.20 -- Bump @fluentui-react-native/icon to v0.13.14 -- Bump @fluentui-react-native/interactive-hooks to v0.18.12 -- Bump @fluentui-react-native/text to v0.15.5 -- Bump @fluentui-react-native/tokens to v0.17.3 -- Bump @uifabricshared/foundation-compose to v1.12.10 - -## 0.7.20 - -Thu, 06 Oct 2022 17:24:49 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.19 -- Bump @fluentui-react-native/icon to v0.13.13 -- Bump @fluentui-react-native/interactive-hooks to v0.18.11 -- Bump @fluentui-react-native/text to v0.15.4 -- Bump @uifabricshared/foundation-compose to v1.12.9 - -## 0.7.19 - -Tue, 04 Oct 2022 21:09:28 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.18 -- Bump @fluentui-react-native/icon to v0.13.12 -- Bump @fluentui-react-native/interactive-hooks to v0.18.10 -- Bump @fluentui-react-native/text to v0.15.3 -- Bump @uifabricshared/foundation-compose to v1.12.8 - -## 0.7.18 - -Mon, 03 Oct 2022 16:40:48 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.17 - -## 0.7.17 - -Fri, 30 Sep 2022 08:04:44 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.16 -- Bump @fluentui-react-native/icon to v0.13.11 -- Bump @fluentui-react-native/interactive-hooks to v0.18.9 -- Bump @fluentui-react-native/text to v0.15.2 -- Bump @fluentui-react-native/tokens to v0.17.2 -- Bump @uifabricshared/foundation-compose to v1.12.7 - -## 0.7.16 - -Fri, 30 Sep 2022 00:54:36 GMT - -### Patches - -- Update react-native to 0.68 (krsiler@microsoft.com) -- Bump @fluentui-react-native/adapters to v0.9.2 -- Bump @fluentui-react-native/focus-zone to v0.10.15 -- Bump @fluentui-react-native/icon to v0.13.10 -- Bump @fluentui-react-native/interactive-hooks to v0.18.8 -- Bump @fluentui-react-native/text to v0.15.1 -- Bump @fluentui-react-native/tokens to v0.17.1 -- Bump @uifabricshared/foundation-composable to v0.11.1 -- Bump @uifabricshared/foundation-compose to v1.12.6 -- Bump @uifabricshared/foundation-settings to v0.12.1 - -## 0.7.15 - -Mon, 26 Sep 2022 02:39:40 GMT - -### Patches - -- use PressablePropsExtended (sanajmi@microsoft.com) -- Bump @fluentui-react-native/focus-zone to v0.10.14 -- Bump @fluentui-react-native/interactive-hooks to v0.18.7 - -## 0.7.14 - -Thu, 22 Sep 2022 00:31:25 GMT - -### Patches - -- Use Pressable from React Native (sanajmi@microsoft.com) - -## 0.7.13 - -Wed, 21 Sep 2022 21:00:40 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.13 -- Bump @fluentui-react-native/icon to v0.13.9 -- Bump @fluentui-react-native/interactive-hooks to v0.18.6 -- Bump @fluentui-react-native/pressable to v0.9.12 -- Bump @fluentui-react-native/text to v0.15.0 -- Bump @fluentui-react-native/tokens to v0.17.0 -- Bump @uifabricshared/foundation-compose to v1.12.5 - -## 0.7.12 - -Fri, 16 Sep 2022 01:53:06 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.12 -- Bump @fluentui-react-native/icon to v0.13.8 -- Bump @fluentui-react-native/interactive-hooks to v0.18.5 -- Bump @fluentui-react-native/pressable to v0.9.11 -- Bump @fluentui-react-native/text to v0.14.4 -- Bump @fluentui-react-native/tokens to v0.16.2 -- Bump @uifabricshared/foundation-compose to v1.12.4 - -## 0.7.11 - -Wed, 14 Sep 2022 23:07:41 GMT - -### Patches - -- Update RN Win32 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/adapters to v0.9.1 -- Bump @fluentui-react-native/focus-zone to v0.10.11 -- Bump @fluentui-react-native/icon to v0.13.7 -- Bump @fluentui-react-native/interactive-hooks to v0.18.4 -- Bump @fluentui-react-native/pressable to v0.9.10 -- Bump @fluentui-react-native/text to v0.14.3 -- Bump @fluentui-react-native/tokens to v0.16.1 -- Bump @uifabricshared/foundation-compose to v1.12.3 - -## 0.7.10 - -Fri, 09 Sep 2022 21:53:29 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.10 - -## 0.7.9 - -Tue, 06 Sep 2022 18:22:03 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.9 -- Bump @fluentui-react-native/icon to v0.13.6 -- Bump @fluentui-react-native/interactive-hooks to v0.18.3 -- Bump @fluentui-react-native/pressable to v0.9.9 -- Bump @fluentui-react-native/text to v0.14.2 - -## 0.7.8 - -Mon, 29 Aug 2022 23:21:44 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.8 -- Bump @fluentui-react-native/icon to v0.13.5 -- Bump @fluentui-react-native/interactive-hooks to v0.18.2 -- Bump @fluentui-react-native/pressable to v0.9.8 -- Bump @fluentui-react-native/text to v0.14.1 -- Bump @uifabricshared/foundation-compose to v1.12.2 - -## 0.7.7 - -Fri, 05 Aug 2022 23:22:38 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.7 -- Bump @fluentui-react-native/icon to v0.13.4 -- Bump @fluentui-react-native/interactive-hooks to v0.18.1 -- Bump @fluentui-react-native/pressable to v0.9.7 -- Bump @fluentui-react-native/text to v0.14.0 - -## 0.7.6 - -Fri, 29 Jul 2022 22:47:07 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.6 -- Bump @fluentui-react-native/interactive-hooks to v0.18.0 -- Bump @fluentui-react-native/pressable to v0.9.6 - -## 0.7.5 - -Fri, 29 Jul 2022 21:04:38 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.5 -- Bump @fluentui-react-native/icon to v0.13.3 -- Bump @fluentui-react-native/interactive-hooks to v0.17.5 -- Bump @fluentui-react-native/pressable to v0.9.5 -- Bump @fluentui-react-native/text to v0.13.0 - -## 0.7.4 - -Thu, 28 Jul 2022 23:57:03 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.4 -- Bump @fluentui-react-native/icon to v0.13.2 -- Bump @fluentui-react-native/interactive-hooks to v0.17.4 -- Bump @fluentui-react-native/pressable to v0.9.4 - -## 0.7.3 - -Tue, 26 Jul 2022 19:30:23 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.3 -- Bump @fluentui-react-native/icon to v0.13.1 -- Bump @fluentui-react-native/interactive-hooks to v0.17.3 -- Bump @fluentui-react-native/pressable to v0.9.3 -- Bump @fluentui-react-native/text to v0.12.1 -- Bump @uifabricshared/foundation-compose to v1.12.1 - -## 0.7.2 - -Mon, 25 Jul 2022 21:27:20 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.2 -- Bump @fluentui-react-native/interactive-hooks to v0.17.2 -- Bump @fluentui-react-native/pressable to v0.9.2 - -## 0.7.1 - -Sat, 23 Jul 2022 00:28:48 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.1 -- Bump @fluentui-react-native/interactive-hooks to v0.17.1 -- Bump @fluentui-react-native/pressable to v0.9.1 - -## 0.7.0 - -Thu, 14 Jul 2022 18:09:49 GMT - -### Minor changes - -- Update to React Native 0.66 (sanajmi@microsoft.com) -- Bump @fluentui-react-native/adapters to v0.9.0 -- Bump @fluentui-react-native/focus-zone to v0.10.0 -- Bump @fluentui-react-native/icon to v0.13.0 -- Bump @fluentui-react-native/interactive-hooks to v0.17.0 -- Bump @fluentui-react-native/pressable to v0.9.0 -- Bump @fluentui-react-native/text to v0.12.0 -- Bump @fluentui-react-native/tokens to v0.16.0 -- Bump @uifabricshared/foundation-composable to v0.11.0 -- Bump @uifabricshared/foundation-compose to v1.12.0 -- Bump @uifabricshared/foundation-settings to v0.12.0 - -## 0.6.54 - -Fri, 08 Jul 2022 21:23:37 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.35 -- Bump @fluentui-react-native/icon to v0.12.3 -- Bump @fluentui-react-native/interactive-hooks to v0.16.5 -- Bump @fluentui-react-native/pressable to v0.8.47 -- Bump @fluentui-react-native/text to v0.11.28 -- Bump @fluentui-react-native/tokens to v0.15.1 -- Bump @uifabricshared/foundation-compose to v1.11.23 - -## 0.6.53 - -Thu, 07 Jul 2022 21:24:07 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.34 -- Bump @fluentui-react-native/icon to v0.12.2 -- Bump @fluentui-react-native/interactive-hooks to v0.16.4 -- Bump @fluentui-react-native/pressable to v0.8.46 -- Bump @fluentui-react-native/text to v0.11.27 -- Bump @fluentui-react-native/tokens to v0.15.0 - -## 0.6.52 - -Thu, 16 Jun 2022 17:09:28 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.33 - -## 0.6.51 - -Mon, 13 Jun 2022 23:58:18 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.32 -- Bump @fluentui-react-native/interactive-hooks to v0.16.3 -- Bump @fluentui-react-native/pressable to v0.8.45 - -## 0.6.50 - -Mon, 06 Jun 2022 19:20:10 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.31 -- Bump @fluentui-react-native/icon to v0.12.1 -- Bump @fluentui-react-native/interactive-hooks to v0.16.2 -- Bump @fluentui-react-native/pressable to v0.8.44 - -## 0.6.49 - -Thu, 26 May 2022 21:22:22 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.30 -- Bump @fluentui-react-native/icon to v0.12.0 -- Bump @fluentui-react-native/interactive-hooks to v0.16.1 -- Bump @fluentui-react-native/pressable to v0.8.43 - -## 0.6.48 - -Thu, 26 May 2022 00:33:11 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.29 -- Bump @fluentui-react-native/interactive-hooks to v0.16.0 -- Bump @fluentui-react-native/pressable to v0.8.42 - -## 0.6.47 - -Wed, 25 May 2022 18:43:09 GMT - -### Patches - -- beachball sync (krsiler@microsoft.com) -- Bump @fluentui-react-native/focus-zone to v0.9.28 -- Bump @fluentui-react-native/icon to v0.11.25 -- Bump @fluentui-react-native/interactive-hooks to v0.15.10 -- Bump @fluentui-react-native/pressable to v0.8.41 -- Bump @fluentui-react-native/text to v0.11.26 -- Bump @fluentui-react-native/tokens to v0.14.0 -- Bump @uifabricshared/foundation-compose to v1.11.22 - -## 0.6.46 - -Sat, 21 May 2022 16:18:06 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.27 -- Bump @fluentui-react-native/icon to v0.11.23 -- Bump @fluentui-react-native/interactive-hooks to v0.15.8 -- Bump @fluentui-react-native/pressable to v0.8.40 -- Bump @fluentui-react-native/text to v0.11.24 -- Bump @fluentui-react-native/tokens to v0.12.2 - -## 0.6.45 - -Sat, 21 May 2022 01:47:58 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.26 -- Bump @fluentui-react-native/icon to v0.11.22 -- Bump @fluentui-react-native/interactive-hooks to v0.15.7 -- Bump @fluentui-react-native/pressable to v0.8.39 -- Bump @fluentui-react-native/text to v0.11.23 -- Bump @fluentui-react-native/tokens to v0.12.1 -- Bump @uifabricshared/foundation-compose to v1.11.20 - -## 0.6.44 - -Wed, 04 May 2022 21:06:04 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.25 -- Bump @fluentui-react-native/icon to v0.11.21 -- Bump @fluentui-react-native/interactive-hooks to v0.15.6 -- Bump @fluentui-react-native/pressable to v0.8.38 -- Bump @fluentui-react-native/text to v0.11.22 -- Bump @fluentui-react-native/tokens to v0.12.0 - -## 0.6.43 - -Thu, 28 Apr 2022 19:09:51 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.24 -- Bump @fluentui-react-native/icon to v0.11.20 -- Bump @fluentui-react-native/interactive-hooks to v0.15.5 -- Bump @fluentui-react-native/pressable to v0.8.37 -- Bump @fluentui-react-native/text to v0.11.21 -- Bump @fluentui-react-native/tokens to v0.11.11 -- Bump @uifabricshared/foundation-compose to v1.11.19 - -## 0.6.42 - -Wed, 27 Apr 2022 19:30:38 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.23 -- Bump @fluentui-react-native/icon to v0.11.19 -- Bump @fluentui-react-native/interactive-hooks to v0.15.4 -- Bump @fluentui-react-native/pressable to v0.8.36 -- Bump @fluentui-react-native/text to v0.11.20 -- Bump @fluentui-react-native/tokens to v0.11.10 -- Bump @uifabricshared/foundation-compose to v1.11.18 - -## 0.6.41 - -Thu, 21 Apr 2022 21:50:03 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.22 -- Bump @fluentui-react-native/icon to v0.11.18 -- Bump @fluentui-react-native/interactive-hooks to v0.15.3 -- Bump @fluentui-react-native/pressable to v0.8.35 -- Bump @fluentui-react-native/text to v0.11.19 -- Bump @uifabricshared/foundation-compose to v1.11.17 - -## 0.6.40 - -Tue, 19 Apr 2022 16:54:55 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.21 -- Bump @fluentui-react-native/icon to v0.11.17 -- Bump @fluentui-react-native/interactive-hooks to v0.15.2 -- Bump @fluentui-react-native/pressable to v0.8.34 -- Bump @fluentui-react-native/text to v0.11.18 -- Bump @uifabricshared/foundation-compose to v1.11.16 - -## 0.6.39 - -Mon, 18 Apr 2022 17:51:06 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.20 -- Bump @fluentui-react-native/interactive-hooks to v0.15.1 -- Bump @fluentui-react-native/pressable to v0.8.33 - -## 0.6.38 - -Wed, 13 Apr 2022 23:44:28 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.19 -- Bump @fluentui-react-native/interactive-hooks to v0.15.0 -- Bump @fluentui-react-native/pressable to v0.8.32 - -## 0.6.37 - -Tue, 12 Apr 2022 21:53:04 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.18 - -## 0.6.36 - -Tue, 12 Apr 2022 00:35:09 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.17 - -## 0.6.35 - -Fri, 08 Apr 2022 18:53:12 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.16 - -## 0.6.34 - -Wed, 06 Apr 2022 22:58:22 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.15 -- Bump @fluentui-react-native/icon to v0.11.16 -- Bump @fluentui-react-native/interactive-hooks to v0.14.8 -- Bump @fluentui-react-native/pressable to v0.8.31 -- Bump @fluentui-react-native/text to v0.11.17 -- Bump @uifabricshared/foundation-compose to v1.11.15 - -## 0.6.33 - -Tue, 05 Apr 2022 20:05:50 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.14 -- Bump @fluentui-react-native/icon to v0.11.15 -- Bump @fluentui-react-native/interactive-hooks to v0.14.7 -- Bump @fluentui-react-native/pressable to v0.8.30 -- Bump @fluentui-react-native/text to v0.11.16 -- Bump @uifabricshared/foundation-compose to v1.11.14 - -## 0.6.32 - -Thu, 31 Mar 2022 07:27:47 GMT - -### Patches - -- Ban `export *` in index files for better tree-shakeability (4123478+tido64@users.noreply.github.com) -- Bump @fluentui-react-native/adapters to v0.8.5 -- Bump @fluentui-react-native/focus-zone to v0.9.13 -- Bump @fluentui-react-native/icon to v0.11.14 -- Bump @fluentui-react-native/interactive-hooks to v0.14.6 -- Bump @fluentui-react-native/pressable to v0.8.29 -- Bump @fluentui-react-native/text to v0.11.15 -- Bump @fluentui-react-native/tokens to v0.11.9 -- Bump @uifabricshared/foundation-composable to v0.10.3 -- Bump @uifabricshared/foundation-compose to v1.11.13 -- Bump @uifabricshared/foundation-settings to v0.11.3 - -## 0.6.31 - -Mon, 28 Mar 2022 15:02:37 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.12 -- Bump @fluentui-react-native/interactive-hooks to v0.14.5 -- Bump @fluentui-react-native/pressable to v0.8.28 - -## 0.6.30 - -Wed, 23 Mar 2022 17:24:05 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.11 -- Bump @fluentui-react-native/icon to v0.11.13 -- Bump @fluentui-react-native/interactive-hooks to v0.14.4 -- Bump @fluentui-react-native/pressable to v0.8.27 -- Bump @fluentui-react-native/text to v0.11.14 -- Bump @uifabricshared/foundation-compose to v1.11.12 - -## 0.6.29 - -Mon, 21 Mar 2022 01:47:54 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.10 - -## 0.6.28 - -Fri, 11 Mar 2022 00:34:53 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.9 - -## 0.6.27 - -Mon, 07 Mar 2022 19:15:33 GMT - -### Patches - -- Bump @fluentui-react-native/adapters to v0.8.4 -- Bump @fluentui-react-native/focus-zone to v0.9.8 -- Bump @fluentui-react-native/icon to v0.11.12 -- Bump @fluentui-react-native/interactive-hooks to v0.14.3 -- Bump @fluentui-react-native/pressable to v0.8.26 -- Bump @fluentui-react-native/text to v0.11.13 -- Bump @fluentui-react-native/tokens to v0.11.8 - -## 0.6.26 - -Fri, 04 Mar 2022 23:43:10 GMT - -### Patches - -- Bump @rnx-kit/eslint-plugin from 0.2.10 to 0.2.11 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/focus-zone to v0.9.7 -- Bump @fluentui-react-native/icon to v0.11.11 -- Bump @fluentui-react-native/interactive-hooks to v0.14.2 -- Bump @fluentui-react-native/pressable to v0.8.25 - -## 0.6.25 - -Thu, 03 Mar 2022 20:20:09 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.6 -- Bump @fluentui-react-native/icon to v0.11.10 -- Bump @fluentui-react-native/interactive-hooks to v0.14.1 -- Bump @fluentui-react-native/pressable to v0.8.24 -- Bump @fluentui-react-native/text to v0.11.12 -- Bump @fluentui-react-native/tokens to v0.11.7 -- Bump @uifabricshared/foundation-compose to v1.11.11 - -## 0.6.24 - -Tue, 01 Mar 2022 20:18:31 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.5 -- Bump @fluentui-react-native/interactive-hooks to v0.14.0 -- Bump @fluentui-react-native/pressable to v0.8.23 - -## 0.6.23 - -Fri, 18 Feb 2022 23:27:11 GMT - -### Patches - -- Bump @fluentui-react-native/adapters to v0.8.3 -- Bump @fluentui-react-native/focus-zone to v0.9.4 -- Bump @fluentui-react-native/icon to v0.11.9 -- Bump @fluentui-react-native/interactive-hooks to v0.13.3 -- Bump @fluentui-react-native/pressable to v0.8.22 -- Bump @fluentui-react-native/text to v0.11.11 -- Bump @fluentui-react-native/tokens to v0.11.6 - -## 0.6.22 - -Thu, 17 Feb 2022 02:13:07 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.3 -- Bump @fluentui-react-native/icon to v0.11.8 -- Bump @fluentui-react-native/interactive-hooks to v0.13.2 -- Bump @fluentui-react-native/pressable to v0.8.21 - -## 0.6.21 - -Thu, 17 Feb 2022 01:22:02 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.2 -- Bump @fluentui-react-native/icon to v0.11.7 -- Bump @fluentui-react-native/interactive-hooks to v0.13.1 -- Bump @fluentui-react-native/pressable to v0.8.20 -- Bump @fluentui-react-native/text to v0.11.10 -- Bump @uifabricshared/foundation-compose to v1.11.10 - -## 0.6.20 - -Wed, 09 Feb 2022 20:14:50 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.1 -- Bump @fluentui-react-native/interactive-hooks to v0.13.0 -- Bump @fluentui-react-native/pressable to v0.8.19 - -## 0.6.19 - -Fri, 04 Feb 2022 20:31:52 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.0 - -## 0.6.18 - -Wed, 02 Feb 2022 02:29:07 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.8.18 -- Bump @fluentui-react-native/icon to v0.11.6 -- Bump @fluentui-react-native/interactive-hooks to v0.12.2 -- Bump @fluentui-react-native/pressable to v0.8.18 -- Bump @fluentui-react-native/text to v0.11.9 -- Bump @uifabricshared/foundation-compose to v1.11.9 - -## 0.6.17 - -Wed, 26 Jan 2022 20:31:04 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.8.17 -- Bump @fluentui-react-native/interactive-hooks to v0.12.1 -- Bump @fluentui-react-native/pressable to v0.8.17 - -## 0.6.16 - -Wed, 26 Jan 2022 17:02:27 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.8.16 -- Bump @fluentui-react-native/interactive-hooks to v0.12.0 -- Bump @fluentui-react-native/pressable to v0.8.16 - -## 0.6.15 - -Tue, 25 Jan 2022 21:55:31 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.8.15 -- Bump @fluentui-react-native/interactive-hooks to v0.11.15 -- Bump @fluentui-react-native/pressable to v0.8.15 - -## 0.6.14 - -Tue, 25 Jan 2022 16:48:23 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.8.14 -- Bump @fluentui-react-native/interactive-hooks to v0.11.14 -- Bump @fluentui-react-native/pressable to v0.8.14 - -## 0.6.13 - -Fri, 14 Jan 2022 21:49:07 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.8.13 -- Bump @fluentui-react-native/icon to v0.11.5 -- Bump @fluentui-react-native/interactive-hooks to v0.11.13 -- Bump @fluentui-react-native/pressable to v0.8.13 -- Bump @fluentui-react-native/text to v0.11.8 -- Bump @uifabricshared/foundation-compose to v1.11.8 - -## 0.6.12 - -Fri, 14 Jan 2022 01:00:03 GMT - -### Patches - -- fix disabled button (email not defined) -- Bump @fluentui-react-native/focus-zone to v0.8.12 -- Bump @fluentui-react-native/icon to v0.11.4 -- Bump @fluentui-react-native/interactive-hooks to v0.11.12 -- Bump @fluentui-react-native/pressable to v0.8.12 -- Bump @fluentui-react-native/text to v0.11.7 -- Bump @fluentui-react-native/tokens to v0.11.5 -- Bump @uifabricshared/foundation-compose to v1.11.7 - -## 0.6.11 - -Thu, 06 Jan 2022 23:14:38 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.8.11 -- Bump @fluentui-react-native/icon to v0.11.3 -- Bump @fluentui-react-native/interactive-hooks to v0.11.11 -- Bump @fluentui-react-native/pressable to v0.8.11 -- Bump @fluentui-react-native/text to v0.11.6 -- Bump @fluentui-react-native/tokens to v0.11.4 -- Bump @uifabricshared/foundation-compose to v1.11.6 - -## 0.6.10 - -Thu, 06 Jan 2022 21:30:08 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.8.10 -- Bump @fluentui-react-native/icon to v0.11.2 -- Bump @fluentui-react-native/interactive-hooks to v0.11.10 -- Bump @fluentui-react-native/pressable to v0.8.10 -- Bump @fluentui-react-native/text to v0.11.5 -- Bump @uifabricshared/foundation-compose to v1.11.5 - -## 0.6.9 - -Wed, 05 Jan 2022 23:53:54 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.8.9 -- Bump @fluentui-react-native/interactive-hooks to v0.11.9 -- Bump @fluentui-react-native/pressable to v0.8.9 - -## 0.6.8 - -Tue, 21 Dec 2021 20:56:31 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.8.8 -- Bump @fluentui-react-native/icon to v0.11.1 -- Bump @fluentui-react-native/interactive-hooks to v0.11.8 -- Bump @fluentui-react-native/pressable to v0.8.8 - -## 0.6.7 - -Mon, 20 Dec 2021 22:56:01 GMT - -### Patches - -- Add repository property to all package.json files (ruaraki@microsoft.com) -- Bump @fluentui-react-native/adapters to v0.8.2 -- Bump @fluentui-react-native/focus-zone to v0.8.7 -- Bump @fluentui-react-native/icon to v0.11.0 -- Bump @fluentui-react-native/interactive-hooks to v0.11.7 -- Bump @fluentui-react-native/pressable to v0.8.7 -- Bump @fluentui-react-native/text to v0.11.4 -- Bump @fluentui-react-native/tokens to v0.11.3 -- Bump @uifabricshared/foundation-composable to v0.10.2 -- Bump @uifabricshared/foundation-compose to v1.11.4 -- Bump @uifabricshared/foundation-settings to v0.11.2 - -## 0.6.6 - -Sun, 19 Dec 2021 05:07:36 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.8.6 -- Bump @fluentui-react-native/interactive-hooks to v0.11.6 -- Bump @fluentui-react-native/pressable to v0.8.6 - -## 0.6.5 - -Sat, 18 Dec 2021 04:15:05 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.8.5 -- Bump @fluentui-react-native/icon to v0.10.4 -- Bump @fluentui-react-native/interactive-hooks to v0.11.5 -- Bump @fluentui-react-native/pressable to v0.8.5 -- Bump @fluentui-react-native/text to v0.11.3 -- Bump @fluentui-react-native/tokens to v0.11.2 -- Bump @uifabricshared/foundation-composable to v0.10.1 -- Bump @uifabricshared/foundation-compose to v1.11.3 -- Bump @uifabricshared/foundation-settings to v0.11.1 - -## 0.6.4 - -Fri, 17 Dec 2021 22:06:58 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.8.4 -- Bump @fluentui-react-native/icon to v0.10.3 -- Bump @fluentui-react-native/interactive-hooks to v0.11.4 -- Bump @fluentui-react-native/pressable to v0.8.4 - -## 0.6.3 - -Fri, 17 Dec 2021 19:53:21 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.8.3 -- Bump @fluentui-react-native/icon to v0.10.2 -- Bump @fluentui-react-native/interactive-hooks to v0.11.3 -- Bump @fluentui-react-native/pressable to v0.8.3 - -## 0.6.2 - -Fri, 17 Dec 2021 01:26:42 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.8.2 -- Bump @fluentui-react-native/icon to v0.10.1 -- Bump @fluentui-react-native/interactive-hooks to v0.11.2 -- Bump @fluentui-react-native/pressable to v0.8.2 -- Bump @fluentui-react-native/text to v0.11.2 -- Bump @uifabricshared/foundation-compose to v1.11.2 - -## 0.6.1 - -Thu, 16 Dec 2021 19:10:26 GMT - -### Patches - -- Rename Jest snapshots to be platform agnostic (sanajmi@microsoft.com) -- Bump @fluentui-react-native/adapters to v0.8.1 -- Bump @fluentui-react-native/focus-zone to v0.8.1 -- Bump @fluentui-react-native/icon to v0.10.0 -- Bump @fluentui-react-native/interactive-hooks to v0.11.1 -- Bump @fluentui-react-native/pressable to v0.8.1 -- Bump @fluentui-react-native/text to v0.11.1 -- Bump @fluentui-react-native/tokens to v0.11.1 -- Bump @uifabricshared/foundation-compose to v1.11.1 - -## 0.6.0 - -Wed, 17 Nov 2021 19:28:07 GMT - -### Minor changes - -- Update to react-native 0.64 (afoxman@microsoft.com) -- Adding E2E Testing Improvements (safreibe@microsoft.com) - -### Patches - -- Bump @fluentui-react-native/adapters to v0.8.0 (afoxman@microsoft.com) -- Bump @fluentui-react-native/pressable to v0.8.0 (afoxman@microsoft.com) -- Bump @fluentui-react-native/text to v0.11.0 (afoxman@microsoft.com) -- Bump @fluentui-react-native/icon to v0.9.0 (afoxman@microsoft.com) -- Bump @fluentui-react-native/interactive-hooks to v0.11.0 (afoxman@microsoft.com) -- Bump @fluentui-react-native/focus-zone to v0.8.0 (afoxman@microsoft.com) -- Bump @fluentui-react-native/tokens to v0.11.0 (afoxman@microsoft.com) -- Bump @uifabricshared/foundation-compose to v1.11.0 (afoxman@microsoft.com) -- Bump @uifabricshared/foundation-composable to v0.10.0 (afoxman@microsoft.com) -- Bump @uifabricshared/foundation-settings to v0.11.0 (afoxman@microsoft.com) -- Bump @fluentui-react-native/test-tools to v0.1.1 (afoxman@microsoft.com) - -## 0.5.13 - -Tue, 09 Nov 2021 23:04:33 GMT - -### Patches - -- Bump @uifabricshared/foundation-compose to v1.10.22 (67026167+chiuam@users.noreply.github.com) - -## 0.5.12 - -Mon, 08 Nov 2021 20:52:15 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.7.33 (sanajmi@microsoft.com) - -## 0.5.11 - -Mon, 01 Nov 2021 18:53:37 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.7.32 (sanajmi@microsoft.com) - -## 0.5.10 - -Mon, 25 Oct 2021 19:24:43 GMT - -### Patches - -- Bump @fluentui-react-native/tokens to v0.10.2 (ruaraki@microsoft.com) - -## 0.5.9 - -Wed, 20 Oct 2021 03:46:25 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.8.27 (ruaraki@microsoft.com) - -## 0.5.8 - -Tue, 19 Oct 2021 20:23:36 GMT - -### Patches - -- Bump @fluentui-react-native/pressable to v0.7.26 (ruaraki@microsoft.com) - -## 0.5.7 - -Thu, 07 Oct 2021 20:59:20 GMT - -### Patches - -- Bump @uifabricshared/foundation-compose to v1.10.18 (ruaraki@microsoft.com) - -## 0.5.6 - -Fri, 01 Oct 2021 17:52:17 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.8.24 (ruaraki@microsoft.com) - -## 0.5.5 - -Tue, 28 Sep 2021 21:08:25 GMT - -### Patches - -- Delete NativeButton (67026167+chiuam@users.noreply.github.com) - -## 0.5.4 - -Tue, 21 Sep 2021 16:32:12 GMT - -### Patches - -- adding an adapter for macOS (67026167+chiuam@users.noreply.github.com) - -## 0.5.3 - -Mon, 13 Sep 2021 23:22:43 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.8.21 (ruaraki@microsoft.com) - -## 0.5.2 - -Fri, 10 Sep 2021 18:16:59 GMT - -### Patches - -- Bump @uifabricshared/foundation-compose to v1.10.14 (ruaraki@microsoft.com) - -## 0.5.1 - -Thu, 09 Sep 2021 22:12:19 GMT - -### Patches - -- Bump @uifabricshared/foundation-compose to v1.10.13 (ruaraki@microsoft.com) - -## 0.5.0 - -Thu, 09 Sep 2021 20:03:01 GMT - -### Minor changes - -- Tabs Control for Windows (dake.3601@gmail.com) -- Dynamic TabsItem (dake.3601@gmail.com) - -### Patches - -- fixed comments, styling, and made props const (sriyaaluru@gmail.com) -- Bump @uifabricshared/foundation-compose to v1.10.12 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/text to v0.10.14 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/icon to v0.8.18 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/interactive-hooks to v0.10.41 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/focus-zone to v0.7.21 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/pressable to v0.7.18 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/tokens to v0.9.23 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/test-tools to v0.1.1 (ruaraki@microsoft.com) - -## 0.4.0 - -Tue, 31 Aug 2021 18:48:34 GMT - -### Minor changes - -- tabs control for macos (sriyaaluru@gmail.com) - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.7.20 (chripear@microsoft.com) - -## 0.3.4 - -Thu, 26 Aug 2021 21:02:08 GMT - -### Patches - -- Bump @fluentui-react-native/pressable to v0.7.17 (ruaraki@microsoft.com) - -## 0.3.3 - -Thu, 26 Aug 2021 04:48:40 GMT - -### Patches - -- fix text truncation for radio button (67026167+chiuam@users.noreply.github.com) - -## 0.3.2 - -Wed, 25 Aug 2021 21:36:58 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.8.15 (sanajmi@microsoft.com) - -## 0.3.1 - -Tue, 24 Aug 2021 18:08:30 GMT - -### Patches - -- Use exported IconSourcesType from Icon package (sanajmi@microsoft.com) - -## 0.3.0 - -Mon, 23 Aug 2021 23:35:47 GMT - -### Minor changes - -- Deprecate aria- prefix properties (krsiler@microsoft.com) - -### Patches - -- Bump @fluentui-react-native/adapters to v0.7.0 (dake.3601@gmail.com) -- Bump @fluentui-react-native/pressable to v0.7.13 (dake.3601@gmail.com) -- Bump @fluentui-react-native/text to v0.10.11 (dake.3601@gmail.com) -- Bump @fluentui-react-native/tokens to v0.9.20 (dake.3601@gmail.com) -- Bump @fluentui-react-native/icon to v0.8.13 (v.kozlova13@gmail.com) -- Bump @fluentui-react-native/interactive-hooks to v0.10.36 (sanajmi@microsoft.com) -- Bump @fluentui-react-native/focus-zone to v0.7.15 (sanajmi@microsoft.com) - -## 0.2.3 - -Thu, 19 Aug 2021 18:31:21 GMT - -### Patches - -- Bump @fluentui-react-native/tokens to v0.9.19 (ruaraki@microsoft.com) - -## 0.2.2 - -Wed, 18 Aug 2021 23:00:57 GMT - -### Patches - -- Bump @uifabricshared/foundation-compose to v1.10.9 (ruaraki@microsoft.com) - -## 0.2.1 - -Wed, 18 Aug 2021 20:17:46 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.8.10 (ruaraki@microsoft.com) - -## 0.2.0 - -Tue, 17 Aug 2021 20:02:00 GMT - -### Minor changes - -- Implemented Tabs Control (dake.3601@gmail.com) - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.7.11 (sanajmi@microsoft.com) diff --git a/packages/components/Tabs/babel.config.js b/packages/components/Tabs/babel.config.js deleted file mode 100644 index e55017b16..000000000 --- a/packages/components/Tabs/babel.config.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('@fluentui-react-native/scripts/babel.config'); diff --git a/packages/components/Tabs/jest.config.js b/packages/components/Tabs/jest.config.js deleted file mode 100644 index f6813bad7..000000000 --- a/packages/components/Tabs/jest.config.js +++ /dev/null @@ -1,2 +0,0 @@ -const { configureReactNativeJest } = require('@fluentui-react-native/scripts'); -module.exports = configureReactNativeJest('win32'); diff --git a/packages/components/Tabs/just.config.js b/packages/components/Tabs/just.config.js deleted file mode 100644 index 4f26f8acb..000000000 --- a/packages/components/Tabs/just.config.js +++ /dev/null @@ -1,3 +0,0 @@ -const { preset } = require('@fluentui-react-native/scripts'); - -preset(); diff --git a/packages/components/Tabs/package.json b/packages/components/Tabs/package.json deleted file mode 100644 index 7e3571324..000000000 --- a/packages/components/Tabs/package.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "name": "@fluentui-react-native/tabs", - "version": "0.14.7", - "description": "A cross-platform Tabs component using the Fluent Design System", - "main": "src/index.ts", - "module": "src/index.ts", - "typings": "lib/index.d.ts", - "onPublish": { - "main": "lib-commonjs/index.js", - "module": "lib/index.js" - }, - "scripts": { - "build": "fluentui-scripts build", - "clean": "fluentui-scripts clean", - "depcheck": "fluentui-scripts depcheck", - "just": "fluentui-scripts", - "lint": "fluentui-scripts eslint", - "test": "fluentui-scripts jest", - "update-snapshots": "fluentui-scripts jest -u", - "verify-api": "fluentui-scripts verify-api-extractor", - "update-api": "fluentui-scripts update-api-extractor", - "prettier": "fluentui-scripts prettier", - "prettier-fix": "fluentui-scripts prettier --fix true" - }, - "repository": { - "type": "git", - "url": "https://github.com/microsoft/fluentui-react-native.git", - "directory": "packages/components/Tabs" - }, - "dependencies": { - "@fluentui-react-native/adapters": ">=0.12.0 <1.0.0", - "@fluentui-react-native/focus-zone": ">=0.16.6 <1.0.0", - "@fluentui-react-native/icon": "0.20.7", - "@fluentui-react-native/interactive-hooks": ">=0.25.6 <1.0.0", - "@fluentui-react-native/text": ">=0.22.6 <1.0.0", - "@fluentui-react-native/tokens": ">=0.22.5 <1.0.0", - "@uifabricshared/foundation-composable": ">=0.12.3 <1.0.0", - "@uifabricshared/foundation-compose": "^1.14.19", - "@uifabricshared/foundation-settings": ">=0.14.0 <1.0.0" - }, - "devDependencies": { - "@fluentui-react-native/eslint-config-rules": "^0.1.1", - "@fluentui-react-native/scripts": "^0.1.1", - "@fluentui-react-native/test-tools": ">=0.1.1 <1.0.0", - "@office-iss/react-native-win32": "^0.72.0", - "@react-native/metro-config": "^0.72.0", - "react": "18.2.0", - "react-native": "^0.72.0" - }, - "peerDependencies": { - "react": "18.2.0", - "react-native": "^0.72.0" - }, - "author": "", - "license": "MIT", - "rnx-kit": { - "kitType": "library", - "alignDeps": { - "presets": [ - "microsoft/react-native" - ], - "requirements": [ - "react-native@0.72" - ], - "capabilities": [ - "core", - "core-android", - "core-ios", - "react" - ] - } - } -} diff --git a/packages/components/Tabs/src/Tabs.settings.macos.ts b/packages/components/Tabs/src/Tabs.settings.macos.ts deleted file mode 100644 index d5b607e4a..000000000 --- a/packages/components/Tabs/src/Tabs.settings.macos.ts +++ /dev/null @@ -1,33 +0,0 @@ -/* -Disclaimer: these styles do not follow a specific figma design, but are -meant to be placeholders until new designs are developed -*/ - -import type { IComposeSettings } from '@uifabricshared/foundation-compose'; - -import type { TabsType } from './Tabs.types'; -import { tabsName } from './Tabs.types'; - -export const settings: IComposeSettings = [ - { - tokens: { - color: 'menuItemText', - variant: 'bodySemibold', - fontWeight: 'bold', - fontSize: 14, - }, - root: { - accessible: true, - style: { - marginLeft: 4, - }, - }, - stack: { - style: { - marginTop: 6, - flexDirection: 'row', - }, - }, - }, - tabsName, -]; diff --git a/packages/components/Tabs/src/Tabs.settings.ts b/packages/components/Tabs/src/Tabs.settings.ts deleted file mode 100644 index a917d5fd6..000000000 --- a/packages/components/Tabs/src/Tabs.settings.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { IComposeSettings } from '@uifabricshared/foundation-compose'; - -import type { TabsType } from './Tabs.types'; -import { tabsName } from './Tabs.types'; - -export const settings: IComposeSettings = [ - { - tokens: { - color: 'menuItemText', - }, - root: { - accessible: true, - accessibilityRole: 'tablist', - }, - label: { - variant: 'subheaderSemibold', - }, - stack: { - style: { - flexDirection: 'row', - }, - }, - }, - tabsName, -]; diff --git a/packages/components/Tabs/src/Tabs.settings.windows.ts b/packages/components/Tabs/src/Tabs.settings.windows.ts deleted file mode 100644 index 348a493c1..000000000 --- a/packages/components/Tabs/src/Tabs.settings.windows.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { IComposeSettings } from '@uifabricshared/foundation-compose'; - -import type { TabsType } from './Tabs.types'; -import { tabsName } from './Tabs.types'; - -export const settings: IComposeSettings = [ - { - tokens: { - color: 'menuItemText', - variant: 'bodySemibold', - fontWeight: 'bold', - fontSize: 14, - }, - root: { - accessible: true, - accessibilityRole: 'tablist', - }, - stack: { - style: { - flexDirection: 'row', - marginTop: 6, - }, - }, - label: { - style: { - marginStart: 10, - }, - }, - }, - tabsName, -]; diff --git a/packages/components/Tabs/src/Tabs.tsx b/packages/components/Tabs/src/Tabs.tsx deleted file mode 100644 index f0dfa01fc..000000000 --- a/packages/components/Tabs/src/Tabs.tsx +++ /dev/null @@ -1,172 +0,0 @@ -/** @jsxRuntime classic */ -/** @jsx withSlots */ -import * as React from 'react'; -import { Pressable, View } from 'react-native'; - -import { filterViewProps } from '@fluentui-react-native/adapters'; -import { FocusZone } from '@fluentui-react-native/focus-zone'; -import { useSelectedKey } from '@fluentui-react-native/interactive-hooks'; -import { Text } from '@fluentui-react-native/text'; -import { foregroundColorTokens, textTokens, backgroundColorTokens } from '@fluentui-react-native/tokens'; -import type { ISlots } from '@uifabricshared/foundation-composable'; -import { withSlots } from '@uifabricshared/foundation-composable'; -import type { IUseComposeStyling } from '@uifabricshared/foundation-compose'; -import { compose } from '@uifabricshared/foundation-compose'; -import { mergeSettings } from '@uifabricshared/foundation-settings'; - -import { settings } from './Tabs.settings'; -import type { TabsType, TabsProps, TabsState, TabsSlotProps, TabsRenderData, TabsContextData } from './Tabs.types'; -import { tabsName } from './Tabs.types'; - -export const TabsContext = React.createContext({ - selectedKey: null, - onTabsClick: (/* key: string */) => { - return; - }, - getTabId: (/* key:string, index: number*/) => { - return null; - }, - updateSelectedTabsItemRef: (/* ref: React.RefObject*/) => { - return; - }, - tabsItemKeys: [], - views: null, -}); - -export const Tabs = compose({ - displayName: tabsName, - - usePrepareProps: (userProps: TabsProps, useStyling: IUseComposeStyling) => { - const defaultComponentRef = React.useRef(null); - const { - label, - accessibilityLabel = userProps.label, - selectedKey, - headersOnly, - defaultSelectedKey, - getTabId, - componentRef = defaultComponentRef, - isCircularNavigation, - ...rest - } = userProps; - - /* The useSelectedKey hook is called after a TabsItem is pressed to update the Tab and TabsItem - selected property and call the Tab and TabsItem onTabsClick callback. */ - const data = useSelectedKey(selectedKey || defaultSelectedKey || null, userProps.onTabsClick); - - const [selectedTabsItemRef, setSelectedTabsItemRef] = React.useState(React.useRef(null)); - - const onSelectTabsItemRef = React.useCallback( - (ref: React.RefObject) => { - setSelectedTabsItemRef(ref); - }, - [setSelectedTabsItemRef], - ); - - const findTabId = React.useCallback( - (key: string, index: number) => { - if (getTabId) { - return getTabId(key, index); - } - return `${key}-Tab${index}`; - }, - [getTabId], - ); - - // Stores views to be displayed. - const map = new Map(); - - const state: TabsState = { - context: { - selectedKey: selectedKey ?? data.selectedKey, - onTabsClick: data.onKeySelect, - getTabId: findTabId, - updateSelectedTabsItemRef: onSelectTabsItemRef, - views: map, - }, - info: { - headersOnly: headersOnly ?? false, - label: !!label, - }, - }; - - const styleProps = useStyling(userProps, (override: string) => state[override] || userProps[override]); - - const slotProps = mergeSettings(styleProps, { - root: { ref: componentRef, accessibilityLabel: accessibilityLabel, accessibilityRole: 'tablist', ...rest }, - label: { children: label }, - container: { isCircularNavigation: isCircularNavigation, defaultTabbableElement: selectedTabsItemRef }, - }); - - return { slotProps, state }; - }, - - render: (Slots: ISlots, renderData: TabsRenderData, ...children: React.ReactNode[]) => { - if (!renderData.state) { - return null; - } - - // Populate the tabsItemKeys array. - if (children) { - const enabledKeys = []; - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - // Generates array of keys and enabled keys. - renderData.state.context.tabsItemKeys = React.Children.map(children, (child: React.ReactChild) => { - if (React.isValidElement(child)) { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - if (!child.props.disabled) { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - enabledKeys.push(child.props.itemKey); - } - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - return child.props.itemKey; - } - }); - - /* Sets the default selected TabsItem if a TabsItem is hidden. - The default selected Tabsitem is the first enabled TabsItem. */ - if (!enabledKeys.includes(renderData.state.context.selectedKey)) { - renderData.state.context.selectedKey = enabledKeys[0] ?? null; - } - } - - return ( - - - {renderData.state?.info?.label && } - - {children} - - - - {(context) => !renderData.state.info.headersOnly && context.views.get(context.selectedKey)} - - - - - ); - }, - - settings, - slots: { - root: Pressable, - label: Text, - container: FocusZone, - stack: { slotType: View, filter: filterViewProps }, - tabPanel: { slotType: View, filter: filterViewProps }, - }, - styles: { - root: [], - label: [foregroundColorTokens, textTokens], - stack: [backgroundColorTokens], - }, -}); - -export default Tabs; diff --git a/packages/components/Tabs/src/Tabs.types.ts b/packages/components/Tabs/src/Tabs.types.ts deleted file mode 100644 index 42bc34fbd..000000000 --- a/packages/components/Tabs/src/Tabs.types.ts +++ /dev/null @@ -1,131 +0,0 @@ -import type * as React from 'react'; -import type { View, ViewProps } from 'react-native'; - -import type { FocusZoneProps } from '@fluentui-react-native/focus-zone'; -import type { PressablePropsExtended } from '@fluentui-react-native/interactive-hooks'; -import type { ITextProps } from '@fluentui-react-native/text'; -import type { IForegroundColorTokens, FontTokens, IBackgroundColorTokens } from '@fluentui-react-native/tokens'; -import type { IRenderData } from '@uifabricshared/foundation-composable'; - -export const tabsName = 'Tabs'; - -export interface TabsContextData { - /** - * The currently selected TabsItem's key. - */ - selectedKey: string | null; - - /** - * Returns the index of the currently selected key. - */ - getTabId?: (key: string, index: number) => string | null; - - /** - * Updates the selected tabsItem and calls the client’s onTabsClick callback. - */ - onTabsClick?: (key: string) => void; - - /** - * Updates the selected tabsItem's ref to set as the default tabbable element. - */ - updateSelectedTabsItemRef?: (ref: React.RefObject) => void | null; - - /** - * Array of tabsItem keys in the group. - */ - tabsItemKeys?: string[]; - - /** - * A Map to store the corresponding view of each TabsItem. - */ - views?: Map | null; - - /** - * GH #964, Reference to the Focus Container as there is no FocusZone on windows. - * Windows-Specific Prop. - */ - focusZoneRef?: React.RefObject | null; -} - -export interface TabsInfo { - headersOnly?: boolean; - label?: boolean; - /** - * Array of enabled keys in the group - * Windows-Specific Prop. - */ - enabledKeys?: string[]; -} - -export interface TabsState { - context: TabsContextData; - info: TabsInfo; -} - -export type TabsProps = React.PropsWithChildren< - Pick & { - /** - * Descriptive label for the Tabs. This will be displayed as the title of the Tabs to the user. - */ - label?: string; - - /** - * The key of the TabsItem that will initially be selected. - */ - defaultSelectedKey?: string; - - /** - * An accessibility label for screen readers. If not provided, it will be set to the label of the Tabs. - */ - accessibilityLabel?: string; - - /** - * The key of the selected option. If you provide this, you must maintain selection state by observing - * onTabsClick events and passing a new value in when changed. This overrides defaultSelectedKey - * and makes the Tabs a controlled component. This prop is mutually exclusive to defaultSelectedKey. - */ - selectedKey?: string; - - /** - * Callback for receiving a notification when the choice has been changed. - */ - onTabsClick?: (key: string) => void; - - /** - * Callback to customize how IDs are generated for each tab header. - * Useful if you're rendering content outside and need to connect accessibility-labelledby. - */ - getTabId?: (key: string, index: number) => string; - - /** - * Sets whether to only render the header. - */ - headersOnly?: boolean; - - /** - * A RefObject to access Tabs. - */ - componentRef?: React.RefObject; - - testID?: string; - } ->; - -export interface TabsTokens extends IForegroundColorTokens, FontTokens, IBackgroundColorTokens {} - -export interface TabsSlotProps { - root: React.PropsWithRef; - label: ITextProps; - container: FocusZoneProps; - stack: ViewProps; - tabPanel: ViewProps; -} - -export type TabsRenderData = IRenderData; - -export interface TabsType { - props: TabsProps; - tokens: TabsTokens; - slotProps: TabsSlotProps; - state: TabsState; -} diff --git a/packages/components/Tabs/src/Tabs.windows.tsx b/packages/components/Tabs/src/Tabs.windows.tsx deleted file mode 100644 index 7a141d2b6..000000000 --- a/packages/components/Tabs/src/Tabs.windows.tsx +++ /dev/null @@ -1,189 +0,0 @@ -/** @jsxRuntime classic */ -/** @jsx withSlots */ -import * as React from 'react'; -import { Pressable, View } from 'react-native'; - -import { filterViewProps } from '@fluentui-react-native/adapters'; -import { useSelectedKey, usePressableState } from '@fluentui-react-native/interactive-hooks'; -import { Text } from '@fluentui-react-native/text'; -import { foregroundColorTokens, textTokens, backgroundColorTokens } from '@fluentui-react-native/tokens'; -import type { ISlots } from '@uifabricshared/foundation-composable'; -import { withSlots } from '@uifabricshared/foundation-composable'; -import type { IUseComposeStyling } from '@uifabricshared/foundation-compose'; -import { compose } from '@uifabricshared/foundation-compose'; -import { mergeSettings } from '@uifabricshared/foundation-settings'; - -import { settings } from './Tabs.settings'; -import type { TabsType, TabsProps, TabsState, TabsSlotProps, TabsRenderData, TabsContextData } from './Tabs.types'; -import { tabsName } from './Tabs.types'; - -export const TabsContext = React.createContext({ - selectedKey: null, - onTabsClick: (/* key: string */) => { - return; - }, - getTabId: (/* key:string, index: number*/) => { - return null; - }, - updateSelectedTabsItemRef: (/* ref: React.RefObject*/) => { - return; - }, - tabsItemKeys: [], - views: null, - focusZoneRef: null, -}); - -export const Tabs = compose({ - displayName: tabsName, - - usePrepareProps: (userProps: TabsProps, useStyling: IUseComposeStyling) => { - const focusZoneRef = React.useRef(null); - const defaultComponentRef = React.useRef(null); - const { - label, - accessibilityLabel = userProps.label, - selectedKey, - headersOnly, - defaultSelectedKey, - getTabId, - componentRef = defaultComponentRef, - isCircularNavigation, - ...rest - } = userProps; - - // This hook updates the Selected TabsItem and calls the customer's onTabsClick function. This gets called after a TabsItem is pressed. - const data = useSelectedKey(selectedKey || defaultSelectedKey || null, userProps.onTabsClick); - - const findTabId = React.useCallback( - (key: string, index: number) => { - if (getTabId) { - return getTabId(key, index); - } - return `${key}-Tab${index}`; - }, - [getTabId], - ); - - // Stores views to be displayed - const map = new Map(); - - const state: TabsState = { - context: { - selectedKey: selectedKey ?? data.selectedKey, - onTabsClick: data.onKeySelect, - getTabId: findTabId, - views: map, - focusZoneRef: focusZoneRef, - }, - info: { - headersOnly: headersOnly ?? false, - label: !!label, - }, - }; - - const styleProps = useStyling(userProps, (override: string) => state[override] || userProps[override]); - - const pressable = usePressableState({ ...rest }); - - const onKeyDown = (ev: any) => { - if (ev.nativeEvent.key === 'ArrowRight' || ev.nativeEvent.key === 'ArrowLeft') { - const length = state.info.enabledKeys.length; - const currTabItemIndex = state.info.enabledKeys.findIndex((x) => x == state.context.selectedKey); - let newCurrTabItemIndex; - if (ev.nativeEvent.key === 'ArrowRight') { - if (isCircularNavigation || !(currTabItemIndex + 1 == length)) { - newCurrTabItemIndex = (currTabItemIndex + 1) % length; - state.context.selectedKey = state.info.enabledKeys[newCurrTabItemIndex]; - data.onKeySelect(state.context.selectedKey); - } - } else { - if (isCircularNavigation || !(currTabItemIndex == 0)) { - newCurrTabItemIndex = (currTabItemIndex - 1 + length) % length; - state.context.selectedKey = state.info.enabledKeys[newCurrTabItemIndex]; - data.onKeySelect(state.context.selectedKey); - } - } - } - }; - - /* GH #964, Extra props are needed because FocusZone is not implemented on windows. - The ref focusZoneRef is used to set focus on Tabs when selecting a TabsItem and onKeyDown manages keyboarding */ - const slotProps = mergeSettings(styleProps, { - root: { ref: componentRef, accessibilityLabel: accessibilityLabel, accessibilityRole: 'tablist', ...pressable.props, ...rest }, - label: { children: label }, - stack: { focusable: true, ref: focusZoneRef, onKeyDown: onKeyDown }, - }); - - return { slotProps, state }; - }, - - render: (Slots: ISlots, renderData: TabsRenderData, ...children: React.ReactNode[]) => { - if (!renderData.state) { - return null; - } - - // Populate the tabsItemKeys array - if (children) { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - renderData.state.context.tabsItemKeys = React.Children.map(children, (child: React.ReactChild) => { - if (React.isValidElement(child)) { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - return child.props.itemKey; - } - }); - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - renderData.state.info.enabledKeys = React.Children.map(children, (child: React.ReactChild) => { - if (React.isValidElement(child)) { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - if (!child.props.disabled) { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - return child.props.itemKey; - } - } - }); - - /* Sets the default selected TabsItem if a TabsItem is hidden. - The default selected Tabsitem is the first enabled TabsItem. */ - if (!renderData.state.info.enabledKeys.includes(renderData.state.context.selectedKey)) { - renderData.state.context.selectedKey = renderData.state.info.enabledKeys[0] ?? null; - } - } - - return ( - - - {renderData.state?.info?.label && } - {children} - - - {(context) => !renderData.state.info.headersOnly && context.views.get(context.selectedKey)} - - - - - ); - }, - - settings, - slots: { - root: Pressable, - label: Text, - stack: View, - tabPanel: { slotType: View, filter: filterViewProps }, - }, - styles: { - root: [], - label: [foregroundColorTokens, textTokens], - stack: [backgroundColorTokens], - }, -}); - -export default Tabs; diff --git a/packages/components/Tabs/src/TabsItem.settings.macos.ts b/packages/components/Tabs/src/TabsItem.settings.macos.ts deleted file mode 100644 index dbc30c4b2..000000000 --- a/packages/components/Tabs/src/TabsItem.settings.macos.ts +++ /dev/null @@ -1,86 +0,0 @@ -/* -Disclaimer: these styles do not follow a specific figma design, but are -meant to be placeholders until new designs are developed -*/ - -import type { IViewProps } from '@fluentui-react-native/adapters'; -import type { IComposeSettings } from '@uifabricshared/foundation-compose'; - -import type { TabsItemType } from './TabsItem.types'; -import { tabsItemName } from './TabsItem.types'; - -export const tabsItemSelectActionLabel = 'Select a TabsItem'; - -export const settings: IComposeSettings = [ - { - tokens: { - color: 'bodyText', - variant: 'bodyStandard', - indicatorColor: 'transparent', - }, - root: { - accessible: true, - focusable: true, - accessibilityRole: 'tab', - style: { - display: 'flex', - alignItems: 'center', - flexDirection: 'column', - alignSelf: 'flex-start', - justifyContent: 'center', - }, - } as IViewProps, - indicator: { - style: { - minHeight: 2, - borderRadius: 2, - marginBottom: 2, - alignSelf: 'stretch', - marginHorizontal: 10, - }, - }, - stack: { - style: { - display: 'flex', - marginHorizontal: 10, - alignItems: 'center', - flexDirection: 'row', - alignSelf: 'flex-start', - minHeight: 32, - minWidth: 32, - justifyContent: 'center', - }, - }, - _precedence: ['hovered', 'selected', 'disabled'], - _overrides: { - disabled: { - tokens: { - color: 'buttonTextDisabled', - indicatorColor: 'transparent', - fontWeight: 'normal', - }, - }, - hovered: { - tokens: { - fontWeight: 'bold', - }, - _overrides: { - selected: { - indicator: { - style: { - marginHorizontal: 0, - }, - }, - }, - }, - }, - selected: { - tokens: { - indicatorColor: 'accentButtonBackground', - fontWeight: 'bold', - }, - }, - }, - }, - tabsItemName, -]; diff --git a/packages/components/Tabs/src/TabsItem.settings.ts b/packages/components/Tabs/src/TabsItem.settings.ts deleted file mode 100644 index 1b375d351..000000000 --- a/packages/components/Tabs/src/TabsItem.settings.ts +++ /dev/null @@ -1,105 +0,0 @@ -import type { PressablePropsExtended } from '@fluentui-react-native/interactive-hooks'; -import type { IComposeSettings } from '@uifabricshared/foundation-compose'; - -import type { TabsItemType } from './TabsItem.types'; -import { tabsItemName } from './TabsItem.types'; - -export const tabsItemSelectActionLabel = 'Select a TabsItem'; - -export const settings: IComposeSettings = [ - { - tokens: { - color: 'neutralStrokeAccessible', - variant: 'bodyStandard', - borderWidth: 2, - borderColor: 'transparent', - borderRadius: 4, - indicatorColor: 'transparent', - }, - root: { - accessible: true, - focusable: true, - accessibilityRole: 'tab', - style: { - display: 'flex', - alignItems: 'center', - flexDirection: 'column', - alignSelf: 'flex-start', - justifyContent: 'center', - }, - } as PressablePropsExtended, - indicator: { - style: { - minHeight: 2, - borderRadius: 2, - marginBottom: 2, - alignSelf: 'stretch', - marginHorizontal: 10, - }, - }, - stack: { - style: { - display: 'flex', - marginHorizontal: 10, - alignItems: 'center', - flexDirection: 'row', - alignSelf: 'flex-start', - minHeight: 32, - minWidth: 32, - justifyContent: 'center', - }, - }, - _precedence: ['hovered', 'selected', 'focused', 'disabled', 'pressed'], - _overrides: { - disabled: { - tokens: { - color: 'neutralForegroundDisabled', - }, - }, - hovered: { - tokens: { - color: 'neutralForeground1', - indicatorColor: 'neutralStroke1', - }, - _overrides: { - selected: { - indicator: { - style: { - marginHorizontal: 0, - }, - }, - }, - }, - }, - selected: { - tokens: { - color: 'neutralForeground1', - variant: 'bodySemibold', - indicatorColor: 'brandStroke1', - }, - _overrides: { - pressed: { - tokens: { - indicatorColor: 'neutralStroke1', - }, - }, - }, - }, - - pressed: { - tokens: { - color: 'neutralForeground1', - indicatorColor: 'brandStroke1', - }, - }, - - focused: { - tokens: { - color: 'neutralForeground1', - borderColor: 'neutralForeground1', - }, - }, - }, - }, - tabsItemName, -]; diff --git a/packages/components/Tabs/src/TabsItem.settings.windows.ts b/packages/components/Tabs/src/TabsItem.settings.windows.ts deleted file mode 100644 index de04b682d..000000000 --- a/packages/components/Tabs/src/TabsItem.settings.windows.ts +++ /dev/null @@ -1,81 +0,0 @@ -import type { PressablePropsExtended } from '@fluentui-react-native/interactive-hooks'; -import type { IComposeSettings } from '@uifabricshared/foundation-compose'; - -import type { TabsItemType } from './TabsItem.types'; -import { tabsItemName } from './TabsItem.types'; - -export const settings: IComposeSettings = [ - { - tokens: { - color: 'buttonText', - variant: 'heroStandard', - fontSize: 20, - borderWidth: 2, - borderColor: 'transparent', - borderRadius: 4, - indicatorColor: 'transparent', - }, - root: { - accessible: true, - focusable: false, - accessibilityRole: 'tab', - style: { - display: 'flex', - alignItems: 'center', - flexDirection: 'column', - alignSelf: 'flex-start', - justifyContent: 'center', - }, - } as PressablePropsExtended, - indicator: { - style: { - minHeight: 2, - borderRadius: 2, - marginBottom: 2, - alignSelf: 'stretch', - marginHorizontal: 10, - }, - }, - stack: { - style: { - display: 'flex', - marginHorizontal: 10, - alignItems: 'center', - flexDirection: 'row', - alignSelf: 'flex-start', - minHeight: 32, - minWidth: 32, - justifyContent: 'center', - opacity: 0.6, - }, - }, - _precedence: ['selected', 'hovered', 'disabled'], - _overrides: { - disabled: { - stack: { - style: { - opacity: 0.2, - }, - }, - }, - hovered: { - stack: { - style: { - opacity: 0.8, - }, - }, - }, - selected: { - tokens: { - indicatorColor: 'brandStroke1', - }, - stack: { - style: { - opacity: 1, - }, - }, - }, - }, - }, - tabsItemName, -]; diff --git a/packages/components/Tabs/src/TabsItem.tsx b/packages/components/Tabs/src/TabsItem.tsx deleted file mode 100644 index 4f5cdd1cd..000000000 --- a/packages/components/Tabs/src/TabsItem.tsx +++ /dev/null @@ -1,169 +0,0 @@ -/** @jsxRuntime classic */ -/** @jsx withSlots */ -import * as React from 'react'; -import { Platform, Pressable, View } from 'react-native'; - -import { filterViewProps } from '@fluentui-react-native/adapters'; -import { Icon, createIconProps } from '@fluentui-react-native/icon'; -import { usePressableState, useViewCommandFocus } from '@fluentui-react-native/interactive-hooks'; -import { Text } from '@fluentui-react-native/text'; -import { backgroundColorTokens, borderTokens, textTokens, foregroundColorTokens, getPaletteFromTheme } from '@fluentui-react-native/tokens'; -import type { ISlots } from '@uifabricshared/foundation-composable'; -import { withSlots } from '@uifabricshared/foundation-composable'; -import type { IUseComposeStyling } from '@uifabricshared/foundation-compose'; -import { compose } from '@uifabricshared/foundation-compose'; -import { mergeSettings } from '@uifabricshared/foundation-settings'; - -import { TabsContext } from './Tabs'; -import { settings, tabsItemSelectActionLabel } from './TabsItem.settings'; -import type { TabsItemType, TabsItemProps, TabsItemSlotProps, TabsItemRenderData, TabsItemState } from './TabsItem.types'; -import { tabsItemName } from './TabsItem.types'; - -export const TabsItem = compose({ - displayName: tabsItemName, - - usePrepareProps: (userProps: TabsItemProps, useStyling: IUseComposeStyling) => { - const defaultComponentRef = React.useRef(null); - const { - icon, - headerText = '', - accessibilityLabel = userProps.headerText, - componentRef = defaultComponentRef, - itemKey, - itemCount, - accessibilityPositionInSet, - accessibilitySetSize, - ...rest - } = userProps; - - // Grabs the context information from Tabs (currently selected TabsItem and client's onTabsClick callback). - const info = React.useContext(TabsContext); - - const [focusState, setFocusState] = React.useState({ - focused: false, - }); - - const changeSelection = React.useCallback(() => { - componentRef?.current?.focus(); - }, [componentRef]); - - const changeSelectionWithFocus = React.useCallback(() => { - setFocusState({ focused: true }); - if (!focusState.focused) { - info.onTabsClick && info.onTabsClick(itemKey); - info.getTabId && info.getTabId(itemKey, info.tabsItemKeys.findIndex((x) => x == itemKey) + 1); - info.updateSelectedTabsItemRef && componentRef && info.updateSelectedTabsItemRef(componentRef); - } - }, [focusState, setFocusState, componentRef, info, itemKey]); - - const removeFocus = React.useCallback(() => { - setFocusState({ focused: false }); - }, [setFocusState]); - - const pressable = usePressableState({ - ...rest, - onPress: changeSelection, - onFocus: changeSelectionWithFocus, - onBlur: removeFocus, - }); - - // Set up state. - const state: TabsItemState = { - info: { - ...pressable.state, - selected: info.selectedKey === userProps.itemKey, - icon: !!icon, - key: itemKey, - headerText: !!headerText || itemCount !== undefined, - }, - }; - const refWithFocus = useViewCommandFocus(componentRef); - const buttonRef = Platform.OS === 'macos' ? componentRef : refWithFocus; - - /** - * We use the componentRef of the currently selected tabsItem to maintain the default tabbable - * element in Tabs. Since the componentRef isn't generated until after initial render, - * we must update it once here. - * Since this is meant to only be run once, surpressing lint error - */ - React.useEffect(() => { - if (itemKey == info.selectedKey) { - info.updateSelectedTabsItemRef && componentRef && info.updateSelectedTabsItemRef(componentRef); - } - // eslint-disable-next-line react-hooks/exhaustive-deps - }, []); - - // Grab the styling information from the userProps, referencing the state as well as the props. - const styleProps = useStyling(userProps, (override: string) => state.info[override] || userProps[override]); - - // Used when creating accessibility properties in mergeSettings below. - const onAccessibilityAction = React.useCallback( - (event: { nativeEvent: { actionName: any } }) => { - switch (event.nativeEvent.actionName) { - case 'Select': - changeSelection(); - break; - } - }, - [changeSelection], - ); - - const countText = itemCount !== undefined ? ` (${itemCount})` : ''; - - const slotProps = mergeSettings(styleProps, { - root: { - ...rest, - ...pressable.props, - ref: buttonRef, - accessibilityRole: 'tab', - accessibilityLabel: accessibilityLabel, - accessibilityState: { disabled: userProps.disabled, selected: info.selectedKey === userProps.itemKey }, - accessibilityActions: [{ name: 'Select', label: tabsItemSelectActionLabel }], - accessibilityPositionInSet: accessibilityPositionInSet ?? info.tabsItemKeys.findIndex((x) => x == itemKey) + 1, - accessibilitySetSize: accessibilitySetSize ?? info.tabsItemKeys.length, - onAccessibilityAction: onAccessibilityAction, - focusable: Platform.select({ default: true, macos: !userProps.disabled }), - }, - content: { children: headerText + countText }, - icon: createIconProps(icon), - }); - - return { slotProps, state }; - }, - - render: (Slots: ISlots, renderData: TabsItemRenderData, ...children: React.ReactNode[]) => { - const info = renderData.state!.info; - // eslint-disable-next-line react-hooks/rules-of-hooks - const context = React.useContext(TabsContext); - // Sets the view that belongs to a TabItem. - context.views.set(info.key, children); - - return ( - - - {info.icon && } - {info.headerText && } - - - - ); - }, - - settings, - slots: { - root: Pressable, - stack: { slotType: View, filter: filterViewProps }, - icon: { slotType: Icon as React.ComponentType }, - content: Text, - indicator: { slotType: View, filter: filterViewProps }, - }, - styles: { - root: [backgroundColorTokens, borderTokens], - stack: [], - icon: [{ source: 'iconColor', lookup: getPaletteFromTheme, target: 'color' }], - content: [textTokens, foregroundColorTokens], - indicator: [{ source: 'indicatorColor', lookup: getPaletteFromTheme, target: 'backgroundColor' }], - }, -}); - -export default TabsItem; diff --git a/packages/components/Tabs/src/TabsItem.types.ts b/packages/components/Tabs/src/TabsItem.types.ts deleted file mode 100644 index bc931b2f0..000000000 --- a/packages/components/Tabs/src/TabsItem.types.ts +++ /dev/null @@ -1,119 +0,0 @@ -import type * as React from 'react'; -import type { ViewProps } from 'react-native'; - -import type { IconProps, IconSourcesType } from '@fluentui-react-native/icon'; -import type { IFocusable, PressableState, PressablePropsExtended } from '@fluentui-react-native/interactive-hooks'; -import type { ITextProps } from '@fluentui-react-native/text'; -import type { FontTokens, IBackgroundColorTokens, IBorderTokens, IForegroundColorTokens } from '@fluentui-react-native/tokens'; -import type { IRenderData } from '@uifabricshared/foundation-composable'; - -export const tabsItemName = 'TabsItem'; - -export interface TabsItemInfo extends PressableState { - /** - * TabsItem icon. - */ - icon?: boolean; - - /** - * TabsItem text. - */ - headerText?: boolean; - - /** - * Indicates if TabsItem is selected. - */ - selected: boolean; - - /** - * Key for tabItem. - */ - key: string; -} - -export interface TabsItemState { - info: TabsItemInfo; -} - -export interface TabsItemProps extends PressablePropsExtended { - /** - * The text string for the option. - */ - headerText?: string; - - /** - * The number for the TabsItem count. - */ - itemCount?: number; - - /** - * A unique key-identifier for each option. - */ - itemKey: string; - - /** - * Whether or not the tabs item is selectable. - */ - disabled?: boolean; - - /** - * A RefObject to access the IFocusable interface. Use this to access the public methods and properties of the component. - */ - componentRef?: React.RefObject; - - /** - * Source URL or name of the icon to show on the TabsItem. - */ - icon?: IconSourcesType; - - testID?: string; -} - -export interface TabsItemTokens extends IForegroundColorTokens, FontTokens, IBackgroundColorTokens, IBorderTokens { - /** - * The indicator color. - */ - indicatorColor?: string; - - /** - * The icon color. - */ - iconColor?: string; - - /** - * Source URL or name of the icon to show on the TabsItem. - */ - icon?: IconSourcesType; - - /** - * Text to show on the TabsItem. - */ - headerText?: string; - - /** - * The amount of padding between the border and the headerText. - */ - headerTextPadding?: number | string; - - /** - * The amount of padding between the border and the headerText when the TabsItem has focus. - */ - headerTextPaddingFocused?: number | string; -} - -export interface TabsItemSlotProps { - root: React.PropsWithRef; - stack: ViewProps; - icon: IconProps; - content: ITextProps; - indicator: ViewProps; -} - -export type TabsItemRenderData = IRenderData; - -export interface TabsItemType { - props: TabsItemProps; - tokens: TabsItemTokens; - slotProps: TabsItemSlotProps; - state: TabsItemState; -} diff --git a/packages/components/Tabs/src/TabsItem.windows.tsx b/packages/components/Tabs/src/TabsItem.windows.tsx deleted file mode 100644 index b99cd78d1..000000000 --- a/packages/components/Tabs/src/TabsItem.windows.tsx +++ /dev/null @@ -1,153 +0,0 @@ -/** @jsxRuntime classic */ -/** @jsx withSlots */ -import * as React from 'react'; -import { Pressable, View } from 'react-native'; - -import { filterViewProps } from '@fluentui-react-native/adapters'; -import { Icon, createIconProps } from '@fluentui-react-native/icon'; -import { usePressableState, useViewCommandFocus } from '@fluentui-react-native/interactive-hooks'; -import { Text } from '@fluentui-react-native/text'; -import { backgroundColorTokens, borderTokens, textTokens, foregroundColorTokens, getPaletteFromTheme } from '@fluentui-react-native/tokens'; -import type { ISlots } from '@uifabricshared/foundation-composable'; -import { withSlots } from '@uifabricshared/foundation-composable'; -import type { IUseComposeStyling } from '@uifabricshared/foundation-compose'; -import { compose } from '@uifabricshared/foundation-compose'; -import { mergeSettings } from '@uifabricshared/foundation-settings'; - -import { TabsContext } from './Tabs'; -import { settings, tabsItemSelectActionLabel } from './TabsItem.settings'; -import type { TabsItemType, TabsItemProps, TabsItemSlotProps, TabsItemRenderData, TabsItemState } from './TabsItem.types'; -import { tabsItemName } from './TabsItem.types'; - -export const TabsItem = compose({ - displayName: tabsItemName, - - usePrepareProps: (userProps: TabsItemProps, useStyling: IUseComposeStyling) => { - const defaultComponentRef = React.useRef(null); - const { - icon, - headerText = '', - accessibilityLabel = userProps.headerText, - componentRef = defaultComponentRef, - itemKey, - itemCount, - accessibilityPositionInSet, - accessibilitySetSize, - ...rest - } = userProps; - - // Grabs the context information from Tabs (currently selected TabsItem and client's onTabsClick callback). - const info = React.useContext(TabsContext); - - const changeSelection = React.useCallback(() => { - info.focusZoneRef.current.focus(); // GH #964, FocusZone not implemented on windows. - info.onTabsClick && info.onTabsClick(itemKey); - info.getTabId && info.getTabId(itemKey, info.tabsItemKeys.findIndex((x) => x == itemKey) + 1); - info.updateSelectedTabsItemRef && componentRef && info.updateSelectedTabsItemRef(componentRef); - }, [componentRef, info, itemKey]); - - const pressable = usePressableState({ - ...rest, - onPress: changeSelection, - }); - - // Set up state. - const state: TabsItemState = { - info: { - ...pressable.state, - selected: info.selectedKey === userProps.itemKey, - icon: false, // GH #935, Icons are on backlog for windows. - key: itemKey, - headerText: !!headerText || itemCount !== undefined, - }, - }; - - const buttonRef = useViewCommandFocus(componentRef); - - /** - * We use the componentRef of the currently selected tabsItem to maintain the default tabbable - * element in Tabs. Since the componentRef isn't generated until after initial render, - * we must update it once here. - * Since this is meant to only be run once, surpressing lint error - */ - React.useEffect(() => { - if (itemKey == info.selectedKey) { - info.updateSelectedTabsItemRef && componentRef && info.updateSelectedTabsItemRef(componentRef); - } - // eslint-disable-next-line react-hooks/exhaustive-deps - }, []); - - // Grab the styling information from the userProps, referencing the state as well as the props. - const styleProps = useStyling(userProps, (override: string) => state.info[override] || userProps[override]); - - // Used when creating accessibility properties in mergeSettings below. - const onAccessibilityAction = React.useCallback( - (event: { nativeEvent: { actionName: any } }) => { - switch (event.nativeEvent.actionName) { - case 'Select': - changeSelection(); - break; - } - }, - [changeSelection], - ); - - const countText = itemCount !== undefined ? ` (${itemCount})` : ''; - - const slotProps = mergeSettings(styleProps, { - root: { - ...rest, - ...pressable.props, - ref: buttonRef, - accessibilityRole: 'tab', - accessibilityLabel: accessibilityLabel, - accessibilityState: { disabled: userProps.disabled, selected: info.selectedKey === userProps.itemKey }, - accessibilityActions: [{ name: 'Select', label: tabsItemSelectActionLabel }], - accessibilityPositionInSet: accessibilityPositionInSet ?? info.tabsItemKeys.findIndex((x) => x == itemKey) + 1, - accessibilitySetSize: accessibilitySetSize ?? info.tabsItemKeys.length, - onAccessibilityAction: onAccessibilityAction, - focusable: false, - }, - content: { children: headerText + countText }, - icon: createIconProps(icon), - }); - - return { slotProps, state }; - }, - - render: (Slots: ISlots, renderData: TabsItemRenderData, ...children: React.ReactNode[]) => { - const info = renderData.state!.info; - // eslint-disable-next-line react-hooks/rules-of-hooks - const context = React.useContext(TabsContext); - // Sets the view that belongs to a TabItem. - context.views.set(info.key, children); - - return ( - - - {info.icon && } - {info.headerText && } - - - - ); - }, - - settings, - slots: { - root: Pressable, - stack: { slotType: View, filter: filterViewProps }, - icon: { slotType: Icon as React.ComponentType }, - content: Text, - indicator: { slotType: View, filter: filterViewProps }, - }, - styles: { - root: [backgroundColorTokens, borderTokens], - stack: [], - icon: [{ source: 'iconColor', lookup: getPaletteFromTheme, target: 'color' }], - content: [textTokens, foregroundColorTokens], - indicator: [{ source: 'indicatorColor', lookup: getPaletteFromTheme, target: 'backgroundColor' }], - }, -}); - -export default TabsItem; diff --git a/packages/components/Tabs/src/__tests__/Tabs.test.tsx b/packages/components/Tabs/src/__tests__/Tabs.test.tsx deleted file mode 100644 index c6f8929cd..000000000 --- a/packages/components/Tabs/src/__tests__/Tabs.test.tsx +++ /dev/null @@ -1,83 +0,0 @@ -import * as React from 'react'; - -import * as renderer from 'react-test-renderer'; - -import { Tabs, TabsItem } from '..'; - -it('Tabs default props', () => { - const tree = renderer - .create( - - - - - , - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('Tabs disabled', () => { - const tree = renderer - .create( - - - - - , - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('Tabs header text and count', () => { - const tree = renderer - .create( - - - - - , - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('Tabs headers only', () => { - const tree = renderer - .create( - - - - - , - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('Tabs FocusZone props', () => { - const tree = renderer - .create( - - - - - , - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('Tabs props', () => { - const tree = renderer - .create( - - - - - , - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/components/Tabs/src/__tests__/__snapshots__/Tabs.test.tsx.snap b/packages/components/Tabs/src/__tests__/__snapshots__/Tabs.test.tsx.snap deleted file mode 100644 index b5d6831ef..000000000 --- a/packages/components/Tabs/src/__tests__/__snapshots__/Tabs.test.tsx.snap +++ /dev/null @@ -1,1995 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Tabs FocusZone props 1`] = ` - - - - - - - - - - - - - - - - - - - -`; - -exports[`Tabs default props 1`] = ` - - - - - - - - - - - - - - - - - - - -`; - -exports[`Tabs disabled 1`] = ` - - - - - - - - - - - - - - - - - - - -`; - -exports[`Tabs header text and count 1`] = ` - - - - - - - TabsItem (1) - - - - - - - - TabsItem (0) - - - - - - - - TabsItem (100) - - - - - - - - -`; - -exports[`Tabs headers only 1`] = ` - - - - - - - - - - - - - - - - - - - -`; - -exports[`Tabs props 1`] = ` - - - Tabs - - - - - - - TabsItem (1) - - - - - - - - TabsItem (0) - - - - - - - - TabsItem (100) - - - - - - - - -`; diff --git a/packages/components/Tabs/src/index.ts b/packages/components/Tabs/src/index.ts deleted file mode 100644 index 9c3e90d38..000000000 --- a/packages/components/Tabs/src/index.ts +++ /dev/null @@ -1,14 +0,0 @@ -export { Tabs, TabsContext } from './Tabs'; -export { tabsName } from './Tabs.types'; -export type { TabsContextData, TabsInfo, TabsProps, TabsRenderData, TabsSlotProps, TabsState, TabsTokens, TabsType } from './Tabs.types'; -export { TabsItem } from './TabsItem'; -export { tabsItemName } from './TabsItem.types'; -export type { - TabsItemInfo, - TabsItemProps, - TabsItemRenderData, - TabsItemSlotProps, - TabsItemState, - TabsItemTokens, - TabsItemType, -} from './TabsItem.types'; diff --git a/packages/components/Tabs/tsconfig.json b/packages/components/Tabs/tsconfig.json deleted file mode 100644 index b880046e4..000000000 --- a/packages/components/Tabs/tsconfig.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "outDir": "lib", - "types": ["node", "jest"] - }, - "include": ["src"] -} diff --git a/packages/dependency-profiles/package.json b/packages/dependency-profiles/package.json index 29f81a2bb..e442b941f 100644 --- a/packages/dependency-profiles/package.json +++ b/packages/dependency-profiles/package.json @@ -40,7 +40,6 @@ "@fluentui-react-native/experimental-shadow": "*", "@fluentui-react-native/experimental-shimmer": "*", "@fluentui-react-native/experimental-stack": "*", - "@fluentui-react-native/experimental-tabs": "*", "@fluentui-react-native/experimental-text": "*", "@fluentui-react-native/focus-trap-zone": "*", "@fluentui-react-native/focus-zone": "*", @@ -64,7 +63,6 @@ "@fluentui-react-native/stack": "*", "@fluentui-react-native/styling-utils": "*", "@fluentui-react-native/switch": "*", - "@fluentui-react-native/tabs": "*", "@fluentui-react-native/tester": "*", "@fluentui-react-native/tester-win32": "*", "@fluentui-react-native/text": "*", diff --git a/packages/dependency-profiles/src/furn-profile-0.71.js b/packages/dependency-profiles/src/furn-profile-0.71.js index a05e5bc6e..9a142c070 100644 --- a/packages/dependency-profiles/src/furn-profile-0.71.js +++ b/packages/dependency-profiles/src/furn-profile-0.71.js @@ -1,334 +1,326 @@ // This file was generated by 'update-profile.js' /* eslint-disable */ module.exports = { - "0.71": { - "@fluentui-react-native/e2e-testing": { - "name": "@fluentui-react-native/e2e-testing", - "version": "1.32.8" + 0.71: { + '@fluentui-react-native/e2e-testing': { + name: '@fluentui-react-native/e2e-testing', + version: '1.32.8', }, - "@fluentui-react-native/tester": { - "name": "@fluentui-react-native/tester", - "version": "0.157.10" + '@fluentui-react-native/tester': { + name: '@fluentui-react-native/tester', + version: '0.157.10', }, - "@fluentui-react-native/tester-win32": { - "name": "@fluentui-react-native/tester-win32", - "version": "0.36.17" + '@fluentui-react-native/tester-win32': { + name: '@fluentui-react-native/tester-win32', + version: '0.36.17', }, - "@fluentui-react-native/avatar": { - "name": "@fluentui-react-native/avatar", - "version": "1.10.18" + '@fluentui-react-native/avatar': { + name: '@fluentui-react-native/avatar', + version: '1.10.18', }, - "@fluentui-react-native/badge": { - "name": "@fluentui-react-native/badge", - "version": "0.7.14" + '@fluentui-react-native/badge': { + name: '@fluentui-react-native/badge', + version: '0.7.14', }, - "@fluentui-react-native/button": { - "name": "@fluentui-react-native/button", - "version": "0.35.11" + '@fluentui-react-native/button': { + name: '@fluentui-react-native/button', + version: '0.35.11', }, - "@fluentui-react-native/callout": { - "name": "@fluentui-react-native/callout", - "version": "0.24.19" + '@fluentui-react-native/callout': { + name: '@fluentui-react-native/callout', + version: '0.24.19', }, - "@fluentui-react-native/checkbox": { - "name": "@fluentui-react-native/checkbox", - "version": "0.21.7" + '@fluentui-react-native/checkbox': { + name: '@fluentui-react-native/checkbox', + version: '0.21.7', }, - "@fluentui-react-native/chip": { - "name": "@fluentui-react-native/chip", - "version": "0.2.9" + '@fluentui-react-native/chip': { + name: '@fluentui-react-native/chip', + version: '0.2.9', }, - "@fluentui-react-native/contextual-menu": { - "name": "@fluentui-react-native/contextual-menu", - "version": "0.22.25" + '@fluentui-react-native/contextual-menu': { + name: '@fluentui-react-native/contextual-menu', + version: '0.22.25', }, - "@fluentui-react-native/divider": { - "name": "@fluentui-react-native/divider", - "version": "0.5.16" + '@fluentui-react-native/divider': { + name: '@fluentui-react-native/divider', + version: '0.5.16', }, - "@fluentui-react-native/focus-trap-zone": { - "name": "@fluentui-react-native/focus-trap-zone", - "version": "0.10.14" + '@fluentui-react-native/focus-trap-zone': { + name: '@fluentui-react-native/focus-trap-zone', + version: '0.10.14', }, - "@fluentui-react-native/focus-zone": { - "name": "@fluentui-react-native/focus-zone", - "version": "0.15.0" + '@fluentui-react-native/focus-zone': { + name: '@fluentui-react-native/focus-zone', + version: '0.15.0', }, - "@fluentui-react-native/icon": { - "name": "@fluentui-react-native/icon", - "version": "0.19.16" + '@fluentui-react-native/icon': { + name: '@fluentui-react-native/icon', + version: '0.19.16', }, - "@fluentui-react-native/input": { - "name": "@fluentui-react-native/input", - "version": "0.4.9" + '@fluentui-react-native/input': { + name: '@fluentui-react-native/input', + version: '0.4.9', }, - "@fluentui-react-native/link": { - "name": "@fluentui-react-native/link", - "version": "0.20.7" + '@fluentui-react-native/link': { + name: '@fluentui-react-native/link', + version: '0.20.7', }, - "@fluentui-react-native/menu": { - "name": "@fluentui-react-native/menu", - "version": "1.11.30" + '@fluentui-react-native/menu': { + name: '@fluentui-react-native/menu', + version: '1.11.30', }, - "@fluentui-react-native/menu-button": { - "name": "@fluentui-react-native/menu-button", - "version": "0.11.31" + '@fluentui-react-native/menu-button': { + name: '@fluentui-react-native/menu-button', + version: '0.11.31', }, - "@fluentui-react-native/notification": { - "name": "@fluentui-react-native/notification", - "version": "0.23.22" + '@fluentui-react-native/notification': { + name: '@fluentui-react-native/notification', + version: '0.23.22', }, - "@fluentui-react-native/persona": { - "name": "@fluentui-react-native/persona", - "version": "0.14.12" + '@fluentui-react-native/persona': { + name: '@fluentui-react-native/persona', + version: '0.14.12', }, - "@fluentui-react-native/persona-coin": { - "name": "@fluentui-react-native/persona-coin", - "version": "0.13.12" + '@fluentui-react-native/persona-coin': { + name: '@fluentui-react-native/persona-coin', + version: '0.13.12', }, - "@fluentui-react-native/pressable": { - "name": "@fluentui-react-native/pressable", - "version": "0.10.13" + '@fluentui-react-native/pressable': { + name: '@fluentui-react-native/pressable', + version: '0.10.13', }, - "@fluentui-react-native/radio-group": { - "name": "@fluentui-react-native/radio-group", - "version": "0.19.9" + '@fluentui-react-native/radio-group': { + name: '@fluentui-react-native/radio-group', + version: '0.19.9', }, - "@fluentui-react-native/separator": { - "name": "@fluentui-react-native/separator", - "version": "0.16.10" + '@fluentui-react-native/separator': { + name: '@fluentui-react-native/separator', + version: '0.16.10', }, - "@fluentui-react-native/stack": { - "name": "@fluentui-react-native/stack", - "version": "0.8.16" + '@fluentui-react-native/stack': { + name: '@fluentui-react-native/stack', + version: '0.8.16', }, - "@fluentui-react-native/switch": { - "name": "@fluentui-react-native/switch", - "version": "0.11.7" + '@fluentui-react-native/switch': { + name: '@fluentui-react-native/switch', + version: '0.11.7', }, - "@fluentui-react-native/tabs": { - "name": "@fluentui-react-native/tabs", - "version": "0.13.19" + '@fluentui-react-native/text': { + name: '@fluentui-react-native/text', + version: '0.21.14', }, - "@fluentui-react-native/text": { - "name": "@fluentui-react-native/text", - "version": "0.21.14" + '@uifabricshared/foundation-composable': { + name: '@uifabricshared/foundation-composable', + version: '0.12.2', }, - "@uifabricshared/foundation-composable": { - "name": "@uifabricshared/foundation-composable", - "version": "0.12.2" + '@uifabricshared/foundation-compose': { + name: '@uifabricshared/foundation-compose', + version: '1.14.12', }, - "@uifabricshared/foundation-compose": { - "name": "@uifabricshared/foundation-compose", - "version": "1.14.12" + '@uifabricshared/foundation-settings': { + name: '@uifabricshared/foundation-settings', + version: '0.13.2', }, - "@uifabricshared/foundation-settings": { - "name": "@uifabricshared/foundation-settings", - "version": "0.13.2" + '@uifabricshared/foundation-tokens': { + name: '@uifabricshared/foundation-tokens', + version: '0.13.9', }, - "@uifabricshared/foundation-tokens": { - "name": "@uifabricshared/foundation-tokens", - "version": "0.13.9" + '@uifabricshared/theme-registry': { + name: '@uifabricshared/theme-registry', + version: '0.10.1', }, - "@uifabricshared/theme-registry": { - "name": "@uifabricshared/theme-registry", - "version": "0.10.1" + '@uifabricshared/themed-settings': { + name: '@uifabricshared/themed-settings', + version: '0.10.2', }, - "@uifabricshared/themed-settings": { - "name": "@uifabricshared/themed-settings", - "version": "0.10.2" + '@uifabricshared/theming-ramp': { + name: '@uifabricshared/theming-ramp', + version: '0.19.4', }, - "@uifabricshared/theming-ramp": { - "name": "@uifabricshared/theming-ramp", - "version": "0.19.4" + '@uifabricshared/theming-react-native': { + name: '@uifabricshared/theming-react-native', + version: '0.18.12', }, - "@uifabricshared/theming-react-native": { - "name": "@uifabricshared/theming-react-native", - "version": "0.18.12" + '@fluentui-react-native/experimental-activity-indicator': { + name: '@fluentui-react-native/experimental-activity-indicator', + version: '0.8.12', }, - "@fluentui-react-native/experimental-activity-indicator": { - "name": "@fluentui-react-native/experimental-activity-indicator", - "version": "0.8.12" + '@fluentui-react-native/experimental-appearance-additions': { + name: '@fluentui-react-native/experimental-appearance-additions', + version: '0.5.12', }, - "@fluentui-react-native/experimental-appearance-additions": { - "name": "@fluentui-react-native/experimental-appearance-additions", - "version": "0.5.12" + '@fluentui-react-native/experimental-avatar': { + name: '@fluentui-react-native/experimental-avatar', + version: '0.19.11', }, - "@fluentui-react-native/experimental-avatar": { - "name": "@fluentui-react-native/experimental-avatar", - "version": "0.19.11" + '@fluentui-react-native/experimental-button': { + name: '@fluentui-react-native/experimental-button', + version: '0.18.22', }, - "@fluentui-react-native/experimental-button": { - "name": "@fluentui-react-native/experimental-button", - "version": "0.18.22" + '@fluentui-react-native/experimental-checkbox': { + name: '@fluentui-react-native/experimental-checkbox', + version: '0.15.17', }, - "@fluentui-react-native/experimental-checkbox": { - "name": "@fluentui-react-native/experimental-checkbox", - "version": "0.15.17" + '@fluentui-react-native/drawer': { + name: '@fluentui-react-native/drawer', + version: '0.2.13', }, - "@fluentui-react-native/drawer": { - "name": "@fluentui-react-native/drawer", - "version": "0.2.13" + '@fluentui-react-native/dropdown': { + name: '@fluentui-react-native/dropdown', + version: '0.8.29', }, - "@fluentui-react-native/dropdown": { - "name": "@fluentui-react-native/dropdown", - "version": "0.8.29" + '@fluentui-react-native/experimental-expander': { + name: '@fluentui-react-native/experimental-expander', + version: '0.6.13', }, - "@fluentui-react-native/experimental-expander": { - "name": "@fluentui-react-native/experimental-expander", - "version": "0.6.13" + '@fluentui-react-native/experimental-link': { + name: '@fluentui-react-native/experimental-link', + version: '0.6.16', }, - "@fluentui-react-native/experimental-link": { - "name": "@fluentui-react-native/experimental-link", - "version": "0.6.16" + '@fluentui-react-native/experimental-menu-button': { + name: '@fluentui-react-native/experimental-menu-button', + version: '0.7.31', }, - "@fluentui-react-native/experimental-menu-button": { - "name": "@fluentui-react-native/experimental-menu-button", - "version": "0.7.31" + '@fluentui-react-native/experimental-native-date-picker': { + name: '@fluentui-react-native/experimental-native-date-picker', + version: '0.9.1', }, - "@fluentui-react-native/experimental-native-date-picker": { - "name": "@fluentui-react-native/experimental-native-date-picker", - "version": "0.9.1" + '@fluentui-react-native/experimental-native-font-metrics': { + name: '@fluentui-react-native/experimental-native-font-metrics', + version: '0.4.1', }, - "@fluentui-react-native/experimental-native-font-metrics": { - "name": "@fluentui-react-native/experimental-native-font-metrics", - "version": "0.4.1" + '@fluentui-react-native/popover': { + name: '@fluentui-react-native/popover', + version: '0.2.11', }, - "@fluentui-react-native/popover": { - "name": "@fluentui-react-native/popover", - "version": "0.2.11" + '@fluentui-react-native/experimental-radio-group': { + name: '@fluentui-react-native/experimental-radio-group', + version: '0.11.19', }, - "@fluentui-react-native/experimental-radio-group": { - "name": "@fluentui-react-native/experimental-radio-group", - "version": "0.11.19" + '@fluentui-react-native/experimental-shadow': { + name: '@fluentui-react-native/experimental-shadow', + version: '0.4.12', }, - "@fluentui-react-native/experimental-shadow": { - "name": "@fluentui-react-native/experimental-shadow", - "version": "0.4.12" + '@fluentui-react-native/experimental-shimmer': { + name: '@fluentui-react-native/experimental-shimmer', + version: '0.11.6', }, - "@fluentui-react-native/experimental-shimmer": { - "name": "@fluentui-react-native/experimental-shimmer", - "version": "0.11.6" + '@fluentui-react-native/spinner': { + name: '@fluentui-react-native/spinner', + version: '0.7.15', }, - "@fluentui-react-native/spinner": { - "name": "@fluentui-react-native/spinner", - "version": "0.7.15" + '@fluentui-react-native/tablist': { + name: '@fluentui-react-native/tablist', + version: '0.4.10', }, - "@fluentui-react-native/tablist": { - "name": "@fluentui-react-native/tablist", - "version": "0.4.10" + '@fluentui-react-native/experimental-text': { + name: '@fluentui-react-native/experimental-text', + version: '0.13.14', }, - "@fluentui-react-native/experimental-tabs": { - "name": "@fluentui-react-native/experimental-tabs", - "version": "0.9.21" + '@fluentui-react-native/vibrancy-view': { + name: '@fluentui-react-native/vibrancy-view', + version: '0.0.3', }, - "@fluentui-react-native/experimental-text": { - "name": "@fluentui-react-native/experimental-text", - "version": "0.13.14" + '@fluentui-react-native/component-cache': { + name: '@fluentui-react-native/component-cache', + version: '1.5.1', }, - "@fluentui-react-native/vibrancy-view": { - "name": "@fluentui-react-native/vibrancy-view", - "version": "0.0.3" + '@fluentui-react-native/composition': { + name: '@fluentui-react-native/composition', + version: '0.9.2', }, - "@fluentui-react-native/component-cache": { - "name": "@fluentui-react-native/component-cache", - "version": "1.5.1" + '@fluentui-react-native/eslint-config-rules': { + name: '@fluentui-react-native/eslint-config-rules', + version: '0.1.1', }, - "@fluentui-react-native/composition": { - "name": "@fluentui-react-native/composition", - "version": "0.9.2" + '@fluentui-react-native/framework': { + name: '@fluentui-react-native/framework', + version: '0.11.10', }, - "@fluentui-react-native/eslint-config-rules": { - "name": "@fluentui-react-native/eslint-config-rules", - "version": "0.1.1" + '@fluentui-react-native/immutable-merge': { + name: '@fluentui-react-native/immutable-merge', + version: '1.2.1', }, - "@fluentui-react-native/framework": { - "name": "@fluentui-react-native/framework", - "version": "0.11.10" + '@fluentui-react-native/memo-cache': { + name: '@fluentui-react-native/memo-cache', + version: '1.3.1', }, - "@fluentui-react-native/immutable-merge": { - "name": "@fluentui-react-native/immutable-merge", - "version": "1.2.1" + '@fluentui-react-native/merge-props': { + name: '@fluentui-react-native/merge-props', + version: '0.7.1', }, - "@fluentui-react-native/memo-cache": { - "name": "@fluentui-react-native/memo-cache", - "version": "1.3.1" + '@fluentui-react-native/theme': { + name: '@fluentui-react-native/theme', + version: '0.9.4', }, - "@fluentui-react-native/merge-props": { - "name": "@fluentui-react-native/merge-props", - "version": "0.7.1" + '@fluentui-react-native/themed-stylesheet': { + name: '@fluentui-react-native/themed-stylesheet', + version: '1.5.2', }, - "@fluentui-react-native/theme": { - "name": "@fluentui-react-native/theme", - "version": "0.9.4" + '@fluentui-react-native/use-slot': { + name: '@fluentui-react-native/use-slot', + version: '0.4.2', }, - "@fluentui-react-native/themed-stylesheet": { - "name": "@fluentui-react-native/themed-stylesheet", - "version": "1.5.2" + '@fluentui-react-native/use-slots': { + name: '@fluentui-react-native/use-slots', + version: '0.8.2', }, - "@fluentui-react-native/use-slot": { - "name": "@fluentui-react-native/use-slot", - "version": "0.4.2" + '@fluentui-react-native/use-styling': { + name: '@fluentui-react-native/use-styling', + version: '0.11.1', }, - "@fluentui-react-native/use-slots": { - "name": "@fluentui-react-native/use-slots", - "version": "0.8.2" + '@fluentui-react-native/use-tokens': { + name: '@fluentui-react-native/use-tokens', + version: '0.4.2', }, - "@fluentui-react-native/use-styling": { - "name": "@fluentui-react-native/use-styling", - "version": "0.11.1" + '@fluentui/react-native': { + name: '@fluentui/react-native', + version: '0.38.6', }, - "@fluentui-react-native/use-tokens": { - "name": "@fluentui-react-native/use-tokens", - "version": "0.4.2" + '@fluentui-react-native/android-theme': { + name: '@fluentui-react-native/android-theme', + version: '0.18.9', }, - "@fluentui/react-native": { - "name": "@fluentui/react-native", - "version": "0.38.6" + '@fluentui-react-native/apple-theme': { + name: '@fluentui-react-native/apple-theme', + version: '0.21.13', }, - "@fluentui-react-native/android-theme": { - "name": "@fluentui-react-native/android-theme", - "version": "0.18.9" + '@fluentui-react-native/default-theme': { + name: '@fluentui-react-native/default-theme', + version: '0.19.11', }, - "@fluentui-react-native/apple-theme": { - "name": "@fluentui-react-native/apple-theme", - "version": "0.21.13" + '@fluentui-react-native/theme-tokens': { + name: '@fluentui-react-native/theme-tokens', + version: '0.25.4', }, - "@fluentui-react-native/default-theme": { - "name": "@fluentui-react-native/default-theme", - "version": "0.19.11" + '@fluentui-react-native/theme-types': { + name: '@fluentui-react-native/theme-types', + version: '0.32.3', }, - "@fluentui-react-native/theme-tokens": { - "name": "@fluentui-react-native/theme-tokens", - "version": "0.25.4" + '@fluentui-react-native/theming-utils': { + name: '@fluentui-react-native/theming-utils', + version: '0.24.7', }, - "@fluentui-react-native/theme-types": { - "name": "@fluentui-react-native/theme-types", - "version": "0.32.3" + '@fluentui-react-native/win32-theme': { + name: '@fluentui-react-native/win32-theme', + version: '0.27.10', }, - "@fluentui-react-native/theming-utils": { - "name": "@fluentui-react-native/theming-utils", - "version": "0.24.7" + '@fluentui-react-native/adapters': { + name: '@fluentui-react-native/adapters', + version: '0.11.3', }, - "@fluentui-react-native/win32-theme": { - "name": "@fluentui-react-native/win32-theme", - "version": "0.27.10" + '@fluentui-react-native/interactive-hooks': { + name: '@fluentui-react-native/interactive-hooks', + version: '0.24.12', }, - "@fluentui-react-native/adapters": { - "name": "@fluentui-react-native/adapters", - "version": "0.11.3" + '@fluentui-react-native/styling-utils': { + name: '@fluentui-react-native/styling-utils', + version: '0.5.0', }, - "@fluentui-react-native/interactive-hooks": { - "name": "@fluentui-react-native/interactive-hooks", - "version": "0.24.12" + '@fluentui-react-native/tokens': { + name: '@fluentui-react-native/tokens', + version: '0.21.6', }, - "@fluentui-react-native/styling-utils": { - "name": "@fluentui-react-native/styling-utils", - "version": "0.5.0" - }, - "@fluentui-react-native/tokens": { - "name": "@fluentui-react-native/tokens", - "version": "0.21.6" - } - } + }, }; diff --git a/packages/dependency-profiles/src/index.js b/packages/dependency-profiles/src/index.js index e9bab0938..6b1c302a0 100644 --- a/packages/dependency-profiles/src/index.js +++ b/packages/dependency-profiles/src/index.js @@ -1,664 +1,648 @@ // This file was generated by 'update-profile.js' /* eslint-disable */ module.exports = { - "0.72": { - "@fluentui-react-native/e2e-testing": { - "name": "@fluentui-react-native/e2e-testing", - "version": "1.34.7" + 0.72: { + '@fluentui-react-native/e2e-testing': { + name: '@fluentui-react-native/e2e-testing', + version: '1.34.7', }, - "@fluentui-react-native/tester": { - "name": "@fluentui-react-native/tester", - "version": "0.166.0" + '@fluentui-react-native/tester': { + name: '@fluentui-react-native/tester', + version: '0.166.0', }, - "@fluentui-react-native/tester-win32": { - "name": "@fluentui-react-native/tester-win32", - "version": "0.37.29" + '@fluentui-react-native/tester-win32': { + name: '@fluentui-react-native/tester-win32', + version: '0.37.29', }, - "@fluentui-react-native/avatar": { - "name": "@fluentui-react-native/avatar", - "version": "1.11.7" + '@fluentui-react-native/avatar': { + name: '@fluentui-react-native/avatar', + version: '1.11.7', }, - "@fluentui-react-native/badge": { - "name": "@fluentui-react-native/badge", - "version": "0.8.7" + '@fluentui-react-native/badge': { + name: '@fluentui-react-native/badge', + version: '0.8.7', }, - "@fluentui-react-native/button": { - "name": "@fluentui-react-native/button", - "version": "0.36.9" + '@fluentui-react-native/button': { + name: '@fluentui-react-native/button', + version: '0.36.9', }, - "@fluentui-react-native/callout": { - "name": "@fluentui-react-native/callout", - "version": "0.25.6" + '@fluentui-react-native/callout': { + name: '@fluentui-react-native/callout', + version: '0.25.6', }, - "@fluentui-react-native/checkbox": { - "name": "@fluentui-react-native/checkbox", - "version": "0.22.6" + '@fluentui-react-native/checkbox': { + name: '@fluentui-react-native/checkbox', + version: '0.22.6', }, - "@fluentui-react-native/chip": { - "name": "@fluentui-react-native/chip", - "version": "0.3.7" + '@fluentui-react-native/chip': { + name: '@fluentui-react-native/chip', + version: '0.3.7', }, - "@fluentui-react-native/contextual-menu": { - "name": "@fluentui-react-native/contextual-menu", - "version": "0.23.9" + '@fluentui-react-native/contextual-menu': { + name: '@fluentui-react-native/contextual-menu', + version: '0.23.9', }, - "@fluentui-react-native/divider": { - "name": "@fluentui-react-native/divider", - "version": "0.6.7" + '@fluentui-react-native/divider': { + name: '@fluentui-react-native/divider', + version: '0.6.7', }, - "@fluentui-react-native/focus-trap-zone": { - "name": "@fluentui-react-native/focus-trap-zone", - "version": "0.11.6" + '@fluentui-react-native/focus-trap-zone': { + name: '@fluentui-react-native/focus-trap-zone', + version: '0.11.6', }, - "@fluentui-react-native/focus-zone": { - "name": "@fluentui-react-native/focus-zone", - "version": "0.16.6" + '@fluentui-react-native/focus-zone': { + name: '@fluentui-react-native/focus-zone', + version: '0.16.6', }, - "@fluentui-react-native/icon": { - "name": "@fluentui-react-native/icon", - "version": "0.20.7" + '@fluentui-react-native/icon': { + name: '@fluentui-react-native/icon', + version: '0.20.7', }, - "@fluentui-react-native/input": { - "name": "@fluentui-react-native/input", - "version": "0.5.7" + '@fluentui-react-native/input': { + name: '@fluentui-react-native/input', + version: '0.5.7', }, - "@fluentui-react-native/link": { - "name": "@fluentui-react-native/link", - "version": "0.21.6" + '@fluentui-react-native/link': { + name: '@fluentui-react-native/link', + version: '0.21.6', }, - "@fluentui-react-native/menu": { - "name": "@fluentui-react-native/menu", - "version": "1.12.11" + '@fluentui-react-native/menu': { + name: '@fluentui-react-native/menu', + version: '1.12.11', }, - "@fluentui-react-native/menu-button": { - "name": "@fluentui-react-native/menu-button", - "version": "0.12.11" + '@fluentui-react-native/menu-button': { + name: '@fluentui-react-native/menu-button', + version: '0.12.11', }, - "@fluentui-react-native/notification": { - "name": "@fluentui-react-native/notification", - "version": "0.24.9" + '@fluentui-react-native/notification': { + name: '@fluentui-react-native/notification', + version: '0.24.9', }, - "@fluentui-react-native/persona": { - "name": "@fluentui-react-native/persona", - "version": "0.15.6" + '@fluentui-react-native/persona': { + name: '@fluentui-react-native/persona', + version: '0.15.6', }, - "@fluentui-react-native/persona-coin": { - "name": "@fluentui-react-native/persona-coin", - "version": "0.14.6" + '@fluentui-react-native/persona-coin': { + name: '@fluentui-react-native/persona-coin', + version: '0.14.6', }, - "@fluentui-react-native/pressable": { - "name": "@fluentui-react-native/pressable", - "version": "0.11.6" + '@fluentui-react-native/pressable': { + name: '@fluentui-react-native/pressable', + version: '0.11.6', }, - "@fluentui-react-native/radio-group": { - "name": "@fluentui-react-native/radio-group", - "version": "0.20.8" + '@fluentui-react-native/radio-group': { + name: '@fluentui-react-native/radio-group', + version: '0.20.8', }, - "@fluentui-react-native/separator": { - "name": "@fluentui-react-native/separator", - "version": "0.17.6" + '@fluentui-react-native/separator': { + name: '@fluentui-react-native/separator', + version: '0.17.6', }, - "@fluentui-react-native/stack": { - "name": "@fluentui-react-native/stack", - "version": "0.9.6" + '@fluentui-react-native/stack': { + name: '@fluentui-react-native/stack', + version: '0.9.6', }, - "@fluentui-react-native/switch": { - "name": "@fluentui-react-native/switch", - "version": "0.12.6" + '@fluentui-react-native/switch': { + name: '@fluentui-react-native/switch', + version: '0.12.6', }, - "@fluentui-react-native/tablist": { - "name": "@fluentui-react-native/tablist", - "version": "0.5.13" + '@fluentui-react-native/tablist': { + name: '@fluentui-react-native/tablist', + version: '0.5.13', }, - "@fluentui-react-native/tabs": { - "name": "@fluentui-react-native/tabs", - "version": "0.14.7" + '@fluentui-react-native/text': { + name: '@fluentui-react-native/text', + version: '0.22.6', }, - "@fluentui-react-native/text": { - "name": "@fluentui-react-native/text", - "version": "0.22.6" + '@uifabricshared/foundation-composable': { + name: '@uifabricshared/foundation-composable', + version: '0.12.3', }, - "@uifabricshared/foundation-composable": { - "name": "@uifabricshared/foundation-composable", - "version": "0.12.3" + '@uifabricshared/foundation-compose': { + name: '@uifabricshared/foundation-compose', + version: '1.14.19', }, - "@uifabricshared/foundation-compose": { - "name": "@uifabricshared/foundation-compose", - "version": "1.14.19" + '@uifabricshared/foundation-settings': { + name: '@uifabricshared/foundation-settings', + version: '0.14.0', }, - "@uifabricshared/foundation-settings": { - "name": "@uifabricshared/foundation-settings", - "version": "0.14.0" + '@uifabricshared/foundation-tokens': { + name: '@uifabricshared/foundation-tokens', + version: '0.14.5', }, - "@uifabricshared/foundation-tokens": { - "name": "@uifabricshared/foundation-tokens", - "version": "0.14.5" + '@uifabricshared/theme-registry': { + name: '@uifabricshared/theme-registry', + version: '0.11.0', }, - "@uifabricshared/theme-registry": { - "name": "@uifabricshared/theme-registry", - "version": "0.11.0" + '@uifabricshared/themed-settings': { + name: '@uifabricshared/themed-settings', + version: '0.11.0', }, - "@uifabricshared/themed-settings": { - "name": "@uifabricshared/themed-settings", - "version": "0.11.0" + '@uifabricshared/theming-ramp': { + name: '@uifabricshared/theming-ramp', + version: '0.19.10', }, - "@uifabricshared/theming-ramp": { - "name": "@uifabricshared/theming-ramp", - "version": "0.19.10" + '@uifabricshared/theming-react-native': { + name: '@uifabricshared/theming-react-native', + version: '0.19.6', }, - "@uifabricshared/theming-react-native": { - "name": "@uifabricshared/theming-react-native", - "version": "0.19.6" + '@fluentui-react-native/experimental-activity-indicator': { + name: '@fluentui-react-native/experimental-activity-indicator', + version: '0.9.6', }, - "@fluentui-react-native/experimental-activity-indicator": { - "name": "@fluentui-react-native/experimental-activity-indicator", - "version": "0.9.6" + '@fluentui-react-native/experimental-appearance-additions': { + name: '@fluentui-react-native/experimental-appearance-additions', + version: '0.6.6', }, - "@fluentui-react-native/experimental-appearance-additions": { - "name": "@fluentui-react-native/experimental-appearance-additions", - "version": "0.6.6" + '@fluentui-react-native/experimental-avatar': { + name: '@fluentui-react-native/experimental-avatar', + version: '0.20.6', }, - "@fluentui-react-native/experimental-avatar": { - "name": "@fluentui-react-native/experimental-avatar", - "version": "0.20.6" + '@fluentui-react-native/experimental-checkbox': { + name: '@fluentui-react-native/experimental-checkbox', + version: '0.16.6', }, - "@fluentui-react-native/experimental-checkbox": { - "name": "@fluentui-react-native/experimental-checkbox", - "version": "0.16.6" + '@fluentui-react-native/drawer': { + name: '@fluentui-react-native/drawer', + version: '0.3.6', }, - "@fluentui-react-native/drawer": { - "name": "@fluentui-react-native/drawer", - "version": "0.3.6" + '@fluentui-react-native/dropdown': { + name: '@fluentui-react-native/dropdown', + version: '0.9.9', }, - "@fluentui-react-native/dropdown": { - "name": "@fluentui-react-native/dropdown", - "version": "0.9.9" + '@fluentui-react-native/experimental-expander': { + name: '@fluentui-react-native/experimental-expander', + version: '0.7.6', }, - "@fluentui-react-native/experimental-expander": { - "name": "@fluentui-react-native/experimental-expander", - "version": "0.7.6" + '@fluentui-react-native/experimental-link': { + name: '@fluentui-react-native/experimental-link', + version: '0.7.6', }, - "@fluentui-react-native/experimental-link": { - "name": "@fluentui-react-native/experimental-link", - "version": "0.7.6" + '@fluentui-react-native/experimental-menu-button': { + name: '@fluentui-react-native/experimental-menu-button', + version: '0.9.10', }, - "@fluentui-react-native/experimental-menu-button": { - "name": "@fluentui-react-native/experimental-menu-button", - "version": "0.9.10" + '@fluentui-react-native/experimental-native-date-picker': { + name: '@fluentui-react-native/experimental-native-date-picker', + version: '0.10.0', }, - "@fluentui-react-native/experimental-native-date-picker": { - "name": "@fluentui-react-native/experimental-native-date-picker", - "version": "0.10.0" + '@fluentui-react-native/experimental-native-font-metrics': { + name: '@fluentui-react-native/experimental-native-font-metrics', + version: '0.5.0', }, - "@fluentui-react-native/experimental-native-font-metrics": { - "name": "@fluentui-react-native/experimental-native-font-metrics", - "version": "0.5.0" + '@fluentui-react-native/popover': { + name: '@fluentui-react-native/popover', + version: '0.3.6', }, - "@fluentui-react-native/popover": { - "name": "@fluentui-react-native/popover", - "version": "0.3.6" + '@fluentui-react-native/experimental-radio-group': { + name: '@fluentui-react-native/experimental-radio-group', + version: '0.12.8', }, - "@fluentui-react-native/experimental-radio-group": { - "name": "@fluentui-react-native/experimental-radio-group", - "version": "0.12.8" + '@fluentui-react-native/experimental-shadow': { + name: '@fluentui-react-native/experimental-shadow', + version: '0.5.6', }, - "@fluentui-react-native/experimental-shadow": { - "name": "@fluentui-react-native/experimental-shadow", - "version": "0.5.6" + '@fluentui-react-native/experimental-shimmer': { + name: '@fluentui-react-native/experimental-shimmer', + version: '0.12.8', }, - "@fluentui-react-native/experimental-shimmer": { - "name": "@fluentui-react-native/experimental-shimmer", - "version": "0.12.8" + '@fluentui-react-native/spinner': { + name: '@fluentui-react-native/spinner', + version: '0.8.6', }, - "@fluentui-react-native/spinner": { - "name": "@fluentui-react-native/spinner", - "version": "0.8.6" + '@fluentui-react-native/experimental-text': { + name: '@fluentui-react-native/experimental-text', + version: '0.14.6', }, - "@fluentui-react-native/experimental-tabs": { - "name": "@fluentui-react-native/experimental-tabs", - "version": "0.10.7" + '@fluentui-react-native/tooltip': { + name: '@fluentui-react-native/tooltip', + version: '0.2.8', }, - "@fluentui-react-native/experimental-text": { - "name": "@fluentui-react-native/experimental-text", - "version": "0.14.6" + '@fluentui-react-native/vibrancy-view': { + name: '@fluentui-react-native/vibrancy-view', + version: '0.1.0', }, - "@fluentui-react-native/tooltip": { - "name": "@fluentui-react-native/tooltip", - "version": "0.2.8" + '@fluentui-react-native/component-cache': { + name: '@fluentui-react-native/component-cache', + version: '1.6.0', }, - "@fluentui-react-native/vibrancy-view": { - "name": "@fluentui-react-native/vibrancy-view", - "version": "0.1.0" + '@fluentui-react-native/composition': { + name: '@fluentui-react-native/composition', + version: '0.10.0', }, - "@fluentui-react-native/component-cache": { - "name": "@fluentui-react-native/component-cache", - "version": "1.6.0" + '@fluentui-react-native/eslint-config-rules': { + name: '@fluentui-react-native/eslint-config-rules', + version: '0.1.1', }, - "@fluentui-react-native/composition": { - "name": "@fluentui-react-native/composition", - "version": "0.10.0" + '@fluentui-react-native/framework': { + name: '@fluentui-react-native/framework', + version: '0.13.5', }, - "@fluentui-react-native/eslint-config-rules": { - "name": "@fluentui-react-native/eslint-config-rules", - "version": "0.1.1" + '@fluentui-react-native/immutable-merge': { + name: '@fluentui-react-native/immutable-merge', + version: '1.2.1', }, - "@fluentui-react-native/framework": { - "name": "@fluentui-react-native/framework", - "version": "0.13.5" + '@fluentui-react-native/memo-cache': { + name: '@fluentui-react-native/memo-cache', + version: '1.3.1', }, - "@fluentui-react-native/immutable-merge": { - "name": "@fluentui-react-native/immutable-merge", - "version": "1.2.1" + '@fluentui-react-native/merge-props': { + name: '@fluentui-react-native/merge-props', + version: '0.8.0', }, - "@fluentui-react-native/memo-cache": { - "name": "@fluentui-react-native/memo-cache", - "version": "1.3.1" + '@fluentui-react-native/theme': { + name: '@fluentui-react-native/theme', + version: '0.10.5', }, - "@fluentui-react-native/merge-props": { - "name": "@fluentui-react-native/merge-props", - "version": "0.8.0" + '@fluentui-react-native/themed-stylesheet': { + name: '@fluentui-react-native/themed-stylesheet', + version: '1.6.0', }, - "@fluentui-react-native/theme": { - "name": "@fluentui-react-native/theme", - "version": "0.10.5" + '@fluentui-react-native/use-slot': { + name: '@fluentui-react-native/use-slot', + version: '0.5.0', }, - "@fluentui-react-native/themed-stylesheet": { - "name": "@fluentui-react-native/themed-stylesheet", - "version": "1.6.0" + '@fluentui-react-native/use-slots': { + name: '@fluentui-react-native/use-slots', + version: '0.9.0', }, - "@fluentui-react-native/use-slot": { - "name": "@fluentui-react-native/use-slot", - "version": "0.5.0" + '@fluentui-react-native/use-styling': { + name: '@fluentui-react-native/use-styling', + version: '0.12.0', }, - "@fluentui-react-native/use-slots": { - "name": "@fluentui-react-native/use-slots", - "version": "0.9.0" + '@fluentui-react-native/use-tokens': { + name: '@fluentui-react-native/use-tokens', + version: '0.5.0', }, - "@fluentui-react-native/use-styling": { - "name": "@fluentui-react-native/use-styling", - "version": "0.12.0" + '@fluentui/react-native': { + name: '@fluentui/react-native', + version: '0.39.13', }, - "@fluentui-react-native/use-tokens": { - "name": "@fluentui-react-native/use-tokens", - "version": "0.5.0" + '@fluentui-react-native/android-theme': { + name: '@fluentui-react-native/android-theme', + version: '0.24.0', }, - "@fluentui/react-native": { - "name": "@fluentui/react-native", - "version": "0.39.13" + '@fluentui-react-native/apple-theme': { + name: '@fluentui-react-native/apple-theme', + version: '0.27.0', }, - "@fluentui-react-native/android-theme": { - "name": "@fluentui-react-native/android-theme", - "version": "0.24.0" + '@fluentui-react-native/default-theme': { + name: '@fluentui-react-native/default-theme', + version: '0.25.0', }, - "@fluentui-react-native/apple-theme": { - "name": "@fluentui-react-native/apple-theme", - "version": "0.27.0" + '@fluentui-react-native/theme-tokens': { + name: '@fluentui-react-native/theme-tokens', + version: '0.26.5', }, - "@fluentui-react-native/default-theme": { - "name": "@fluentui-react-native/default-theme", - "version": "0.25.0" + '@fluentui-react-native/theme-types': { + name: '@fluentui-react-native/theme-types', + version: '0.38.0', }, - "@fluentui-react-native/theme-tokens": { - "name": "@fluentui-react-native/theme-tokens", - "version": "0.26.5" + '@fluentui-react-native/theming-utils': { + name: '@fluentui-react-native/theming-utils', + version: '0.25.5', }, - "@fluentui-react-native/theme-types": { - "name": "@fluentui-react-native/theme-types", - "version": "0.38.0" + '@fluentui-react-native/win32-theme': { + name: '@fluentui-react-native/win32-theme', + version: '0.33.0', }, - "@fluentui-react-native/theming-utils": { - "name": "@fluentui-react-native/theming-utils", - "version": "0.25.5" + '@fluentui-react-native/adapters': { + name: '@fluentui-react-native/adapters', + version: '0.12.0', }, - "@fluentui-react-native/win32-theme": { - "name": "@fluentui-react-native/win32-theme", - "version": "0.33.0" + '@fluentui-react-native/interactive-hooks': { + name: '@fluentui-react-native/interactive-hooks', + version: '0.25.6', }, - "@fluentui-react-native/adapters": { - "name": "@fluentui-react-native/adapters", - "version": "0.12.0" + '@fluentui-react-native/styling-utils': { + name: '@fluentui-react-native/styling-utils', + version: '0.6.0', }, - "@fluentui-react-native/interactive-hooks": { - "name": "@fluentui-react-native/interactive-hooks", - "version": "0.25.6" + '@fluentui-react-native/tokens': { + name: '@fluentui-react-native/tokens', + version: '0.22.5', }, - "@fluentui-react-native/styling-utils": { - "name": "@fluentui-react-native/styling-utils", - "version": "0.6.0" - }, - "@fluentui-react-native/tokens": { - "name": "@fluentui-react-native/tokens", - "version": "0.22.5" - } }, - "0.71": { - "@fluentui-react-native/e2e-testing": { - "name": "@fluentui-react-native/e2e-testing", - "version": "1.32.8" + 0.71: { + '@fluentui-react-native/e2e-testing': { + name: '@fluentui-react-native/e2e-testing', + version: '1.32.8', }, - "@fluentui-react-native/tester": { - "name": "@fluentui-react-native/tester", - "version": "0.157.10" + '@fluentui-react-native/tester': { + name: '@fluentui-react-native/tester', + version: '0.157.10', }, - "@fluentui-react-native/tester-win32": { - "name": "@fluentui-react-native/tester-win32", - "version": "0.36.17" + '@fluentui-react-native/tester-win32': { + name: '@fluentui-react-native/tester-win32', + version: '0.36.17', }, - "@fluentui-react-native/avatar": { - "name": "@fluentui-react-native/avatar", - "version": "1.10.18" + '@fluentui-react-native/avatar': { + name: '@fluentui-react-native/avatar', + version: '1.10.18', }, - "@fluentui-react-native/badge": { - "name": "@fluentui-react-native/badge", - "version": "0.7.14" + '@fluentui-react-native/badge': { + name: '@fluentui-react-native/badge', + version: '0.7.14', }, - "@fluentui-react-native/button": { - "name": "@fluentui-react-native/button", - "version": "0.35.11" + '@fluentui-react-native/button': { + name: '@fluentui-react-native/button', + version: '0.35.11', }, - "@fluentui-react-native/callout": { - "name": "@fluentui-react-native/callout", - "version": "0.24.19" + '@fluentui-react-native/callout': { + name: '@fluentui-react-native/callout', + version: '0.24.19', }, - "@fluentui-react-native/checkbox": { - "name": "@fluentui-react-native/checkbox", - "version": "0.21.7" + '@fluentui-react-native/checkbox': { + name: '@fluentui-react-native/checkbox', + version: '0.21.7', }, - "@fluentui-react-native/chip": { - "name": "@fluentui-react-native/chip", - "version": "0.2.9" + '@fluentui-react-native/chip': { + name: '@fluentui-react-native/chip', + version: '0.2.9', }, - "@fluentui-react-native/contextual-menu": { - "name": "@fluentui-react-native/contextual-menu", - "version": "0.22.25" + '@fluentui-react-native/contextual-menu': { + name: '@fluentui-react-native/contextual-menu', + version: '0.22.25', }, - "@fluentui-react-native/divider": { - "name": "@fluentui-react-native/divider", - "version": "0.5.16" + '@fluentui-react-native/divider': { + name: '@fluentui-react-native/divider', + version: '0.5.16', }, - "@fluentui-react-native/focus-trap-zone": { - "name": "@fluentui-react-native/focus-trap-zone", - "version": "0.10.14" + '@fluentui-react-native/focus-trap-zone': { + name: '@fluentui-react-native/focus-trap-zone', + version: '0.10.14', }, - "@fluentui-react-native/focus-zone": { - "name": "@fluentui-react-native/focus-zone", - "version": "0.15.0" + '@fluentui-react-native/focus-zone': { + name: '@fluentui-react-native/focus-zone', + version: '0.15.0', }, - "@fluentui-react-native/icon": { - "name": "@fluentui-react-native/icon", - "version": "0.19.16" + '@fluentui-react-native/icon': { + name: '@fluentui-react-native/icon', + version: '0.19.16', }, - "@fluentui-react-native/input": { - "name": "@fluentui-react-native/input", - "version": "0.4.9" + '@fluentui-react-native/input': { + name: '@fluentui-react-native/input', + version: '0.4.9', }, - "@fluentui-react-native/link": { - "name": "@fluentui-react-native/link", - "version": "0.20.7" + '@fluentui-react-native/link': { + name: '@fluentui-react-native/link', + version: '0.20.7', }, - "@fluentui-react-native/menu": { - "name": "@fluentui-react-native/menu", - "version": "1.11.30" + '@fluentui-react-native/menu': { + name: '@fluentui-react-native/menu', + version: '1.11.30', }, - "@fluentui-react-native/menu-button": { - "name": "@fluentui-react-native/menu-button", - "version": "0.11.31" + '@fluentui-react-native/menu-button': { + name: '@fluentui-react-native/menu-button', + version: '0.11.31', }, - "@fluentui-react-native/notification": { - "name": "@fluentui-react-native/notification", - "version": "0.23.22" + '@fluentui-react-native/notification': { + name: '@fluentui-react-native/notification', + version: '0.23.22', }, - "@fluentui-react-native/persona": { - "name": "@fluentui-react-native/persona", - "version": "0.14.12" + '@fluentui-react-native/persona': { + name: '@fluentui-react-native/persona', + version: '0.14.12', }, - "@fluentui-react-native/persona-coin": { - "name": "@fluentui-react-native/persona-coin", - "version": "0.13.12" + '@fluentui-react-native/persona-coin': { + name: '@fluentui-react-native/persona-coin', + version: '0.13.12', }, - "@fluentui-react-native/pressable": { - "name": "@fluentui-react-native/pressable", - "version": "0.10.13" + '@fluentui-react-native/pressable': { + name: '@fluentui-react-native/pressable', + version: '0.10.13', }, - "@fluentui-react-native/radio-group": { - "name": "@fluentui-react-native/radio-group", - "version": "0.19.9" + '@fluentui-react-native/radio-group': { + name: '@fluentui-react-native/radio-group', + version: '0.19.9', }, - "@fluentui-react-native/separator": { - "name": "@fluentui-react-native/separator", - "version": "0.16.10" + '@fluentui-react-native/separator': { + name: '@fluentui-react-native/separator', + version: '0.16.10', }, - "@fluentui-react-native/stack": { - "name": "@fluentui-react-native/stack", - "version": "0.8.16" + '@fluentui-react-native/stack': { + name: '@fluentui-react-native/stack', + version: '0.8.16', }, - "@fluentui-react-native/switch": { - "name": "@fluentui-react-native/switch", - "version": "0.11.7" + '@fluentui-react-native/switch': { + name: '@fluentui-react-native/switch', + version: '0.11.7', }, - "@fluentui-react-native/tabs": { - "name": "@fluentui-react-native/tabs", - "version": "0.13.19" + '@fluentui-react-native/text': { + name: '@fluentui-react-native/text', + version: '0.21.14', }, - "@fluentui-react-native/text": { - "name": "@fluentui-react-native/text", - "version": "0.21.14" + '@uifabricshared/foundation-composable': { + name: '@uifabricshared/foundation-composable', + version: '0.12.2', }, - "@uifabricshared/foundation-composable": { - "name": "@uifabricshared/foundation-composable", - "version": "0.12.2" + '@uifabricshared/foundation-compose': { + name: '@uifabricshared/foundation-compose', + version: '1.14.12', }, - "@uifabricshared/foundation-compose": { - "name": "@uifabricshared/foundation-compose", - "version": "1.14.12" + '@uifabricshared/foundation-settings': { + name: '@uifabricshared/foundation-settings', + version: '0.13.2', }, - "@uifabricshared/foundation-settings": { - "name": "@uifabricshared/foundation-settings", - "version": "0.13.2" + '@uifabricshared/foundation-tokens': { + name: '@uifabricshared/foundation-tokens', + version: '0.13.9', }, - "@uifabricshared/foundation-tokens": { - "name": "@uifabricshared/foundation-tokens", - "version": "0.13.9" + '@uifabricshared/theme-registry': { + name: '@uifabricshared/theme-registry', + version: '0.10.1', }, - "@uifabricshared/theme-registry": { - "name": "@uifabricshared/theme-registry", - "version": "0.10.1" + '@uifabricshared/themed-settings': { + name: '@uifabricshared/themed-settings', + version: '0.10.2', }, - "@uifabricshared/themed-settings": { - "name": "@uifabricshared/themed-settings", - "version": "0.10.2" + '@uifabricshared/theming-ramp': { + name: '@uifabricshared/theming-ramp', + version: '0.19.4', }, - "@uifabricshared/theming-ramp": { - "name": "@uifabricshared/theming-ramp", - "version": "0.19.4" + '@uifabricshared/theming-react-native': { + name: '@uifabricshared/theming-react-native', + version: '0.18.12', }, - "@uifabricshared/theming-react-native": { - "name": "@uifabricshared/theming-react-native", - "version": "0.18.12" + '@fluentui-react-native/experimental-activity-indicator': { + name: '@fluentui-react-native/experimental-activity-indicator', + version: '0.8.12', }, - "@fluentui-react-native/experimental-activity-indicator": { - "name": "@fluentui-react-native/experimental-activity-indicator", - "version": "0.8.12" + '@fluentui-react-native/experimental-appearance-additions': { + name: '@fluentui-react-native/experimental-appearance-additions', + version: '0.5.12', }, - "@fluentui-react-native/experimental-appearance-additions": { - "name": "@fluentui-react-native/experimental-appearance-additions", - "version": "0.5.12" + '@fluentui-react-native/experimental-avatar': { + name: '@fluentui-react-native/experimental-avatar', + version: '0.19.11', }, - "@fluentui-react-native/experimental-avatar": { - "name": "@fluentui-react-native/experimental-avatar", - "version": "0.19.11" + '@fluentui-react-native/experimental-button': { + name: '@fluentui-react-native/experimental-button', + version: '0.18.22', }, - "@fluentui-react-native/experimental-button": { - "name": "@fluentui-react-native/experimental-button", - "version": "0.18.22" + '@fluentui-react-native/experimental-checkbox': { + name: '@fluentui-react-native/experimental-checkbox', + version: '0.15.17', }, - "@fluentui-react-native/experimental-checkbox": { - "name": "@fluentui-react-native/experimental-checkbox", - "version": "0.15.17" + '@fluentui-react-native/drawer': { + name: '@fluentui-react-native/drawer', + version: '0.2.13', }, - "@fluentui-react-native/drawer": { - "name": "@fluentui-react-native/drawer", - "version": "0.2.13" + '@fluentui-react-native/dropdown': { + name: '@fluentui-react-native/dropdown', + version: '0.8.29', }, - "@fluentui-react-native/dropdown": { - "name": "@fluentui-react-native/dropdown", - "version": "0.8.29" + '@fluentui-react-native/experimental-expander': { + name: '@fluentui-react-native/experimental-expander', + version: '0.6.13', }, - "@fluentui-react-native/experimental-expander": { - "name": "@fluentui-react-native/experimental-expander", - "version": "0.6.13" + '@fluentui-react-native/experimental-link': { + name: '@fluentui-react-native/experimental-link', + version: '0.6.16', }, - "@fluentui-react-native/experimental-link": { - "name": "@fluentui-react-native/experimental-link", - "version": "0.6.16" + '@fluentui-react-native/experimental-menu-button': { + name: '@fluentui-react-native/experimental-menu-button', + version: '0.7.31', }, - "@fluentui-react-native/experimental-menu-button": { - "name": "@fluentui-react-native/experimental-menu-button", - "version": "0.7.31" + '@fluentui-react-native/experimental-native-date-picker': { + name: '@fluentui-react-native/experimental-native-date-picker', + version: '0.9.1', }, - "@fluentui-react-native/experimental-native-date-picker": { - "name": "@fluentui-react-native/experimental-native-date-picker", - "version": "0.9.1" + '@fluentui-react-native/experimental-native-font-metrics': { + name: '@fluentui-react-native/experimental-native-font-metrics', + version: '0.4.1', }, - "@fluentui-react-native/experimental-native-font-metrics": { - "name": "@fluentui-react-native/experimental-native-font-metrics", - "version": "0.4.1" + '@fluentui-react-native/popover': { + name: '@fluentui-react-native/popover', + version: '0.2.11', }, - "@fluentui-react-native/popover": { - "name": "@fluentui-react-native/popover", - "version": "0.2.11" + '@fluentui-react-native/experimental-radio-group': { + name: '@fluentui-react-native/experimental-radio-group', + version: '0.11.19', }, - "@fluentui-react-native/experimental-radio-group": { - "name": "@fluentui-react-native/experimental-radio-group", - "version": "0.11.19" + '@fluentui-react-native/experimental-shadow': { + name: '@fluentui-react-native/experimental-shadow', + version: '0.4.12', }, - "@fluentui-react-native/experimental-shadow": { - "name": "@fluentui-react-native/experimental-shadow", - "version": "0.4.12" + '@fluentui-react-native/experimental-shimmer': { + name: '@fluentui-react-native/experimental-shimmer', + version: '0.11.6', }, - "@fluentui-react-native/experimental-shimmer": { - "name": "@fluentui-react-native/experimental-shimmer", - "version": "0.11.6" + '@fluentui-react-native/spinner': { + name: '@fluentui-react-native/spinner', + version: '0.7.15', }, - "@fluentui-react-native/spinner": { - "name": "@fluentui-react-native/spinner", - "version": "0.7.15" + '@fluentui-react-native/tablist': { + name: '@fluentui-react-native/tablist', + version: '0.4.10', }, - "@fluentui-react-native/tablist": { - "name": "@fluentui-react-native/tablist", - "version": "0.4.10" + '@fluentui-react-native/experimental-text': { + name: '@fluentui-react-native/experimental-text', + version: '0.13.14', }, - "@fluentui-react-native/experimental-tabs": { - "name": "@fluentui-react-native/experimental-tabs", - "version": "0.9.21" + '@fluentui-react-native/vibrancy-view': { + name: '@fluentui-react-native/vibrancy-view', + version: '0.0.3', }, - "@fluentui-react-native/experimental-text": { - "name": "@fluentui-react-native/experimental-text", - "version": "0.13.14" + '@fluentui-react-native/component-cache': { + name: '@fluentui-react-native/component-cache', + version: '1.5.1', }, - "@fluentui-react-native/vibrancy-view": { - "name": "@fluentui-react-native/vibrancy-view", - "version": "0.0.3" + '@fluentui-react-native/composition': { + name: '@fluentui-react-native/composition', + version: '0.9.2', }, - "@fluentui-react-native/component-cache": { - "name": "@fluentui-react-native/component-cache", - "version": "1.5.1" + '@fluentui-react-native/eslint-config-rules': { + name: '@fluentui-react-native/eslint-config-rules', + version: '0.1.1', }, - "@fluentui-react-native/composition": { - "name": "@fluentui-react-native/composition", - "version": "0.9.2" + '@fluentui-react-native/framework': { + name: '@fluentui-react-native/framework', + version: '0.11.10', }, - "@fluentui-react-native/eslint-config-rules": { - "name": "@fluentui-react-native/eslint-config-rules", - "version": "0.1.1" + '@fluentui-react-native/immutable-merge': { + name: '@fluentui-react-native/immutable-merge', + version: '1.2.1', }, - "@fluentui-react-native/framework": { - "name": "@fluentui-react-native/framework", - "version": "0.11.10" + '@fluentui-react-native/memo-cache': { + name: '@fluentui-react-native/memo-cache', + version: '1.3.1', }, - "@fluentui-react-native/immutable-merge": { - "name": "@fluentui-react-native/immutable-merge", - "version": "1.2.1" + '@fluentui-react-native/merge-props': { + name: '@fluentui-react-native/merge-props', + version: '0.7.1', }, - "@fluentui-react-native/memo-cache": { - "name": "@fluentui-react-native/memo-cache", - "version": "1.3.1" + '@fluentui-react-native/theme': { + name: '@fluentui-react-native/theme', + version: '0.9.4', }, - "@fluentui-react-native/merge-props": { - "name": "@fluentui-react-native/merge-props", - "version": "0.7.1" + '@fluentui-react-native/themed-stylesheet': { + name: '@fluentui-react-native/themed-stylesheet', + version: '1.5.2', }, - "@fluentui-react-native/theme": { - "name": "@fluentui-react-native/theme", - "version": "0.9.4" + '@fluentui-react-native/use-slot': { + name: '@fluentui-react-native/use-slot', + version: '0.4.2', }, - "@fluentui-react-native/themed-stylesheet": { - "name": "@fluentui-react-native/themed-stylesheet", - "version": "1.5.2" + '@fluentui-react-native/use-slots': { + name: '@fluentui-react-native/use-slots', + version: '0.8.2', }, - "@fluentui-react-native/use-slot": { - "name": "@fluentui-react-native/use-slot", - "version": "0.4.2" + '@fluentui-react-native/use-styling': { + name: '@fluentui-react-native/use-styling', + version: '0.11.1', }, - "@fluentui-react-native/use-slots": { - "name": "@fluentui-react-native/use-slots", - "version": "0.8.2" + '@fluentui-react-native/use-tokens': { + name: '@fluentui-react-native/use-tokens', + version: '0.4.2', }, - "@fluentui-react-native/use-styling": { - "name": "@fluentui-react-native/use-styling", - "version": "0.11.1" + '@fluentui/react-native': { + name: '@fluentui/react-native', + version: '0.38.6', }, - "@fluentui-react-native/use-tokens": { - "name": "@fluentui-react-native/use-tokens", - "version": "0.4.2" + '@fluentui-react-native/android-theme': { + name: '@fluentui-react-native/android-theme', + version: '0.18.9', }, - "@fluentui/react-native": { - "name": "@fluentui/react-native", - "version": "0.38.6" + '@fluentui-react-native/apple-theme': { + name: '@fluentui-react-native/apple-theme', + version: '0.21.13', }, - "@fluentui-react-native/android-theme": { - "name": "@fluentui-react-native/android-theme", - "version": "0.18.9" + '@fluentui-react-native/default-theme': { + name: '@fluentui-react-native/default-theme', + version: '0.19.11', }, - "@fluentui-react-native/apple-theme": { - "name": "@fluentui-react-native/apple-theme", - "version": "0.21.13" + '@fluentui-react-native/theme-tokens': { + name: '@fluentui-react-native/theme-tokens', + version: '0.25.4', }, - "@fluentui-react-native/default-theme": { - "name": "@fluentui-react-native/default-theme", - "version": "0.19.11" + '@fluentui-react-native/theme-types': { + name: '@fluentui-react-native/theme-types', + version: '0.32.3', }, - "@fluentui-react-native/theme-tokens": { - "name": "@fluentui-react-native/theme-tokens", - "version": "0.25.4" + '@fluentui-react-native/theming-utils': { + name: '@fluentui-react-native/theming-utils', + version: '0.24.7', }, - "@fluentui-react-native/theme-types": { - "name": "@fluentui-react-native/theme-types", - "version": "0.32.3" + '@fluentui-react-native/win32-theme': { + name: '@fluentui-react-native/win32-theme', + version: '0.27.10', }, - "@fluentui-react-native/theming-utils": { - "name": "@fluentui-react-native/theming-utils", - "version": "0.24.7" + '@fluentui-react-native/adapters': { + name: '@fluentui-react-native/adapters', + version: '0.11.3', }, - "@fluentui-react-native/win32-theme": { - "name": "@fluentui-react-native/win32-theme", - "version": "0.27.10" + '@fluentui-react-native/interactive-hooks': { + name: '@fluentui-react-native/interactive-hooks', + version: '0.24.12', }, - "@fluentui-react-native/adapters": { - "name": "@fluentui-react-native/adapters", - "version": "0.11.3" + '@fluentui-react-native/styling-utils': { + name: '@fluentui-react-native/styling-utils', + version: '0.5.0', }, - "@fluentui-react-native/interactive-hooks": { - "name": "@fluentui-react-native/interactive-hooks", - "version": "0.24.12" + '@fluentui-react-native/tokens': { + name: '@fluentui-react-native/tokens', + version: '0.21.6', }, - "@fluentui-react-native/styling-utils": { - "name": "@fluentui-react-native/styling-utils", - "version": "0.5.0" - }, - "@fluentui-react-native/tokens": { - "name": "@fluentui-react-native/tokens", - "version": "0.21.6" - } - } + }, }; diff --git a/packages/experimental/Tabs/.eslintrc.js b/packages/experimental/Tabs/.eslintrc.js deleted file mode 100644 index 16d1d51ba..000000000 --- a/packages/experimental/Tabs/.eslintrc.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - extends: ['@fluentui-react-native/eslint-config-rules'], -}; diff --git a/packages/experimental/Tabs/CHANGELOG.json b/packages/experimental/Tabs/CHANGELOG.json deleted file mode 100644 index 62c4e2099..000000000 --- a/packages/experimental/Tabs/CHANGELOG.json +++ /dev/null @@ -1,6794 +0,0 @@ -{ - "name": "@fluentui-react-native/experimental-tabs", - "entries": [ - { - "date": "Thu, 04 Jan 2024 21:06:26 GMT", - "version": "0.10.7", - "tag": "@fluentui-react-native/experimental-tabs_v0.10.7", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.16.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.13.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.7", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.25.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.22.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.22.5", - "commit": "not available" - } - ] - } - }, - { - "date": "Thu, 04 Jan 2024 01:35:42 GMT", - "version": "0.10.6", - "tag": "@fluentui-react-native/experimental-tabs_v0.10.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.16.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.13.4", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.25.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.22.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.22.4", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 03 Jan 2024 00:15:20 GMT", - "version": "0.10.5", - "tag": "@fluentui-react-native/experimental-tabs_v0.10.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.16.4", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.13.3", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.25.4", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.22.4", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.22.3", - "commit": "not available" - } - ] - } - }, - { - "date": "Thu, 21 Dec 2023 01:31:00 GMT", - "version": "0.10.4", - "tag": "@fluentui-react-native/experimental-tabs_v0.10.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.16.3", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.13.2", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.4", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.25.3", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.22.3", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.22.2", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 20 Dec 2023 20:20:38 GMT", - "version": "0.10.3", - "tag": "@fluentui-react-native/experimental-tabs_v0.10.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.16.2", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.13.1", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.3", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.25.2", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.22.2", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 20 Dec 2023 00:05:24 GMT", - "version": "0.10.2", - "tag": "@fluentui-react-native/experimental-tabs_v0.10.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.16.1", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.13.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.2", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.25.1", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.22.1", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.22.1", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 06 Dec 2023 22:21:57 GMT", - "version": "0.10.1", - "tag": "@fluentui-react-native/experimental-tabs_v0.10.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.1", - "commit": "not available" - } - ] - } - }, - { - "date": "Thu, 09 Nov 2023 02:39:09 GMT", - "version": "0.10.0", - "tag": "@fluentui-react-native/experimental-tabs_v0.10.0", - "comments": { - "minor": [ - { - "author": "30809111+acoates-ms@users.noreply.github.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "4a6a9cd63396c6e8fc6ffbfec7137652928e40ef", - "comment": "Update to react-native 0.72" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.12.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.16.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.12.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.20.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.25.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.22.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.22.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/use-styling to v0.12.0", - "commit": "not available" - } - ] - } - }, - { - "date": "Tue, 07 Nov 2023 20:20:34 GMT", - "version": "0.9.21", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.21", - "comments": { - "patch": [ - { - "author": "safreibe@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "252935c886c6ffba5fd30593e63cbce4f61f7a90", - "comment": "Manually bump packages stuck in the pipeline" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.15.0", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.11.10", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.16", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.12", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.14", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.21.6", - "commit": "not available" - } - ] - } - }, - { - "date": "Tue, 31 Oct 2023 19:11:10 GMT", - "version": "0.9.19", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.19", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.13.3", - "commit": "not available" - } - ] - } - }, - { - "date": "Mon, 30 Oct 2023 21:26:06 GMT", - "version": "0.9.18", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.18", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.13.2", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.11.8", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.14", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.10", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.12", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.21.4", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 25 Oct 2023 20:50:34 GMT", - "version": "0.9.17", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.17", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.13.1", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.11.7", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.13", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.9", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.11", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 25 Oct 2023 17:21:07 GMT", - "version": "0.9.16", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.16", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.12", - "commit": "not available" - } - ] - } - }, - { - "date": "Tue, 17 Oct 2023 19:21:23 GMT", - "version": "0.9.15", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.15", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.13.0", - "commit": "not available" - } - ] - } - }, - { - "date": "Mon, 25 Sep 2023 12:49:34 GMT", - "version": "0.9.14", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.14", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.11", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.10", - "commit": "not available" - } - ] - } - }, - { - "date": "Tue, 29 Aug 2023 22:56:32 GMT", - "version": "0.9.13", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.13", - "comments": { - "patch": [ - { - "author": "krsiler@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "b2c77a0f16222a3d7e3a333730e34a3b5991d3ca", - "comment": "update snapshots" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.11.3", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.10", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.11.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.10", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.8", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.9", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.21.3", - "commit": "not available" - } - ] - } - }, - { - "date": "Tue, 29 Aug 2023 21:59:04 GMT", - "version": "0.9.12", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.12", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.9", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 23 Aug 2023 18:55:24 GMT", - "version": "0.9.11", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.11", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.8", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.8", - "commit": "not available" - } - ] - } - }, - { - "date": "Mon, 14 Aug 2023 20:14:41 GMT", - "version": "0.9.10", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.10", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.11.2", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.9", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.11.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.7", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.7", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.7", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.21.2", - "commit": "not available" - } - ] - } - }, - { - "date": "Wed, 09 Aug 2023 22:02:14 GMT", - "version": "0.9.9", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.9", - "comments": { - "patch": [ - { - "author": "ruaraki@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "144e13724c3bdd68fa821c9166fae7f9dffc7d01", - "comment": "Result of yarn" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.8", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.11.4", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.6", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/use-styling to v0.11.1", - "commit": "not available" - } - ] - } - }, - { - "date": "Mon, 31 Jul 2023 19:29:59 GMT", - "version": "0.9.8", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.8", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.11.3", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.7", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.5", - "commit": "not available" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.5", - "commit": "not available" - } - ] - } - }, - { - "date": "Tue, 18 Jul 2023 19:09:32 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.7", - "version": "0.9.7", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.11.2", - "commit": "225d20784228abaa4b80bd12b57d2c6972d9abd4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.4", - "commit": "225d20784228abaa4b80bd12b57d2c6972d9abd4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.6", - "commit": "225d20784228abaa4b80bd12b57d2c6972d9abd4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.4", - "commit": "225d20784228abaa4b80bd12b57d2c6972d9abd4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.4", - "commit": "225d20784228abaa4b80bd12b57d2c6972d9abd4" - } - ] - } - }, - { - "date": "Mon, 10 Jul 2023 17:25:04 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.6", - "version": "0.9.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.5", - "commit": "d1fc0c774448d103085b5bb5ab0103678a62cbbc" - } - ] - } - }, - { - "date": "Fri, 07 Jul 2023 20:45:12 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.5", - "version": "0.9.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.11.1", - "commit": "d2f6f8d12972593821ec0e2764953efd6dafb1a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.3", - "commit": "d2f6f8d12972593821ec0e2764953efd6dafb1a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.4", - "commit": "d2f6f8d12972593821ec0e2764953efd6dafb1a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.3", - "commit": "d2f6f8d12972593821ec0e2764953efd6dafb1a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.21.1", - "commit": "d2f6f8d12972593821ec0e2764953efd6dafb1a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.3", - "commit": "d2f6f8d12972593821ec0e2764953efd6dafb1a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.11.1", - "commit": "d2f6f8d12972593821ec0e2764953efd6dafb1a2" - } - ] - } - }, - { - "date": "Mon, 19 Jun 2023 18:37:35 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.4", - "version": "0.9.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.2", - "commit": "8fb16fe41492ebb2f9b262a038928c9228c20ac2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.3", - "commit": "8fb16fe41492ebb2f9b262a038928c9228c20ac2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.2", - "commit": "8fb16fe41492ebb2f9b262a038928c9228c20ac2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.2", - "commit": "8fb16fe41492ebb2f9b262a038928c9228c20ac2" - } - ] - } - }, - { - "date": "Sat, 17 Jun 2023 00:00:18 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.3", - "version": "0.9.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.1", - "commit": "30d5533f69785ce98f3f6fe79059ad18ee7136cc" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.2", - "commit": "30d5533f69785ce98f3f6fe79059ad18ee7136cc" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.1", - "commit": "30d5533f69785ce98f3f6fe79059ad18ee7136cc" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.1", - "commit": "30d5533f69785ce98f3f6fe79059ad18ee7136cc" - } - ] - } - }, - { - "date": "Mon, 12 Jun 2023 17:46:44 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.2", - "version": "0.9.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.11.0", - "commit": "6530042f4f24cbb296337a8bcf5fb32a09cc6378" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.0", - "commit": "6530042f4f24cbb296337a8bcf5fb32a09cc6378" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.1", - "commit": "6530042f4f24cbb296337a8bcf5fb32a09cc6378" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.21.0", - "commit": "6530042f4f24cbb296337a8bcf5fb32a09cc6378" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/use-styling to v0.11.0", - "commit": "6530042f4f24cbb296337a8bcf5fb32a09cc6378" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.19.0", - "commit": "6530042f4f24cbb296337a8bcf5fb32a09cc6378" - } - ] - } - }, - { - "date": "Fri, 09 Jun 2023 15:29:07 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.1", - "version": "0.9.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.20.1", - "commit": "1791790bbd41797f0244fef65d4e5e6b095808e9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.18.1", - "commit": "1791790bbd41797f0244fef65d4e5e6b095808e9" - } - ] - } - }, - { - "date": "Mon, 05 Jun 2023 19:26:23 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.9.0", - "version": "0.9.0", - "comments": { - "minor": [ - { - "author": "sanajmi@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "8c0f9d27e34913da82c00299c12c399877257325", - "comment": "Upgrade to React Native 0.71" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.10.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.23.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.12.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.20.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.21.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/use-styling to v0.10.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.18.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.11.0", - "commit": "8c0f9d27e34913da82c00299c12c399877257325" - } - ] - } - }, - { - "date": "Tue, 30 May 2023 20:34:15 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.48", - "version": "0.8.48", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.9.10", - "commit": "09fa3b65fd9d29f4dc4769e1e479fb5a82812979" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.31", - "commit": "09fa3b65fd9d29f4dc4769e1e479fb5a82812979" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.43", - "commit": "09fa3b65fd9d29f4dc4769e1e479fb5a82812979" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.33", - "commit": "09fa3b65fd9d29f4dc4769e1e479fb5a82812979" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.16", - "commit": "09fa3b65fd9d29f4dc4769e1e479fb5a82812979" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.27", - "commit": "09fa3b65fd9d29f4dc4769e1e479fb5a82812979" - } - ] - } - }, - { - "date": "Wed, 03 May 2023 07:08:51 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.47", - "version": "0.8.47", - "comments": { - "patch": [ - { - "author": "78454019+lyzhan7@users.noreply.github.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "52a53e376865d500b73f26ea9935e13036b04b1a", - "comment": "Update design-tokens package to 0.47.0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.9.9", - "commit": "52a53e376865d500b73f26ea9935e13036b04b1a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.30", - "commit": "52a53e376865d500b73f26ea9935e13036b04b1a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.42", - "commit": "52a53e376865d500b73f26ea9935e13036b04b1a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.32", - "commit": "52a53e376865d500b73f26ea9935e13036b04b1a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.15", - "commit": "52a53e376865d500b73f26ea9935e13036b04b1a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.26", - "commit": "52a53e376865d500b73f26ea9935e13036b04b1a" - } - ] - } - }, - { - "date": "Mon, 10 Apr 2023 19:48:24 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.46", - "version": "0.8.46", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.29", - "commit": "fd67dc8a7f2d938086f0b5d3eebd13b12a8d0f7c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.41", - "commit": "fd67dc8a7f2d938086f0b5d3eebd13b12a8d0f7c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.31", - "commit": "fd67dc8a7f2d938086f0b5d3eebd13b12a8d0f7c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.25", - "commit": "fd67dc8a7f2d938086f0b5d3eebd13b12a8d0f7c" - } - ] - } - }, - { - "date": "Thu, 23 Mar 2023 20:49:23 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.45", - "version": "0.8.45", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.28", - "commit": "58c71da6843a333d3b6faca82a851916205a4fd0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.40", - "commit": "58c71da6843a333d3b6faca82a851916205a4fd0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.30", - "commit": "58c71da6843a333d3b6faca82a851916205a4fd0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.24", - "commit": "58c71da6843a333d3b6faca82a851916205a4fd0" - } - ] - } - }, - { - "date": "Tue, 21 Mar 2023 21:53:46 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.44", - "version": "0.8.44", - "comments": { - "patch": [ - { - "author": "krsiler@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6", - "comment": "Trigger manual bump (no changes)" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.9.8", - "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.27", - "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.39", - "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.29", - "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.14", - "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.23", - "commit": "e706a7afbd63d528878eadd179d5a91210ed62f6" - } - ] - } - }, - { - "date": "Sat, 18 Mar 2023 17:22:31 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.43", - "version": "0.8.43", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.9.7", - "commit": "601309349ca2bc18780a3fb71c59337f7c26f9bf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.26", - "commit": "601309349ca2bc18780a3fb71c59337f7c26f9bf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.38", - "commit": "601309349ca2bc18780a3fb71c59337f7c26f9bf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.28", - "commit": "601309349ca2bc18780a3fb71c59337f7c26f9bf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.13", - "commit": "601309349ca2bc18780a3fb71c59337f7c26f9bf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.22", - "commit": "601309349ca2bc18780a3fb71c59337f7c26f9bf" - } - ] - } - }, - { - "date": "Fri, 17 Mar 2023 14:13:25 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.42", - "version": "0.8.42", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.21", - "commit": "7d5d72719836693db47a35fdbd4c03f92fe2c8ca" - } - ] - } - }, - { - "date": "Tue, 14 Mar 2023 20:50:45 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.41", - "version": "0.8.41", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.9.6", - "commit": "b2d39b11dbaa12600bd96a9d54e0ebd013d9597f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.25", - "commit": "b2d39b11dbaa12600bd96a9d54e0ebd013d9597f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.37", - "commit": "b2d39b11dbaa12600bd96a9d54e0ebd013d9597f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.27", - "commit": "b2d39b11dbaa12600bd96a9d54e0ebd013d9597f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.12", - "commit": "b2d39b11dbaa12600bd96a9d54e0ebd013d9597f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.20", - "commit": "b2d39b11dbaa12600bd96a9d54e0ebd013d9597f" - } - ] - } - }, - { - "date": "Tue, 14 Mar 2023 18:43:06 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.40", - "version": "0.8.40", - "comments": { - "patch": [ - { - "author": "ruaraki@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "9ae770e1cbdaa193f281a5d2d29a0c437f4cc962", - "comment": "Fix customizeable accessible" - } - ] - } - }, - { - "date": "Tue, 07 Mar 2023 20:54:15 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.39", - "version": "0.8.39", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.9.5", - "commit": "6c33cfe45061ab74b7eee11b78341c74f88f9473" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.24", - "commit": "6c33cfe45061ab74b7eee11b78341c74f88f9473" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.36", - "commit": "6c33cfe45061ab74b7eee11b78341c74f88f9473" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.26", - "commit": "6c33cfe45061ab74b7eee11b78341c74f88f9473" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.19", - "commit": "6c33cfe45061ab74b7eee11b78341c74f88f9473" - } - ] - } - }, - { - "date": "Sat, 04 Mar 2023 00:02:26 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.38", - "version": "0.8.38", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.23", - "commit": "888d0ceb90a25d267654b74902dee81f5b4c8052" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.35", - "commit": "888d0ceb90a25d267654b74902dee81f5b4c8052" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.25", - "commit": "888d0ceb90a25d267654b74902dee81f5b4c8052" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.18", - "commit": "888d0ceb90a25d267654b74902dee81f5b4c8052" - } - ] - } - }, - { - "date": "Fri, 03 Mar 2023 06:47:26 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.37", - "version": "0.8.37", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.9.4", - "commit": "4659b74650377d2f746a81a321346a481816a5af" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.22", - "commit": "4659b74650377d2f746a81a321346a481816a5af" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.34", - "commit": "4659b74650377d2f746a81a321346a481816a5af" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.24", - "commit": "4659b74650377d2f746a81a321346a481816a5af" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.11", - "commit": "4659b74650377d2f746a81a321346a481816a5af" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.17", - "commit": "4659b74650377d2f746a81a321346a481816a5af" - } - ] - } - }, - { - "date": "Thu, 02 Mar 2023 19:11:57 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.36", - "version": "0.8.36", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.16", - "commit": "da29d8e517ff5aa9e203506bffe7366ec3d967b6" - } - ] - } - }, - { - "date": "Tue, 28 Feb 2023 21:34:10 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.35", - "version": "0.8.35", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.21", - "commit": "175d5c71de6bd6cd59fab8bffee463ff1e595b2f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.33", - "commit": "175d5c71de6bd6cd59fab8bffee463ff1e595b2f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.23", - "commit": "175d5c71de6bd6cd59fab8bffee463ff1e595b2f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.15", - "commit": "175d5c71de6bd6cd59fab8bffee463ff1e595b2f" - } - ] - } - }, - { - "date": "Fri, 24 Feb 2023 20:39:58 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.34", - "version": "0.8.34", - "comments": { - "patch": [ - { - "author": "78454019+lyzhan7@users.noreply.github.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2", - "comment": "Order imports" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.9.3", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.20", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.32", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.22", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.10", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/use-styling to v0.9.4", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.14", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.10.2", - "commit": "743bd1507af336a62946361f3fe3c800ae5bd4c2" - } - ] - } - }, - { - "date": "Fri, 24 Feb 2023 02:22:40 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.33", - "version": "0.8.33", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.9.2", - "commit": "a266ece54bfecbd7edd912a26f46dae655bf48ef" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.19", - "commit": "a266ece54bfecbd7edd912a26f46dae655bf48ef" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.31", - "commit": "a266ece54bfecbd7edd912a26f46dae655bf48ef" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.21", - "commit": "a266ece54bfecbd7edd912a26f46dae655bf48ef" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.9", - "commit": "a266ece54bfecbd7edd912a26f46dae655bf48ef" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.13", - "commit": "a266ece54bfecbd7edd912a26f46dae655bf48ef" - } - ] - } - }, - { - "date": "Sat, 11 Feb 2023 01:32:30 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.32", - "version": "0.8.32", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.9.1", - "commit": "271dc7378669e31e355a4ca8f131a96872d8049a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.18", - "commit": "271dc7378669e31e355a4ca8f131a96872d8049a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.30", - "commit": "271dc7378669e31e355a4ca8f131a96872d8049a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.20", - "commit": "271dc7378669e31e355a4ca8f131a96872d8049a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.8", - "commit": "271dc7378669e31e355a4ca8f131a96872d8049a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.12", - "commit": "271dc7378669e31e355a4ca8f131a96872d8049a" - } - ] - } - }, - { - "date": "Fri, 03 Feb 2023 01:49:36 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.31", - "version": "0.8.31", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.9.0", - "commit": "83735cdac7bd038933e31191400008b3187e3eb1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.17", - "commit": "83735cdac7bd038933e31191400008b3187e3eb1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.29", - "commit": "83735cdac7bd038933e31191400008b3187e3eb1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.19", - "commit": "83735cdac7bd038933e31191400008b3187e3eb1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.11", - "commit": "83735cdac7bd038933e31191400008b3187e3eb1" - } - ] - } - }, - { - "date": "Thu, 02 Feb 2023 01:29:39 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.30", - "version": "0.8.30", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.39", - "commit": "8babef935750d57271f466a1c446e6531ee1b0a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.16", - "commit": "8babef935750d57271f466a1c446e6531ee1b0a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.28", - "commit": "8babef935750d57271f466a1c446e6531ee1b0a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.18", - "commit": "8babef935750d57271f466a1c446e6531ee1b0a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/use-styling to v0.9.3", - "commit": "8babef935750d57271f466a1c446e6531ee1b0a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.10", - "commit": "8babef935750d57271f466a1c446e6531ee1b0a5" - } - ] - } - }, - { - "date": "Wed, 01 Feb 2023 22:33:15 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.29", - "version": "0.8.29", - "comments": { - "patch": [ - { - "author": "30809111+acoates-ms@users.noreply.github.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910", - "comment": "Enable @typescript-eslint/consistent-type-imports" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.38", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.15", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.27", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.17", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.7", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/use-styling to v0.9.2", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.9", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.10.1", - "commit": "2d0138c80d7512b905fcf32583760bec2b911910" - } - ] - } - }, - { - "date": "Mon, 30 Jan 2023 15:17:30 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.28", - "version": "0.8.28", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "4de4c2b37c835ebd9af015ff767f9dd68452f786", - "comment": "Migrate to align-deps" - } - ] - } - }, - { - "date": "Mon, 30 Jan 2023 07:12:38 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.28", - "version": "0.8.28", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.37", - "commit": "f6f403b2efe86a229448a618b043601ceefd9a5f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.14", - "commit": "f6f403b2efe86a229448a618b043601ceefd9a5f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.26", - "commit": "f6f403b2efe86a229448a618b043601ceefd9a5f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.16", - "commit": "f6f403b2efe86a229448a618b043601ceefd9a5f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.6", - "commit": "f6f403b2efe86a229448a618b043601ceefd9a5f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.8", - "commit": "f6f403b2efe86a229448a618b043601ceefd9a5f" - } - ] - } - }, - { - "date": "Wed, 25 Jan 2023 21:31:18 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.27", - "version": "0.8.27", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.36", - "commit": "391f3d691e286300dfad37cad539bed54d4436b4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.13", - "commit": "391f3d691e286300dfad37cad539bed54d4436b4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.25", - "commit": "391f3d691e286300dfad37cad539bed54d4436b4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.15", - "commit": "391f3d691e286300dfad37cad539bed54d4436b4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.5", - "commit": "391f3d691e286300dfad37cad539bed54d4436b4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.7", - "commit": "391f3d691e286300dfad37cad539bed54d4436b4" - } - ] - } - }, - { - "date": "Fri, 20 Jan 2023 21:49:21 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.26", - "version": "0.8.26", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.14", - "commit": "deddda487f4054e6d16f9fca34cedd2b8547da65" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.6", - "commit": "deddda487f4054e6d16f9fca34cedd2b8547da65" - } - ] - } - }, - { - "date": "Fri, 20 Jan 2023 18:06:46 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.25", - "version": "0.8.25", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.35", - "commit": "c1e32c4ac99ccc1dd2b4279b970e9d3b2507b1db" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.12", - "commit": "c1e32c4ac99ccc1dd2b4279b970e9d3b2507b1db" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.24", - "commit": "c1e32c4ac99ccc1dd2b4279b970e9d3b2507b1db" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.13", - "commit": "c1e32c4ac99ccc1dd2b4279b970e9d3b2507b1db" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.5", - "commit": "c1e32c4ac99ccc1dd2b4279b970e9d3b2507b1db" - } - ] - } - }, - { - "date": "Wed, 18 Jan 2023 01:55:11 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.24", - "version": "0.8.24", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.34", - "commit": "f7626f6eb1f6c267c40c60c9aef8b8cd899a046b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.11", - "commit": "f7626f6eb1f6c267c40c60c9aef8b8cd899a046b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.23", - "commit": "f7626f6eb1f6c267c40c60c9aef8b8cd899a046b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.12", - "commit": "f7626f6eb1f6c267c40c60c9aef8b8cd899a046b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.4", - "commit": "f7626f6eb1f6c267c40c60c9aef8b8cd899a046b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.4", - "commit": "f7626f6eb1f6c267c40c60c9aef8b8cd899a046b" - } - ] - } - }, - { - "date": "Tue, 10 Jan 2023 20:17:18 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.23", - "version": "0.8.23", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.33", - "commit": "bd23a4ac5dd35729323268e384aeb1e970fce4ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.10", - "commit": "bd23a4ac5dd35729323268e384aeb1e970fce4ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.22", - "commit": "bd23a4ac5dd35729323268e384aeb1e970fce4ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.11", - "commit": "bd23a4ac5dd35729323268e384aeb1e970fce4ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.3", - "commit": "bd23a4ac5dd35729323268e384aeb1e970fce4ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.3", - "commit": "bd23a4ac5dd35729323268e384aeb1e970fce4ac" - } - ] - } - }, - { - "date": "Mon, 09 Jan 2023 22:25:00 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.22", - "version": "0.8.22", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.32", - "commit": "17bf1b56555ea10ad474c765d447718a1742b982" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.9", - "commit": "17bf1b56555ea10ad474c765d447718a1742b982" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.21", - "commit": "17bf1b56555ea10ad474c765d447718a1742b982" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.10", - "commit": "17bf1b56555ea10ad474c765d447718a1742b982" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.2", - "commit": "17bf1b56555ea10ad474c765d447718a1742b982" - } - ] - } - }, - { - "date": "Fri, 06 Jan 2023 12:26:31 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.21", - "version": "0.8.21", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.31", - "commit": "984ee826e94da2e7dabf162d02007727adba53ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.8", - "commit": "984ee826e94da2e7dabf162d02007727adba53ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.20", - "commit": "984ee826e94da2e7dabf162d02007727adba53ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.9", - "commit": "984ee826e94da2e7dabf162d02007727adba53ac" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.1", - "commit": "984ee826e94da2e7dabf162d02007727adba53ac" - } - ] - } - }, - { - "date": "Thu, 05 Jan 2023 11:24:52 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.20", - "version": "0.8.20", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.17.0", - "commit": "371e8e828737cabe6e7819359b6df2390c726d98" - } - ] - } - }, - { - "date": "Wed, 04 Jan 2023 16:55:53 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.19", - "version": "0.8.19", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.7", - "commit": "60c0e928993c257e84e6078343f34495b6738301" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.19", - "commit": "60c0e928993c257e84e6078343f34495b6738301" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.8", - "commit": "60c0e928993c257e84e6078343f34495b6738301" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.11", - "commit": "60c0e928993c257e84e6078343f34495b6738301" - } - ] - } - }, - { - "date": "Tue, 03 Jan 2023 23:38:40 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.18", - "version": "0.8.18", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.7", - "commit": "4ba3eb0acc4abbce94655bfcc8037f1656c92289" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.10", - "commit": "4ba3eb0acc4abbce94655bfcc8037f1656c92289" - } - ] - } - }, - { - "date": "Fri, 30 Dec 2022 16:09:27 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.17", - "version": "0.8.17", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.30", - "commit": "8aefb1921c84f220ddf5c5def669c5ab9a036219" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.6", - "commit": "8aefb1921c84f220ddf5c5def669c5ab9a036219" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.18", - "commit": "8aefb1921c84f220ddf5c5def669c5ab9a036219" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.6", - "commit": "8aefb1921c84f220ddf5c5def669c5ab9a036219" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.9", - "commit": "8aefb1921c84f220ddf5c5def669c5ab9a036219" - } - ] - } - }, - { - "date": "Fri, 30 Dec 2022 03:49:05 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.16", - "version": "0.8.16", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.5", - "commit": "74a8dcd019534a36c7ee5b1e00b46904a42a37cb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.17", - "commit": "74a8dcd019534a36c7ee5b1e00b46904a42a37cb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.5", - "commit": "74a8dcd019534a36c7ee5b1e00b46904a42a37cb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.8", - "commit": "74a8dcd019534a36c7ee5b1e00b46904a42a37cb" - } - ] - } - }, - { - "date": "Thu, 29 Dec 2022 08:02:57 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.15", - "version": "0.8.15", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.4", - "commit": "b388c484e4b9e6c80cbbebb3be3b1a03ca919cd0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.7", - "commit": "b388c484e4b9e6c80cbbebb3be3b1a03ca919cd0" - } - ] - } - }, - { - "date": "Thu, 29 Dec 2022 03:47:47 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.14", - "version": "0.8.14", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.29", - "commit": "6d8afaea8495b16c2acd8aa4d1de62036110968c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.4", - "commit": "6d8afaea8495b16c2acd8aa4d1de62036110968c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.16", - "commit": "6d8afaea8495b16c2acd8aa4d1de62036110968c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.3", - "commit": "6d8afaea8495b16c2acd8aa4d1de62036110968c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.2", - "commit": "6d8afaea8495b16c2acd8aa4d1de62036110968c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.6", - "commit": "6d8afaea8495b16c2acd8aa4d1de62036110968c" - } - ] - } - }, - { - "date": "Tue, 27 Dec 2022 22:21:15 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.13", - "version": "0.8.13", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.28", - "commit": "9877f2f456807b697afd5aefce756a493a607746" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.3", - "commit": "9877f2f456807b697afd5aefce756a493a607746" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.15", - "commit": "9877f2f456807b697afd5aefce756a493a607746" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.2", - "commit": "9877f2f456807b697afd5aefce756a493a607746" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.1", - "commit": "9877f2f456807b697afd5aefce756a493a607746" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.5", - "commit": "9877f2f456807b697afd5aefce756a493a607746" - } - ] - } - }, - { - "date": "Tue, 27 Dec 2022 10:18:14 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.12", - "version": "0.8.12", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.27", - "commit": "19c7982576e025a7601af0fb727ae6850b8d4aea" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.2", - "commit": "19c7982576e025a7601af0fb727ae6850b8d4aea" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.14", - "commit": "19c7982576e025a7601af0fb727ae6850b8d4aea" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.1", - "commit": "19c7982576e025a7601af0fb727ae6850b8d4aea" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.4", - "commit": "19c7982576e025a7601af0fb727ae6850b8d4aea" - } - ] - } - }, - { - "date": "Thu, 15 Dec 2022 14:50:50 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.11", - "version": "0.8.11", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.26", - "commit": "ac1a77d965fb36b5ecdcfed3c7beaff4c93b1670" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.1", - "commit": "ac1a77d965fb36b5ecdcfed3c7beaff4c93b1670" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.13", - "commit": "ac1a77d965fb36b5ecdcfed3c7beaff4c93b1670" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.19.0", - "commit": "ac1a77d965fb36b5ecdcfed3c7beaff4c93b1670" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.20.0", - "commit": "ac1a77d965fb36b5ecdcfed3c7beaff4c93b1670" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.3", - "commit": "ac1a77d965fb36b5ecdcfed3c7beaff4c93b1670" - } - ] - } - }, - { - "date": "Fri, 09 Dec 2022 05:23:38 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.10", - "version": "0.8.10", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.25", - "commit": "837811eb630178f3f6b5ec201f89b30a30afb3f0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.0", - "commit": "837811eb630178f3f6b5ec201f89b30a30afb3f0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.12", - "commit": "837811eb630178f3f6b5ec201f89b30a30afb3f0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.18.2", - "commit": "837811eb630178f3f6b5ec201f89b30a30afb3f0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.19.1", - "commit": "837811eb630178f3f6b5ec201f89b30a30afb3f0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.2", - "commit": "837811eb630178f3f6b5ec201f89b30a30afb3f0" - } - ] - } - }, - { - "date": "Tue, 06 Dec 2022 16:59:54 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.9", - "version": "0.8.9", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.24", - "commit": "194db935512b14a024c78b97466f6bf5cd94074b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.21.5", - "commit": "194db935512b14a024c78b97466f6bf5cd94074b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.11", - "commit": "194db935512b14a024c78b97466f6bf5cd94074b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.18.1", - "commit": "194db935512b14a024c78b97466f6bf5cd94074b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.1", - "commit": "194db935512b14a024c78b97466f6bf5cd94074b" - } - ] - } - }, - { - "date": "Tue, 06 Dec 2022 02:02:55 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.8", - "version": "0.8.8", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.16.0", - "commit": "d64b7100cfa70fd9763d2c593ee606bc899801ee" - } - ] - } - }, - { - "date": "Tue, 06 Dec 2022 00:46:41 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.7", - "version": "0.8.7", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.23", - "commit": "8e94deaeff8869396c506ca186a614eb0acd9f93" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.21.4", - "commit": "8e94deaeff8869396c506ca186a614eb0acd9f93" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.10", - "commit": "8e94deaeff8869396c506ca186a614eb0acd9f93" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.18.0", - "commit": "8e94deaeff8869396c506ca186a614eb0acd9f93" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.19.0", - "commit": "8e94deaeff8869396c506ca186a614eb0acd9f93" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.15.5", - "commit": "8e94deaeff8869396c506ca186a614eb0acd9f93" - } - ] - } - }, - { - "date": "Thu, 01 Dec 2022 03:12:20 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.6", - "version": "0.8.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.22", - "commit": "9faf7ab61974a5d5f7dd0c5aa84a123a68d786f8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.21.3", - "commit": "9faf7ab61974a5d5f7dd0c5aa84a123a68d786f8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.9", - "commit": "9faf7ab61974a5d5f7dd0c5aa84a123a68d786f8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.17.1", - "commit": "9faf7ab61974a5d5f7dd0c5aa84a123a68d786f8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.18.1", - "commit": "9faf7ab61974a5d5f7dd0c5aa84a123a68d786f8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.15.4", - "commit": "9faf7ab61974a5d5f7dd0c5aa84a123a68d786f8" - } - ] - } - }, - { - "date": "Wed, 30 Nov 2022 21:33:19 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.5", - "version": "0.8.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.8", - "commit": "ed6ad65f29fd421eccbfc22d3ecb5725b5360f83" - } - ] - } - }, - { - "date": "Tue, 29 Nov 2022 20:39:50 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.4", - "version": "0.8.4", - "comments": { - "patch": [ - { - "author": "ruaraki@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "2f6ea0cc82dd0e1f24d68dba83d69555772f01af", - "comment": "Update config" - } - ] - } - }, - { - "date": "Mon, 28 Nov 2022 19:49:35 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.3", - "version": "0.8.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.17.0", - "commit": "1b0f4b66f9ed9c9be49ad296d1b0d2f57c56bbc4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.15.3", - "commit": "1b0f4b66f9ed9c9be49ad296d1b0d2f57c56bbc4" - } - ] - } - }, - { - "date": "Mon, 28 Nov 2022 11:51:06 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.2", - "version": "0.8.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.21", - "commit": "890ff26064088ee92d44bb8730b8629143533451" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.21.2", - "commit": "890ff26064088ee92d44bb8730b8629143533451" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.7", - "commit": "890ff26064088ee92d44bb8730b8629143533451" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.16.2", - "commit": "890ff26064088ee92d44bb8730b8629143533451" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.18.0", - "commit": "890ff26064088ee92d44bb8730b8629143533451" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.15.2", - "commit": "890ff26064088ee92d44bb8730b8629143533451" - } - ] - } - }, - { - "date": "Wed, 16 Nov 2022 08:47:25 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.1", - "version": "0.8.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.20", - "commit": "ac846edd3f16fd427bca196a070653adaf702450" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.21.1", - "commit": "ac846edd3f16fd427bca196a070653adaf702450" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.6", - "commit": "ac846edd3f16fd427bca196a070653adaf702450" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.16.1", - "commit": "ac846edd3f16fd427bca196a070653adaf702450" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.15.1", - "commit": "ac846edd3f16fd427bca196a070653adaf702450" - } - ] - } - }, - { - "date": "Sun, 13 Nov 2022 09:17:06 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.8.0", - "version": "0.8.0", - "comments": { - "minor": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "42685ad6d78fdec7de899153a20b40863bad12f3", - "comment": "fix double clicking on inline links" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.21.0", - "commit": "42685ad6d78fdec7de899153a20b40863bad12f3" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.5", - "commit": "42685ad6d78fdec7de899153a20b40863bad12f3" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.16.0", - "commit": "42685ad6d78fdec7de899153a20b40863bad12f3" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.15.0", - "commit": "42685ad6d78fdec7de899153a20b40863bad12f3" - } - ] - } - }, - { - "date": "Fri, 11 Nov 2022 18:06:32 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.7.4", - "version": "0.7.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.19", - "commit": "b4bc2de7906d898e7a08e4fae106ae66023a49c0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.20.2", - "commit": "b4bc2de7906d898e7a08e4fae106ae66023a49c0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.4", - "commit": "b4bc2de7906d898e7a08e4fae106ae66023a49c0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.15", - "commit": "b4bc2de7906d898e7a08e4fae106ae66023a49c0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.14.1", - "commit": "b4bc2de7906d898e7a08e4fae106ae66023a49c0" - } - ] - } - }, - { - "date": "Fri, 11 Nov 2022 01:02:57 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.7.3", - "version": "0.7.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.3", - "commit": "634f6d3d043439166ba9fcd904e831ef85c73df0" - } - ] - } - }, - { - "date": "Thu, 10 Nov 2022 02:05:55 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.7.2", - "version": "0.7.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.2", - "commit": "6bff867afa27546f52943f5b677f81ddef6a0764" - } - ] - } - }, - { - "date": "Wed, 09 Nov 2022 22:52:11 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.7.1", - "version": "0.7.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.20.1", - "commit": "cad484c342321e75b0fa8920ebd3ffe4c2509d30" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.1", - "commit": "cad484c342321e75b0fa8920ebd3ffe4c2509d30" - } - ] - } - }, - { - "date": "Tue, 08 Nov 2022 22:18:43 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.7.0", - "version": "0.7.0", - "comments": { - "minor": [ - { - "author": "krsiler@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae", - "comment": "update @office-iss/react-native-win32 to 0.68.8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.18", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.20.0", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.11.0", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.14", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.8", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.14.0", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.10.0", - "commit": "892e038305667c72dd7c9af1e706ffe648a2d2ae" - } - ] - } - }, - { - "date": "Tue, 08 Nov 2022 19:22:01 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.6.6", - "version": "0.6.6", - "comments": { - "patch": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "2a423f2b00d2039d1c67fc60b4d81b942e45a9dc", - "comment": "Snapshots" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.17", - "commit": "2a423f2b00d2039d1c67fc60b4d81b942e45a9dc" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.7", - "commit": "2a423f2b00d2039d1c67fc60b4d81b942e45a9dc" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.35", - "commit": "2a423f2b00d2039d1c67fc60b4d81b942e45a9dc" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.13", - "commit": "2a423f2b00d2039d1c67fc60b4d81b942e45a9dc" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.22", - "commit": "2a423f2b00d2039d1c67fc60b4d81b942e45a9dc" - } - ] - } - }, - { - "date": "Mon, 07 Nov 2022 21:42:58 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.6.5", - "version": "0.6.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.34", - "commit": "1c37d1859d1ed1009e1efe0e894ada950483a9bf" - } - ] - } - }, - { - "date": "Fri, 04 Nov 2022 14:36:23 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.6.4", - "version": "0.6.4", - "comments": { - "patch": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "ddd021042b3e70af9dcc976f1d89e9c912defa65", - "comment": "missingTokens" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.16", - "commit": "ddd021042b3e70af9dcc976f1d89e9c912defa65" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.6", - "commit": "ddd021042b3e70af9dcc976f1d89e9c912defa65" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.33", - "commit": "ddd021042b3e70af9dcc976f1d89e9c912defa65" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.12", - "commit": "ddd021042b3e70af9dcc976f1d89e9c912defa65" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.7", - "commit": "ddd021042b3e70af9dcc976f1d89e9c912defa65" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.21", - "commit": "ddd021042b3e70af9dcc976f1d89e9c912defa65" - } - ] - } - }, - { - "date": "Wed, 02 Nov 2022 00:59:45 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.6.3", - "version": "0.6.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.32", - "commit": "3eab416738df9b04a2fdf51b43d2c191843b4ae5" - } - ] - } - }, - { - "date": "Tue, 01 Nov 2022 16:30:56 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.6.2", - "version": "0.6.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.5", - "commit": "f85015b9cf0c2a823556db6023fce48b6cac124c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.31", - "commit": "f85015b9cf0c2a823556db6023fce48b6cac124c" - } - ] - } - }, - { - "date": "Thu, 27 Oct 2022 21:01:42 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.6.1", - "version": "0.6.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.30", - "commit": "d5c85eced1b43510215dc7aa7f79a3db80616ce7" - } - ] - } - }, - { - "date": "Thu, 27 Oct 2022 11:09:35 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.6.0", - "version": "0.6.0", - "comments": { - "minor": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "ceeb4be38b8e0008315f65711c064c5fbd3d8bb8", - "comment": "Snapshot update" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.15", - "commit": "ceeb4be38b8e0008315f65711c064c5fbd3d8bb8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.4", - "commit": "ceeb4be38b8e0008315f65711c064c5fbd3d8bb8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.29", - "commit": "ceeb4be38b8e0008315f65711c064c5fbd3d8bb8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.11", - "commit": "ceeb4be38b8e0008315f65711c064c5fbd3d8bb8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.6", - "commit": "ceeb4be38b8e0008315f65711c064c5fbd3d8bb8" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.20", - "commit": "ceeb4be38b8e0008315f65711c064c5fbd3d8bb8" - } - ] - } - }, - { - "date": "Tue, 25 Oct 2022 22:47:45 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.31", - "version": "0.5.31", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.14", - "commit": "1e46feedf33b4bddf2888af9c6134f2cd705fa7b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.3", - "commit": "1e46feedf33b4bddf2888af9c6134f2cd705fa7b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.28", - "commit": "1e46feedf33b4bddf2888af9c6134f2cd705fa7b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.10", - "commit": "1e46feedf33b4bddf2888af9c6134f2cd705fa7b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.19", - "commit": "1e46feedf33b4bddf2888af9c6134f2cd705fa7b" - } - ] - } - }, - { - "date": "Fri, 21 Oct 2022 13:09:26 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.30", - "version": "0.5.30", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.13", - "commit": "5a21fe82f7540f64ec4fe8937cf5f86f11d1c9df" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.2", - "commit": "5a21fe82f7540f64ec4fe8937cf5f86f11d1c9df" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.27", - "commit": "5a21fe82f7540f64ec4fe8937cf5f86f11d1c9df" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.9", - "commit": "5a21fe82f7540f64ec4fe8937cf5f86f11d1c9df" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.18", - "commit": "5a21fe82f7540f64ec4fe8937cf5f86f11d1c9df" - } - ] - } - }, - { - "date": "Thu, 20 Oct 2022 19:21:06 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.29", - "version": "0.5.29", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.26", - "commit": "62a7995be7842d498a6a000ee98df291069b41bf" - } - ] - } - }, - { - "date": "Thu, 20 Oct 2022 18:30:02 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.28", - "version": "0.5.28", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.1", - "commit": "9e827dde137238cae829145564cbc880bbdc5a90" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.25", - "commit": "9e827dde137238cae829145564cbc880bbdc5a90" - } - ] - } - }, - { - "date": "Tue, 18 Oct 2022 04:06:27 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.27", - "version": "0.5.27", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.19.0", - "commit": "9e7902b05f12947fdb475cdd0fc6fc7d7db774a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.24", - "commit": "9e7902b05f12947fdb475cdd0fc6fc7d7db774a5" - } - ] - } - }, - { - "date": "Mon, 17 Oct 2022 17:52:49 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.26", - "version": "0.5.26", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.12", - "commit": "14bd4084276efd59f022ab5074441eca421c96d0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.15", - "commit": "14bd4084276efd59f022ab5074441eca421c96d0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.23", - "commit": "14bd4084276efd59f022ab5074441eca421c96d0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.8", - "commit": "14bd4084276efd59f022ab5074441eca421c96d0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.17", - "commit": "14bd4084276efd59f022ab5074441eca421c96d0" - } - ] - } - }, - { - "date": "Fri, 14 Oct 2022 19:11:13 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.25", - "version": "0.5.25", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.11", - "commit": "7263bc3c7cd4796b28fadad4f14a73d967deda0f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.14", - "commit": "7263bc3c7cd4796b28fadad4f14a73d967deda0f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.22", - "commit": "7263bc3c7cd4796b28fadad4f14a73d967deda0f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.7", - "commit": "7263bc3c7cd4796b28fadad4f14a73d967deda0f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.5", - "commit": "7263bc3c7cd4796b28fadad4f14a73d967deda0f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.16", - "commit": "7263bc3c7cd4796b28fadad4f14a73d967deda0f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.9.3", - "commit": "7263bc3c7cd4796b28fadad4f14a73d967deda0f" - } - ] - } - }, - { - "date": "Wed, 12 Oct 2022 21:54:15 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.24", - "version": "0.5.24", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.10", - "commit": "e2edb2218d4c953ac465dc3460e2923441dfae5b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.13", - "commit": "e2edb2218d4c953ac465dc3460e2923441dfae5b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.21", - "commit": "e2edb2218d4c953ac465dc3460e2923441dfae5b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.6", - "commit": "e2edb2218d4c953ac465dc3460e2923441dfae5b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.4", - "commit": "e2edb2218d4c953ac465dc3460e2923441dfae5b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.15", - "commit": "e2edb2218d4c953ac465dc3460e2923441dfae5b" - } - ] - } - }, - { - "date": "Tue, 11 Oct 2022 22:41:44 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.23", - "version": "0.5.23", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.9", - "commit": "3547a335f47efb90f52c10443dc85f755046a324" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.12", - "commit": "3547a335f47efb90f52c10443dc85f755046a324" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.20", - "commit": "3547a335f47efb90f52c10443dc85f755046a324" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.5", - "commit": "3547a335f47efb90f52c10443dc85f755046a324" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.3", - "commit": "3547a335f47efb90f52c10443dc85f755046a324" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.14", - "commit": "3547a335f47efb90f52c10443dc85f755046a324" - } - ] - } - }, - { - "date": "Thu, 06 Oct 2022 17:24:49 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.22", - "version": "0.5.22", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.8", - "commit": "b7330fc87faaea399ba9f7f40ca691a3cdad8ccf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.11", - "commit": "b7330fc87faaea399ba9f7f40ca691a3cdad8ccf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.19", - "commit": "b7330fc87faaea399ba9f7f40ca691a3cdad8ccf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.4", - "commit": "b7330fc87faaea399ba9f7f40ca691a3cdad8ccf" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.13", - "commit": "b7330fc87faaea399ba9f7f40ca691a3cdad8ccf" - } - ] - } - }, - { - "date": "Tue, 04 Oct 2022 21:09:28 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.21", - "version": "0.5.21", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.7", - "commit": "32b6348d1077759b38f33ffb00e7ab9db8d2c77c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.10", - "commit": "32b6348d1077759b38f33ffb00e7ab9db8d2c77c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.18", - "commit": "32b6348d1077759b38f33ffb00e7ab9db8d2c77c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.3", - "commit": "32b6348d1077759b38f33ffb00e7ab9db8d2c77c" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.12", - "commit": "32b6348d1077759b38f33ffb00e7ab9db8d2c77c" - } - ] - } - }, - { - "date": "Mon, 03 Oct 2022 16:40:48 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.20", - "version": "0.5.20", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.17", - "commit": "41bf5eac728b15d0385431869982018ef3341491" - } - ] - } - }, - { - "date": "Fri, 30 Sep 2022 08:04:44 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.19", - "version": "0.5.19", - "comments": { - "none": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "609f7988754b77b86f2ed51d0ce4714fb2152293", - "comment": "snapshots update" - } - ], - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.6", - "commit": "609f7988754b77b86f2ed51d0ce4714fb2152293" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.9", - "commit": "609f7988754b77b86f2ed51d0ce4714fb2152293" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.16", - "commit": "609f7988754b77b86f2ed51d0ce4714fb2152293" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.2", - "commit": "609f7988754b77b86f2ed51d0ce4714fb2152293" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.2", - "commit": "609f7988754b77b86f2ed51d0ce4714fb2152293" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.11", - "commit": "609f7988754b77b86f2ed51d0ce4714fb2152293" - } - ] - } - }, - { - "date": "Fri, 30 Sep 2022 00:54:35 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.18", - "version": "0.5.18", - "comments": { - "patch": [ - { - "author": "krsiler@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "de9ddf75304295843613e144473e4fef3190f14b", - "comment": "Update react-native to 0.68" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.5", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.8", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.15", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.1", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.1", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/use-styling to v0.9.1", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.10", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.9.2", - "commit": "de9ddf75304295843613e144473e4fef3190f14b" - } - ] - } - }, - { - "date": "Mon, 26 Sep 2022 02:39:40 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.17", - "version": "0.5.17", - "comments": { - "patch": [ - { - "author": "sanajmi@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "db03501224be9a35673a60cb27da1f999cc57628", - "comment": "Use IPressableProps" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.7", - "commit": "db03501224be9a35673a60cb27da1f999cc57628" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.14", - "commit": "db03501224be9a35673a60cb27da1f999cc57628" - } - ] - } - }, - { - "date": "Thu, 22 Sep 2022 00:31:25 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.16", - "version": "0.5.16", - "comments": { - "patch": [ - { - "author": "sanajmi@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "7f4c8e9b8b19b4bd46a0fec20984e373871c8020", - "comment": "Use Pressable from React Native" - } - ] - } - }, - { - "date": "Wed, 21 Sep 2022 21:00:40 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.15", - "version": "0.5.15", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.4", - "commit": "6706e18d88a521539fdc717100516ec3ee4bb5e2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.6", - "commit": "6706e18d88a521539fdc717100516ec3ee4bb5e2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.13", - "commit": "6706e18d88a521539fdc717100516ec3ee4bb5e2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.15.0", - "commit": "6706e18d88a521539fdc717100516ec3ee4bb5e2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.17.0", - "commit": "6706e18d88a521539fdc717100516ec3ee4bb5e2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.9", - "commit": "6706e18d88a521539fdc717100516ec3ee4bb5e2" - } - ] - } - }, - { - "date": "Fri, 16 Sep 2022 01:53:06 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.14", - "version": "0.5.14", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.3", - "commit": "379d866e6ec5a3d954b5e945949467345f815513" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.5", - "commit": "379d866e6ec5a3d954b5e945949467345f815513" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.12", - "commit": "379d866e6ec5a3d954b5e945949467345f815513" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.14.4", - "commit": "379d866e6ec5a3d954b5e945949467345f815513" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.16.2", - "commit": "379d866e6ec5a3d954b5e945949467345f815513" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.8", - "commit": "379d866e6ec5a3d954b5e945949467345f815513" - } - ] - } - }, - { - "date": "Wed, 14 Sep 2022 23:07:41 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.13", - "version": "0.5.13", - "comments": { - "patch": [ - { - "author": "ruaraki@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb", - "comment": "Remove rn win32 dep" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.2", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.4", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.11", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.14.3", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.16.1", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.7", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.9.1", - "commit": "bb45f425d71a2c9f4c8088ae2e15d93759b915bb" - } - ] - } - }, - { - "date": "Fri, 09 Sep 2022 21:53:29 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.12", - "version": "0.5.12", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.10", - "commit": "09fde8faaa74ec81fe262fa43a82211197862854" - } - ] - } - }, - { - "date": "Tue, 06 Sep 2022 18:22:03 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.11", - "version": "0.5.11", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.3", - "commit": "202705df4fb6402793b3368e586bfe16f0961070" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.9", - "commit": "202705df4fb6402793b3368e586bfe16f0961070" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.14.2", - "commit": "202705df4fb6402793b3368e586bfe16f0961070" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.6", - "commit": "202705df4fb6402793b3368e586bfe16f0961070" - } - ] - } - }, - { - "date": "Mon, 29 Aug 2022 23:21:44 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.10", - "version": "0.5.10", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.1", - "commit": "370259af6f245b97a9a9129d8defbdd30a0bbd9d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.2", - "commit": "370259af6f245b97a9a9129d8defbdd30a0bbd9d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.8", - "commit": "370259af6f245b97a9a9129d8defbdd30a0bbd9d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.14.1", - "commit": "370259af6f245b97a9a9129d8defbdd30a0bbd9d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.5", - "commit": "370259af6f245b97a9a9129d8defbdd30a0bbd9d" - } - ] - } - }, - { - "date": "Fri, 05 Aug 2022 23:22:38 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.9", - "version": "0.5.9", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.1", - "commit": "b77d041fc8feb1088d2b4f1a1a755a9061148b97" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.7", - "commit": "b77d041fc8feb1088d2b4f1a1a755a9061148b97" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.14.0", - "commit": "b77d041fc8feb1088d2b4f1a1a755a9061148b97" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.4", - "commit": "b77d041fc8feb1088d2b4f1a1a755a9061148b97" - } - ] - } - }, - { - "date": "Fri, 29 Jul 2022 22:47:07 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.8", - "version": "0.5.8", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.18.0", - "commit": "6a615313c173e6d036bbdabfdaf05e62823ace00" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.6", - "commit": "6a615313c173e6d036bbdabfdaf05e62823ace00" - } - ] - } - }, - { - "date": "Fri, 29 Jul 2022 21:04:38 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.7", - "version": "0.5.7", - "comments": { - "none": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "bee467a2f783a35346bcb76687c200bd372a6086", - "comment": "move text from experimental to components dir" - } - ], - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.17.5", - "commit": "e6bfd0a36e3f554c1c2c148ed637f7886a0a31d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.5", - "commit": "e6bfd0a36e3f554c1c2c148ed637f7886a0a31d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/text to v0.13.0", - "commit": "e6bfd0a36e3f554c1c2c148ed637f7886a0a31d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.3", - "commit": "e6bfd0a36e3f554c1c2c148ed637f7886a0a31d9" - } - ] - } - }, - { - "date": "Thu, 28 Jul 2022 23:57:03 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.6", - "version": "0.5.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.17.4", - "commit": "4e4ecc84bcfda713e9a2c422174a4236a89c75d4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.4", - "commit": "4e4ecc84bcfda713e9a2c422174a4236a89c75d4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.2", - "commit": "4e4ecc84bcfda713e9a2c422174a4236a89c75d4" - } - ] - } - }, - { - "date": "Tue, 26 Jul 2022 19:30:23 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.5", - "version": "0.5.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.17.3", - "commit": "138a3ae19c80f405dd69525b808c627ef83ee0a0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.3", - "commit": "138a3ae19c80f405dd69525b808c627ef83ee0a0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.1", - "commit": "138a3ae19c80f405dd69525b808c627ef83ee0a0" - } - ] - } - }, - { - "date": "Mon, 25 Jul 2022 21:27:20 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.4", - "version": "0.5.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.17.2", - "commit": "0772c5674928d890bf843ca0891f646f58ff0673" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.2", - "commit": "0772c5674928d890bf843ca0891f646f58ff0673" - } - ] - } - }, - { - "date": "Sat, 23 Jul 2022 00:28:48 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.3", - "version": "0.5.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.17.1", - "commit": "74da6a6410babb413c05e7a5d6df23b1d9bc4ae1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.1", - "commit": "74da6a6410babb413c05e7a5d6df23b1d9bc4ae1" - } - ] - } - }, - { - "date": "Tue, 19 Jul 2022 18:10:02 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.2", - "version": "0.5.2", - "comments": { - "none": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "3163d2bf409a3ed50862fe874b351cb642d7d2c1", - "comment": "update snapshots for Tabs" - } - ], - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.10.2", - "commit": "1b9087c5526b378e6b35d70cf44d109c1b0dad5e" - } - ] - } - }, - { - "date": "Thu, 14 Jul 2022 20:03:37 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.1", - "version": "0.5.1", - "comments": { - "patch": [ - { - "author": "amchiu@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "3c2728e993014ee36272608ce23165aa8212bb31", - "comment": "Revert \"Add support for onAccessibilityTap on Text\" " - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.10.1", - "commit": "32c99c628be487a61c9ad2f792accc4360e1cfe7" - } - ] - } - }, - { - "date": "Thu, 14 Jul 2022 18:09:51 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.5.0", - "version": "0.5.0", - "comments": { - "minor": [ - { - "author": "sanajmi@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b", - "comment": "Update to React Native 0.66" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.8.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.17.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.10.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.10.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.16.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/use-styling to v0.9.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.13.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.9.0", - "commit": "155145b496a51b06bba73f8f9c6b89dc7b348c4b" - } - ] - } - }, - { - "date": "Thu, 14 Jul 2022 17:13:16 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.55", - "version": "0.4.55", - "comments": { - "none": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "3163d2bf409a3ed50862fe874b351cb642d7d2c1", - "comment": "update snapshots for Tabs" - } - ], - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.9.3", - "commit": "3163d2bf409a3ed50862fe874b351cb642d7d2c1" - } - ] - } - }, - { - "date": "Fri, 08 Jul 2022 21:23:37 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.54", - "version": "0.4.54", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.32", - "commit": "c489bb685c8dbe94b7b6fe88957e7ce4d3c2d000" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.16.5", - "commit": "c489bb685c8dbe94b7b6fe88957e7ce4d3c2d000" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.35", - "commit": "c489bb685c8dbe94b7b6fe88957e7ce4d3c2d000" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.9.2", - "commit": "c489bb685c8dbe94b7b6fe88957e7ce4d3c2d000" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.15.1", - "commit": "c489bb685c8dbe94b7b6fe88957e7ce4d3c2d000" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.12.3", - "commit": "c489bb685c8dbe94b7b6fe88957e7ce4d3c2d000" - } - ] - } - }, - { - "date": "Thu, 07 Jul 2022 21:24:07 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.53", - "version": "0.4.53", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.31", - "commit": "b4030a050a2c7223f45f498f3ab8cfc7f87059d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.16.4", - "commit": "b4030a050a2c7223f45f498f3ab8cfc7f87059d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.34", - "commit": "b4030a050a2c7223f45f498f3ab8cfc7f87059d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.9.1", - "commit": "b4030a050a2c7223f45f498f3ab8cfc7f87059d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.15.0", - "commit": "b4030a050a2c7223f45f498f3ab8cfc7f87059d9" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.12.2", - "commit": "b4030a050a2c7223f45f498f3ab8cfc7f87059d9" - } - ] - } - }, - { - "date": "Thu, 16 Jun 2022 17:09:28 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.52", - "version": "0.4.52", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.33", - "commit": "c5a694d12a1926f4c49d28ae83ad9f52c22ec7f7" - } - ] - } - }, - { - "date": "Mon, 13 Jun 2022 23:58:18 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.51", - "version": "0.4.51", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.16.3", - "commit": "0a93815f7fc4d837b1f0167a0029a90541ce045e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.32", - "commit": "0a93815f7fc4d837b1f0167a0029a90541ce045e" - } - ] - } - }, - { - "date": "Mon, 06 Jun 2022 19:20:10 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.50", - "version": "0.4.50", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.16.2", - "commit": "1042260cedd07b3d36af2bfee16166eb86e51a92" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.31", - "commit": "1042260cedd07b3d36af2bfee16166eb86e51a92" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.12.1", - "commit": "1042260cedd07b3d36af2bfee16166eb86e51a92" - } - ] - } - }, - { - "date": "Thu, 26 May 2022 21:22:22 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.49", - "version": "0.4.49", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.16.1", - "commit": "5ce45ff0909feaa0c8a83401be198050727659c6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.30", - "commit": "5ce45ff0909feaa0c8a83401be198050727659c6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.12.0", - "commit": "5ce45ff0909feaa0c8a83401be198050727659c6" - } - ] - } - }, - { - "date": "Thu, 26 May 2022 00:33:11 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.48", - "version": "0.4.48", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.16.0", - "commit": "61bb86f8797b05c8c0557dedebdba630abd3ef00" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.29", - "commit": "61bb86f8797b05c8c0557dedebdba630abd3ef00" - } - ] - } - }, - { - "date": "Wed, 25 May 2022 18:43:08 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.47", - "version": "0.4.47", - "comments": { - "patch": [ - { - "author": "krsiler@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "f4e881a5caef5a8258094f2a2ba674c62321886d", - "comment": "beachball sync" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.30", - "commit": "f4e881a5caef5a8258094f2a2ba674c62321886d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.10", - "commit": "f4e881a5caef5a8258094f2a2ba674c62321886d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.28", - "commit": "f4e881a5caef5a8258094f2a2ba674c62321886d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.9.0", - "commit": "f4e881a5caef5a8258094f2a2ba674c62321886d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.14.0", - "commit": "f4e881a5caef5a8258094f2a2ba674c62321886d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.25", - "commit": "f4e881a5caef5a8258094f2a2ba674c62321886d" - } - ], - "none": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "18480e3fdf2038a34147995f413a45d14f012a73", - "comment": "Add text implementation v2" - } - ] - } - }, - { - "date": "Sat, 21 May 2022 16:18:06 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.46", - "version": "0.4.46", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.28", - "commit": "313cc45fbeb5bfaff0b266194cc48608bf6d2c35" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.8", - "commit": "313cc45fbeb5bfaff0b266194cc48608bf6d2c35" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.27", - "commit": "313cc45fbeb5bfaff0b266194cc48608bf6d2c35" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.28", - "commit": "313cc45fbeb5bfaff0b266194cc48608bf6d2c35" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.12.2", - "commit": "313cc45fbeb5bfaff0b266194cc48608bf6d2c35" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.23", - "commit": "313cc45fbeb5bfaff0b266194cc48608bf6d2c35" - } - ] - } - }, - { - "date": "Sat, 21 May 2022 01:47:58 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.45", - "version": "0.4.45", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.27", - "commit": "36ea0d81629f9326eb8c23912d9949381014dade" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.7", - "commit": "36ea0d81629f9326eb8c23912d9949381014dade" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.26", - "commit": "36ea0d81629f9326eb8c23912d9949381014dade" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.27", - "commit": "36ea0d81629f9326eb8c23912d9949381014dade" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.12.1", - "commit": "36ea0d81629f9326eb8c23912d9949381014dade" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.22", - "commit": "36ea0d81629f9326eb8c23912d9949381014dade" - } - ] - } - }, - { - "date": "Wed, 04 May 2022 21:06:04 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.44", - "version": "0.4.44", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.26", - "commit": "d503e2af4e84ba5c8c1c40ea3698fcbd1691dda6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.6", - "commit": "d503e2af4e84ba5c8c1c40ea3698fcbd1691dda6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.25", - "commit": "d503e2af4e84ba5c8c1c40ea3698fcbd1691dda6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.26", - "commit": "d503e2af4e84ba5c8c1c40ea3698fcbd1691dda6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.12.0", - "commit": "d503e2af4e84ba5c8c1c40ea3698fcbd1691dda6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.21", - "commit": "d503e2af4e84ba5c8c1c40ea3698fcbd1691dda6" - } - ] - } - }, - { - "date": "Thu, 28 Apr 2022 19:09:51 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.43", - "version": "0.4.43", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.25", - "commit": "8cff404ca31eaa61017551a1d73fd3fdae7da132" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.5", - "commit": "8cff404ca31eaa61017551a1d73fd3fdae7da132" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.24", - "commit": "8cff404ca31eaa61017551a1d73fd3fdae7da132" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.25", - "commit": "8cff404ca31eaa61017551a1d73fd3fdae7da132" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.11", - "commit": "8cff404ca31eaa61017551a1d73fd3fdae7da132" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.20", - "commit": "8cff404ca31eaa61017551a1d73fd3fdae7da132" - } - ] - } - }, - { - "date": "Wed, 27 Apr 2022 19:30:38 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.42", - "version": "0.4.42", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.24", - "commit": "f3481f50e20c6ab33f7f3ffca63e9f1e424fe2c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.4", - "commit": "f3481f50e20c6ab33f7f3ffca63e9f1e424fe2c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.23", - "commit": "f3481f50e20c6ab33f7f3ffca63e9f1e424fe2c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.24", - "commit": "f3481f50e20c6ab33f7f3ffca63e9f1e424fe2c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.10", - "commit": "f3481f50e20c6ab33f7f3ffca63e9f1e424fe2c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.19", - "commit": "f3481f50e20c6ab33f7f3ffca63e9f1e424fe2c1" - } - ] - } - }, - { - "date": "Thu, 21 Apr 2022 21:50:03 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.41", - "version": "0.4.41", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.23", - "commit": "9d96c6b126ce5293d5315054216af4bd3a447fbe" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.3", - "commit": "9d96c6b126ce5293d5315054216af4bd3a447fbe" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.22", - "commit": "9d96c6b126ce5293d5315054216af4bd3a447fbe" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.23", - "commit": "9d96c6b126ce5293d5315054216af4bd3a447fbe" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.18", - "commit": "9d96c6b126ce5293d5315054216af4bd3a447fbe" - } - ] - } - }, - { - "date": "Tue, 19 Apr 2022 16:54:55 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.40", - "version": "0.4.40", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.22", - "commit": "cf5789633ef5230512cb21ab923cc9f71bfed4c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.2", - "commit": "cf5789633ef5230512cb21ab923cc9f71bfed4c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.21", - "commit": "cf5789633ef5230512cb21ab923cc9f71bfed4c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.22", - "commit": "cf5789633ef5230512cb21ab923cc9f71bfed4c1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.17", - "commit": "cf5789633ef5230512cb21ab923cc9f71bfed4c1" - } - ] - } - }, - { - "date": "Mon, 18 Apr 2022 17:51:06 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.39", - "version": "0.4.39", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.1", - "commit": "924f19a6cda14eabbadcf4ece5e9f7e92e5c6986" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.20", - "commit": "924f19a6cda14eabbadcf4ece5e9f7e92e5c6986" - } - ] - } - }, - { - "date": "Wed, 13 Apr 2022 23:44:28 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.38", - "version": "0.4.38", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.15.0", - "commit": "129f628a9676a93f10466cea6efdfff1243e86f0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.19", - "commit": "129f628a9676a93f10466cea6efdfff1243e86f0" - } - ] - } - }, - { - "date": "Tue, 12 Apr 2022 21:53:04 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.37", - "version": "0.4.37", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.18", - "commit": "86b38c2e20e29fb4248bfd64e534da45deb35dfa" - } - ] - } - }, - { - "date": "Tue, 12 Apr 2022 00:35:09 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.36", - "version": "0.4.36", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.17", - "commit": "832066543f281fdec866f738d36f7f73f6bbb4f7" - } - ] - } - }, - { - "date": "Fri, 08 Apr 2022 18:53:12 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.35", - "version": "0.4.35", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.16", - "commit": "15d60684291bc64a6d104448587804bbcfbbb1e4" - } - ] - } - }, - { - "date": "Wed, 06 Apr 2022 22:58:22 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.34", - "version": "0.4.34", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.21", - "commit": "bcd4ac6dc74295095a0564905024ef32d6450cff" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.8", - "commit": "bcd4ac6dc74295095a0564905024ef32d6450cff" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.15", - "commit": "bcd4ac6dc74295095a0564905024ef32d6450cff" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.21", - "commit": "bcd4ac6dc74295095a0564905024ef32d6450cff" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.16", - "commit": "bcd4ac6dc74295095a0564905024ef32d6450cff" - } - ] - } - }, - { - "date": "Tue, 05 Apr 2022 20:05:50 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.33", - "version": "0.4.33", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.20", - "commit": "c183b7eb02925bf1d1284ad1b3c80c0f2e0c442f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.7", - "commit": "c183b7eb02925bf1d1284ad1b3c80c0f2e0c442f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.14", - "commit": "c183b7eb02925bf1d1284ad1b3c80c0f2e0c442f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.20", - "commit": "c183b7eb02925bf1d1284ad1b3c80c0f2e0c442f" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.15", - "commit": "c183b7eb02925bf1d1284ad1b3c80c0f2e0c442f" - } - ] - } - }, - { - "date": "Thu, 31 Mar 2022 07:27:47 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.32", - "version": "0.4.32", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed", - "comment": "Ban `export *` in index files for better tree-shakeability" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.19", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.6", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.13", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.19", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.9", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/use-styling to v0.8.3", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.14", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.8.5", - "commit": "c39b4436f2ca160a31ca1d7ca9fa8bf7d59512ed" - } - ] - } - }, - { - "date": "Mon, 28 Mar 2022 15:02:37 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.31", - "version": "0.4.31", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.5", - "commit": "c85943cf17fb111a721e006e1619084e27650b39" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.12", - "commit": "c85943cf17fb111a721e006e1619084e27650b39" - } - ] - } - }, - { - "date": "Wed, 23 Mar 2022 17:24:05 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.30", - "version": "0.4.30", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.18", - "commit": "0a18d2f8bb6505c6c6e2445ff3ba62ac79334872" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.4", - "commit": "0a18d2f8bb6505c6c6e2445ff3ba62ac79334872" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.11", - "commit": "0a18d2f8bb6505c6c6e2445ff3ba62ac79334872" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.18", - "commit": "0a18d2f8bb6505c6c6e2445ff3ba62ac79334872" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.13", - "commit": "0a18d2f8bb6505c6c6e2445ff3ba62ac79334872" - } - ] - } - }, - { - "date": "Mon, 21 Mar 2022 01:47:54 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.29", - "version": "0.4.29", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.10", - "commit": "b772dfe4542b7032f216bf5c2faa807c695fa2a7" - } - ] - } - }, - { - "date": "Fri, 11 Mar 2022 00:34:53 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.28", - "version": "0.4.28", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.9", - "commit": "489339a0f6ebd9a4687c1c84e9bf8d274d8806d5" - } - ] - } - }, - { - "date": "Mon, 07 Mar 2022 19:15:33 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.27", - "version": "0.4.27", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.17", - "commit": "d437b204aa63de4c9d4dd2f58ccf541c388ddaee" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.3", - "commit": "d437b204aa63de4c9d4dd2f58ccf541c388ddaee" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.8", - "commit": "d437b204aa63de4c9d4dd2f58ccf541c388ddaee" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.17", - "commit": "d437b204aa63de4c9d4dd2f58ccf541c388ddaee" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.8", - "commit": "d437b204aa63de4c9d4dd2f58ccf541c388ddaee" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.12", - "commit": "d437b204aa63de4c9d4dd2f58ccf541c388ddaee" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.8.4", - "commit": "d437b204aa63de4c9d4dd2f58ccf541c388ddaee" - } - ] - } - }, - { - "date": "Fri, 04 Mar 2022 23:43:10 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.26", - "version": "0.4.26", - "comments": { - "patch": [ - { - "author": "ruaraki@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "051e390caabfc13c4e53f9812f0ec7c5b56094a2", - "comment": "Bump @rnx-kit/eslint-plugin from 0.2.10 to 0.2.11" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.16", - "commit": "051e390caabfc13c4e53f9812f0ec7c5b56094a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.2", - "commit": "051e390caabfc13c4e53f9812f0ec7c5b56094a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.7", - "commit": "051e390caabfc13c4e53f9812f0ec7c5b56094a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.16", - "commit": "051e390caabfc13c4e53f9812f0ec7c5b56094a2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.11", - "commit": "051e390caabfc13c4e53f9812f0ec7c5b56094a2" - } - ] - } - }, - { - "date": "Thu, 03 Mar 2022 20:20:09 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.25", - "version": "0.4.25", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.15", - "commit": "54222b74c7d5f16d1108fab470a6f549de8e9b45" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.1", - "commit": "54222b74c7d5f16d1108fab470a6f549de8e9b45" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.6", - "commit": "54222b74c7d5f16d1108fab470a6f549de8e9b45" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.15", - "commit": "54222b74c7d5f16d1108fab470a6f549de8e9b45" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.7", - "commit": "54222b74c7d5f16d1108fab470a6f549de8e9b45" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.10", - "commit": "54222b74c7d5f16d1108fab470a6f549de8e9b45" - } - ] - } - }, - { - "date": "Tue, 01 Mar 2022 20:18:31 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.24", - "version": "0.4.24", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.14.0", - "commit": "6b5a35c07a9b7da4df7f250a4607f4fc6927d273" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.5", - "commit": "6b5a35c07a9b7da4df7f250a4607f4fc6927d273" - } - ] - } - }, - { - "date": "Fri, 18 Feb 2022 23:27:11 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.23", - "version": "0.4.23", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.14", - "commit": "597b1e6bd7b3791df8fad2e0ec83810872261c54" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.13.3", - "commit": "597b1e6bd7b3791df8fad2e0ec83810872261c54" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.4", - "commit": "597b1e6bd7b3791df8fad2e0ec83810872261c54" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.14", - "commit": "597b1e6bd7b3791df8fad2e0ec83810872261c54" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.6", - "commit": "597b1e6bd7b3791df8fad2e0ec83810872261c54" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.9", - "commit": "597b1e6bd7b3791df8fad2e0ec83810872261c54" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.8.3", - "commit": "597b1e6bd7b3791df8fad2e0ec83810872261c54" - } - ] - } - }, - { - "date": "Thu, 17 Feb 2022 02:13:07 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.22", - "version": "0.4.22", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.13.2", - "commit": "616c894f75769553fe97f8f2d4550bbd615f2396" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.3", - "commit": "616c894f75769553fe97f8f2d4550bbd615f2396" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.8", - "commit": "616c894f75769553fe97f8f2d4550bbd615f2396" - } - ] - } - }, - { - "date": "Thu, 17 Feb 2022 01:22:02 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.21", - "version": "0.4.21", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.13", - "commit": "039a993d13ae01ff2212e8b91295d1ed5676c82d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.13.1", - "commit": "039a993d13ae01ff2212e8b91295d1ed5676c82d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.2", - "commit": "039a993d13ae01ff2212e8b91295d1ed5676c82d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.13", - "commit": "039a993d13ae01ff2212e8b91295d1ed5676c82d" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.7", - "commit": "039a993d13ae01ff2212e8b91295d1ed5676c82d" - } - ] - } - }, - { - "date": "Wed, 09 Feb 2022 20:14:50 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.20", - "version": "0.4.20", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.13.0", - "commit": "f7264338409e4a7e4cbb4f4fb815d4ab32276d8a" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.1", - "commit": "f7264338409e4a7e4cbb4f4fb815d4ab32276d8a" - } - ] - } - }, - { - "date": "Fri, 04 Feb 2022 20:31:52 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.19", - "version": "0.4.19", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.9.0", - "commit": "5588e7458b699e44d99bdf67c1440c3c30d8ed51" - } - ] - } - }, - { - "date": "Wed, 02 Feb 2022 02:29:07 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.18", - "version": "0.4.18", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.12", - "commit": "c42dec6d24b24ded9a85dd11076e49d9b92980aa" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.12.2", - "commit": "c42dec6d24b24ded9a85dd11076e49d9b92980aa" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.18", - "commit": "c42dec6d24b24ded9a85dd11076e49d9b92980aa" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.12", - "commit": "c42dec6d24b24ded9a85dd11076e49d9b92980aa" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.6", - "commit": "c42dec6d24b24ded9a85dd11076e49d9b92980aa" - } - ] - } - }, - { - "date": "Wed, 26 Jan 2022 20:31:04 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.17", - "version": "0.4.17", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.12.1", - "commit": "1f6a66699e8a06bfd55a613ee9019ba8ca27d0b4" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.17", - "commit": "1f6a66699e8a06bfd55a613ee9019ba8ca27d0b4" - } - ] - } - }, - { - "date": "Wed, 26 Jan 2022 17:02:27 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.16", - "version": "0.4.16", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.12.0", - "commit": "883ef66b94a1efb5d429c5ecad015f312be3b4c3" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.16", - "commit": "883ef66b94a1efb5d429c5ecad015f312be3b4c3" - } - ] - } - }, - { - "date": "Tue, 25 Jan 2022 21:55:30 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.15", - "version": "0.4.15", - "comments": { - "patch": [ - { - "author": "sanajmi@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "ca505d0e9d6b3286c0025bde70305f4bbb49a7f2", - "comment": "Default to onKeyDown on macOS" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.15", - "commit": "ca505d0e9d6b3286c0025bde70305f4bbb49a7f2" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.15", - "commit": "ca505d0e9d6b3286c0025bde70305f4bbb49a7f2" - } - ] - } - }, - { - "date": "Tue, 25 Jan 2022 16:48:23 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.14", - "version": "0.4.14", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.14", - "commit": "f522217240f2b510443e2f898d212df2ee114398" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.14", - "commit": "f522217240f2b510443e2f898d212df2ee114398" - } - ] - } - }, - { - "date": "Fri, 14 Jan 2022 21:49:07 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.13", - "version": "0.4.13", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.11", - "commit": "5ff1c8ba46f401679119d71fe4035642dc175e15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.13", - "commit": "5ff1c8ba46f401679119d71fe4035642dc175e15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.13", - "commit": "5ff1c8ba46f401679119d71fe4035642dc175e15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.11", - "commit": "5ff1c8ba46f401679119d71fe4035642dc175e15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.5", - "commit": "5ff1c8ba46f401679119d71fe4035642dc175e15" - } - ] - } - }, - { - "date": "Fri, 14 Jan 2022 01:00:02 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.12", - "version": "0.4.12", - "comments": { - "patch": [ - { - "author": "email not defined", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "ef3732e4e5b82e3f324ca0eed4b12b6617788299", - "comment": "fix disabled button" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.10", - "commit": "163defba33412f6f44117750a540b8fdecd3bdca" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.12", - "commit": "163defba33412f6f44117750a540b8fdecd3bdca" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.12", - "commit": "163defba33412f6f44117750a540b8fdecd3bdca" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.10", - "commit": "163defba33412f6f44117750a540b8fdecd3bdca" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.5", - "commit": "163defba33412f6f44117750a540b8fdecd3bdca" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.4", - "commit": "163defba33412f6f44117750a540b8fdecd3bdca" - } - ], - "none": [ - { - "author": "sanajmi@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "163defba33412f6f44117750a540b8fdecd3bdca", - "comment": "Remove references to uifabricshared" - } - ] - } - }, - { - "date": "Wed, 12 Jan 2022 20:13:01 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.11", - "version": "0.4.11", - "comments": { - "none": [ - { - "author": "ruaraki@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "not available", - "comment": "Rerun prettier" - } - ] - } - }, - { - "date": "Wed, 12 Jan 2022 19:27:56 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.11", - "version": "0.4.11", - "comments": { - "none": [ - { - "author": "ruaraki@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "446757f8607e479aa95f474665c39f3292cdeaf9", - "comment": "Rerun prettier" - } - ] - } - }, - { - "date": "Thu, 06 Jan 2022 23:14:38 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.11", - "version": "0.4.11", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.9", - "commit": "58c54eff228ec071098f3c18a91f11b4a89a6c15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.11", - "commit": "58c54eff228ec071098f3c18a91f11b4a89a6c15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.11", - "commit": "58c54eff228ec071098f3c18a91f11b4a89a6c15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.9", - "commit": "58c54eff228ec071098f3c18a91f11b4a89a6c15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.4", - "commit": "58c54eff228ec071098f3c18a91f11b4a89a6c15" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.3", - "commit": "58c54eff228ec071098f3c18a91f11b4a89a6c15" - } - ] - } - }, - { - "date": "Thu, 06 Jan 2022 21:30:08 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.10", - "version": "0.4.10", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.8", - "commit": "06307699c93ffe31a57f8f1c1fb60beec83583e0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.10", - "commit": "06307699c93ffe31a57f8f1c1fb60beec83583e0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.10", - "commit": "06307699c93ffe31a57f8f1c1fb60beec83583e0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.8", - "commit": "06307699c93ffe31a57f8f1c1fb60beec83583e0" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.2", - "commit": "06307699c93ffe31a57f8f1c1fb60beec83583e0" - } - ] - } - }, - { - "date": "Wed, 05 Jan 2022 23:53:54 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.9", - "version": "0.4.9", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.9", - "commit": "8622748288aa587df7a433e6741b5d3b9c53655b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.9", - "commit": "8622748288aa587df7a433e6741b5d3b9c53655b" - } - ] - } - }, - { - "date": "Tue, 21 Dec 2021 20:56:31 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.8", - "version": "0.4.8", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.7", - "commit": "a7d19d410d5714e2bdb61529d2687182061020a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.8", - "commit": "a7d19d410d5714e2bdb61529d2687182061020a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.8", - "commit": "a7d19d410d5714e2bdb61529d2687182061020a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.7", - "commit": "a7d19d410d5714e2bdb61529d2687182061020a5" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.1", - "commit": "a7d19d410d5714e2bdb61529d2687182061020a5" - } - ] - } - }, - { - "date": "Mon, 20 Dec 2021 22:56:00 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.7", - "version": "0.4.7", - "comments": { - "patch": [ - { - "author": "ruaraki@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "f4a5b4f5c9c190400e3e34c4a33b3ed30696d41e", - "comment": "Add repository property to all package.json files" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.6", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.7", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.7", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.6", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.3", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/use-styling to v0.8.2", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.11.0", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.8.2", - "commit": "bc86b4fbf5f07c0bfbc950a1a99a3cf4b35807d1" - } - ] - } - }, - { - "date": "Sun, 19 Dec 2021 05:07:36 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.6", - "version": "0.4.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.6", - "commit": "caa9260512544269d7e177c2d35f15b7f513965b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.6", - "commit": "caa9260512544269d7e177c2d35f15b7f513965b" - } - ] - } - }, - { - "date": "Sat, 18 Dec 2021 04:15:04 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.5", - "version": "0.4.5", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789", - "comment": "Update to TypeScript 4.5.4." - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.5", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.5", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.5", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.5", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.2", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/use-styling to v0.8.1", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.10.4", - "commit": "38fe241a385ecd1ce4e51b5bcba57a9dd0426789" - } - ] - } - }, - { - "date": "Fri, 17 Dec 2021 22:06:58 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.4", - "version": "0.4.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.4", - "commit": "9dc61df83605c035822518c18cc46fb5503dff70" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.4", - "commit": "9dc61df83605c035822518c18cc46fb5503dff70" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.4", - "commit": "9dc61df83605c035822518c18cc46fb5503dff70" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.4", - "commit": "9dc61df83605c035822518c18cc46fb5503dff70" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.10.3", - "commit": "9dc61df83605c035822518c18cc46fb5503dff70" - } - ] - } - }, - { - "date": "Fri, 17 Dec 2021 19:53:21 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.3", - "version": "0.4.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.3", - "commit": "3012e075ca89e36931357442679b73d20540af8b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.3", - "commit": "3012e075ca89e36931357442679b73d20540af8b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.3", - "commit": "3012e075ca89e36931357442679b73d20540af8b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.3", - "commit": "3012e075ca89e36931357442679b73d20540af8b" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.10.2", - "commit": "3012e075ca89e36931357442679b73d20540af8b" - } - ] - } - }, - { - "date": "Fri, 17 Dec 2021 01:26:42 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.2", - "version": "0.4.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.2", - "commit": "511aeb31982a5fb9dd2f7196c0c7217cc4a3dbc6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.2", - "commit": "511aeb31982a5fb9dd2f7196c0c7217cc4a3dbc6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.2", - "commit": "511aeb31982a5fb9dd2f7196c0c7217cc4a3dbc6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.2", - "commit": "511aeb31982a5fb9dd2f7196c0c7217cc4a3dbc6" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.10.1", - "commit": "511aeb31982a5fb9dd2f7196c0c7217cc4a3dbc6" - } - ] - } - }, - { - "date": "Thu, 16 Dec 2021 23:00:57 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.1", - "version": "0.4.1", - "comments": { - "none": [ - { - "author": "dannyvv@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "25b3989739737bc598a5d699a941af4c0b4a421f", - "comment": "📦 applying package updates ***NO_CI***" - } - ] - } - }, - { - "date": "Thu, 16 Dec 2021 19:10:27 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.1", - "version": "0.4.1", - "comments": { - "patch": [ - { - "author": "sanajmi@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "12b8a10d33d93dcb6c0e4565465e3692e7b95d89", - "comment": "Refactor useKeyCallback" - }, - { - "author": "sanajmi@microsoft.com", - "package": "@fluentui-react-native/experimental-tabs", - "commit": "e597717b14dce4916740076786391449dd4a7c69", - "comment": "Rename Jest snapshots to be platform agnostic " - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/framework to v0.7.1", - "commit": "6a9f067ae2510481b6ff3512c10c08e7de84f86e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.1", - "commit": "6a9f067ae2510481b6ff3512c10c08e7de84f86e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.1", - "commit": "6a9f067ae2510481b6ff3512c10c08e7de84f86e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.1", - "commit": "6a9f067ae2510481b6ff3512c10c08e7de84f86e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/tokens to v0.11.1", - "commit": "6a9f067ae2510481b6ff3512c10c08e7de84f86e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/icon to v0.10.0", - "commit": "6a9f067ae2510481b6ff3512c10c08e7de84f86e" - }, - { - "author": "beachball", - "package": "@fluentui-react-native/experimental-tabs", - "comment": "Bump @fluentui-react-native/adapters to v0.8.1", - "commit": "6a9f067ae2510481b6ff3512c10c08e7de84f86e" - } - ] - } - }, - { - "date": "Wed, 17 Nov 2021 19:28:07 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.4.0", - "version": "0.4.0", - "comments": { - "minor": [ - { - "comment": "Update to react-native 0.64", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Adding E2E Testing Improvements", - "author": "safreibe@microsoft.com", - "commit": "a8220e74a609bd04581fce9377c590fdacce604b", - "package": "@fluentui-react-native/experimental-tabs" - } - ], - "patch": [ - { - "comment": "Bump @fluentui-react-native/adapters to v0.8.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/icon to v0.9.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.11.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/focus-zone to v0.8.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/experimental-text to v0.7.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/tokens to v0.11.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/framework to v0.7.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/use-styling to v0.8.0", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/test-tools to v0.1.1", - "author": "afoxman@microsoft.com", - "commit": "f16d742b5c2d5b97e49ac1ef7b740cbf89fc42e6", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Fri, 12 Nov 2021 16:07:20 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.3.8", - "version": "0.3.8", - "comments": { - "none": [ - { - "comment": "Bump @fluentui-react-native/icon to v0.8.30", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "25673699e6c6c064b41f1246c2c995baa67a74ad", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Thu, 11 Nov 2021 23:17:41 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.3.8", - "version": "0.3.8", - "comments": { - "none": [ - { - "comment": "Rename uifabricshared/eslint-config-rules to fluentui-react-native/eslint-config-rules", - "author": "ruaraki@microsoft.com", - "commit": "110fba2a1721a914501404f6040f07656307549e", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 23:04:33 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.3.8", - "version": "0.3.8", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/icon to v0.8.30", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "8baa72ed4ec06f90a51cf757e1924e946f76a537", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 20:52:15 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.3.7", - "version": "0.3.7", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/focus-zone to v0.7.33", - "author": "sanajmi@microsoft.com", - "commit": "f6e7e6523713e641227f91113728da3d9816ef22", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 18:53:37 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.3.6", - "version": "0.3.6", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/focus-zone to v0.7.32", - "author": "sanajmi@microsoft.com", - "commit": "18757ce3c755d20f37bf436b7e99d3caee320c3b", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Mon, 25 Oct 2021 19:24:43 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.3.5", - "version": "0.3.5", - "comments": { - "patch": [ - { - "comment": "Use tslib where spreadArray is used", - "author": "ruaraki@microsoft.com", - "commit": "f6578742d6c957cf7e346db82f89171f80bedc3b", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Wed, 20 Oct 2021 03:46:25 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.3.4", - "version": "0.3.4", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/icon to v0.8.27", - "author": "ruaraki@microsoft.com", - "commit": "273f5addbeb5abeaec0b517e5416f52d8878152f", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Tue, 19 Oct 2021 20:23:36 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.3.3", - "version": "0.3.3", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/icon to v0.8.26", - "author": "ruaraki@microsoft.com", - "commit": "a8209c3a6f52871eef88035c2dba2ef2b5ee83e7", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Thu, 07 Oct 2021 20:59:20 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.3.2", - "version": "0.3.2", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/framework to v0.6.1", - "author": "ruaraki@microsoft.com", - "commit": "f759f09649d7fd9b8ea8ada78677f5cb65519f6e", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Fri, 01 Oct 2021 17:52:17 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.3.1", - "version": "0.3.1", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/icon to v0.8.24", - "author": "ruaraki@microsoft.com", - "commit": "cb59746a9358af9ae32ea386aad1cfaa1922605d", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Tue, 28 Sep 2021 21:08:25 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.3.0", - "version": "0.3.0", - "comments": { - "patch": [ - { - "comment": "Delete NativeButton", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "335503904094894a91e53c6de328bf13e13bcc1c", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/adapters to v0.7.4", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "335503904094894a91e53c6de328bf13e13bcc1c", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/experimental-text to v0.6.21", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "335503904094894a91e53c6de328bf13e13bcc1c", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/focus-zone to v0.7.26", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "335503904094894a91e53c6de328bf13e13bcc1c", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/framework to v0.5.40", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "335503904094894a91e53c6de328bf13e13bcc1c", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/icon to v0.8.23", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "335503904094894a91e53c6de328bf13e13bcc1c", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.10.47", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "335503904094894a91e53c6de328bf13e13bcc1c", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/use-styling to v0.6.8", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "335503904094894a91e53c6de328bf13e13bcc1c", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/test-tools to v0.1.1", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "335503904094894a91e53c6de328bf13e13bcc1c", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/tokens to v0.9.25", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "335503904094894a91e53c6de328bf13e13bcc1c", - "package": "@fluentui-react-native/experimental-tabs" - } - ], - "minor": [ - { - "comment": "Add Tabs Experimental for macOS + windows", - "author": "krsiler@microsoft.com", - "commit": "42901053a71794724ea916aa1a651a8a0df09fe3", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Tue, 21 Sep 2021 19:08:16 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.2.4", - "version": "0.2.4", - "comments": { - "none": [ - { - "comment": "Run prettier", - "author": "ruaraki@microsoft.com", - "commit": "e52c9b3d031599af4f43c261cb0a0327bc68a5ab", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Tue, 21 Sep 2021 16:32:12 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.2.4", - "version": "0.2.4", - "comments": { - "patch": [ - { - "comment": "adding an adapter for macOS", - "author": "67026167+chiuam@users.noreply.github.com", - "commit": "2d8e314d1cbdbccbd87251fbe125b14b1014486e", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Tue, 14 Sep 2021 19:31:04 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.2.3", - "version": "0.2.3", - "comments": { - "none": [ - { - "comment": "Revert \"Bump Prettier and run it (#997)\"", - "author": "ruaraki@microsoft.com", - "commit": "c3eefc2cd6e8e23d64ca72460586f33120edc336", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Mon, 13 Sep 2021 23:22:43 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.2.3", - "version": "0.2.3", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/icon to v0.8.21", - "author": "ruaraki@microsoft.com", - "commit": "a7179bb7cc1b8d1da09a0a11831b7b1712b8b720", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Fri, 10 Sep 2021 21:30:12 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.2.2", - "version": "0.2.2", - "comments": { - "none": [ - { - "comment": "Run the prettier", - "author": "ruaraki@microsoft.com", - "commit": "7ac71c6add6f05230c649dad60b5f7442f08cbb3", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Fri, 10 Sep 2021 18:16:59 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.2.2", - "version": "0.2.2", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/icon to v0.8.20", - "author": "ruaraki@microsoft.com", - "commit": "5f282af0873151b9f7a8eb75369619af42d092d4", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Thu, 09 Sep 2021 22:12:19 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.2.1", - "version": "0.2.1", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui-react-native/icon to v0.8.19", - "author": "ruaraki@microsoft.com", - "commit": "6a82ccdd6a0cf0226f59e1f81ec34a0eb7e3d912", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - }, - { - "date": "Thu, 09 Sep 2021 20:03:01 GMT", - "tag": "@fluentui-react-native/experimental-tabs_v0.2.0", - "version": "0.2.0", - "comments": { - "minor": [ - { - "comment": "Moved tabs to the experimental framework.", - "author": "nkhalil942@gmail.com", - "commit": "e8463d8d7e278c20c747425ab32c27bf5d857929", - "package": "@fluentui-react-native/experimental-tabs" - } - ], - "patch": [ - { - "comment": "Bump @fluentui-react-native/icon to v0.8.18", - "author": "ruaraki@microsoft.com", - "commit": "30bcd9859911c2bb83f2d6ea29dda12cc029265e", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/interactive-hooks to v0.10.41", - "author": "ruaraki@microsoft.com", - "commit": "30bcd9859911c2bb83f2d6ea29dda12cc029265e", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/focus-zone to v0.7.21", - "author": "ruaraki@microsoft.com", - "commit": "30bcd9859911c2bb83f2d6ea29dda12cc029265e", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/framework to v0.5.35", - "author": "ruaraki@microsoft.com", - "commit": "30bcd9859911c2bb83f2d6ea29dda12cc029265e", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/experimental-text to v0.6.16", - "author": "ruaraki@microsoft.com", - "commit": "30bcd9859911c2bb83f2d6ea29dda12cc029265e", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/tokens to v0.9.23", - "author": "ruaraki@microsoft.com", - "commit": "30bcd9859911c2bb83f2d6ea29dda12cc029265e", - "package": "@fluentui-react-native/experimental-tabs" - }, - { - "comment": "Bump @fluentui-react-native/test-tools to v0.1.1", - "author": "ruaraki@microsoft.com", - "commit": "30bcd9859911c2bb83f2d6ea29dda12cc029265e", - "package": "@fluentui-react-native/experimental-tabs" - } - ] - } - } - ] -} diff --git a/packages/experimental/Tabs/CHANGELOG.md b/packages/experimental/Tabs/CHANGELOG.md deleted file mode 100644 index 5b36f1864..000000000 --- a/packages/experimental/Tabs/CHANGELOG.md +++ /dev/null @@ -1,2170 +0,0 @@ -# Change Log - @fluentui-react-native/experimental-tabs - -This log was last generated on Thu, 04 Jan 2024 21:06:26 GMT and should not be manually modified. - - - -## 0.10.7 - -Thu, 04 Jan 2024 21:06:26 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.16.6 -- Bump @fluentui-react-native/framework to v0.13.5 -- Bump @fluentui-react-native/icon to v0.20.7 -- Bump @fluentui-react-native/interactive-hooks to v0.25.6 -- Bump @fluentui-react-native/text to v0.22.6 -- Bump @fluentui-react-native/tokens to v0.22.5 - -## 0.10.6 - -Thu, 04 Jan 2024 01:35:42 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.16.5 -- Bump @fluentui-react-native/framework to v0.13.4 -- Bump @fluentui-react-native/icon to v0.20.6 -- Bump @fluentui-react-native/interactive-hooks to v0.25.5 -- Bump @fluentui-react-native/text to v0.22.5 -- Bump @fluentui-react-native/tokens to v0.22.4 - -## 0.10.5 - -Wed, 03 Jan 2024 00:15:20 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.16.4 -- Bump @fluentui-react-native/framework to v0.13.3 -- Bump @fluentui-react-native/icon to v0.20.5 -- Bump @fluentui-react-native/interactive-hooks to v0.25.4 -- Bump @fluentui-react-native/text to v0.22.4 -- Bump @fluentui-react-native/tokens to v0.22.3 - -## 0.10.4 - -Thu, 21 Dec 2023 01:31:00 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.16.3 -- Bump @fluentui-react-native/framework to v0.13.2 -- Bump @fluentui-react-native/icon to v0.20.4 -- Bump @fluentui-react-native/interactive-hooks to v0.25.3 -- Bump @fluentui-react-native/text to v0.22.3 -- Bump @fluentui-react-native/tokens to v0.22.2 - -## 0.10.3 - -Wed, 20 Dec 2023 20:20:38 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.16.2 -- Bump @fluentui-react-native/framework to v0.13.1 -- Bump @fluentui-react-native/icon to v0.20.3 -- Bump @fluentui-react-native/interactive-hooks to v0.25.2 -- Bump @fluentui-react-native/text to v0.22.2 - -## 0.10.2 - -Wed, 20 Dec 2023 00:05:24 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.16.1 -- Bump @fluentui-react-native/framework to v0.13.0 -- Bump @fluentui-react-native/icon to v0.20.2 -- Bump @fluentui-react-native/interactive-hooks to v0.25.1 -- Bump @fluentui-react-native/text to v0.22.1 -- Bump @fluentui-react-native/tokens to v0.22.1 - -## 0.10.1 - -Wed, 06 Dec 2023 22:21:57 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.20.1 - -## 0.10.0 - -Thu, 09 Nov 2023 02:39:09 GMT - -### Minor changes - -- Update to react-native 0.72 (30809111+acoates-ms@users.noreply.github.com) -- Bump @fluentui-react-native/adapters to v0.12.0 -- Bump @fluentui-react-native/focus-zone to v0.16.0 -- Bump @fluentui-react-native/framework to v0.12.0 -- Bump @fluentui-react-native/icon to v0.20.0 -- Bump @fluentui-react-native/interactive-hooks to v0.25.0 -- Bump @fluentui-react-native/text to v0.22.0 -- Bump @fluentui-react-native/tokens to v0.22.0 -- Bump @fluentui-react-native/use-styling to v0.12.0 - -## 0.9.21 - -Tue, 07 Nov 2023 20:20:34 GMT - -### Patches - -- Manually bump packages stuck in the pipeline (safreibe@microsoft.com) -- Bump @fluentui-react-native/focus-zone to v0.15.0 -- Bump @fluentui-react-native/framework to v0.11.10 -- Bump @fluentui-react-native/icon to v0.19.16 -- Bump @fluentui-react-native/interactive-hooks to v0.24.12 -- Bump @fluentui-react-native/text to v0.21.14 -- Bump @fluentui-react-native/tokens to v0.21.6 - -## 0.9.19 - -Tue, 31 Oct 2023 19:11:10 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.13.3 - -## 0.9.18 - -Mon, 30 Oct 2023 21:26:06 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.13.2 -- Bump @fluentui-react-native/framework to v0.11.8 -- Bump @fluentui-react-native/icon to v0.19.14 -- Bump @fluentui-react-native/interactive-hooks to v0.24.10 -- Bump @fluentui-react-native/text to v0.21.12 -- Bump @fluentui-react-native/tokens to v0.21.4 - -## 0.9.17 - -Wed, 25 Oct 2023 20:50:34 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.13.1 -- Bump @fluentui-react-native/framework to v0.11.7 -- Bump @fluentui-react-native/icon to v0.19.13 -- Bump @fluentui-react-native/interactive-hooks to v0.24.9 -- Bump @fluentui-react-native/text to v0.21.11 - -## 0.9.16 - -Wed, 25 Oct 2023 17:21:07 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.19.12 - -## 0.9.15 - -Tue, 17 Oct 2023 19:21:23 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.13.0 - -## 0.9.14 - -Mon, 25 Sep 2023 12:49:34 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.19.11 -- Bump @fluentui-react-native/text to v0.21.10 - -## 0.9.13 - -Tue, 29 Aug 2023 22:56:32 GMT - -### Patches - -- update snapshots (krsiler@microsoft.com) -- Bump @fluentui-react-native/adapters to v0.11.3 -- Bump @fluentui-react-native/focus-zone to v0.12.10 -- Bump @fluentui-react-native/framework to v0.11.6 -- Bump @fluentui-react-native/icon to v0.19.10 -- Bump @fluentui-react-native/interactive-hooks to v0.24.8 -- Bump @fluentui-react-native/text to v0.21.9 -- Bump @fluentui-react-native/tokens to v0.21.3 - -## 0.9.12 - -Tue, 29 Aug 2023 21:59:04 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.19.9 - -## 0.9.11 - -Wed, 23 Aug 2023 18:55:24 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.19.8 -- Bump @fluentui-react-native/text to v0.21.8 - -## 0.9.10 - -Mon, 14 Aug 2023 20:14:41 GMT - -### Patches - -- Bump @fluentui-react-native/adapters to v0.11.2 -- Bump @fluentui-react-native/focus-zone to v0.12.9 -- Bump @fluentui-react-native/framework to v0.11.5 -- Bump @fluentui-react-native/icon to v0.19.7 -- Bump @fluentui-react-native/interactive-hooks to v0.24.7 -- Bump @fluentui-react-native/text to v0.21.7 -- Bump @fluentui-react-native/tokens to v0.21.2 - -## 0.9.9 - -Wed, 09 Aug 2023 22:02:14 GMT - -### Patches - -- Result of yarn (ruaraki@microsoft.com) -- Bump @fluentui-react-native/focus-zone to v0.12.8 -- Bump @fluentui-react-native/framework to v0.11.4 -- Bump @fluentui-react-native/icon to v0.19.6 -- Bump @fluentui-react-native/interactive-hooks to v0.24.6 -- Bump @fluentui-react-native/text to v0.21.6 -- Bump @fluentui-react-native/use-styling to v0.11.1 - -## 0.9.8 - -Mon, 31 Jul 2023 19:29:59 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.11.3 -- Bump @fluentui-react-native/interactive-hooks to v0.24.5 -- Bump @fluentui-react-native/focus-zone to v0.12.7 -- Bump @fluentui-react-native/text to v0.21.5 -- Bump @fluentui-react-native/icon to v0.19.5 - -## 0.9.7 - -Tue, 18 Jul 2023 19:09:32 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.11.2 -- Bump @fluentui-react-native/interactive-hooks to v0.24.4 -- Bump @fluentui-react-native/focus-zone to v0.12.6 -- Bump @fluentui-react-native/text to v0.21.4 -- Bump @fluentui-react-native/icon to v0.19.4 - -## 0.9.6 - -Mon, 10 Jul 2023 17:25:04 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.12.5 - -## 0.9.5 - -Fri, 07 Jul 2023 20:45:12 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.11.1 -- Bump @fluentui-react-native/interactive-hooks to v0.24.3 -- Bump @fluentui-react-native/focus-zone to v0.12.4 -- Bump @fluentui-react-native/text to v0.21.3 -- Bump @fluentui-react-native/tokens to v0.21.1 -- Bump @fluentui-react-native/icon to v0.19.3 -- Bump @fluentui-react-native/adapters to v0.11.1 - -## 0.9.4 - -Mon, 19 Jun 2023 18:37:35 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.24.2 -- Bump @fluentui-react-native/focus-zone to v0.12.3 -- Bump @fluentui-react-native/text to v0.21.2 -- Bump @fluentui-react-native/icon to v0.19.2 - -## 0.9.3 - -Sat, 17 Jun 2023 00:00:18 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.24.1 -- Bump @fluentui-react-native/focus-zone to v0.12.2 -- Bump @fluentui-react-native/text to v0.21.1 -- Bump @fluentui-react-native/icon to v0.19.1 - -## 0.9.2 - -Mon, 12 Jun 2023 17:46:44 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.11.0 -- Bump @fluentui-react-native/interactive-hooks to v0.24.0 -- Bump @fluentui-react-native/focus-zone to v0.12.1 -- Bump @fluentui-react-native/text to v0.21.0 -- Bump @fluentui-react-native/use-styling to v0.11.0 -- Bump @fluentui-react-native/icon to v0.19.0 - -## 0.9.1 - -Fri, 09 Jun 2023 15:29:07 GMT - -### Patches - -- Bump @fluentui-react-native/text to v0.20.1 -- Bump @fluentui-react-native/icon to v0.18.1 - -## 0.9.0 - -Mon, 05 Jun 2023 19:26:23 GMT - -### Minor changes - -- Upgrade to React Native 0.71 (sanajmi@microsoft.com) -- Bump @fluentui-react-native/framework to v0.10.0 -- Bump @fluentui-react-native/interactive-hooks to v0.23.0 -- Bump @fluentui-react-native/focus-zone to v0.12.0 -- Bump @fluentui-react-native/text to v0.20.0 -- Bump @fluentui-react-native/tokens to v0.21.0 -- Bump @fluentui-react-native/use-styling to v0.10.0 -- Bump @fluentui-react-native/icon to v0.18.0 -- Bump @fluentui-react-native/adapters to v0.11.0 - -## 0.8.48 - -Tue, 30 May 2023 20:34:15 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.9.10 -- Bump @fluentui-react-native/interactive-hooks to v0.22.31 -- Bump @fluentui-react-native/focus-zone to v0.11.43 -- Bump @fluentui-react-native/text to v0.19.33 -- Bump @fluentui-react-native/tokens to v0.20.16 -- Bump @fluentui-react-native/icon to v0.17.27 - -## 0.8.47 - -Wed, 03 May 2023 07:08:51 GMT - -### Patches - -- Update design-tokens package to 0.47.0 (78454019+lyzhan7@users.noreply.github.com) -- Bump @fluentui-react-native/framework to v0.9.9 -- Bump @fluentui-react-native/interactive-hooks to v0.22.30 -- Bump @fluentui-react-native/focus-zone to v0.11.42 -- Bump @fluentui-react-native/text to v0.19.32 -- Bump @fluentui-react-native/tokens to v0.20.15 -- Bump @fluentui-react-native/icon to v0.17.26 - -## 0.8.46 - -Mon, 10 Apr 2023 19:48:24 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.22.29 -- Bump @fluentui-react-native/focus-zone to v0.11.41 -- Bump @fluentui-react-native/text to v0.19.31 -- Bump @fluentui-react-native/icon to v0.17.25 - -## 0.8.45 - -Thu, 23 Mar 2023 20:49:23 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.22.28 -- Bump @fluentui-react-native/focus-zone to v0.11.40 -- Bump @fluentui-react-native/text to v0.19.30 -- Bump @fluentui-react-native/icon to v0.17.24 - -## 0.8.44 - -Tue, 21 Mar 2023 21:53:46 GMT - -### Patches - -- Trigger manual bump (no changes) (krsiler@microsoft.com) -- Bump @fluentui-react-native/framework to v0.9.8 -- Bump @fluentui-react-native/interactive-hooks to v0.22.27 -- Bump @fluentui-react-native/focus-zone to v0.11.39 -- Bump @fluentui-react-native/text to v0.19.29 -- Bump @fluentui-react-native/tokens to v0.20.14 -- Bump @fluentui-react-native/icon to v0.17.23 - -## 0.8.43 - -Sat, 18 Mar 2023 17:22:31 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.9.7 -- Bump @fluentui-react-native/interactive-hooks to v0.22.26 -- Bump @fluentui-react-native/focus-zone to v0.11.38 -- Bump @fluentui-react-native/text to v0.19.28 -- Bump @fluentui-react-native/tokens to v0.20.13 -- Bump @fluentui-react-native/icon to v0.17.22 - -## 0.8.42 - -Fri, 17 Mar 2023 14:13:25 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.17.21 - -## 0.8.41 - -Tue, 14 Mar 2023 20:50:45 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.9.6 -- Bump @fluentui-react-native/interactive-hooks to v0.22.25 -- Bump @fluentui-react-native/focus-zone to v0.11.37 -- Bump @fluentui-react-native/text to v0.19.27 -- Bump @fluentui-react-native/tokens to v0.20.12 -- Bump @fluentui-react-native/icon to v0.17.20 - -## 0.8.40 - -Tue, 14 Mar 2023 18:43:06 GMT - -### Patches - -- Fix customizeable accessible (ruaraki@microsoft.com) - -## 0.8.39 - -Tue, 07 Mar 2023 20:54:15 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.9.5 -- Bump @fluentui-react-native/interactive-hooks to v0.22.24 -- Bump @fluentui-react-native/focus-zone to v0.11.36 -- Bump @fluentui-react-native/text to v0.19.26 -- Bump @fluentui-react-native/icon to v0.17.19 - -## 0.8.38 - -Sat, 04 Mar 2023 00:02:26 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.22.23 -- Bump @fluentui-react-native/focus-zone to v0.11.35 -- Bump @fluentui-react-native/text to v0.19.25 -- Bump @fluentui-react-native/icon to v0.17.18 - -## 0.8.37 - -Fri, 03 Mar 2023 06:47:26 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.9.4 -- Bump @fluentui-react-native/interactive-hooks to v0.22.22 -- Bump @fluentui-react-native/focus-zone to v0.11.34 -- Bump @fluentui-react-native/text to v0.19.24 -- Bump @fluentui-react-native/tokens to v0.20.11 -- Bump @fluentui-react-native/icon to v0.17.17 - -## 0.8.36 - -Thu, 02 Mar 2023 19:11:57 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.17.16 - -## 0.8.35 - -Tue, 28 Feb 2023 21:34:10 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.22.21 -- Bump @fluentui-react-native/focus-zone to v0.11.33 -- Bump @fluentui-react-native/text to v0.19.23 -- Bump @fluentui-react-native/icon to v0.17.15 - -## 0.8.34 - -Fri, 24 Feb 2023 20:39:58 GMT - -### Patches - -- Order imports (78454019+lyzhan7@users.noreply.github.com) -- Bump @fluentui-react-native/framework to v0.9.3 -- Bump @fluentui-react-native/interactive-hooks to v0.22.20 -- Bump @fluentui-react-native/focus-zone to v0.11.32 -- Bump @fluentui-react-native/text to v0.19.22 -- Bump @fluentui-react-native/tokens to v0.20.10 -- Bump @fluentui-react-native/use-styling to v0.9.4 -- Bump @fluentui-react-native/icon to v0.17.14 -- Bump @fluentui-react-native/adapters to v0.10.2 - -## 0.8.33 - -Fri, 24 Feb 2023 02:22:40 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.9.2 -- Bump @fluentui-react-native/interactive-hooks to v0.22.19 -- Bump @fluentui-react-native/focus-zone to v0.11.31 -- Bump @fluentui-react-native/text to v0.19.21 -- Bump @fluentui-react-native/tokens to v0.20.9 -- Bump @fluentui-react-native/icon to v0.17.13 - -## 0.8.32 - -Sat, 11 Feb 2023 01:32:30 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.9.1 -- Bump @fluentui-react-native/interactive-hooks to v0.22.18 -- Bump @fluentui-react-native/focus-zone to v0.11.30 -- Bump @fluentui-react-native/text to v0.19.20 -- Bump @fluentui-react-native/tokens to v0.20.8 -- Bump @fluentui-react-native/icon to v0.17.12 - -## 0.8.31 - -Fri, 03 Feb 2023 01:49:36 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.9.0 -- Bump @fluentui-react-native/interactive-hooks to v0.22.17 -- Bump @fluentui-react-native/focus-zone to v0.11.29 -- Bump @fluentui-react-native/text to v0.19.19 -- Bump @fluentui-react-native/icon to v0.17.11 - -## 0.8.30 - -Thu, 02 Feb 2023 01:29:39 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.39 -- Bump @fluentui-react-native/interactive-hooks to v0.22.16 -- Bump @fluentui-react-native/focus-zone to v0.11.28 -- Bump @fluentui-react-native/text to v0.19.18 -- Bump @fluentui-react-native/use-styling to v0.9.3 -- Bump @fluentui-react-native/icon to v0.17.10 - -## 0.8.29 - -Wed, 01 Feb 2023 22:33:15 GMT - -### Patches - -- Enable @typescript-eslint/consistent-type-imports (30809111+acoates-ms@users.noreply.github.com) -- Bump @fluentui-react-native/framework to v0.8.38 -- Bump @fluentui-react-native/interactive-hooks to v0.22.15 -- Bump @fluentui-react-native/focus-zone to v0.11.27 -- Bump @fluentui-react-native/text to v0.19.17 -- Bump @fluentui-react-native/tokens to v0.20.7 -- Bump @fluentui-react-native/use-styling to v0.9.2 -- Bump @fluentui-react-native/icon to v0.17.9 -- Bump @fluentui-react-native/adapters to v0.10.1 - -## 0.8.28 - -Mon, 30 Jan 2023 07:12:38 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.37 -- Bump @fluentui-react-native/interactive-hooks to v0.22.14 -- Bump @fluentui-react-native/focus-zone to v0.11.26 -- Bump @fluentui-react-native/text to v0.19.16 -- Bump @fluentui-react-native/tokens to v0.20.6 -- Bump @fluentui-react-native/icon to v0.17.8 - -## 0.8.27 - -Wed, 25 Jan 2023 21:31:18 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.36 -- Bump @fluentui-react-native/interactive-hooks to v0.22.13 -- Bump @fluentui-react-native/focus-zone to v0.11.25 -- Bump @fluentui-react-native/text to v0.19.15 -- Bump @fluentui-react-native/tokens to v0.20.5 -- Bump @fluentui-react-native/icon to v0.17.7 - -## 0.8.26 - -Fri, 20 Jan 2023 21:49:21 GMT - -### Patches - -- Bump @fluentui-react-native/text to v0.19.14 -- Bump @fluentui-react-native/icon to v0.17.6 - -## 0.8.25 - -Fri, 20 Jan 2023 18:06:46 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.35 -- Bump @fluentui-react-native/interactive-hooks to v0.22.12 -- Bump @fluentui-react-native/focus-zone to v0.11.24 -- Bump @fluentui-react-native/text to v0.19.13 -- Bump @fluentui-react-native/icon to v0.17.5 - -## 0.8.24 - -Wed, 18 Jan 2023 01:55:11 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.34 -- Bump @fluentui-react-native/interactive-hooks to v0.22.11 -- Bump @fluentui-react-native/focus-zone to v0.11.23 -- Bump @fluentui-react-native/text to v0.19.12 -- Bump @fluentui-react-native/tokens to v0.20.4 -- Bump @fluentui-react-native/icon to v0.17.4 - -## 0.8.23 - -Tue, 10 Jan 2023 20:17:18 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.33 -- Bump @fluentui-react-native/interactive-hooks to v0.22.10 -- Bump @fluentui-react-native/focus-zone to v0.11.22 -- Bump @fluentui-react-native/text to v0.19.11 -- Bump @fluentui-react-native/tokens to v0.20.3 -- Bump @fluentui-react-native/icon to v0.17.3 - -## 0.8.22 - -Mon, 09 Jan 2023 22:25:00 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.32 -- Bump @fluentui-react-native/interactive-hooks to v0.22.9 -- Bump @fluentui-react-native/focus-zone to v0.11.21 -- Bump @fluentui-react-native/text to v0.19.10 -- Bump @fluentui-react-native/icon to v0.17.2 - -## 0.8.21 - -Fri, 06 Jan 2023 12:26:31 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.31 -- Bump @fluentui-react-native/interactive-hooks to v0.22.8 -- Bump @fluentui-react-native/focus-zone to v0.11.20 -- Bump @fluentui-react-native/text to v0.19.9 -- Bump @fluentui-react-native/icon to v0.17.1 - -## 0.8.20 - -Thu, 05 Jan 2023 11:24:52 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.17.0 - -## 0.8.19 - -Wed, 04 Jan 2023 16:55:53 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.22.7 -- Bump @fluentui-react-native/focus-zone to v0.11.19 -- Bump @fluentui-react-native/text to v0.19.8 -- Bump @fluentui-react-native/icon to v0.16.11 - -## 0.8.18 - -Tue, 03 Jan 2023 23:38:40 GMT - -### Patches - -- Bump @fluentui-react-native/text to v0.19.7 -- Bump @fluentui-react-native/icon to v0.16.10 - -## 0.8.17 - -Fri, 30 Dec 2022 16:09:27 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.30 -- Bump @fluentui-react-native/interactive-hooks to v0.22.6 -- Bump @fluentui-react-native/focus-zone to v0.11.18 -- Bump @fluentui-react-native/text to v0.19.6 -- Bump @fluentui-react-native/icon to v0.16.9 - -## 0.8.16 - -Fri, 30 Dec 2022 03:49:05 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.22.5 -- Bump @fluentui-react-native/focus-zone to v0.11.17 -- Bump @fluentui-react-native/text to v0.19.5 -- Bump @fluentui-react-native/icon to v0.16.8 - -## 0.8.15 - -Thu, 29 Dec 2022 08:02:57 GMT - -### Patches - -- Bump @fluentui-react-native/text to v0.19.4 -- Bump @fluentui-react-native/icon to v0.16.7 - -## 0.8.14 - -Thu, 29 Dec 2022 03:47:47 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.29 -- Bump @fluentui-react-native/interactive-hooks to v0.22.4 -- Bump @fluentui-react-native/focus-zone to v0.11.16 -- Bump @fluentui-react-native/text to v0.19.3 -- Bump @fluentui-react-native/tokens to v0.20.2 -- Bump @fluentui-react-native/icon to v0.16.6 - -## 0.8.13 - -Tue, 27 Dec 2022 22:21:15 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.28 -- Bump @fluentui-react-native/interactive-hooks to v0.22.3 -- Bump @fluentui-react-native/focus-zone to v0.11.15 -- Bump @fluentui-react-native/text to v0.19.2 -- Bump @fluentui-react-native/tokens to v0.20.1 -- Bump @fluentui-react-native/icon to v0.16.5 - -## 0.8.12 - -Tue, 27 Dec 2022 10:18:14 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.27 -- Bump @fluentui-react-native/interactive-hooks to v0.22.2 -- Bump @fluentui-react-native/focus-zone to v0.11.14 -- Bump @fluentui-react-native/text to v0.19.1 -- Bump @fluentui-react-native/icon to v0.16.4 - -## 0.8.11 - -Thu, 15 Dec 2022 14:50:50 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.26 -- Bump @fluentui-react-native/interactive-hooks to v0.22.1 -- Bump @fluentui-react-native/focus-zone to v0.11.13 -- Bump @fluentui-react-native/text to v0.19.0 -- Bump @fluentui-react-native/tokens to v0.20.0 -- Bump @fluentui-react-native/icon to v0.16.3 - -## 0.8.10 - -Fri, 09 Dec 2022 05:23:38 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.25 -- Bump @fluentui-react-native/interactive-hooks to v0.22.0 -- Bump @fluentui-react-native/focus-zone to v0.11.12 -- Bump @fluentui-react-native/text to v0.18.2 -- Bump @fluentui-react-native/tokens to v0.19.1 -- Bump @fluentui-react-native/icon to v0.16.2 - -## 0.8.9 - -Tue, 06 Dec 2022 16:59:54 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.24 -- Bump @fluentui-react-native/interactive-hooks to v0.21.5 -- Bump @fluentui-react-native/focus-zone to v0.11.11 -- Bump @fluentui-react-native/text to v0.18.1 -- Bump @fluentui-react-native/icon to v0.16.1 - -## 0.8.8 - -Tue, 06 Dec 2022 02:02:55 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.16.0 - -## 0.8.7 - -Tue, 06 Dec 2022 00:46:41 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.23 -- Bump @fluentui-react-native/interactive-hooks to v0.21.4 -- Bump @fluentui-react-native/focus-zone to v0.11.10 -- Bump @fluentui-react-native/text to v0.18.0 -- Bump @fluentui-react-native/tokens to v0.19.0 -- Bump @fluentui-react-native/icon to v0.15.5 - -## 0.8.6 - -Thu, 01 Dec 2022 03:12:20 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.22 -- Bump @fluentui-react-native/interactive-hooks to v0.21.3 -- Bump @fluentui-react-native/focus-zone to v0.11.9 -- Bump @fluentui-react-native/text to v0.17.1 -- Bump @fluentui-react-native/tokens to v0.18.1 -- Bump @fluentui-react-native/icon to v0.15.4 - -## 0.8.5 - -Wed, 30 Nov 2022 21:33:19 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.8 - -## 0.8.4 - -Tue, 29 Nov 2022 20:39:50 GMT - -### Patches - -- Update config (ruaraki@microsoft.com) - -## 0.8.3 - -Mon, 28 Nov 2022 19:49:35 GMT - -### Patches - -- Bump @fluentui-react-native/text to v0.17.0 -- Bump @fluentui-react-native/icon to v0.15.3 - -## 0.8.2 - -Mon, 28 Nov 2022 11:51:06 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.21 -- Bump @fluentui-react-native/interactive-hooks to v0.21.2 -- Bump @fluentui-react-native/focus-zone to v0.11.7 -- Bump @fluentui-react-native/text to v0.16.2 -- Bump @fluentui-react-native/tokens to v0.18.0 -- Bump @fluentui-react-native/icon to v0.15.2 - -## 0.8.1 - -Wed, 16 Nov 2022 08:47:25 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.20 -- Bump @fluentui-react-native/interactive-hooks to v0.21.1 -- Bump @fluentui-react-native/focus-zone to v0.11.6 -- Bump @fluentui-react-native/text to v0.16.1 -- Bump @fluentui-react-native/icon to v0.15.1 - -## 0.8.0 - -Sun, 13 Nov 2022 09:17:06 GMT - -### Minor changes - -- fix double clicking on inline links (email not defined) -- Bump @fluentui-react-native/interactive-hooks to v0.21.0 -- Bump @fluentui-react-native/focus-zone to v0.11.5 -- Bump @fluentui-react-native/text to v0.16.0 -- Bump @fluentui-react-native/icon to v0.15.0 - -## 0.7.4 - -Fri, 11 Nov 2022 18:06:32 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.19 -- Bump @fluentui-react-native/interactive-hooks to v0.20.2 -- Bump @fluentui-react-native/focus-zone to v0.11.4 -- Bump @fluentui-react-native/text to v0.15.15 -- Bump @fluentui-react-native/icon to v0.14.1 - -## 0.7.3 - -Fri, 11 Nov 2022 01:02:57 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.3 - -## 0.7.2 - -Thu, 10 Nov 2022 02:05:55 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.11.2 - -## 0.7.1 - -Wed, 09 Nov 2022 22:52:11 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.20.1 -- Bump @fluentui-react-native/focus-zone to v0.11.1 - -## 0.7.0 - -Tue, 08 Nov 2022 22:18:43 GMT - -### Minor changes - -- update @office-iss/react-native-win32 to 0.68.8 (krsiler@microsoft.com) -- Bump @fluentui-react-native/framework to v0.8.18 -- Bump @fluentui-react-native/interactive-hooks to v0.20.0 -- Bump @fluentui-react-native/focus-zone to v0.11.0 -- Bump @fluentui-react-native/text to v0.15.14 -- Bump @fluentui-react-native/tokens to v0.17.8 -- Bump @fluentui-react-native/icon to v0.14.0 -- Bump @fluentui-react-native/adapters to v0.10.0 - -## 0.6.6 - -Tue, 08 Nov 2022 19:22:01 GMT - -### Patches - -- Snapshots (email not defined) -- Bump @fluentui-react-native/framework to v0.8.17 -- Bump @fluentui-react-native/interactive-hooks to v0.19.7 -- Bump @fluentui-react-native/focus-zone to v0.10.35 -- Bump @fluentui-react-native/text to v0.15.13 -- Bump @fluentui-react-native/icon to v0.13.22 - -## 0.6.5 - -Mon, 07 Nov 2022 21:42:58 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.34 - -## 0.6.4 - -Fri, 04 Nov 2022 14:36:23 GMT - -### Patches - -- missingTokens (email not defined) -- Bump @fluentui-react-native/framework to v0.8.16 -- Bump @fluentui-react-native/interactive-hooks to v0.19.6 -- Bump @fluentui-react-native/focus-zone to v0.10.33 -- Bump @fluentui-react-native/text to v0.15.12 -- Bump @fluentui-react-native/tokens to v0.17.7 -- Bump @fluentui-react-native/icon to v0.13.21 - -## 0.6.3 - -Wed, 02 Nov 2022 00:59:45 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.32 - -## 0.6.2 - -Tue, 01 Nov 2022 16:30:56 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.19.5 -- Bump @fluentui-react-native/focus-zone to v0.10.31 - -## 0.6.1 - -Thu, 27 Oct 2022 21:01:42 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.30 - -## 0.6.0 - -Thu, 27 Oct 2022 11:09:35 GMT - -### Minor changes - -- Snapshot update (email not defined) -- Bump @fluentui-react-native/framework to v0.8.15 -- Bump @fluentui-react-native/interactive-hooks to v0.19.4 -- Bump @fluentui-react-native/focus-zone to v0.10.29 -- Bump @fluentui-react-native/text to v0.15.11 -- Bump @fluentui-react-native/tokens to v0.17.6 -- Bump @fluentui-react-native/icon to v0.13.20 - -## 0.5.31 - -Tue, 25 Oct 2022 22:47:45 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.14 -- Bump @fluentui-react-native/interactive-hooks to v0.19.3 -- Bump @fluentui-react-native/focus-zone to v0.10.28 -- Bump @fluentui-react-native/text to v0.15.10 -- Bump @fluentui-react-native/icon to v0.13.19 - -## 0.5.30 - -Fri, 21 Oct 2022 13:09:26 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.13 -- Bump @fluentui-react-native/interactive-hooks to v0.19.2 -- Bump @fluentui-react-native/focus-zone to v0.10.27 -- Bump @fluentui-react-native/text to v0.15.9 -- Bump @fluentui-react-native/icon to v0.13.18 - -## 0.5.29 - -Thu, 20 Oct 2022 19:21:06 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.26 - -## 0.5.28 - -Thu, 20 Oct 2022 18:30:02 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.19.1 -- Bump @fluentui-react-native/focus-zone to v0.10.25 - -## 0.5.27 - -Tue, 18 Oct 2022 04:06:27 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.19.0 -- Bump @fluentui-react-native/focus-zone to v0.10.24 - -## 0.5.26 - -Mon, 17 Oct 2022 17:52:49 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.12 -- Bump @fluentui-react-native/interactive-hooks to v0.18.15 -- Bump @fluentui-react-native/focus-zone to v0.10.23 -- Bump @fluentui-react-native/text to v0.15.8 -- Bump @fluentui-react-native/icon to v0.13.17 - -## 0.5.25 - -Fri, 14 Oct 2022 19:11:13 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.11 -- Bump @fluentui-react-native/interactive-hooks to v0.18.14 -- Bump @fluentui-react-native/focus-zone to v0.10.22 -- Bump @fluentui-react-native/text to v0.15.7 -- Bump @fluentui-react-native/tokens to v0.17.5 -- Bump @fluentui-react-native/icon to v0.13.16 -- Bump @fluentui-react-native/adapters to v0.9.3 - -## 0.5.24 - -Wed, 12 Oct 2022 21:54:15 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.10 -- Bump @fluentui-react-native/interactive-hooks to v0.18.13 -- Bump @fluentui-react-native/focus-zone to v0.10.21 -- Bump @fluentui-react-native/text to v0.15.6 -- Bump @fluentui-react-native/tokens to v0.17.4 -- Bump @fluentui-react-native/icon to v0.13.15 - -## 0.5.23 - -Tue, 11 Oct 2022 22:41:44 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.9 -- Bump @fluentui-react-native/interactive-hooks to v0.18.12 -- Bump @fluentui-react-native/focus-zone to v0.10.20 -- Bump @fluentui-react-native/text to v0.15.5 -- Bump @fluentui-react-native/tokens to v0.17.3 -- Bump @fluentui-react-native/icon to v0.13.14 - -## 0.5.22 - -Thu, 06 Oct 2022 17:24:49 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.8 -- Bump @fluentui-react-native/interactive-hooks to v0.18.11 -- Bump @fluentui-react-native/focus-zone to v0.10.19 -- Bump @fluentui-react-native/text to v0.15.4 -- Bump @fluentui-react-native/icon to v0.13.13 - -## 0.5.21 - -Tue, 04 Oct 2022 21:09:28 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.7 -- Bump @fluentui-react-native/interactive-hooks to v0.18.10 -- Bump @fluentui-react-native/focus-zone to v0.10.18 -- Bump @fluentui-react-native/text to v0.15.3 -- Bump @fluentui-react-native/icon to v0.13.12 - -## 0.5.20 - -Mon, 03 Oct 2022 16:40:48 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.17 - -## 0.5.19 - -Fri, 30 Sep 2022 08:04:44 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.6 -- Bump @fluentui-react-native/interactive-hooks to v0.18.9 -- Bump @fluentui-react-native/focus-zone to v0.10.16 -- Bump @fluentui-react-native/text to v0.15.2 -- Bump @fluentui-react-native/tokens to v0.17.2 -- Bump @fluentui-react-native/icon to v0.13.11 - -## 0.5.18 - -Fri, 30 Sep 2022 00:54:35 GMT - -### Patches - -- Update react-native to 0.68 (krsiler@microsoft.com) -- Bump @fluentui-react-native/framework to v0.8.5 -- Bump @fluentui-react-native/interactive-hooks to v0.18.8 -- Bump @fluentui-react-native/focus-zone to v0.10.15 -- Bump @fluentui-react-native/text to v0.15.1 -- Bump @fluentui-react-native/tokens to v0.17.1 -- Bump @fluentui-react-native/use-styling to v0.9.1 -- Bump @fluentui-react-native/icon to v0.13.10 -- Bump @fluentui-react-native/adapters to v0.9.2 - -## 0.5.17 - -Mon, 26 Sep 2022 02:39:40 GMT - -### Patches - -- Use IPressableProps (sanajmi@microsoft.com) -- Bump @fluentui-react-native/interactive-hooks to v0.18.7 -- Bump @fluentui-react-native/focus-zone to v0.10.14 - -## 0.5.16 - -Thu, 22 Sep 2022 00:31:25 GMT - -### Patches - -- Use Pressable from React Native (sanajmi@microsoft.com) - -## 0.5.15 - -Wed, 21 Sep 2022 21:00:40 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.4 -- Bump @fluentui-react-native/interactive-hooks to v0.18.6 -- Bump @fluentui-react-native/focus-zone to v0.10.13 -- Bump @fluentui-react-native/text to v0.15.0 -- Bump @fluentui-react-native/tokens to v0.17.0 -- Bump @fluentui-react-native/icon to v0.13.9 - -## 0.5.14 - -Fri, 16 Sep 2022 01:53:06 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.3 -- Bump @fluentui-react-native/interactive-hooks to v0.18.5 -- Bump @fluentui-react-native/focus-zone to v0.10.12 -- Bump @fluentui-react-native/text to v0.14.4 -- Bump @fluentui-react-native/tokens to v0.16.2 -- Bump @fluentui-react-native/icon to v0.13.8 - -## 0.5.13 - -Wed, 14 Sep 2022 23:07:41 GMT - -### Patches - -- Remove rn win32 dep (ruaraki@microsoft.com) -- Bump @fluentui-react-native/framework to v0.8.2 -- Bump @fluentui-react-native/interactive-hooks to v0.18.4 -- Bump @fluentui-react-native/focus-zone to v0.10.11 -- Bump @fluentui-react-native/text to v0.14.3 -- Bump @fluentui-react-native/tokens to v0.16.1 -- Bump @fluentui-react-native/icon to v0.13.7 -- Bump @fluentui-react-native/adapters to v0.9.1 - -## 0.5.12 - -Fri, 09 Sep 2022 21:53:29 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.10.10 - -## 0.5.11 - -Tue, 06 Sep 2022 18:22:03 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.18.3 -- Bump @fluentui-react-native/focus-zone to v0.10.9 -- Bump @fluentui-react-native/text to v0.14.2 -- Bump @fluentui-react-native/icon to v0.13.6 - -## 0.5.10 - -Mon, 29 Aug 2022 23:21:44 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.8.1 -- Bump @fluentui-react-native/interactive-hooks to v0.18.2 -- Bump @fluentui-react-native/focus-zone to v0.10.8 -- Bump @fluentui-react-native/text to v0.14.1 -- Bump @fluentui-react-native/icon to v0.13.5 - -## 0.5.9 - -Fri, 05 Aug 2022 23:22:38 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.18.1 -- Bump @fluentui-react-native/focus-zone to v0.10.7 -- Bump @fluentui-react-native/text to v0.14.0 -- Bump @fluentui-react-native/icon to v0.13.4 - -## 0.5.8 - -Fri, 29 Jul 2022 22:47:07 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.18.0 -- Bump @fluentui-react-native/focus-zone to v0.10.6 - -## 0.5.7 - -Fri, 29 Jul 2022 21:04:38 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.17.5 -- Bump @fluentui-react-native/focus-zone to v0.10.5 -- Bump @fluentui-react-native/text to v0.13.0 -- Bump @fluentui-react-native/icon to v0.13.3 - -## 0.5.6 - -Thu, 28 Jul 2022 23:57:03 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.17.4 -- Bump @fluentui-react-native/focus-zone to v0.10.4 -- Bump @fluentui-react-native/icon to v0.13.2 - -## 0.5.5 - -Tue, 26 Jul 2022 19:30:23 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.17.3 -- Bump @fluentui-react-native/focus-zone to v0.10.3 -- Bump @fluentui-react-native/icon to v0.13.1 - -## 0.5.4 - -Mon, 25 Jul 2022 21:27:20 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.17.2 -- Bump @fluentui-react-native/focus-zone to v0.10.2 - -## 0.5.3 - -Sat, 23 Jul 2022 00:28:48 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.17.1 -- Bump @fluentui-react-native/focus-zone to v0.10.1 - -## 0.5.2 - -Tue, 19 Jul 2022 18:10:02 GMT - -### Patches - -- Bump @fluentui-react-native/experimental-text to v0.10.2 - -## 0.5.1 - -Thu, 14 Jul 2022 20:03:37 GMT - -### Patches - -- Revert "Add support for onAccessibilityTap on Text" (amchiu@microsoft.com) -- Bump @fluentui-react-native/experimental-text to v0.10.1 - -## 0.5.0 - -Thu, 14 Jul 2022 18:09:51 GMT - -### Minor changes - -- Update to React Native 0.66 (sanajmi@microsoft.com) -- Bump @fluentui-react-native/framework to v0.8.0 -- Bump @fluentui-react-native/interactive-hooks to v0.17.0 -- Bump @fluentui-react-native/focus-zone to v0.10.0 -- Bump @fluentui-react-native/experimental-text to v0.10.0 -- Bump @fluentui-react-native/tokens to v0.16.0 -- Bump @fluentui-react-native/use-styling to v0.9.0 -- Bump @fluentui-react-native/icon to v0.13.0 -- Bump @fluentui-react-native/adapters to v0.9.0 - -## 0.4.55 - -Thu, 14 Jul 2022 17:13:16 GMT - -### Patches - -- Bump @fluentui-react-native/experimental-text to v0.9.3 - -## 0.4.54 - -Fri, 08 Jul 2022 21:23:37 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.32 -- Bump @fluentui-react-native/interactive-hooks to v0.16.5 -- Bump @fluentui-react-native/focus-zone to v0.9.35 -- Bump @fluentui-react-native/experimental-text to v0.9.2 -- Bump @fluentui-react-native/tokens to v0.15.1 -- Bump @fluentui-react-native/icon to v0.12.3 - -## 0.4.53 - -Thu, 07 Jul 2022 21:24:07 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.31 -- Bump @fluentui-react-native/interactive-hooks to v0.16.4 -- Bump @fluentui-react-native/focus-zone to v0.9.34 -- Bump @fluentui-react-native/experimental-text to v0.9.1 -- Bump @fluentui-react-native/tokens to v0.15.0 -- Bump @fluentui-react-native/icon to v0.12.2 - -## 0.4.52 - -Thu, 16 Jun 2022 17:09:28 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.33 - -## 0.4.51 - -Mon, 13 Jun 2022 23:58:18 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.16.3 -- Bump @fluentui-react-native/focus-zone to v0.9.32 - -## 0.4.50 - -Mon, 06 Jun 2022 19:20:10 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.16.2 -- Bump @fluentui-react-native/focus-zone to v0.9.31 -- Bump @fluentui-react-native/icon to v0.12.1 - -## 0.4.49 - -Thu, 26 May 2022 21:22:22 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.16.1 -- Bump @fluentui-react-native/focus-zone to v0.9.30 -- Bump @fluentui-react-native/icon to v0.12.0 - -## 0.4.48 - -Thu, 26 May 2022 00:33:11 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.16.0 -- Bump @fluentui-react-native/focus-zone to v0.9.29 - -## 0.4.47 - -Wed, 25 May 2022 18:43:08 GMT - -### Patches - -- beachball sync (krsiler@microsoft.com) -- Bump @fluentui-react-native/framework to v0.7.30 -- Bump @fluentui-react-native/interactive-hooks to v0.15.10 -- Bump @fluentui-react-native/focus-zone to v0.9.28 -- Bump @fluentui-react-native/experimental-text to v0.9.0 -- Bump @fluentui-react-native/tokens to v0.14.0 -- Bump @fluentui-react-native/icon to v0.11.25 - -## 0.4.46 - -Sat, 21 May 2022 16:18:06 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.28 -- Bump @fluentui-react-native/interactive-hooks to v0.15.8 -- Bump @fluentui-react-native/focus-zone to v0.9.27 -- Bump @fluentui-react-native/experimental-text to v0.7.28 -- Bump @fluentui-react-native/tokens to v0.12.2 -- Bump @fluentui-react-native/icon to v0.11.23 - -## 0.4.45 - -Sat, 21 May 2022 01:47:58 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.27 -- Bump @fluentui-react-native/interactive-hooks to v0.15.7 -- Bump @fluentui-react-native/focus-zone to v0.9.26 -- Bump @fluentui-react-native/experimental-text to v0.7.27 -- Bump @fluentui-react-native/tokens to v0.12.1 -- Bump @fluentui-react-native/icon to v0.11.22 - -## 0.4.44 - -Wed, 04 May 2022 21:06:04 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.26 -- Bump @fluentui-react-native/interactive-hooks to v0.15.6 -- Bump @fluentui-react-native/focus-zone to v0.9.25 -- Bump @fluentui-react-native/experimental-text to v0.7.26 -- Bump @fluentui-react-native/tokens to v0.12.0 -- Bump @fluentui-react-native/icon to v0.11.21 - -## 0.4.43 - -Thu, 28 Apr 2022 19:09:51 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.25 -- Bump @fluentui-react-native/interactive-hooks to v0.15.5 -- Bump @fluentui-react-native/focus-zone to v0.9.24 -- Bump @fluentui-react-native/experimental-text to v0.7.25 -- Bump @fluentui-react-native/tokens to v0.11.11 -- Bump @fluentui-react-native/icon to v0.11.20 - -## 0.4.42 - -Wed, 27 Apr 2022 19:30:38 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.24 -- Bump @fluentui-react-native/interactive-hooks to v0.15.4 -- Bump @fluentui-react-native/focus-zone to v0.9.23 -- Bump @fluentui-react-native/experimental-text to v0.7.24 -- Bump @fluentui-react-native/tokens to v0.11.10 -- Bump @fluentui-react-native/icon to v0.11.19 - -## 0.4.41 - -Thu, 21 Apr 2022 21:50:03 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.23 -- Bump @fluentui-react-native/interactive-hooks to v0.15.3 -- Bump @fluentui-react-native/focus-zone to v0.9.22 -- Bump @fluentui-react-native/experimental-text to v0.7.23 -- Bump @fluentui-react-native/icon to v0.11.18 - -## 0.4.40 - -Tue, 19 Apr 2022 16:54:55 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.22 -- Bump @fluentui-react-native/interactive-hooks to v0.15.2 -- Bump @fluentui-react-native/focus-zone to v0.9.21 -- Bump @fluentui-react-native/experimental-text to v0.7.22 -- Bump @fluentui-react-native/icon to v0.11.17 - -## 0.4.39 - -Mon, 18 Apr 2022 17:51:06 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.15.1 -- Bump @fluentui-react-native/focus-zone to v0.9.20 - -## 0.4.38 - -Wed, 13 Apr 2022 23:44:28 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.15.0 -- Bump @fluentui-react-native/focus-zone to v0.9.19 - -## 0.4.37 - -Tue, 12 Apr 2022 21:53:04 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.18 - -## 0.4.36 - -Tue, 12 Apr 2022 00:35:09 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.17 - -## 0.4.35 - -Fri, 08 Apr 2022 18:53:12 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.16 - -## 0.4.34 - -Wed, 06 Apr 2022 22:58:22 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.21 -- Bump @fluentui-react-native/interactive-hooks to v0.14.8 -- Bump @fluentui-react-native/focus-zone to v0.9.15 -- Bump @fluentui-react-native/experimental-text to v0.7.21 -- Bump @fluentui-react-native/icon to v0.11.16 - -## 0.4.33 - -Tue, 05 Apr 2022 20:05:50 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.20 -- Bump @fluentui-react-native/interactive-hooks to v0.14.7 -- Bump @fluentui-react-native/focus-zone to v0.9.14 -- Bump @fluentui-react-native/experimental-text to v0.7.20 -- Bump @fluentui-react-native/icon to v0.11.15 - -## 0.4.32 - -Thu, 31 Mar 2022 07:27:47 GMT - -### Patches - -- Ban `export *` in index files for better tree-shakeability (4123478+tido64@users.noreply.github.com) -- Bump @fluentui-react-native/framework to v0.7.19 -- Bump @fluentui-react-native/interactive-hooks to v0.14.6 -- Bump @fluentui-react-native/focus-zone to v0.9.13 -- Bump @fluentui-react-native/experimental-text to v0.7.19 -- Bump @fluentui-react-native/tokens to v0.11.9 -- Bump @fluentui-react-native/use-styling to v0.8.3 -- Bump @fluentui-react-native/icon to v0.11.14 -- Bump @fluentui-react-native/adapters to v0.8.5 - -## 0.4.31 - -Mon, 28 Mar 2022 15:02:37 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.14.5 -- Bump @fluentui-react-native/focus-zone to v0.9.12 - -## 0.4.30 - -Wed, 23 Mar 2022 17:24:05 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.18 -- Bump @fluentui-react-native/interactive-hooks to v0.14.4 -- Bump @fluentui-react-native/focus-zone to v0.9.11 -- Bump @fluentui-react-native/experimental-text to v0.7.18 -- Bump @fluentui-react-native/icon to v0.11.13 - -## 0.4.29 - -Mon, 21 Mar 2022 01:47:54 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.10 - -## 0.4.28 - -Fri, 11 Mar 2022 00:34:53 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.9 - -## 0.4.27 - -Mon, 07 Mar 2022 19:15:33 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.17 -- Bump @fluentui-react-native/interactive-hooks to v0.14.3 -- Bump @fluentui-react-native/focus-zone to v0.9.8 -- Bump @fluentui-react-native/experimental-text to v0.7.17 -- Bump @fluentui-react-native/tokens to v0.11.8 -- Bump @fluentui-react-native/icon to v0.11.12 -- Bump @fluentui-react-native/adapters to v0.8.4 - -## 0.4.26 - -Fri, 04 Mar 2022 23:43:10 GMT - -### Patches - -- Bump @rnx-kit/eslint-plugin from 0.2.10 to 0.2.11 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/framework to v0.7.16 -- Bump @fluentui-react-native/interactive-hooks to v0.14.2 -- Bump @fluentui-react-native/focus-zone to v0.9.7 -- Bump @fluentui-react-native/experimental-text to v0.7.16 -- Bump @fluentui-react-native/icon to v0.11.11 - -## 0.4.25 - -Thu, 03 Mar 2022 20:20:09 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.15 -- Bump @fluentui-react-native/interactive-hooks to v0.14.1 -- Bump @fluentui-react-native/focus-zone to v0.9.6 -- Bump @fluentui-react-native/experimental-text to v0.7.15 -- Bump @fluentui-react-native/tokens to v0.11.7 -- Bump @fluentui-react-native/icon to v0.11.10 - -## 0.4.24 - -Tue, 01 Mar 2022 20:18:31 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.14.0 -- Bump @fluentui-react-native/focus-zone to v0.9.5 - -## 0.4.23 - -Fri, 18 Feb 2022 23:27:11 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.14 -- Bump @fluentui-react-native/interactive-hooks to v0.13.3 -- Bump @fluentui-react-native/focus-zone to v0.9.4 -- Bump @fluentui-react-native/experimental-text to v0.7.14 -- Bump @fluentui-react-native/tokens to v0.11.6 -- Bump @fluentui-react-native/icon to v0.11.9 -- Bump @fluentui-react-native/adapters to v0.8.3 - -## 0.4.22 - -Thu, 17 Feb 2022 02:13:07 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.13.2 -- Bump @fluentui-react-native/focus-zone to v0.9.3 -- Bump @fluentui-react-native/icon to v0.11.8 - -## 0.4.21 - -Thu, 17 Feb 2022 01:22:02 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.13 -- Bump @fluentui-react-native/interactive-hooks to v0.13.1 -- Bump @fluentui-react-native/focus-zone to v0.9.2 -- Bump @fluentui-react-native/experimental-text to v0.7.13 -- Bump @fluentui-react-native/icon to v0.11.7 - -## 0.4.20 - -Wed, 09 Feb 2022 20:14:50 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.13.0 -- Bump @fluentui-react-native/focus-zone to v0.9.1 - -## 0.4.19 - -Fri, 04 Feb 2022 20:31:52 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.9.0 - -## 0.4.18 - -Wed, 02 Feb 2022 02:29:07 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.12 -- Bump @fluentui-react-native/interactive-hooks to v0.12.2 -- Bump @fluentui-react-native/focus-zone to v0.8.18 -- Bump @fluentui-react-native/experimental-text to v0.7.12 -- Bump @fluentui-react-native/icon to v0.11.6 - -## 0.4.17 - -Wed, 26 Jan 2022 20:31:04 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.12.1 -- Bump @fluentui-react-native/focus-zone to v0.8.17 - -## 0.4.16 - -Wed, 26 Jan 2022 17:02:27 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.12.0 -- Bump @fluentui-react-native/focus-zone to v0.8.16 - -## 0.4.15 - -Tue, 25 Jan 2022 21:55:30 GMT - -### Patches - -- Default to onKeyDown on macOS (sanajmi@microsoft.com) -- Bump @fluentui-react-native/interactive-hooks to v0.11.15 -- Bump @fluentui-react-native/focus-zone to v0.8.15 - -## 0.4.14 - -Tue, 25 Jan 2022 16:48:23 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.11.14 -- Bump @fluentui-react-native/focus-zone to v0.8.14 - -## 0.4.13 - -Fri, 14 Jan 2022 21:49:07 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.11 -- Bump @fluentui-react-native/interactive-hooks to v0.11.13 -- Bump @fluentui-react-native/focus-zone to v0.8.13 -- Bump @fluentui-react-native/experimental-text to v0.7.11 -- Bump @fluentui-react-native/icon to v0.11.5 - -## 0.4.12 - -Fri, 14 Jan 2022 01:00:02 GMT - -### Patches - -- fix disabled button (email not defined) -- Bump @fluentui-react-native/framework to v0.7.10 -- Bump @fluentui-react-native/interactive-hooks to v0.11.12 -- Bump @fluentui-react-native/focus-zone to v0.8.12 -- Bump @fluentui-react-native/experimental-text to v0.7.10 -- Bump @fluentui-react-native/tokens to v0.11.5 -- Bump @fluentui-react-native/icon to v0.11.4 - -## 0.4.11 - -Thu, 06 Jan 2022 23:14:38 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.9 -- Bump @fluentui-react-native/interactive-hooks to v0.11.11 -- Bump @fluentui-react-native/focus-zone to v0.8.11 -- Bump @fluentui-react-native/experimental-text to v0.7.9 -- Bump @fluentui-react-native/tokens to v0.11.4 -- Bump @fluentui-react-native/icon to v0.11.3 - -## 0.4.10 - -Thu, 06 Jan 2022 21:30:08 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.8 -- Bump @fluentui-react-native/interactive-hooks to v0.11.10 -- Bump @fluentui-react-native/focus-zone to v0.8.10 -- Bump @fluentui-react-native/experimental-text to v0.7.8 -- Bump @fluentui-react-native/icon to v0.11.2 - -## 0.4.9 - -Wed, 05 Jan 2022 23:53:54 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.11.9 -- Bump @fluentui-react-native/focus-zone to v0.8.9 - -## 0.4.8 - -Tue, 21 Dec 2021 20:56:31 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.7 -- Bump @fluentui-react-native/interactive-hooks to v0.11.8 -- Bump @fluentui-react-native/focus-zone to v0.8.8 -- Bump @fluentui-react-native/experimental-text to v0.7.7 -- Bump @fluentui-react-native/icon to v0.11.1 - -## 0.4.7 - -Mon, 20 Dec 2021 22:56:00 GMT - -### Patches - -- Add repository property to all package.json files (ruaraki@microsoft.com) -- Bump @fluentui-react-native/framework to v0.7.6 -- Bump @fluentui-react-native/interactive-hooks to v0.11.7 -- Bump @fluentui-react-native/focus-zone to v0.8.7 -- Bump @fluentui-react-native/experimental-text to v0.7.6 -- Bump @fluentui-react-native/tokens to v0.11.3 -- Bump @fluentui-react-native/use-styling to v0.8.2 -- Bump @fluentui-react-native/icon to v0.11.0 -- Bump @fluentui-react-native/adapters to v0.8.2 - -## 0.4.6 - -Sun, 19 Dec 2021 05:07:36 GMT - -### Patches - -- Bump @fluentui-react-native/interactive-hooks to v0.11.6 -- Bump @fluentui-react-native/focus-zone to v0.8.6 - -## 0.4.5 - -Sat, 18 Dec 2021 04:15:04 GMT - -### Patches - -- Update to TypeScript 4.5.4. (afoxman@microsoft.com) -- Bump @fluentui-react-native/framework to v0.7.5 -- Bump @fluentui-react-native/interactive-hooks to v0.11.5 -- Bump @fluentui-react-native/focus-zone to v0.8.5 -- Bump @fluentui-react-native/experimental-text to v0.7.5 -- Bump @fluentui-react-native/tokens to v0.11.2 -- Bump @fluentui-react-native/use-styling to v0.8.1 -- Bump @fluentui-react-native/icon to v0.10.4 - -## 0.4.4 - -Fri, 17 Dec 2021 22:06:58 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.4 -- Bump @fluentui-react-native/interactive-hooks to v0.11.4 -- Bump @fluentui-react-native/focus-zone to v0.8.4 -- Bump @fluentui-react-native/experimental-text to v0.7.4 -- Bump @fluentui-react-native/icon to v0.10.3 - -## 0.4.3 - -Fri, 17 Dec 2021 19:53:21 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.3 -- Bump @fluentui-react-native/interactive-hooks to v0.11.3 -- Bump @fluentui-react-native/focus-zone to v0.8.3 -- Bump @fluentui-react-native/experimental-text to v0.7.3 -- Bump @fluentui-react-native/icon to v0.10.2 - -## 0.4.2 - -Fri, 17 Dec 2021 01:26:42 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.7.2 -- Bump @fluentui-react-native/interactive-hooks to v0.11.2 -- Bump @fluentui-react-native/focus-zone to v0.8.2 -- Bump @fluentui-react-native/experimental-text to v0.7.2 -- Bump @fluentui-react-native/icon to v0.10.1 - -## 0.4.1 - -Thu, 16 Dec 2021 19:10:27 GMT - -### Patches - -- Refactor useKeyCallback (sanajmi@microsoft.com) -- Rename Jest snapshots to be platform agnostic (sanajmi@microsoft.com) -- Bump @fluentui-react-native/framework to v0.7.1 -- Bump @fluentui-react-native/interactive-hooks to v0.11.1 -- Bump @fluentui-react-native/focus-zone to v0.8.1 -- Bump @fluentui-react-native/experimental-text to v0.7.1 -- Bump @fluentui-react-native/tokens to v0.11.1 -- Bump @fluentui-react-native/icon to v0.10.0 -- Bump @fluentui-react-native/adapters to v0.8.1 - -## 0.4.0 - -Wed, 17 Nov 2021 19:28:07 GMT - -### Minor changes - -- Update to react-native 0.64 (afoxman@microsoft.com) -- Adding E2E Testing Improvements (safreibe@microsoft.com) - -### Patches - -- Bump @fluentui-react-native/adapters to v0.8.0 (afoxman@microsoft.com) -- Bump @fluentui-react-native/icon to v0.9.0 (afoxman@microsoft.com) -- Bump @fluentui-react-native/interactive-hooks to v0.11.0 (afoxman@microsoft.com) -- Bump @fluentui-react-native/focus-zone to v0.8.0 (afoxman@microsoft.com) -- Bump @fluentui-react-native/experimental-text to v0.7.0 (afoxman@microsoft.com) -- Bump @fluentui-react-native/tokens to v0.11.0 (afoxman@microsoft.com) -- Bump @fluentui-react-native/framework to v0.7.0 (afoxman@microsoft.com) -- Bump @fluentui-react-native/use-styling to v0.8.0 (afoxman@microsoft.com) -- Bump @fluentui-react-native/test-tools to v0.1.1 (afoxman@microsoft.com) - -## 0.3.8 - -Tue, 09 Nov 2021 23:04:33 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.8.30 (67026167+chiuam@users.noreply.github.com) - -## 0.3.7 - -Mon, 08 Nov 2021 20:52:15 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.7.33 (sanajmi@microsoft.com) - -## 0.3.6 - -Mon, 01 Nov 2021 18:53:37 GMT - -### Patches - -- Bump @fluentui-react-native/focus-zone to v0.7.32 (sanajmi@microsoft.com) - -## 0.3.5 - -Mon, 25 Oct 2021 19:24:43 GMT - -### Patches - -- Use tslib where spreadArray is used (ruaraki@microsoft.com) - -## 0.3.4 - -Wed, 20 Oct 2021 03:46:25 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.8.27 (ruaraki@microsoft.com) - -## 0.3.3 - -Tue, 19 Oct 2021 20:23:36 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.8.26 (ruaraki@microsoft.com) - -## 0.3.2 - -Thu, 07 Oct 2021 20:59:20 GMT - -### Patches - -- Bump @fluentui-react-native/framework to v0.6.1 (ruaraki@microsoft.com) - -## 0.3.1 - -Fri, 01 Oct 2021 17:52:17 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.8.24 (ruaraki@microsoft.com) - -## 0.3.0 - -Tue, 28 Sep 2021 21:08:25 GMT - -### Minor changes - -- Add Tabs Experimental for macOS + windows (krsiler@microsoft.com) - -### Patches - -- Delete NativeButton (67026167+chiuam@users.noreply.github.com) -- Bump @fluentui-react-native/adapters to v0.7.4 (67026167+chiuam@users.noreply.github.com) -- Bump @fluentui-react-native/experimental-text to v0.6.21 (67026167+chiuam@users.noreply.github.com) -- Bump @fluentui-react-native/focus-zone to v0.7.26 (67026167+chiuam@users.noreply.github.com) -- Bump @fluentui-react-native/framework to v0.5.40 (67026167+chiuam@users.noreply.github.com) -- Bump @fluentui-react-native/icon to v0.8.23 (67026167+chiuam@users.noreply.github.com) -- Bump @fluentui-react-native/interactive-hooks to v0.10.47 (67026167+chiuam@users.noreply.github.com) -- Bump @fluentui-react-native/use-styling to v0.6.8 (67026167+chiuam@users.noreply.github.com) -- Bump @fluentui-react-native/test-tools to v0.1.1 (67026167+chiuam@users.noreply.github.com) -- Bump @fluentui-react-native/tokens to v0.9.25 (67026167+chiuam@users.noreply.github.com) - -## 0.2.4 - -Tue, 21 Sep 2021 16:32:12 GMT - -### Patches - -- adding an adapter for macOS (67026167+chiuam@users.noreply.github.com) - -## 0.2.3 - -Mon, 13 Sep 2021 23:22:43 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.8.21 (ruaraki@microsoft.com) - -## 0.2.2 - -Fri, 10 Sep 2021 18:16:59 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.8.20 (ruaraki@microsoft.com) - -## 0.2.1 - -Thu, 09 Sep 2021 22:12:19 GMT - -### Patches - -- Bump @fluentui-react-native/icon to v0.8.19 (ruaraki@microsoft.com) - -## 0.2.0 - -Thu, 09 Sep 2021 20:03:01 GMT - -### Minor changes - -- Moved tabs to the experimental framework. (nkhalil942@gmail.com) - -### Patches - -- Bump @fluentui-react-native/icon to v0.8.18 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/interactive-hooks to v0.10.41 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/focus-zone to v0.7.21 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/framework to v0.5.35 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/experimental-text to v0.6.16 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/tokens to v0.9.23 (ruaraki@microsoft.com) -- Bump @fluentui-react-native/test-tools to v0.1.1 (ruaraki@microsoft.com) diff --git a/packages/experimental/Tabs/babel.config.js b/packages/experimental/Tabs/babel.config.js deleted file mode 100644 index e55017b16..000000000 --- a/packages/experimental/Tabs/babel.config.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('@fluentui-react-native/scripts/babel.config'); diff --git a/packages/experimental/Tabs/jest.config.js b/packages/experimental/Tabs/jest.config.js deleted file mode 100644 index f6813bad7..000000000 --- a/packages/experimental/Tabs/jest.config.js +++ /dev/null @@ -1,2 +0,0 @@ -const { configureReactNativeJest } = require('@fluentui-react-native/scripts'); -module.exports = configureReactNativeJest('win32'); diff --git a/packages/experimental/Tabs/just.config.js b/packages/experimental/Tabs/just.config.js deleted file mode 100644 index 4f26f8acb..000000000 --- a/packages/experimental/Tabs/just.config.js +++ /dev/null @@ -1,3 +0,0 @@ -const { preset } = require('@fluentui-react-native/scripts'); - -preset(); diff --git a/packages/experimental/Tabs/package.json b/packages/experimental/Tabs/package.json deleted file mode 100644 index 2b031bf5c..000000000 --- a/packages/experimental/Tabs/package.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "name": "@fluentui-react-native/experimental-tabs", - "version": "0.10.7", - "description": "A cross-platform Experimental Tabs component using the Fluent Design System", - "main": "src/index.ts", - "module": "src/index.ts", - "typings": "lib/index.d.ts", - "onPublish": { - "main": "lib-commonjs/index.js", - "module": "lib/index.js" - }, - "scripts": { - "build": "fluentui-scripts build", - "clean": "fluentui-scripts clean", - "depcheck": "fluentui-scripts depcheck", - "just": "fluentui-scripts", - "lint": "fluentui-scripts eslint", - "test": "fluentui-scripts jest", - "update-snapshots": "fluentui-scripts jest -u", - "prettier": "fluentui-scripts prettier", - "prettier-fix": "fluentui-scripts prettier --fix true" - }, - "repository": { - "type": "git", - "url": "https://github.com/microsoft/fluentui-react-native.git", - "directory": "packages/experimental/Tabs" - }, - "dependencies": { - "@fluentui-react-native/adapters": "0.12.0", - "@fluentui-react-native/focus-zone": ">=0.16.6 <1.0.0", - "@fluentui-react-native/framework": "0.13.5", - "@fluentui-react-native/icon": "0.20.7", - "@fluentui-react-native/interactive-hooks": ">=0.25.6 <1.0.0", - "@fluentui-react-native/text": ">=0.22.6 <1.0.0", - "@fluentui-react-native/tokens": ">=0.22.5 <1.0.0", - "@fluentui-react-native/use-styling": ">=0.12.0 <1.0.0", - "tslib": "^2.3.1" - }, - "devDependencies": { - "@fluentui-react-native/eslint-config-rules": "^0.1.1", - "@fluentui-react-native/scripts": "^0.1.1", - "@fluentui-react-native/test-tools": ">=0.1.1 <1.0.0", - "@office-iss/react-native-win32": "^0.72.0", - "@react-native/metro-config": "^0.72.0", - "react": "18.2.0", - "react-native": "^0.72.0" - }, - "peerDependencies": { - "react": "18.2.0", - "react-native": "^0.72.0" - }, - "author": "", - "license": "MIT", - "rnx-kit": { - "kitType": "library", - "alignDeps": { - "presets": [ - "microsoft/react-native" - ], - "requirements": [ - "react-native@0.72" - ], - "capabilities": [ - "core", - "core-android", - "core-ios", - "react" - ] - } - } -} diff --git a/packages/experimental/Tabs/src/Tabs.styling.ts b/packages/experimental/Tabs/src/Tabs.styling.ts deleted file mode 100644 index 295a30e47..000000000 --- a/packages/experimental/Tabs/src/Tabs.styling.ts +++ /dev/null @@ -1,45 +0,0 @@ -import type { Theme, UseStylingOptions } from '@fluentui-react-native/framework'; -import { buildProps } from '@fluentui-react-native/framework'; -import { fontStyles } from '@fluentui-react-native/tokens'; - -import { tabsName } from './Tabs.types'; -import type { TabsTokens, TabsSlotProps, TabsProps } from './Tabs.types'; -import { getRootMargins, getLabelMargins, getStackMargins } from './TabsMargins'; -import { defaultTabsTokens } from './TabsTokens'; - -export const stylingSettings: UseStylingOptions = { - tokens: [defaultTabsTokens, tabsName], - slotProps: { - root: buildProps( - () => ({ - style: { - display: 'flex', - minHeight: 32, - minWidth: 80, - ...getRootMargins(), - }, - }), - [], - ), - label: buildProps( - (tokens: TabsTokens, theme: Theme) => ({ - style: { - color: tokens.color, - ...getLabelMargins(), - ...fontStyles.from(tokens, theme), - }, - }), - ['color', ...fontStyles.keys], - ), - stack: buildProps( - (tokens: TabsTokens) => ({ - style: { - flexDirection: 'row', - backgroundColor: tokens.backgroundColor, - ...getStackMargins(), - }, - }), - ['backgroundColor'], - ), - }, -}; diff --git a/packages/experimental/Tabs/src/Tabs.tsx b/packages/experimental/Tabs/src/Tabs.tsx deleted file mode 100644 index 9a74af9c4..000000000 --- a/packages/experimental/Tabs/src/Tabs.tsx +++ /dev/null @@ -1,99 +0,0 @@ -/** @jsxRuntime classic */ -/** @jsx withSlots */ -import * as React from 'react'; -import { Pressable, View } from 'react-native'; - -import { FocusZone } from '@fluentui-react-native/focus-zone'; -import type { UseSlots } from '@fluentui-react-native/framework'; -import { compose, mergeProps, withSlots } from '@fluentui-react-native/framework'; -import { TextV1 as Text } from '@fluentui-react-native/text'; - -import { stylingSettings } from './Tabs.styling'; -import type { TabsType, TabsProps, TabsContextData } from './Tabs.types'; -import { tabsName } from './Tabs.types'; -import { useTabs } from './useTabs'; - -export const TabsContext = React.createContext({ - selectedKey: null, - onTabsClick: (/* key: string */) => { - return; - }, - getTabId: (/* key:string, index: number*/) => { - return null; - }, - updateSelectedTabsItemRef: (/* ref: React.RefObject*/) => { - return; - }, - tabsItemKeys: [], - views: null, -}); - -export const Tabs = compose({ - displayName: tabsName, - ...stylingSettings, - slots: { - root: Pressable, - label: Text, - container: FocusZone, - stack: View, - tabPanel: View, - }, - useRender: (userProps: TabsProps, useSlots: UseSlots) => { - // configure props and state for tabs based on user props - const tabs = useTabs(userProps); - - // Grab the styled slots. - const Slots = useSlots(userProps, (layer) => tabs.state[layer] || userProps[layer]); - - // Return the handler to finish render. - return (final: TabsProps, ...children: React.ReactNode[]) => { - if (!tabs.state) { - return null; - } - - const { label, defaultTabbableElement, isCircularNavigation, ...mergedProps } = mergeProps(tabs.props, final); - - // Populate the tabsItemKeys array. - if (children) { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - tabs.state.context.tabsItemKeys = React.Children.map(children, (child: React.ReactChild) => { - if (React.isValidElement(child)) { - // Sets default selected tabItem. - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - if (tabs.state?.context.selectedKey == null && !child.props.disabled) { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - tabs.state.context.selectedKey = child.props.itemKey; - } - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - return child.props.itemKey; - } - }); - } - - return ( - - - {tabs?.state?.label && {label}} - - {children} - - - - {(context) => !tabs?.state?.headersOnly && {context.views.get(context.selectedKey)}} - - - - - ); - }; - }, -}); - -export default Tabs; diff --git a/packages/experimental/Tabs/src/Tabs.types.ts b/packages/experimental/Tabs/src/Tabs.types.ts deleted file mode 100644 index 47e746395..000000000 --- a/packages/experimental/Tabs/src/Tabs.types.ts +++ /dev/null @@ -1,121 +0,0 @@ -import type * as React from 'react'; -import type { View } from 'react-native'; - -import type { IViewProps } from '@fluentui-react-native/adapters'; -import type { FocusZoneProps } from '@fluentui-react-native/focus-zone'; -import type { TextProps } from '@fluentui-react-native/text'; -import type { FontTokens, IForegroundColorTokens, IBackgroundColorTokens } from '@fluentui-react-native/tokens'; - -export const tabsName = 'Tabs'; - -export interface TabsContextData { - /** - * The currently selected TabsItem's key - */ - selectedKey: string | null; - - /** - * Index of currently selected key - */ - getTabId?: (key: string, index: number) => string | null; - - /** - * Updates the selected tabsItem and calls the client’s onTabsClick callback - */ - onTabsClick?: (key: string) => void; - - /** - * Updates the selected tabsItem's ref to set as the default tabbable element - */ - updateSelectedTabsItemRef?: (ref: React.RefObject) => void; - - /** - * Array of tabsItem keys in the group - */ - tabsItemKeys?: string[]; - - /** - * A Map to for a TabItems corresponding view - */ - views?: Map | null; - - /** - * Reference to the Focus Container as there is no FocusZone on windows. - * GH #964 - */ - focusZoneRef?: React.RefObject | null; -} - -export interface TabsTokens extends IForegroundColorTokens, FontTokens, IBackgroundColorTokens {} - -export interface TabsProps extends Pick, IViewProps { - /** - * Descriptive label for the Tabs. This will be displayed as the title of the Tabs to the user - */ - label?: string; - - /** - * The key of the TabsItem that will initially be selected - */ - defaultSelectedKey?: string; - - /** - * The key of the selected option. If you provide this, you must maintain selection state by observing - * onTabsClick events and passing a new value in when changed. This overrides defaultSelectedKey - * and makes the Tabs a controlled component. This prop is mutually exclusive to defaultSelectedKey. - */ - selectedKey?: string; - - /** - * Callback for receiving a notification when the choice has been changed - */ - onTabsClick?: (key: string) => void; - - /** - * Callback to customize how IDs are generated for each tab header. - * Useful if you're rendering content outside and need to connect accessibility-labelledby. - */ - getTabId?: (key: string, index: number) => string; - - /** - * Sets whether to only render the header - */ - headersOnly?: boolean; - - /** - * A RefObject to access Tabs. - */ - componentRef?: React.RefObject; - - testID?: string; -} - -export interface TabsState { - context?: TabsContextData; - headersOnly?: boolean; - label?: boolean; - - /** - * Array of enabled keys in the group - * Windows-Specific Prop. - */ - enabledKeys?: string[]; -} -export interface TabsInfo { - props: TabsProps; - state: TabsState; -} -export interface TabsSlotProps { - root: React.PropsWithRef; - label: TextProps; - container?: FocusZoneProps; - stack: IViewProps; - tabPanel: IViewProps; -} - -export interface TabsType { - props: TabsProps; - tokens: TabsTokens; - slotProps: TabsSlotProps; - state: TabsState; -} diff --git a/packages/experimental/Tabs/src/Tabs.windows.tsx b/packages/experimental/Tabs/src/Tabs.windows.tsx deleted file mode 100644 index 512341d89..000000000 --- a/packages/experimental/Tabs/src/Tabs.windows.tsx +++ /dev/null @@ -1,134 +0,0 @@ -/** @jsxRuntime classic */ -/** @jsx withSlots */ -import * as React from 'react'; -import { View } from 'react-native'; - -import type { UseSlots } from '@fluentui-react-native/framework'; -import { compose, mergeProps, withSlots } from '@fluentui-react-native/framework'; -import { TextV1 as Text } from '@fluentui-react-native/text'; - -import { stylingSettings } from './Tabs.styling'; -import type { TabsType, TabsProps, TabsContextData } from './Tabs.types'; -import { tabsName } from './Tabs.types'; -import { useTabs } from './useTabs'; - -export const TabsContext = React.createContext({ - selectedKey: null, - onTabsClick: (/* key: string */) => { - return; - }, - getTabId: (/* key:string, index: number*/) => { - return null; - }, - updateSelectedTabsItemRef: (/* ref: React.RefObject*/) => { - return; - }, - tabsItemKeys: [], - views: null, - focusZoneRef: null, -}); - -export const Tabs = compose({ - displayName: tabsName, - ...stylingSettings, - slots: { - root: View, - label: Text, - stack: View, - tabPanel: View, - }, - useRender: (userProps: TabsProps, useSlots: UseSlots) => { - // configure props and state for tabs based on user props - const tabs = useTabs(userProps); - - // Grab the styled slots. - const Slots = useSlots(userProps, (layer) => tabs.state[layer] || userProps[layer]); - - const onKeyDown = (ev: any) => { - if (ev.nativeEvent.key === 'ArrowRight' || ev.nativeEvent.key === 'ArrowLeft') { - const length = tabs.state.enabledKeys.length; - const currTabItemIndex = tabs.state.enabledKeys.findIndex((x) => x == tabs.state.context.selectedKey); - let newCurrTabItemIndex; - if (ev.nativeEvent.key === 'ArrowRight') { - if (tabs.props.isCircularNavigation || !(currTabItemIndex + 1 == length)) { - newCurrTabItemIndex = (currTabItemIndex + 1) % length; - tabs.state.context.selectedKey = tabs.state.enabledKeys[newCurrTabItemIndex]; - tabs.state.context.onTabsClick(tabs.state.context.selectedKey); - } - } else { - if (tabs.props.isCircularNavigation || !(currTabItemIndex == 0)) { - newCurrTabItemIndex = (currTabItemIndex - 1 + length) % length; - tabs.state.context.selectedKey = tabs.state.enabledKeys[newCurrTabItemIndex]; - tabs.state.context.onTabsClick(tabs.state.context.selectedKey); - } - } - } - }; - - const stackProps = { - focusable: true, - ref: tabs.state.context.focusZoneRef, - onKeyDown: onKeyDown, - }; - - // Return the handler to finish render. - return (final: TabsProps, ...children: React.ReactNode[]) => { - if (!tabs.state) { - return null; - } - - const { label, ...mergedProps } = mergeProps(tabs.props, final); - - // Populate the tabsItemKeys array - if (children) { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - tabs.state.context.tabsItemKeys = React.Children.map(children, (child: React.ReactChild) => { - if (React.isValidElement(child)) { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - return child.props.itemKey; - } - }); - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - tabs.state.enabledKeys = React.Children.map(children, (child: React.ReactChild) => { - if (React.isValidElement(child)) { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - if (!child.props.disabled) { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - TODO, fix typing error - return child.props.itemKey; - } - } - }); - - /* Sets the default selected TabsItem if a TabsItem is hidden. - The default selected Tabsitem is the first enabled TabsItem. */ - if (!tabs.state.enabledKeys.includes(tabs.state.context.selectedKey)) { - tabs.state.context.selectedKey = tabs.state.enabledKeys[0] ?? null; - } - } - - return ( - - - {tabs?.state?.label && {label}} - {children} - - - {(context) => !tabs?.state?.headersOnly && {context.views.get(context.selectedKey)}} - - - - - ); - }; - }, -}); - -export default Tabs; diff --git a/packages/experimental/Tabs/src/TabsItem.styling.ts b/packages/experimental/Tabs/src/TabsItem.styling.ts deleted file mode 100644 index cd793bbb4..000000000 --- a/packages/experimental/Tabs/src/TabsItem.styling.ts +++ /dev/null @@ -1,73 +0,0 @@ -import type { Theme, UseStylingOptions } from '@fluentui-react-native/framework'; -import { buildProps } from '@fluentui-react-native/framework'; -import { borderStyles, fontStyles } from '@fluentui-react-native/tokens'; - -import { tabsItemName } from './TabsItem.types'; -import type { TabsItemSlotProps, TabsItemTokens, TabsItemProps } from './TabsItem.types'; -import { tabsItemStates, defaultTabsItemTokens } from './TabsItemTokens'; - -export const stylingSettings: UseStylingOptions = { - tokens: [defaultTabsItemTokens, tabsItemName], - states: tabsItemStates, - slotProps: { - root: buildProps( - (tokens: TabsItemTokens, theme: Theme) => ({ - style: { - display: 'flex', - alignItems: 'center', - flexDirection: 'column', - alignSelf: 'flex-start', - justifyContent: 'center', - ...borderStyles.from(tokens, theme), - }, - }), - [...borderStyles.keys], - ), - content: buildProps( - (tokens: TabsItemTokens, theme: Theme) => ({ - style: { - color: tokens.color, - ...fontStyles.from(tokens, theme), - }, - }), - ['color', ...fontStyles.keys], - ), - icon: buildProps( - (tokens: TabsItemTokens) => ({ - style: { - tintColor: tokens.iconColor, - }, - }), - ['iconColor'], - ), - stack: buildProps( - (tokens: TabsItemTokens) => ({ - style: { - display: 'flex', - marginHorizontal: 10, - alignItems: 'center', - flexDirection: 'row', - alignSelf: 'flex-start', - minHeight: 32, - minWidth: 32, - justifyContent: 'center', - opacity: tokens.tabsItemOpacity, - }, - }), - ['tabsItemOpacity'], - ), - indicator: buildProps( - (tokens: TabsItemTokens) => ({ - style: { - minHeight: 2, - borderRadius: 2, - marginBottom: 2, - alignSelf: 'stretch', - marginHorizontal: tokens.indicatorMarginHorizontal, - backgroundColor: tokens.indicatorColor, - }, - }), - ['indicatorColor', 'indicatorMarginHorizontal'], - ), - }, -}; diff --git a/packages/experimental/Tabs/src/TabsItem.tsx b/packages/experimental/Tabs/src/TabsItem.tsx deleted file mode 100644 index 308c6dd32..000000000 --- a/packages/experimental/Tabs/src/TabsItem.tsx +++ /dev/null @@ -1,64 +0,0 @@ -/** @jsxRuntime classic */ -/** @jsx withSlots */ -import * as React from 'react'; -import { Pressable, View } from 'react-native'; - -import type { UseSlots } from '@fluentui-react-native/framework'; -import { compose, mergeProps, withSlots } from '@fluentui-react-native/framework'; -import { Icon, createIconProps } from '@fluentui-react-native/icon'; -import { TextV1 as Text } from '@fluentui-react-native/text'; - -import { TabsContext } from './Tabs'; -import { stylingSettings } from './TabsItem.styling'; -import type { TabItemType, TabsItemProps } from './TabsItem.types'; -import { tabsItemName } from './TabsItem.types'; -import { useTabsItem } from './useTabsItem'; - -export const TabsItem = compose({ - displayName: tabsItemName, - ...stylingSettings, - slots: { - root: Pressable, - stack: View, - icon: Icon, - indicator: View, - content: Text, - }, - useRender: (userProps: TabsItemProps, useSlots: UseSlots) => { - const tabsItem = useTabsItem(userProps); - - const iconProps = createIconProps(userProps.icon); - const context = React.useContext(TabsContext); - - // Grab the styled slots. - const Slots = useSlots(userProps, (layer) => tabsItem.state[layer] || userProps[layer]); - // Return the handler to finish render. - return (final: TabsItemProps, ...children: React.ReactNode[]) => { - if (!tabsItem.state) { - return null; - } - - const { icon, itemKey, itemCount, headerText, ...mergedProps } = mergeProps(tabsItem.props, final); - - let containerText = headerText; - if (itemCount !== undefined) { - containerText += ` (${itemCount})`; - } - - const renderContent = !!headerText || itemCount !== undefined; - context?.views?.set(itemKey, children); - - return ( - - - {icon && } - {renderContent && {containerText}} - - - - ); - }; - }, -}); - -export default TabsItem; diff --git a/packages/experimental/Tabs/src/TabsItem.types.ts b/packages/experimental/Tabs/src/TabsItem.types.ts deleted file mode 100644 index 76069c7e9..000000000 --- a/packages/experimental/Tabs/src/TabsItem.types.ts +++ /dev/null @@ -1,162 +0,0 @@ -import type * as React from 'react'; -import type { ViewStyle, ColorValue } from 'react-native'; - -import type { IViewProps } from '@fluentui-react-native/adapters'; -import type { IconProps, IconSourcesType } from '@fluentui-react-native/icon'; -import type { IFocusable, PressableState, PressablePropsExtended } from '@fluentui-react-native/interactive-hooks'; -import type { TextProps } from '@fluentui-react-native/text'; -import type { FontTokens, IBorderTokens } from '@fluentui-react-native/tokens'; - -export const tabsItemName = 'TabsItem'; - -export interface TabsItemTokens extends FontTokens, IBorderTokens { - /** - * The indicator color. - */ - indicatorColor?: string; - - /** - * The opacity of the tabs item. - */ - tabsItemOpacity?: number; - - /** - * The indicator marginHorizontal value. - */ - indicatorMarginHorizontal?: number; - - /** - * The icon color. - */ - iconColor?: string; - - /** - * Source URL or name of the icon to show on the TabsItem. - */ - icon?: IconSourcesType; - - /** - * Text to show on the TabsItem. - */ - headerText?: string; - - /** - * The amount of padding between the border and the headerText. - */ - headerTextPadding?: number | string; - - /** - * The amount of padding between the border and the headerText when the TabsItem has focus. - */ - headerTextPaddingFocused?: number | string; - /** - * Background color for the button - */ - backgroundColor?: ColorValue; - - /** - * Foreground color for the text and/or icon of the button - */ - color?: ColorValue; - - /** - * The amount of padding between the border and the contents. - */ - contentPadding?: number | string; - - /** - * The amount of padding between the border and the contents when the Button has focus. - */ - contentPaddingFocused?: number | string; - - /** - * The icon color when hovering over the Button. - */ - iconColorHovered?: ColorValue; - - /** - * The icon color when the Button is being pressed. - */ - iconColorPressed?: ColorValue; - - /** - * The size of the icon. - */ - iconSize?: number | string; - - /** - * The weight of the lines used when drawing the icon. - */ - iconWeight?: number; - - width?: ViewStyle['width']; - minHeight?: ViewStyle['minHeight']; - minWidth?: ViewStyle['minWidth']; - - /** - * States that can be applied to a button - */ - hovered?: TabsItemTokens; - focused?: TabsItemTokens; - pressed?: TabsItemTokens; - disabled?: TabsItemTokens; - selected?: TabsItemTokens; -} - -export interface TabsItemProps extends Omit { - /** - * The text string for the option - */ - headerText?: string; - - /** - * The number for the TabsItem count - */ - itemCount?: number; - - /** - * A unique key-identifier for each option - */ - itemKey: string; - - /** - * Whether or not the tabs item is selectable - */ - disabled?: boolean; - - /** - * Source URL or name of the icon to show on the Button. - */ - icon?: IconSourcesType; - - /** - * A RefObject to access the IButton interface. Use this to access the public methods and properties of the component. - */ - componentRef?: React.RefObject; - - testID?: string; -} - -export interface TabsItemState extends PressableState { - selected?: boolean; -} - -export interface TabsItemInfo { - props: TabsItemProps & React.ComponentPropsWithRef; - state: TabsItemState; -} - -export interface TabsItemSlotProps { - root: React.PropsWithRef; - icon: IconProps; - stack: IViewProps; - indicator: IViewProps; - content: TextProps; -} - -export interface TabItemType { - props: TabsItemProps; - tokens: TabsItemTokens; - slotProps: TabsItemSlotProps; - state: TabsItemState; -} diff --git a/packages/experimental/Tabs/src/TabsItemTokens.macos.ts b/packages/experimental/Tabs/src/TabsItemTokens.macos.ts deleted file mode 100644 index 1e41f00ce..000000000 --- a/packages/experimental/Tabs/src/TabsItemTokens.macos.ts +++ /dev/null @@ -1,32 +0,0 @@ -import type { Theme } from '@fluentui-react-native/framework'; -import type { TokenSettings } from '@fluentui-react-native/use-styling'; - -import type { TabsItemTokens } from './TabsItem.types'; - -export const tabsItemStates: (keyof TabsItemTokens)[] = ['hovered', 'selected', 'focused', 'disabled']; - -export const defaultTabsItemTokens: TokenSettings = (t: Theme) => - ({ - color: t.colors.bodyText, - variant: 'bodyStandard', - indicatorColor: 'transparent', - borderColor: 'transparent', - indicatorMarginHorizontal: 10, - iconColor: t.colors.buttonIcon, - disabled: { - color: t.colors.buttonTextDisabled, - indicatorColor: 'transparent', - fontWeight: 'normal', - }, - hovered: { - fontWeight: 'bold', - selected: { - indicatorMarginHorizontal: 0, - }, - }, - selected: { - icon: t.colors.buttonFocusedIcon, - indicatorColor: t.colors.accentButtonBackground, - fontWeight: 'bold', - }, - } as TabsItemTokens); diff --git a/packages/experimental/Tabs/src/TabsItemTokens.ts b/packages/experimental/Tabs/src/TabsItemTokens.ts deleted file mode 100644 index ce0a3e164..000000000 --- a/packages/experimental/Tabs/src/TabsItemTokens.ts +++ /dev/null @@ -1,44 +0,0 @@ -import type { Theme } from '@fluentui-react-native/framework'; -import type { TokenSettings } from '@fluentui-react-native/use-styling'; - -import type { TabsItemTokens } from '.'; - -export const tabsItemStates: (keyof TabsItemTokens)[] = ['hovered', 'selected', 'focused', 'disabled', 'pressed']; - -export const defaultTabsItemTokens: TokenSettings = (t: Theme) => - ({ - color: t.colors.neutralStrokeAccessible, - borderColor: 'transparent', - indicatorColor: 'transparent', - variant: 'bodyStandard', - borderWidth: 2, - borderRadius: 4, - indicatorMarginHorizontal: 10, - disabled: { - color: t.colors.neutralForegroundDisabled, - borderColor: 'transparent', - indicatorColor: 'transparent', - }, - hovered: { - color: t.colors.neutralForeground1, - indicatorColor: t.colors.neutralStroke1, - selected: { - indicatorMarginHorizontal: 0, - }, - }, - pressed: { - color: t.colors.neutralForeground2Pressed, - indicatorColor: t.colors.brandStroke1, - }, - focused: { - color: t.colors.neutralForeground1, - borderColor: t.colors.neutralForeground1, - icon: t.colors.buttonFocusedIcon, - }, - selected: { - color: t.colors.neutralForeground1, - icon: t.colors.buttonFocusedIcon, - indicatorColor: t.colors.brandStroke1, - variant: 'bodySemibold', - }, - } as TabsItemTokens); diff --git a/packages/experimental/Tabs/src/TabsItemTokens.windows.ts b/packages/experimental/Tabs/src/TabsItemTokens.windows.ts deleted file mode 100644 index f17e12a2b..000000000 --- a/packages/experimental/Tabs/src/TabsItemTokens.windows.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Theme } from '@fluentui-react-native/framework'; -import type { TokenSettings } from '@fluentui-react-native/use-styling'; - -import type { TabsItemTokens } from '.'; - -export const tabsItemStates: (keyof TabsItemTokens)[] = ['hovered', 'selected', 'disabled']; - -export const defaultTabsItemTokens: TokenSettings = (t: Theme) => - ({ - color: t.colors.buttonText, - borderColor: 'transparent', - indicatorColor: 'transparent', - variant: 'heroStandard', - fontSize: 20, - borderWidth: 2, - borderRadius: 4, - indicatorMarginHorizontal: 10, - tabsItemOpacity: 0.6, - disabled: { - tabsItemOpacity: 0.2, - }, - hovered: { - tabsItemOpacity: 0.8, - }, - selected: { - indicatorColor: t.colors.brandStroke1, - tabsItemOpacity: 1, - }, - } as TabsItemTokens); diff --git a/packages/experimental/Tabs/src/TabsMargins.macos.ts b/packages/experimental/Tabs/src/TabsMargins.macos.ts deleted file mode 100644 index f20dc8384..000000000 --- a/packages/experimental/Tabs/src/TabsMargins.macos.ts +++ /dev/null @@ -1,15 +0,0 @@ -export const getRootMargins = () => { - return { - marginLeft: 4, - }; -}; - -export const getLabelMargins = () => { - return {}; -}; - -export const getStackMargins = () => { - return { - marginTop: 6, - }; -}; diff --git a/packages/experimental/Tabs/src/TabsMargins.ts b/packages/experimental/Tabs/src/TabsMargins.ts deleted file mode 100644 index 59998b697..000000000 --- a/packages/experimental/Tabs/src/TabsMargins.ts +++ /dev/null @@ -1,11 +0,0 @@ -export const getRootMargins = () => { - return {}; -}; - -export const getLabelMargins = () => { - return {}; -}; - -export const getStackMargins = () => { - return {}; -}; diff --git a/packages/experimental/Tabs/src/TabsMargins.windows.ts b/packages/experimental/Tabs/src/TabsMargins.windows.ts deleted file mode 100644 index 449904c1c..000000000 --- a/packages/experimental/Tabs/src/TabsMargins.windows.ts +++ /dev/null @@ -1,15 +0,0 @@ -export const getRootMargins = () => { - return {}; -}; - -export const getLabelMargins = () => { - return { - marginStart: 10, - }; -}; - -export const getStackMargins = () => { - return { - marginTop: 6, - }; -}; diff --git a/packages/experimental/Tabs/src/TabsTokens.macos.ts b/packages/experimental/Tabs/src/TabsTokens.macos.ts deleted file mode 100644 index adb89abcd..000000000 --- a/packages/experimental/Tabs/src/TabsTokens.macos.ts +++ /dev/null @@ -1,15 +0,0 @@ -import type { Theme } from '@fluentui-react-native/framework'; -import type { TokenSettings } from '@fluentui-react-native/use-styling'; - -import type { TabsTokens } from '.'; - -export const defaultTabsTokens: TokenSettings = (t: Theme) => - ({ - color: t.colors.menuItemText, - variant: 'bodySemibold', - fontWeight: 'bold', - fontSize: 14, - backgroundColor: t.colors.transparent, - borderColor: t.colors.buttonBorder, - iconColor: t.colors.iconColor, - } as TabsTokens); diff --git a/packages/experimental/Tabs/src/TabsTokens.ts b/packages/experimental/Tabs/src/TabsTokens.ts deleted file mode 100644 index 56e6ac72f..000000000 --- a/packages/experimental/Tabs/src/TabsTokens.ts +++ /dev/null @@ -1,13 +0,0 @@ -import type { Theme } from '@fluentui-react-native/framework'; -import type { TokenSettings } from '@fluentui-react-native/use-styling'; - -import type { TabsTokens } from '.'; - -export const defaultTabsTokens: TokenSettings = (t: Theme) => - ({ - backgroundColor: t.colors.transparent, - color: t.colors.buttonText, - variant: 'subheaderSemibold', - borderColor: t.colors.buttonBorder, - iconColor: t.colors.iconColor, - } as TabsTokens); diff --git a/packages/experimental/Tabs/src/TabsTokens.windows.ts b/packages/experimental/Tabs/src/TabsTokens.windows.ts deleted file mode 100644 index adb89abcd..000000000 --- a/packages/experimental/Tabs/src/TabsTokens.windows.ts +++ /dev/null @@ -1,15 +0,0 @@ -import type { Theme } from '@fluentui-react-native/framework'; -import type { TokenSettings } from '@fluentui-react-native/use-styling'; - -import type { TabsTokens } from '.'; - -export const defaultTabsTokens: TokenSettings = (t: Theme) => - ({ - color: t.colors.menuItemText, - variant: 'bodySemibold', - fontWeight: 'bold', - fontSize: 14, - backgroundColor: t.colors.transparent, - borderColor: t.colors.buttonBorder, - iconColor: t.colors.iconColor, - } as TabsTokens); diff --git a/packages/experimental/Tabs/src/__tests__/Tabs.test.tsx b/packages/experimental/Tabs/src/__tests__/Tabs.test.tsx deleted file mode 100644 index c6f8929cd..000000000 --- a/packages/experimental/Tabs/src/__tests__/Tabs.test.tsx +++ /dev/null @@ -1,83 +0,0 @@ -import * as React from 'react'; - -import * as renderer from 'react-test-renderer'; - -import { Tabs, TabsItem } from '..'; - -it('Tabs default props', () => { - const tree = renderer - .create( - - - - - , - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('Tabs disabled', () => { - const tree = renderer - .create( - - - - - , - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('Tabs header text and count', () => { - const tree = renderer - .create( - - - - - , - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('Tabs headers only', () => { - const tree = renderer - .create( - - - - - , - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('Tabs FocusZone props', () => { - const tree = renderer - .create( - - - - - , - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('Tabs props', () => { - const tree = renderer - .create( - - - - - , - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/experimental/Tabs/src/__tests__/__snapshots__/Tabs.test.tsx.snap b/packages/experimental/Tabs/src/__tests__/__snapshots__/Tabs.test.tsx.snap deleted file mode 100644 index afb369853..000000000 --- a/packages/experimental/Tabs/src/__tests__/__snapshots__/Tabs.test.tsx.snap +++ /dev/null @@ -1,2249 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Tabs FocusZone props 1`] = ` - - - - - - - - - - - - - - - - - - - - - -`; - -exports[`Tabs default props 1`] = ` - - - - - - - - - - - - - - - - - - - - - -`; - -exports[`Tabs disabled 1`] = ` - - - - - - - - - - - - - - - - - - - - - -`; - -exports[`Tabs header text and count 1`] = ` - - - - - - - TabsItem (1) - - - - - - - - TabsItem (0) - - - - - - - - TabsItem (100) - - - - - - - - - - -`; - -exports[`Tabs headers only 1`] = ` - - - - - - - - - - - - - - - - - - - -`; - -exports[`Tabs props 1`] = ` - - - Tabs - - - - - - - TabsItem (1) - - - - - - - - TabsItem (0) - - - - - - - - TabsItem (100) - - - - - - - - -`; diff --git a/packages/experimental/Tabs/src/index.ts b/packages/experimental/Tabs/src/index.ts deleted file mode 100644 index aa755796f..000000000 --- a/packages/experimental/Tabs/src/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -export { tabsItemName } from './TabsItem.types'; -export type { TabItemType, TabsItemInfo, TabsItemProps, TabsItemSlotProps, TabsItemState, TabsItemTokens } from './TabsItem.types'; -export { TabsItem } from './TabsItem'; -export { tabsName } from './Tabs.types'; -export type { TabsContextData, TabsInfo, TabsProps, TabsSlotProps, TabsState, TabsTokens, TabsType } from './Tabs.types'; -export { Tabs, TabsContext } from './Tabs'; diff --git a/packages/experimental/Tabs/src/useTabs.ts b/packages/experimental/Tabs/src/useTabs.ts deleted file mode 100644 index 798f815d1..000000000 --- a/packages/experimental/Tabs/src/useTabs.ts +++ /dev/null @@ -1,69 +0,0 @@ -import * as React from 'react'; -import type { View } from 'react-native'; - -import { useSelectedKey } from '@fluentui-react-native/interactive-hooks'; - -import type { TabsProps, TabsState, TabsInfo } from './Tabs.types'; - -/** - * Re-usable hook for Tabs. - * This hook configures tabs props and state for Tabs. - * - * @param props user props sent to Tabs - * @returns configured props and state for Tabs - */ -export const useTabs = (props: TabsProps): TabsInfo => { - const defaultComponentRef = React.useRef(null); - const { accessible, componentRef = defaultComponentRef, selectedKey, getTabId, onTabsClick, defaultSelectedKey } = props; - - const data = useSelectedKey(selectedKey || defaultSelectedKey || null, onTabsClick); - - // selectedTabsItemRef should be set to default tabbale element. - const [selectedTabsItemRef, setSelectedTabsItemRef] = React.useState(React.useRef(null)); - - const onSelectTabsItemRef = React.useCallback( - (ref: React.RefObject) => { - setSelectedTabsItemRef(ref); - }, - [setSelectedTabsItemRef], - ); - - const findTabId = React.useCallback( - (key: string, index: number) => { - if (getTabId) { - return getTabId(key, index); - } - return `${key}-Tab${index}`; - }, - [getTabId], - ); - - // Stores views to be displayed. - const map = new Map(); - - const state: TabsState = { - context: { - selectedKey: selectedKey ?? data.selectedKey, - onTabsClick: data.onKeySelect, - getTabId: findTabId, - updateSelectedTabsItemRef: onSelectTabsItemRef, - views: map, - }, - headersOnly: props.headersOnly ?? false, - label: !!props.label, - }; - - return { - props: { - ...props, - accessible: accessible ?? true, - accessibilityRole: 'tablist', - componentRef: componentRef, - defaultTabbableElement: selectedTabsItemRef, - isCircularNavigation: props.isCircularNavigation ?? false, - }, - state: { - ...state, - }, - }; -}; diff --git a/packages/experimental/Tabs/src/useTabs.windows.ts b/packages/experimental/Tabs/src/useTabs.windows.ts deleted file mode 100644 index 3a6e2fcb4..000000000 --- a/packages/experimental/Tabs/src/useTabs.windows.ts +++ /dev/null @@ -1,68 +0,0 @@ -import * as React from 'react'; - -import { useSelectedKey } from '@fluentui-react-native/interactive-hooks'; - -import type { TabsProps, TabsState, TabsInfo } from './Tabs.types'; - -/** - * Re-usable hook for Tabs. - * This hook configures tabs props and state for Tabs. - * - * @param props user props sent to Tabs - * @returns configured props and state for Tabs - */ -export const useTabs = (props: TabsProps): TabsInfo => { - const defaultComponentRef = React.useRef(null); - const focusZoneRef = React.useRef(null); - const { - accessible, - componentRef = defaultComponentRef, - selectedKey, - getTabId, - onTabsClick, - defaultSelectedKey, - isCircularNavigation, - headersOnly, - label, - } = props; - - const data = useSelectedKey(selectedKey || defaultSelectedKey || null, onTabsClick); - - const findTabId = React.useCallback( - (key: string, index: number) => { - if (getTabId) { - return getTabId(key, index); - } - return `${key}-Tab${index}`; - }, - [getTabId], - ); - - // Stores views to be displayed. - const map = new Map(); - - const state: TabsState = { - context: { - selectedKey: selectedKey ?? data.selectedKey, - onTabsClick: data.onKeySelect, - getTabId: findTabId, - views: map, - focusZoneRef: focusZoneRef, - }, - headersOnly: headersOnly ?? false, - label: !!label, - }; - - return { - props: { - ...props, - accessible: accessible ?? true, - accessibilityRole: 'tablist', - componentRef: componentRef, - isCircularNavigation: isCircularNavigation ?? false, - }, - state: { - ...state, - }, - }; -}; diff --git a/packages/experimental/Tabs/src/useTabsItem.ts b/packages/experimental/Tabs/src/useTabsItem.ts deleted file mode 100644 index 655e303dd..000000000 --- a/packages/experimental/Tabs/src/useTabsItem.ts +++ /dev/null @@ -1,93 +0,0 @@ -import * as React from 'react'; - -import type { IFocusable } from '@fluentui-react-native/interactive-hooks'; -import { usePressableState, useKeyProps, useOnPressWithFocus, useViewCommandFocus } from '@fluentui-react-native/interactive-hooks'; - -import { TabsContext } from './Tabs'; -import type { TabsItemProps, TabsItemInfo } from './TabsItem.types'; - -/** - * Re-usable hook for TabsItem. - * This hook configures tabs item props and state for TabsItem. - * - * @param props user props sent to TabsItem - * @returns configured props and state for TabsItem - */ -export const useTabsItem = (props: TabsItemProps): TabsItemInfo => { - const defaultComponentRef = React.useRef(null); - const { - accessibilityLabel, - accessible, - headerText, - componentRef = defaultComponentRef, - itemKey, - disabled, - itemCount, - icon, - ...rest - } = props; - // Grabs the context information from Tabs (currently selected TabsItem and client's onTabsClick callback). - const info = React.useContext(TabsContext); - - const changeSelection = React.useCallback(() => { - if (itemKey != info.selectedKey) { - info.onTabsClick && info.onTabsClick(itemKey); - info.getTabId && info.getTabId(itemKey, info.tabsItemKeys.findIndex((x) => x == itemKey) + 1); - info.updateSelectedTabsItemRef && componentRef && info.updateSelectedTabsItemRef(componentRef); - } - }, [componentRef, info, itemKey]); - - const changeSelectionWithFocus = useOnPressWithFocus(componentRef, changeSelection); - - const pressable = usePressableState({ - ...rest, - onPress: changeSelectionWithFocus, - onFocus: changeSelection, - }); - - const onKeyUpProps = useKeyProps(changeSelection, ' ', 'Enter'); - - // Used when creating accessibility properties in mergeSettings below. - const onAccessibilityAction = React.useCallback( - (event: { nativeEvent: { actionName: any } }) => { - switch (event.nativeEvent.actionName) { - case 'Select': - changeSelection(); - break; - } - }, - [changeSelection], - ); - - /* We use the componentRef of the currently selected tabsItem to maintain the default tabbable - element in Tabs. Since the componentRef isn't generated until after initial render, - we must update it once here. */ - React.useEffect(() => { - if (itemKey == info.selectedKey) { - info.updateSelectedTabsItemRef && componentRef && info.updateSelectedTabsItemRef(componentRef); - } - }, [componentRef, info, itemKey]); - - return { - props: { - ...pressable.props, - accessible: accessible ?? true, - accessibilityRole: 'tab', - accessibilityLabel: accessibilityLabel || headerText, - focusable: !disabled ?? true, - headerText: headerText ?? '', - accessibilityState: { disabled: disabled, selected: info.selectedKey === itemKey }, - accessibilityActions: [{ name: 'Select' }], - onAccessibilityAction: onAccessibilityAction, - itemCount: itemCount, - ref: useViewCommandFocus(componentRef), - itemKey: itemKey, - icon: icon, - ...onKeyUpProps, - }, - state: { - ...pressable.state, - selected: itemKey === info.selectedKey, - }, - }; -}; diff --git a/packages/experimental/Tabs/src/useTabsItem.windows.ts b/packages/experimental/Tabs/src/useTabsItem.windows.ts deleted file mode 100644 index 2653ab587..000000000 --- a/packages/experimental/Tabs/src/useTabsItem.windows.ts +++ /dev/null @@ -1,79 +0,0 @@ -import * as React from 'react'; - -import { usePressableState, useViewCommandFocus } from '@fluentui-react-native/interactive-hooks'; - -import { TabsContext } from './Tabs'; -import type { TabsItemProps, TabsItemInfo, TabsItemState } from './TabsItem.types'; - -/** - * Re-usable hook for TabsItem. - * This hook configures tabs item props and state for TabsItem. - * - * @param props user props sent to TabsItem - * @returns configured props and state for TabsItem - */ -export const useTabsItem = (props: TabsItemProps): TabsItemInfo => { - const defaultComponentRef = React.useRef(null); - const { accessibilityLabel, accessible, headerText, componentRef = defaultComponentRef, itemKey, disabled, itemCount, ...rest } = props; - // Grabs the context information from Tabs (currently selected TabsItem and client's onTabsClick callback). - const info = React.useContext(TabsContext); - - const changeSelection = React.useCallback(() => { - info.focusZoneRef?.current?.focus(); // GH #964, FocusZone not implemented on windows. - info.onTabsClick && info.onTabsClick(itemKey); - info.getTabId && info.getTabId(itemKey, info.tabsItemKeys.findIndex((x) => x == itemKey) + 1); - info.updateSelectedTabsItemRef && componentRef && info.updateSelectedTabsItemRef(componentRef); - }, [componentRef, info, itemKey]); - - const pressable = usePressableState({ - ...rest, - onPress: changeSelection, - }); - - const state: TabsItemState = { - ...pressable.state, - selected: info.selectedKey === itemKey, - }; - - // Used when creating accessibility properties in mergeSettings below. - const onAccessibilityAction = React.useCallback( - (event: { nativeEvent: { actionName: any } }) => { - switch (event.nativeEvent.actionName) { - case 'Select': - changeSelection(); - break; - } - }, - [info, itemKey], - ); - - /* We use the componentRef of the currently selected tabsItem to maintain the default tabbable - element in Tabs. Since the componentRef isn't generated until after initial render, - we must update it once here. */ - React.useEffect(() => { - if (itemKey == info.selectedKey) { - info.updateSelectedTabsItemRef && componentRef && info.updateSelectedTabsItemRef(componentRef); - } - }, []); - - return { - props: { - ...rest, - ...pressable.props, - accessible: accessible ?? true, - ref: useViewCommandFocus(componentRef), - accessibilityRole: 'tab', - accessibilityLabel: accessibilityLabel || headerText, - focusable: false, - headerText: headerText ?? '', - accessibilityState: { disabled: disabled, selected: info.selectedKey === itemKey }, - accessibilityActions: [{ name: 'Select' }], - onAccessibilityAction: onAccessibilityAction, - itemCount: itemCount, - itemKey: itemKey, - }, - state: { - ...state, - }, - }; -}; diff --git a/packages/experimental/Tabs/tsconfig.json b/packages/experimental/Tabs/tsconfig.json deleted file mode 100644 index 65d97d1a9..000000000 --- a/packages/experimental/Tabs/tsconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": "@fluentui-react-native/scripts/tsconfig.json", - "compilerOptions": { - "importHelpers": true, - "outDir": "lib", - "types": ["node", "jest"] - }, - "include": ["src"] -} diff --git a/packages/libraries/core/package.json b/packages/libraries/core/package.json index 0270cee9b..ceabb02ec 100644 --- a/packages/libraries/core/package.json +++ b/packages/libraries/core/package.json @@ -42,7 +42,7 @@ "@fluentui-react-native/pressable": "0.11.6", "@fluentui-react-native/radio-group": "0.20.8", "@fluentui-react-native/separator": "0.17.6", - "@fluentui-react-native/tabs": "0.14.7", + "@fluentui-react-native/tablist": "0.5.13", "@fluentui-react-native/text": "0.22.6" }, "devDependencies": { diff --git a/packages/libraries/core/src/index.ts b/packages/libraries/core/src/index.ts index 3a0a73b78..cf3968d87 100644 --- a/packages/libraries/core/src/index.ts +++ b/packages/libraries/core/src/index.ts @@ -322,21 +322,18 @@ export type { MenuButtonType, } from '@fluentui-react-native/menu-button'; -export { Tabs, TabsContext, TabsItem, tabsItemName, tabsName } from '@fluentui-react-native/tabs'; +export { TabList, tabListName, Tab, tabName } from '@fluentui-react-native/tablist'; export type { - TabsContextData, - TabsInfo, - TabsItemInfo, - TabsItemProps, - TabsItemRenderData, - TabsItemSlotProps, - TabsItemState, - TabsItemTokens, - TabsItemType, - TabsProps, - TabsRenderData, - TabsSlotProps, - TabsState, - TabsTokens, - TabsType, -} from '@fluentui-react-native/tabs'; + TabListInfo, + TabListProps, + TabListSlotProps, + TabListState, + TabListTokens, + TabListType, + TabInfo, + TabProps, + TabSlotProps, + TabState, + TabTokens, + TabType, +} from '@fluentui-react-native/tablist'; diff --git a/yarn.lock b/yarn.lock index 5311edbb6..047e4406a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2642,7 +2642,6 @@ __metadata: "@fluentui-react-native/experimental-shadow": "*" "@fluentui-react-native/experimental-shimmer": "*" "@fluentui-react-native/experimental-stack": "*" - "@fluentui-react-native/experimental-tabs": "*" "@fluentui-react-native/experimental-text": "*" "@fluentui-react-native/focus-trap-zone": "*" "@fluentui-react-native/focus-zone": "*" @@ -2666,7 +2665,6 @@ __metadata: "@fluentui-react-native/stack": "*" "@fluentui-react-native/styling-utils": "*" "@fluentui-react-native/switch": "*" - "@fluentui-react-native/tabs": "*" "@fluentui-react-native/tester": "*" "@fluentui-react-native/tester-win32": "*" "@fluentui-react-native/text": "*" @@ -3084,32 +3082,6 @@ __metadata: languageName: unknown linkType: soft -"@fluentui-react-native/experimental-tabs@*, @fluentui-react-native/experimental-tabs@0.10.7, @fluentui-react-native/experimental-tabs@workspace:packages/experimental/Tabs": - version: 0.0.0-use.local - resolution: "@fluentui-react-native/experimental-tabs@workspace:packages/experimental/Tabs" - dependencies: - "@fluentui-react-native/adapters": 0.12.0 - "@fluentui-react-native/eslint-config-rules": ^0.1.1 - "@fluentui-react-native/focus-zone": ">=0.16.6 <1.0.0" - "@fluentui-react-native/framework": 0.13.5 - "@fluentui-react-native/icon": 0.20.7 - "@fluentui-react-native/interactive-hooks": ">=0.25.6 <1.0.0" - "@fluentui-react-native/scripts": ^0.1.1 - "@fluentui-react-native/test-tools": ">=0.1.1 <1.0.0" - "@fluentui-react-native/text": ">=0.22.6 <1.0.0" - "@fluentui-react-native/tokens": ">=0.22.5 <1.0.0" - "@fluentui-react-native/use-styling": ">=0.12.0 <1.0.0" - "@office-iss/react-native-win32": ^0.72.0 - "@react-native/metro-config": ^0.72.0 - react: 18.2.0 - react-native: ^0.72.0 - tslib: ^2.3.1 - peerDependencies: - react: 18.2.0 - react-native: ^0.72.0 - languageName: unknown - linkType: soft - "@fluentui-react-native/experimental-text@*, @fluentui-react-native/experimental-text@>=0.14.6 <1.0.0, @fluentui-react-native/experimental-text@workspace:packages/experimental/Text": version: 0.0.0-use.local resolution: "@fluentui-react-native/experimental-text@workspace:packages/experimental/Text" @@ -3749,32 +3721,6 @@ __metadata: languageName: unknown linkType: soft -"@fluentui-react-native/tabs@*, @fluentui-react-native/tabs@0.14.7, @fluentui-react-native/tabs@workspace:packages/components/Tabs": - version: 0.0.0-use.local - resolution: "@fluentui-react-native/tabs@workspace:packages/components/Tabs" - dependencies: - "@fluentui-react-native/adapters": ">=0.12.0 <1.0.0" - "@fluentui-react-native/eslint-config-rules": ^0.1.1 - "@fluentui-react-native/focus-zone": ">=0.16.6 <1.0.0" - "@fluentui-react-native/icon": 0.20.7 - "@fluentui-react-native/interactive-hooks": ">=0.25.6 <1.0.0" - "@fluentui-react-native/scripts": ^0.1.1 - "@fluentui-react-native/test-tools": ">=0.1.1 <1.0.0" - "@fluentui-react-native/text": ">=0.22.6 <1.0.0" - "@fluentui-react-native/tokens": ">=0.22.5 <1.0.0" - "@office-iss/react-native-win32": ^0.72.0 - "@react-native/metro-config": ^0.72.0 - "@uifabricshared/foundation-composable": ">=0.12.3 <1.0.0" - "@uifabricshared/foundation-compose": ^1.14.19 - "@uifabricshared/foundation-settings": ">=0.14.0 <1.0.0" - react: 18.2.0 - react-native: ^0.72.0 - peerDependencies: - react: 18.2.0 - react-native: ^0.72.0 - languageName: unknown - linkType: soft - "@fluentui-react-native/test-tools@>=0.1.1 <1.0.0, @fluentui-react-native/test-tools@workspace:packages/utils/test-tools": version: 0.0.0-use.local resolution: "@fluentui-react-native/test-tools@workspace:packages/utils/test-tools" @@ -3844,7 +3790,6 @@ __metadata: "@fluentui-react-native/experimental-native-date-picker": ">=0.10.0 <1.0.0" "@fluentui-react-native/experimental-shadow": 0.5.6 "@fluentui-react-native/experimental-shimmer": 0.12.8 - "@fluentui-react-native/experimental-tabs": 0.10.7 "@fluentui-react-native/experimental-text": ">=0.14.6 <1.0.0" "@fluentui-react-native/focus-zone": ^0.16.6 "@fluentui-react-native/framework": ">=0.13.5 <1.0.0" @@ -4187,7 +4132,7 @@ __metadata: "@fluentui-react-native/radio-group": 0.20.8 "@fluentui-react-native/scripts": ^0.1.1 "@fluentui-react-native/separator": 0.17.6 - "@fluentui-react-native/tabs": 0.14.7 + "@fluentui-react-native/tablist": 0.5.13 "@fluentui-react-native/text": 0.22.6 "@react-native/metro-config": ^0.72.0 react: 18.2.0