From 7aa0a40e6dc643ff52bcd2c646bb7351a46db057 Mon Sep 17 00:00:00 2001 From: Esteban Munoz Date: Tue, 9 Apr 2024 07:57:53 -0700 Subject: [PATCH 1/5] chore: Remove react-infobutton in favor of keeping only react-infolabel. --- .github/CODEOWNERS | 1 - .../react-infobutton/.babelrc.json | 4 - .../react-infobutton/.eslintrc.json | 4 - .../react-infobutton/.storybook/main.js | 14 - .../react-infobutton/.storybook/preview.js | 7 - .../react-infobutton/.storybook/tsconfig.json | 10 - .../react-components/react-infobutton/.swcrc | 30 - .../react-infobutton/CHANGELOG.json | 3492 ----------------- .../react-infobutton/CHANGELOG.md | 1208 ------ .../react-components/react-infobutton/LICENSE | 15 - .../react-infobutton/README.md | 8 - .../bundle-size/InfoButton.fixture.js | 7 - .../bundle-size/InfoLabel.fixture.js | 7 - .../config/api-extractor.json | 4 - .../react-infobutton/config/tests.js | 1 - .../react-infobutton/cypress.config.ts | 3 - .../react-infobutton/docs/Spec.md | 146 - .../react-infobutton/etc/images/anatomy.png | Bin 39342 -> 0 bytes .../etc/react-infobutton.api.md | 82 - .../react-infobutton/jest.config.js | 21 - .../react-infobutton/just.config.ts | 5 - .../react-infobutton/package.json | 76 - .../react-infobutton/project.json | 8 - .../react-infobutton/src/InfoButton.ts | 1 - .../react-infobutton/src/InfoLabel.ts | 1 - .../InfoButton/DefaultInfoButtonIcons.tsx | 13 - .../components/InfoButton/InfoButton.test.tsx | 48 - .../src/components/InfoButton/InfoButton.tsx | 21 - .../components/InfoButton/InfoButton.types.ts | 48 - .../src/components/InfoButton/index.ts | 5 - .../InfoButton/renderInfoButton.tsx | 25 - .../components/InfoButton/useInfoButton.tsx | 113 - .../InfoButton/useInfoButtonStyles.styles.ts | 134 - .../src/components/InfoLabel/InfoLabel.cy.tsx | 83 - .../components/InfoLabel/InfoLabel.test.tsx | 65 - .../src/components/InfoLabel/InfoLabel.tsx | 22 - .../components/InfoLabel/InfoLabel.types.ts | 49 - .../src/components/InfoLabel/index.ts | 5 - .../components/InfoLabel/renderInfoLabel.tsx | 22 - .../src/components/InfoLabel/useInfoLabel.ts | 98 - .../InfoLabel/useInfoLabelStyles.styles.ts | 62 - .../react-infobutton/src/index.ts | 17 - .../src/testing/isConformant.ts | 15 - .../react-infobutton/tsconfig.cy.json | 9 - .../react-infobutton/tsconfig.json | 28 - .../react-infobutton/tsconfig.lib.json | 22 - .../react-infobutton/tsconfig.spec.json | 17 - .../react-infolabel/docs/Spec.md | 2 +- tsconfig.base.all.json | 1 - tsconfig.base.json | 1 - yarn.lock | 15 + 51 files changed, 16 insertions(+), 6079 deletions(-) delete mode 100644 packages/react-components/react-infobutton/.babelrc.json delete mode 100644 packages/react-components/react-infobutton/.eslintrc.json delete mode 100644 packages/react-components/react-infobutton/.storybook/main.js delete mode 100644 packages/react-components/react-infobutton/.storybook/preview.js delete mode 100644 packages/react-components/react-infobutton/.storybook/tsconfig.json delete mode 100644 packages/react-components/react-infobutton/.swcrc delete mode 100644 packages/react-components/react-infobutton/CHANGELOG.json delete mode 100644 packages/react-components/react-infobutton/CHANGELOG.md delete mode 100644 packages/react-components/react-infobutton/LICENSE delete mode 100644 packages/react-components/react-infobutton/README.md delete mode 100644 packages/react-components/react-infobutton/bundle-size/InfoButton.fixture.js delete mode 100644 packages/react-components/react-infobutton/bundle-size/InfoLabel.fixture.js delete mode 100644 packages/react-components/react-infobutton/config/api-extractor.json delete mode 100644 packages/react-components/react-infobutton/config/tests.js delete mode 100644 packages/react-components/react-infobutton/cypress.config.ts delete mode 100644 packages/react-components/react-infobutton/docs/Spec.md delete mode 100644 packages/react-components/react-infobutton/etc/images/anatomy.png delete mode 100644 packages/react-components/react-infobutton/etc/react-infobutton.api.md delete mode 100644 packages/react-components/react-infobutton/jest.config.js delete mode 100644 packages/react-components/react-infobutton/just.config.ts delete mode 100644 packages/react-components/react-infobutton/package.json delete mode 100644 packages/react-components/react-infobutton/project.json delete mode 100644 packages/react-components/react-infobutton/src/InfoButton.ts delete mode 100644 packages/react-components/react-infobutton/src/InfoLabel.ts delete mode 100644 packages/react-components/react-infobutton/src/components/InfoButton/DefaultInfoButtonIcons.tsx delete mode 100644 packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.test.tsx delete mode 100644 packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.tsx delete mode 100644 packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.types.ts delete mode 100644 packages/react-components/react-infobutton/src/components/InfoButton/index.ts delete mode 100644 packages/react-components/react-infobutton/src/components/InfoButton/renderInfoButton.tsx delete mode 100644 packages/react-components/react-infobutton/src/components/InfoButton/useInfoButton.tsx delete mode 100644 packages/react-components/react-infobutton/src/components/InfoButton/useInfoButtonStyles.styles.ts delete mode 100644 packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.cy.tsx delete mode 100644 packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.test.tsx delete mode 100644 packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.tsx delete mode 100644 packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.types.ts delete mode 100644 packages/react-components/react-infobutton/src/components/InfoLabel/index.ts delete mode 100644 packages/react-components/react-infobutton/src/components/InfoLabel/renderInfoLabel.tsx delete mode 100644 packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabel.ts delete mode 100644 packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabelStyles.styles.ts delete mode 100644 packages/react-components/react-infobutton/src/index.ts delete mode 100644 packages/react-components/react-infobutton/src/testing/isConformant.ts delete mode 100644 packages/react-components/react-infobutton/tsconfig.cy.json delete mode 100644 packages/react-components/react-infobutton/tsconfig.json delete mode 100644 packages/react-components/react-infobutton/tsconfig.lib.json delete mode 100644 packages/react-components/react-infobutton/tsconfig.spec.json diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index ea4d09bd01cbf..ddbdcf0761395 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -222,7 +222,6 @@ packages/react-components/babel-preset-global-context @microsoft/teams-prg packages/react-components/react-table @microsoft/teams-prg packages/react-components/react-progress @microsoft/cxe-red @tomi-msft packages/react-components/react-persona @microsoft/cxe-red @sopranopillow -packages/react-components/react-infobutton @microsoft/cxe-red @sopranopillow packages/react-components/react-tree @microsoft/teams-prg packages/react-components/react-virtualizer @microsoft/xc-uxe @Mitch-At-Work packages/react-components/react-skeleton @microsoft/cxe-red diff --git a/packages/react-components/react-infobutton/.babelrc.json b/packages/react-components/react-infobutton/.babelrc.json deleted file mode 100644 index 45fb71ca16d2c..0000000000000 --- a/packages/react-components/react-infobutton/.babelrc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "extends": "../../../.babelrc-v9.json", - "plugins": ["annotate-pure-calls", "@babel/transform-react-pure-annotations"] -} diff --git a/packages/react-components/react-infobutton/.eslintrc.json b/packages/react-components/react-infobutton/.eslintrc.json deleted file mode 100644 index ceea884c70dcc..0000000000000 --- a/packages/react-components/react-infobutton/.eslintrc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "extends": ["plugin:@fluentui/eslint-plugin/react"], - "root": true -} diff --git a/packages/react-components/react-infobutton/.storybook/main.js b/packages/react-components/react-infobutton/.storybook/main.js deleted file mode 100644 index 26536b61b387f..0000000000000 --- a/packages/react-components/react-infobutton/.storybook/main.js +++ /dev/null @@ -1,14 +0,0 @@ -const rootMain = require('../../../../.storybook/main'); - -module.exports = /** @type {Omit} */ ({ - ...rootMain, - stories: [...rootMain.stories, '../stories/**/*.stories.mdx', '../stories/**/index.stories.@(ts|tsx)'], - addons: [...rootMain.addons], - webpackFinal: (config, options) => { - const localConfig = { ...rootMain.webpackFinal(config, options) }; - - // add your own webpack tweaks if needed - - return localConfig; - }, -}); diff --git a/packages/react-components/react-infobutton/.storybook/preview.js b/packages/react-components/react-infobutton/.storybook/preview.js deleted file mode 100644 index 1939500a3d18c..0000000000000 --- a/packages/react-components/react-infobutton/.storybook/preview.js +++ /dev/null @@ -1,7 +0,0 @@ -import * as rootPreview from '../../../../.storybook/preview'; - -/** @type {typeof rootPreview.decorators} */ -export const decorators = [...rootPreview.decorators]; - -/** @type {typeof rootPreview.parameters} */ -export const parameters = { ...rootPreview.parameters }; diff --git a/packages/react-components/react-infobutton/.storybook/tsconfig.json b/packages/react-components/react-infobutton/.storybook/tsconfig.json deleted file mode 100644 index ea89218a3d916..0000000000000 --- a/packages/react-components/react-infobutton/.storybook/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "../tsconfig.json", - "compilerOptions": { - "outDir": "", - "allowJs": true, - "checkJs": true, - "types": ["static-assets", "environment", "storybook__addons"] - }, - "include": ["../stories/**/*.stories.ts", "../stories/**/*.stories.tsx", "*.js"] -} diff --git a/packages/react-components/react-infobutton/.swcrc b/packages/react-components/react-infobutton/.swcrc deleted file mode 100644 index b4ffa86dee306..0000000000000 --- a/packages/react-components/react-infobutton/.swcrc +++ /dev/null @@ -1,30 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/swcrc", - "exclude": [ - "/testing", - "/**/*.cy.ts", - "/**/*.cy.tsx", - "/**/*.spec.ts", - "/**/*.spec.tsx", - "/**/*.test.ts", - "/**/*.test.tsx" - ], - "jsc": { - "parser": { - "syntax": "typescript", - "tsx": true, - "decorators": false, - "dynamicImport": false - }, - "externalHelpers": true, - "transform": { - "react": { - "runtime": "classic", - "useSpread": true - } - }, - "target": "es2019" - }, - "minify": false, - "sourceMaps": true -} diff --git a/packages/react-components/react-infobutton/CHANGELOG.json b/packages/react-components/react-infobutton/CHANGELOG.json deleted file mode 100644 index 4113ded099913..0000000000000 --- a/packages/react-components/react-infobutton/CHANGELOG.json +++ /dev/null @@ -1,3492 +0,0 @@ -{ - "name": "@fluentui/react-infobutton", - "entries": [ - { - "date": "Tue, 02 Apr 2024 09:48:01 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.99", - "version": "9.0.0-beta.99", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.67", - "commit": "5c661f1050c6345035d2b6e1a7f549973fd23654" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.9.3", - "commit": "5c661f1050c6345035d2b6e1a7f549973fd23654" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.19.6", - "commit": "5c661f1050c6345035d2b6e1a7f549973fd23654" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.18.6", - "commit": "5c661f1050c6345035d2b6e1a7f549973fd23654" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.35", - "commit": "5c661f1050c6345035d2b6e1a7f549973fd23654" - } - ] - } - }, - { - "date": "Mon, 18 Mar 2024 19:50:46 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.98", - "version": "9.0.0-beta.98", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.66", - "commit": "9e6c3cf0dfdad1aa0b4752919e2214c7da2a0d42" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.9.2", - "commit": "9e6c3cf0dfdad1aa0b4752919e2214c7da2a0d42" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.19.5", - "commit": "9e6c3cf0dfdad1aa0b4752919e2214c7da2a0d42" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.19", - "commit": "9e6c3cf0dfdad1aa0b4752919e2214c7da2a0d42" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.18.5", - "commit": "9e6c3cf0dfdad1aa0b4752919e2214c7da2a0d42" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.34", - "commit": "9e6c3cf0dfdad1aa0b4752919e2214c7da2a0d42" - } - ] - } - }, - { - "date": "Fri, 15 Mar 2024 21:43:49 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.97", - "version": "9.0.0-beta.97", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.65", - "commit": "b2ded2504c2579038b15ca797666cc81d55c0364" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.9.1", - "commit": "b2ded2504c2579038b15ca797666cc81d55c0364" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.19.4", - "commit": "b2ded2504c2579038b15ca797666cc81d55c0364" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.18", - "commit": "b2ded2504c2579038b15ca797666cc81d55c0364" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.18.4", - "commit": "b2ded2504c2579038b15ca797666cc81d55c0364" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.33", - "commit": "b2ded2504c2579038b15ca797666cc81d55c0364" - } - ] - } - }, - { - "date": "Thu, 07 Mar 2024 19:33:27 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.96", - "version": "9.0.0-beta.96", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.64", - "commit": "58ccc2f33f85adc0d6992724178e42794ed4916d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.9.0", - "commit": "58ccc2f33f85adc0d6992724178e42794ed4916d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.19.3", - "commit": "58ccc2f33f85adc0d6992724178e42794ed4916d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.17", - "commit": "58ccc2f33f85adc0d6992724178e42794ed4916d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.18.3", - "commit": "58ccc2f33f85adc0d6992724178e42794ed4916d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.32", - "commit": "58ccc2f33f85adc0d6992724178e42794ed4916d" - } - ] - } - }, - { - "date": "Wed, 28 Feb 2024 02:34:19 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.95", - "version": "9.0.0-beta.95", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.63", - "commit": "433026729cd8bbd2e73f6314e05b803cad3168bb" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.40", - "commit": "433026729cd8bbd2e73f6314e05b803cad3168bb" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.19.2", - "commit": "433026729cd8bbd2e73f6314e05b803cad3168bb" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.18.2", - "commit": "433026729cd8bbd2e73f6314e05b803cad3168bb" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.31", - "commit": "433026729cd8bbd2e73f6314e05b803cad3168bb" - } - ] - } - }, - { - "date": "Tue, 20 Feb 2024 14:22:30 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.94", - "version": "9.0.0-beta.94", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.62", - "commit": "5fb68e9bc86c1cbd66249c639a5565fe7a0b22b4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.39", - "commit": "5fb68e9bc86c1cbd66249c639a5565fe7a0b22b4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.19.1", - "commit": "5fb68e9bc86c1cbd66249c639a5565fe7a0b22b4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.18.1", - "commit": "5fb68e9bc86c1cbd66249c639a5565fe7a0b22b4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.30", - "commit": "5fb68e9bc86c1cbd66249c639a5565fe7a0b22b4" - } - ] - } - }, - { - "date": "Tue, 06 Feb 2024 17:55:21 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.93", - "version": "9.0.0-beta.93", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.38", - "commit": "d89076308f8f3cfe80756f873bc12447a474e12c" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.19.0", - "commit": "d89076308f8f3cfe80756f873bc12447a474e12c" - } - ] - } - }, - { - "date": "Tue, 30 Jan 2024 23:16:54 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.92", - "version": "9.0.0-beta.92", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.61", - "commit": "c55a16a06b489f733384e65642b37343650d2f38" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.37", - "commit": "c55a16a06b489f733384e65642b37343650d2f38" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.18.0", - "commit": "c55a16a06b489f733384e65642b37343650d2f38" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.18.0", - "commit": "c55a16a06b489f733384e65642b37343650d2f38" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.29", - "commit": "c55a16a06b489f733384e65642b37343650d2f38" - } - ] - } - }, - { - "date": "Mon, 29 Jan 2024 13:56:06 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.91", - "version": "9.0.0-beta.91", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.60", - "commit": "3a6233a99addd66fdc17d7e6be859d08dd6dafc6" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.36", - "commit": "3a6233a99addd66fdc17d7e6be859d08dd6dafc6" - } - ] - } - }, - { - "date": "Fri, 26 Jan 2024 10:40:22 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.90", - "version": "9.0.0-beta.90", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.35", - "commit": "b04151ab510b2908a858272e08a0d6f2c33f6d77" - } - ] - } - }, - { - "date": "Tue, 23 Jan 2024 15:11:00 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.89", - "version": "9.0.0-beta.89", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.59", - "commit": "0d7e251f3f73716c5b7d1e4b1031ff3eb4f4053f" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.34", - "commit": "0d7e251f3f73716c5b7d1e4b1031ff3eb4f4053f" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.17.4", - "commit": "0d7e251f3f73716c5b7d1e4b1031ff3eb4f4053f" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.17.0", - "commit": "0d7e251f3f73716c5b7d1e4b1031ff3eb4f4053f" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.28", - "commit": "0d7e251f3f73716c5b7d1e4b1031ff3eb4f4053f" - } - ] - } - }, - { - "date": "Thu, 18 Jan 2024 14:25:03 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.88", - "version": "9.0.0-beta.88", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.58", - "commit": "42b8015b3d44861b4a9e26a9861c87b97ee5158d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.33", - "commit": "42b8015b3d44861b4a9e26a9861c87b97ee5158d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.17.3", - "commit": "42b8015b3d44861b4a9e26a9861c87b97ee5158d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.16.1", - "commit": "42b8015b3d44861b4a9e26a9861c87b97ee5158d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.27", - "commit": "42b8015b3d44861b4a9e26a9861c87b97ee5158d" - } - ] - } - }, - { - "date": "Wed, 17 Jan 2024 16:18:50 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.87", - "version": "9.0.0-beta.87", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.57", - "commit": "06421bb5960c4d8d01c0a2faee17aebd9c9fe0cb" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.32", - "commit": "06421bb5960c4d8d01c0a2faee17aebd9c9fe0cb" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.17.2", - "commit": "06421bb5960c4d8d01c0a2faee17aebd9c9fe0cb" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.16.0", - "commit": "06421bb5960c4d8d01c0a2faee17aebd9c9fe0cb" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.26", - "commit": "06421bb5960c4d8d01c0a2faee17aebd9c9fe0cb" - } - ] - } - }, - { - "date": "Tue, 16 Jan 2024 13:14:19 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.86", - "version": "9.0.0-beta.86", - "comments": { - "prerelease": [ - { - "author": "mgodbolt@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "f2e37e16ab2ee873cfc3f0a4a2cba3098277f2fc", - "comment": "fix: correct version of @types/react-dom peer dep that matches for 16.x" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.56", - "commit": "0c422edc87177d3d707c71fa3cad3fa2b872bdf8" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.31", - "commit": "0c422edc87177d3d707c71fa3cad3fa2b872bdf8" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.17.1", - "commit": "0c422edc87177d3d707c71fa3cad3fa2b872bdf8" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.25", - "commit": "0c422edc87177d3d707c71fa3cad3fa2b872bdf8" - } - ] - } - }, - { - "date": "Thu, 11 Jan 2024 09:04:29 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.85", - "version": "9.0.0-beta.85", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.30", - "commit": "f2e37e16ab2ee873cfc3f0a4a2cba3098277f2fc" - } - ] - } - }, - { - "date": "Tue, 09 Jan 2024 10:21:34 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.84", - "version": "9.0.0-beta.84", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.29", - "commit": "a5e34e3c996d322bb0735f4fca9537deafd07b59" - } - ] - } - }, - { - "date": "Mon, 08 Jan 2024 16:24:22 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.83", - "version": "9.0.0-beta.83", - "comments": { - "prerelease": [ - { - "author": "ololubek@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "5328bbd9d25e2846a4b649c0fd86be600d4bdc32", - "comment": "Update version of @fluentui/react-icons to 2.0.224" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.55", - "commit": "0893aaa977c642d01c3c39032f929bc50a04d867" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.28", - "commit": "0893aaa977c642d01c3c39032f929bc50a04d867" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.17.0", - "commit": "0893aaa977c642d01c3c39032f929bc50a04d867" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.15.6", - "commit": "0893aaa977c642d01c3c39032f929bc50a04d867" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.24", - "commit": "0893aaa977c642d01c3c39032f929bc50a04d867" - } - ] - } - }, - { - "date": "Wed, 03 Jan 2024 09:26:44 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.82", - "version": "9.0.0-beta.82", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.54", - "commit": "9d99266dec5a450bcd44c0f777735b31dd98eccc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.27", - "commit": "9d99266dec5a450bcd44c0f777735b31dd98eccc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.16.1", - "commit": "9d99266dec5a450bcd44c0f777735b31dd98eccc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.15.5", - "commit": "9d99266dec5a450bcd44c0f777735b31dd98eccc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.23", - "commit": "9d99266dec5a450bcd44c0f777735b31dd98eccc" - } - ] - } - }, - { - "date": "Mon, 18 Dec 2023 17:48:16 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.81", - "version": "9.0.0-beta.81", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.26", - "commit": "2034818a2dd109f3e9f7bb5cdf4caae47a9116d4" - } - ] - } - }, - { - "date": "Mon, 18 Dec 2023 14:40:46 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.80", - "version": "9.0.0-beta.80", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.53", - "commit": "c1b96dae4218975ea6366c714880e174cf9955e4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.25", - "commit": "c1b96dae4218975ea6366c714880e174cf9955e4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.16.0", - "commit": "c1b96dae4218975ea6366c714880e174cf9955e4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.15.4", - "commit": "c1b96dae4218975ea6366c714880e174cf9955e4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.22", - "commit": "c1b96dae4218975ea6366c714880e174cf9955e4" - } - ] - } - }, - { - "date": "Thu, 14 Dec 2023 09:58:46 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.79", - "version": "9.0.0-beta.79", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.52", - "commit": "73c8cb55e5957d6ce321ecabe35d177d791ff0b6" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.24", - "commit": "73c8cb55e5957d6ce321ecabe35d177d791ff0b6" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.15.1", - "commit": "73c8cb55e5957d6ce321ecabe35d177d791ff0b6" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.15.3", - "commit": "73c8cb55e5957d6ce321ecabe35d177d791ff0b6" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.21", - "commit": "73c8cb55e5957d6ce321ecabe35d177d791ff0b6" - } - ] - } - }, - { - "date": "Thu, 30 Nov 2023 13:42:08 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.78", - "version": "9.0.0-beta.78", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.51", - "commit": "f882fe7c3fbe6b4d6c3153732d384880bfd351dc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.23", - "commit": "f882fe7c3fbe6b4d6c3153732d384880bfd351dc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.15.0", - "commit": "f882fe7c3fbe6b4d6c3153732d384880bfd351dc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.20", - "commit": "f882fe7c3fbe6b4d6c3153732d384880bfd351dc" - } - ] - } - }, - { - "date": "Mon, 20 Nov 2023 09:55:10 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.77", - "version": "9.0.0-beta.77", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.50", - "commit": "873b079e8c57fc139366d6ab57d9070abd81865a" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.22", - "commit": "873b079e8c57fc139366d6ab57d9070abd81865a" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.14.6", - "commit": "873b079e8c57fc139366d6ab57d9070abd81865a" - } - ] - } - }, - { - "date": "Tue, 14 Nov 2023 17:51:27 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.76", - "version": "9.0.0-beta.76", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.21", - "commit": "74af9993e1f812bdc9d8a4635f8477295168efa8" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.14.5", - "commit": "74af9993e1f812bdc9d8a4635f8477295168efa8" - } - ] - } - }, - { - "date": "Thu, 09 Nov 2023 17:29:36 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.75", - "version": "9.0.0-beta.75", - "comments": { - "none": [ - { - "author": "martinhochel@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "baa8387b51ae5e028dd7c2f98827ab9bd749f90e", - "comment": "chore: use package.json#files setup instead of npmignore for all v9 libraries" - } - ], - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.49", - "commit": "9c30220feb177e8336960c21cf6df78c9c1ca629" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.20", - "commit": "9c30220feb177e8336960c21cf6df78c9c1ca629" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.14.4", - "commit": "9c30220feb177e8336960c21cf6df78c9c1ca629" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.16", - "commit": "9c30220feb177e8336960c21cf6df78c9c1ca629" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.15.2", - "commit": "9c30220feb177e8336960c21cf6df78c9c1ca629" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.19", - "commit": "9c30220feb177e8336960c21cf6df78c9c1ca629" - } - ] - } - }, - { - "date": "Wed, 01 Nov 2023 12:55:59 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.74", - "version": "9.0.0-beta.74", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.48", - "commit": "838b05367dbdddb17732b9e0c807090e0a4445d5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.19", - "commit": "838b05367dbdddb17732b9e0c807090e0a4445d5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.14.3", - "commit": "838b05367dbdddb17732b9e0c807090e0a4445d5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.15", - "commit": "838b05367dbdddb17732b9e0c807090e0a4445d5" - } - ] - } - }, - { - "date": "Sat, 28 Oct 2023 23:35:57 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.73", - "version": "9.0.0-beta.73", - "comments": { - "prerelease": [ - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "61d4a2910a5039af8b8509422ecfe58bc636191c", - "comment": "chore: Deprecate InfoLabel and InfoButton from react-infobutton in favor of react-infolabel." - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.47", - "commit": "555b0fae3ec7f052e765557ae243c58000514f92" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.18", - "commit": "555b0fae3ec7f052e765557ae243c58000514f92" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.14.2", - "commit": "555b0fae3ec7f052e765557ae243c58000514f92" - } - ] - } - }, - { - "date": "Mon, 23 Oct 2023 09:51:57 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.72", - "version": "9.0.0-beta.72", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.17", - "commit": "e4ef1febe8a185dddc10f8936944d177d50bc396" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.14.1", - "commit": "e4ef1febe8a185dddc10f8936944d177d50bc396" - } - ] - } - }, - { - "date": "Wed, 18 Oct 2023 17:54:03 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.71", - "version": "9.0.0-beta.71", - "comments": { - "prerelease": [ - { - "author": "bernardo.sunderhus@gmail.com", - "package": "@fluentui/react-infobutton", - "commit": "967882a55a7333effea42e4c24a64e8547309116", - "comment": "chore: migrate from getNativeElementProps to getIntrinsicElementProps" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.46", - "commit": "c0d3065982e1646c54ba00c1d524248b792dbcad" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.16", - "commit": "c0d3065982e1646c54ba00c1d524248b792dbcad" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.14.0", - "commit": "c0d3065982e1646c54ba00c1d524248b792dbcad" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.15.1", - "commit": "c0d3065982e1646c54ba00c1d524248b792dbcad" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.18", - "commit": "c0d3065982e1646c54ba00c1d524248b792dbcad" - } - ] - } - }, - { - "date": "Thu, 12 Oct 2023 14:55:44 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.70", - "version": "9.0.0-beta.70", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.45", - "commit": "8178c3cae60005bc21137aa1f3e766e18cdb4a30" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.15", - "commit": "8178c3cae60005bc21137aa1f3e766e18cdb4a30" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.17", - "commit": "8178c3cae60005bc21137aa1f3e766e18cdb4a30" - } - ] - } - }, - { - "date": "Wed, 11 Oct 2023 13:54:23 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.69", - "version": "9.0.0-beta.69", - "comments": { - "prerelease": [ - { - "author": "lingfan.gao@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "97c3bc01d08b40f2fd0291fa193d95a621c9bdb8", - "comment": "refactor: consume virtual parent utilities from @fluentui/react-utilities" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.44", - "commit": "b4466a0b9d3568e8e1ee1d814db5c8449dfd65b8" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.14", - "commit": "b4466a0b9d3568e8e1ee1d814db5c8449dfd65b8" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.13.6", - "commit": "b4466a0b9d3568e8e1ee1d814db5c8449dfd65b8" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.15.0", - "commit": "b4466a0b9d3568e8e1ee1d814db5c8449dfd65b8" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.16", - "commit": "b4466a0b9d3568e8e1ee1d814db5c8449dfd65b8" - } - ] - } - }, - { - "date": "Mon, 09 Oct 2023 20:45:41 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.68", - "version": "9.0.0-beta.68", - "comments": { - "prerelease": [ - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "77070241677c9cea1de509948ffa5d999050c959", - "comment": "fix: Use caption 1 when size is small or medium." - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.43", - "commit": "d2196ea1ca001fbc22f38fcb258016f1df6c87e4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.13", - "commit": "d2196ea1ca001fbc22f38fcb258016f1df6c87e4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-portal to v9.3.22", - "commit": "d2196ea1ca001fbc22f38fcb258016f1df6c87e4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.13.5", - "commit": "d2196ea1ca001fbc22f38fcb258016f1df6c87e4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.14.2", - "commit": "d2196ea1ca001fbc22f38fcb258016f1df6c87e4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.15", - "commit": "d2196ea1ca001fbc22f38fcb258016f1df6c87e4" - } - ] - } - }, - { - "date": "Thu, 05 Oct 2023 15:25:35 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.67", - "version": "9.0.0-beta.67", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.42", - "commit": "690590449dc3d65cd40b2b06a990fd920180919d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.12", - "commit": "690590449dc3d65cd40b2b06a990fd920180919d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-portal to v9.3.21", - "commit": "690590449dc3d65cd40b2b06a990fd920180919d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.13.4", - "commit": "690590449dc3d65cd40b2b06a990fd920180919d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.14.1", - "commit": "690590449dc3d65cd40b2b06a990fd920180919d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.14", - "commit": "690590449dc3d65cd40b2b06a990fd920180919d" - } - ] - } - }, - { - "date": "Wed, 04 Oct 2023 08:45:47 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.66", - "version": "9.0.0-beta.66", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.41", - "commit": "67b6cc6534e684ed32704dc6c0faee632bb840dc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.11", - "commit": "67b6cc6534e684ed32704dc6c0faee632bb840dc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-portal to v9.3.20", - "commit": "67b6cc6534e684ed32704dc6c0faee632bb840dc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.13.3", - "commit": "67b6cc6534e684ed32704dc6c0faee632bb840dc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.14.0", - "commit": "67b6cc6534e684ed32704dc6c0faee632bb840dc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.13", - "commit": "67b6cc6534e684ed32704dc6c0faee632bb840dc" - } - ] - } - }, - { - "date": "Mon, 02 Oct 2023 08:56:05 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.65", - "version": "9.0.0-beta.65", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.40", - "commit": "da9a08817e5de95639e2dd7aa6d6709d47faa7f4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.10", - "commit": "da9a08817e5de95639e2dd7aa6d6709d47faa7f4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-portal to v9.3.19", - "commit": "da9a08817e5de95639e2dd7aa6d6709d47faa7f4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.13.2", - "commit": "da9a08817e5de95639e2dd7aa6d6709d47faa7f4" - } - ] - } - }, - { - "date": "Tue, 26 Sep 2023 17:49:06 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.64", - "version": "9.0.0-beta.64", - "comments": { - "prerelease": [ - { - "author": "yuanboxue@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "05a23f6f5f331841c9ac9fb63764440c543f791d", - "comment": "chore: trigger manual version bump after broken release" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.39", - "commit": "05a23f6f5f331841c9ac9fb63764440c543f791d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.9", - "commit": "05a23f6f5f331841c9ac9fb63764440c543f791d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-portal to v9.3.18", - "commit": "05a23f6f5f331841c9ac9fb63764440c543f791d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.13.1", - "commit": "05a23f6f5f331841c9ac9fb63764440c543f791d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.14", - "commit": "05a23f6f5f331841c9ac9fb63764440c543f791d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.13.5", - "commit": "05a23f6f5f331841c9ac9fb63764440c543f791d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.12", - "commit": "05a23f6f5f331841c9ac9fb63764440c543f791d" - } - ] - } - }, - { - "date": "Tue, 26 Sep 2023 15:31:58 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.63", - "version": "9.0.0-beta.63", - "comments": { - "prerelease": [ - { - "author": "martinhochel@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "e61473fa10195f6ebf2308205c1e72e91b711831", - "comment": "fix: bump swc core to mitigate transpilation memory leaks" - }, - { - "author": "ololubek@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "a31e7394d9f169bc5aa55430a22cdc65425a1b49", - "comment": "chore: Update react-icons version to pick up IconDirectionContextProvider updated export" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.38", - "commit": "e16520437e10cd824ac254dd797e32762b5de72d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.8", - "commit": "e16520437e10cd824ac254dd797e32762b5de72d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-portal to v9.3.17", - "commit": "e16520437e10cd824ac254dd797e32762b5de72d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.13.0", - "commit": "e16520437e10cd824ac254dd797e32762b5de72d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.13", - "commit": "e16520437e10cd824ac254dd797e32762b5de72d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.13.4", - "commit": "e16520437e10cd824ac254dd797e32762b5de72d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.11", - "commit": "e16520437e10cd824ac254dd797e32762b5de72d" - } - ] - } - }, - { - "date": "Wed, 20 Sep 2023 17:47:37 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.62", - "version": "9.0.0-beta.62", - "comments": { - "prerelease": [ - { - "author": "martinhochel@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "41d0ed0376ad79f1f5f5c4c7487515a1c6be35f0", - "comment": "chore: trigger manual version bump after broken release" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.37", - "commit": "41d0ed0376ad79f1f5f5c4c7487515a1c6be35f0" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.7", - "commit": "41d0ed0376ad79f1f5f5c4c7487515a1c6be35f0" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-portal to v9.3.16", - "commit": "41d0ed0376ad79f1f5f5c4c7487515a1c6be35f0" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.12.11", - "commit": "41d0ed0376ad79f1f5f5c4c7487515a1c6be35f0" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.10", - "commit": "41d0ed0376ad79f1f5f5c4c7487515a1c6be35f0" - } - ] - } - }, - { - "date": "Wed, 20 Sep 2023 14:59:53 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.61", - "version": "9.0.0-beta.61", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.36", - "commit": "c60d4e7169457535c8d23701f6b951d1fff478ab" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.6", - "commit": "c60d4e7169457535c8d23701f6b951d1fff478ab" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-portal to v9.3.15", - "commit": "c60d4e7169457535c8d23701f6b951d1fff478ab" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.12.10", - "commit": "c60d4e7169457535c8d23701f6b951d1fff478ab" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.9", - "commit": "c60d4e7169457535c8d23701f6b951d1fff478ab" - } - ] - } - }, - { - "date": "Thu, 14 Sep 2023 16:44:47 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.60", - "version": "9.0.0-beta.60", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.35", - "commit": "bad33fa7f241bc772b5bc4c6ee624d6ff6b4a473" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.5", - "commit": "bad33fa7f241bc772b5bc4c6ee624d6ff6b4a473" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.8", - "commit": "bad33fa7f241bc772b5bc4c6ee624d6ff6b4a473" - } - ] - } - }, - { - "date": "Tue, 12 Sep 2023 08:51:32 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.59", - "version": "9.0.0-beta.59", - "comments": { - "prerelease": [ - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "634979cbc69ae97e39baf2f4143dab6caa3a6968", - "comment": "feat(react-infobutton): Removing openOnHover from popover props and adding details about the infobutton pattern." - }, - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "92866ff4f0aaf175696e97f29474de19bb904ba6", - "comment": "fix: Popover should close when tabbing out of the surface." - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.34", - "commit": "6fa505d282299778ee9c160ab91f2f510e2d4335" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.4", - "commit": "6fa505d282299778ee9c160ab91f2f510e2d4335" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-portal to v9.3.14", - "commit": "6fa505d282299778ee9c160ab91f2f510e2d4335" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.12.9", - "commit": "6fa505d282299778ee9c160ab91f2f510e2d4335" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.7", - "commit": "6fa505d282299778ee9c160ab91f2f510e2d4335" - } - ] - } - }, - { - "date": "Wed, 06 Sep 2023 13:31:31 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.58", - "version": "9.0.0-beta.58", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.33", - "commit": "52532950407fd4d3664ec6aa337855214233813b" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.3", - "commit": "52532950407fd4d3664ec6aa337855214233813b" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.12.8", - "commit": "52532950407fd4d3664ec6aa337855214233813b" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.13.3", - "commit": "52532950407fd4d3664ec6aa337855214233813b" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.6", - "commit": "52532950407fd4d3664ec6aa337855214233813b" - } - ] - } - }, - { - "date": "Tue, 05 Sep 2023 15:39:04 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.57", - "version": "9.0.0-beta.57", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.32", - "commit": "94019033dfe3fd39ec0cde7dfb3b57c22805aa91" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.2", - "commit": "94019033dfe3fd39ec0cde7dfb3b57c22805aa91" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.12.7", - "commit": "94019033dfe3fd39ec0cde7dfb3b57c22805aa91" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.13.2", - "commit": "94019033dfe3fd39ec0cde7dfb3b57c22805aa91" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.5", - "commit": "94019033dfe3fd39ec0cde7dfb3b57c22805aa91" - } - ] - } - }, - { - "date": "Tue, 05 Sep 2023 13:29:24 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.56", - "version": "9.0.0-beta.56", - "comments": { - "prerelease": [ - { - "author": "bernardo.sunderhus@gmail.com", - "package": "@fluentui/react-infobutton", - "commit": "eea6d93a62249ba4fba3347fb291c67ee1a3fb24", - "comment": "chore: migrate package to use JSX importSource" - }, - { - "author": "bernardo.sunderhus@gmail.com", - "package": "@fluentui/react-infobutton", - "commit": "b93c2ac22355b6cb6f33dd509c6cd9c21f4fffc8", - "comment": "bumps @swc/helpers version to 0.5.1" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.31", - "commit": "da959e66f36b429e40ae61810d08dc71c16e154a" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.1", - "commit": "da959e66f36b429e40ae61810d08dc71c16e154a" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.12.6", - "commit": "da959e66f36b429e40ae61810d08dc71c16e154a" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.12", - "commit": "da959e66f36b429e40ae61810d08dc71c16e154a" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.13.1", - "commit": "da959e66f36b429e40ae61810d08dc71c16e154a" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.4", - "commit": "da959e66f36b429e40ae61810d08dc71c16e154a" - } - ] - } - }, - { - "date": "Tue, 29 Aug 2023 12:57:34 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.55", - "version": "9.0.0-beta.55", - "comments": { - "prerelease": [ - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "0e33d8ebd9aecc1efe0cc664288ec433a8878ff8", - "comment": "fix(react-infobutton): Making InfoButton's PopoverSurface inline by default." - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.30", - "commit": "f40ca42c8392904750bf1ef24826d273d1a5b4d5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.8.0", - "commit": "f40ca42c8392904750bf1ef24826d273d1a5b4d5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.12.5", - "commit": "f40ca42c8392904750bf1ef24826d273d1a5b4d5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.13.0", - "commit": "f40ca42c8392904750bf1ef24826d273d1a5b4d5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.3", - "commit": "f40ca42c8392904750bf1ef24826d273d1a5b4d5" - } - ] - } - }, - { - "date": "Thu, 24 Aug 2023 10:26:35 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.54", - "version": "9.0.0-beta.54", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.29", - "commit": "3f6c5a749ef403c06b9c9e753df9afbb84a2ecb5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.18", - "commit": "3f6c5a749ef403c06b9c9e753df9afbb84a2ecb5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.12.4", - "commit": "3f6c5a749ef403c06b9c9e753df9afbb84a2ecb5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.12.0", - "commit": "3f6c5a749ef403c06b9c9e753df9afbb84a2ecb5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.2", - "commit": "3f6c5a749ef403c06b9c9e753df9afbb84a2ecb5" - } - ] - } - }, - { - "date": "Wed, 23 Aug 2023 12:01:49 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.53", - "version": "9.0.0-beta.53", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.28", - "commit": "f94b6d05d7642563cb96e2718402fbbbab65cbbc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.17", - "commit": "f94b6d05d7642563cb96e2718402fbbbab65cbbc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.12.3", - "commit": "f94b6d05d7642563cb96e2718402fbbbab65cbbc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.11.2", - "commit": "f94b6d05d7642563cb96e2718402fbbbab65cbbc" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.1", - "commit": "f94b6d05d7642563cb96e2718402fbbbab65cbbc" - } - ] - } - }, - { - "date": "Mon, 21 Aug 2023 11:38:00 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.52", - "version": "9.0.0-beta.52", - "comments": { - "prerelease": [ - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "7899bcf885c6599dcfe23cddb532c954b25aca79", - "comment": "fix: Cursor should be pointer when hovering the button to show it's a button." - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.16", - "commit": "55e07ffc8d180554fb027841e7d2a89637cefcb3" - } - ] - } - }, - { - "date": "Wed, 16 Aug 2023 17:41:08 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.51", - "version": "9.0.0-beta.51", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.27", - "commit": "b331b368030e157e0ff38a59c9d4aaf1d01d9b6a" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.15", - "commit": "b331b368030e157e0ff38a59c9d4aaf1d01d9b6a" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0", - "commit": "b331b368030e157e0ff38a59c9d4aaf1d01d9b6a" - } - ] - } - }, - { - "date": "Wed, 16 Aug 2023 11:38:33 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.50", - "version": "9.0.0-beta.50", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.26", - "commit": "70fb3a013a466af6f5918b7301761b14dc46cea3" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.14", - "commit": "70fb3a013a466af6f5918b7301761b14dc46cea3" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.16", - "commit": "70fb3a013a466af6f5918b7301761b14dc46cea3" - } - ] - } - }, - { - "date": "Fri, 11 Aug 2023 12:14:26 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.49", - "version": "9.0.0-beta.49", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.25", - "commit": "a77bcda1628e8b20b113d0237317efd7ebbc5294" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.13", - "commit": "a77bcda1628e8b20b113d0237317efd7ebbc5294" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.12.2", - "commit": "a77bcda1628e8b20b113d0237317efd7ebbc5294" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.11.1", - "commit": "a77bcda1628e8b20b113d0237317efd7ebbc5294" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.15", - "commit": "a77bcda1628e8b20b113d0237317efd7ebbc5294" - } - ] - } - }, - { - "date": "Wed, 09 Aug 2023 13:16:57 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.48", - "version": "9.0.0-beta.48", - "comments": { - "prerelease": [ - { - "author": "bernardo.sunderhus@gmail.com", - "package": "@fluentui/react-infobutton", - "commit": "796e4426c50ede34b30e2dc2392328dcbadc2702", - "comment": "chore(cxe-red): migrate to new slot API" - }, - { - "author": "olfedias@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "b090c0339983847a62b9dc6187d08dc8c4b1d55f", - "comment": "chore: Update Griffel to latest version" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.24", - "commit": "9509e950254d838cdfe3718a775ba5c78cb8f11a" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.12", - "commit": "9509e950254d838cdfe3718a775ba5c78cb8f11a" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.12.1", - "commit": "9509e950254d838cdfe3718a775ba5c78cb8f11a" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.11", - "commit": "9509e950254d838cdfe3718a775ba5c78cb8f11a" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.14", - "commit": "9509e950254d838cdfe3718a775ba5c78cb8f11a" - } - ] - } - }, - { - "date": "Fri, 04 Aug 2023 08:52:58 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.47", - "version": "9.0.0-beta.47", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.23", - "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.11", - "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.12.0", - "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.10", - "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.11.0", - "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.13", - "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca" - } - ] - } - }, - { - "date": "Tue, 01 Aug 2023 10:17:21 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.46", - "version": "9.0.0-beta.46", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.22", - "commit": "412d815f88863bde8bb16abc8fd9c4140a37f1f5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.10", - "commit": "412d815f88863bde8bb16abc8fd9c4140a37f1f5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.11.1", - "commit": "412d815f88863bde8bb16abc8fd9c4140a37f1f5" - } - ] - } - }, - { - "date": "Thu, 27 Jul 2023 10:34:14 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.45", - "version": "9.0.0-beta.45", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.9", - "commit": "d2d8068110a9a7f71f417a40ee5f2db0ed1c40b9" - } - ] - } - }, - { - "date": "Tue, 25 Jul 2023 13:29:19 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.44", - "version": "9.0.0-beta.44", - "comments": { - "prerelease": [ - { - "author": "ololubek@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "1082207b08959996cd736725735cadc01d0849b0", - "comment": "chore: Update react-icons version to pick up fowardref change." - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.8", - "commit": "e59b4b305eb656c5af005fefbfa2b1f69afcdc43" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.11.0", - "commit": "e59b4b305eb656c5af005fefbfa2b1f69afcdc43" - } - ] - } - }, - { - "date": "Thu, 20 Jul 2023 18:27:29 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.43", - "version": "9.0.0-beta.43", - "comments": { - "none": [ - { - "author": "olfedias@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "5a4b16715e8e929f11d8113f710e578ca73acaa6", - "comment": "chore: migrate to monosize" - } - ], - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.21", - "commit": "5a4b16715e8e929f11d8113f710e578ca73acaa6" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.7", - "commit": "5a4b16715e8e929f11d8113f710e578ca73acaa6" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.12", - "commit": "5a4b16715e8e929f11d8113f710e578ca73acaa6" - } - ] - } - }, - { - "date": "Mon, 17 Jul 2023 21:27:35 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.42", - "version": "9.0.0-beta.42", - "comments": { - "prerelease": [ - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "d2c19695a05ff0adcab100c05d75cfa32e0994a9", - "comment": "fix(react-infobutton): Make InfoLabel only add aria-owns when the popover is open." - }, - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "bffeca38807f5cd9230e6dbbc4ef1be1766e29d5", - "comment": "feat(react-infobutton): Remove InfoIcon files from react-infobutton." - } - ] - } - }, - { - "date": "Thu, 13 Jul 2023 21:25:41 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.41", - "version": "9.0.0-beta.41", - "comments": { - "none": [ - { - "author": "martinhochel@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "8a9e1018f2abb2c7608c49d32acf44e93c43cba6", - "comment": "chore: update devDependencies to use * for inner workspace dependencies" - } - ] - } - }, - { - "date": "Tue, 11 Jul 2023 18:46:36 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.41", - "version": "9.0.0-beta.41", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.20", - "commit": "f958e7e175264e289a6ecdc5b108e826f6b34e74" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.6", - "commit": "f958e7e175264e289a6ecdc5b108e826f6b34e74" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.11", - "commit": "f958e7e175264e289a6ecdc5b108e826f6b34e74" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0", - "commit": "f958e7e175264e289a6ecdc5b108e826f6b34e74" - } - ] - } - }, - { - "date": "Mon, 03 Jul 2023 13:34:28 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.40", - "version": "9.0.0-beta.40", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.5", - "commit": "d2c95969c67521ea1df57e1339f8743b09b68772" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.10.0", - "commit": "d2c95969c67521ea1df57e1339f8743b09b68772" - } - ] - } - }, - { - "date": "Mon, 03 Jul 2023 11:57:14 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.39", - "version": "9.0.0-beta.39", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.19", - "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.4", - "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.9.2", - "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.10.1", - "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.10", - "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd" - } - ] - } - }, - { - "date": "Wed, 28 Jun 2023 11:12:27 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.38", - "version": "9.0.0-beta.38", - "comments": { - "none": [ - { - "author": "martinhochel@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "fbe878e9c9785588197481f172c42c2c0a230292", - "comment": "fix: update .npmignore to unify v8 packages and exclude project.json" - } - ], - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.18", - "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.3", - "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.9.1", - "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.10.0", - "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.9", - "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7" - } - ] - } - }, - { - "date": "Tue, 27 Jun 2023 11:21:23 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.37", - "version": "9.0.0-beta.37", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.2", - "commit": "1c7e6451a11fb9c59e344df616394a320e8031c4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.9.0", - "commit": "1c7e6451a11fb9c59e344df616394a320e8031c4" - } - ] - } - }, - { - "date": "Mon, 26 Jun 2023 09:53:55 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.36", - "version": "9.0.0-beta.36", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.17", - "commit": "3e47257676ace0598b9ed336a54befd4d063c332" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.1", - "commit": "3e47257676ace0598b9ed336a54befd4d063c332" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.8.1", - "commit": "3e47257676ace0598b9ed336a54befd4d063c332" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.9.4", - "commit": "3e47257676ace0598b9ed336a54befd4d063c332" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.8", - "commit": "3e47257676ace0598b9ed336a54befd4d063c332" - } - ] - } - }, - { - "date": "Tue, 20 Jun 2023 12:38:58 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.35", - "version": "9.0.0-beta.35", - "comments": { - "prerelease": [ - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "2180922aed405f0a49734a64608749011cece831", - "comment": "chore: Create InfoIconLabel component scaffold." - }, - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "cb3741ddf649785332da7f0d57dfa93a965dab75", - "comment": "chore: Create InfoTip component." - }, - { - "author": "ololubek@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "8a5ae3aa00faa327c58887a99a5698b18f2930ee", - "comment": "chore: update @fluentui/react-icons to 2.0.203" - }, - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "91b9ce05995846aaa882d86755583e5b1a703717", - "comment": "chore: Rename InfoTip to InfoIcon to better align with InfoButton." - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.16", - "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.7.0", - "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.8.0", - "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.9", - "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.9.3", - "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.7", - "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.23", - "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647" - } - ] - } - }, - { - "date": "Wed, 31 May 2023 06:46:14 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.34", - "version": "9.0.0-beta.34", - "comments": { - "prerelease": [ - { - "author": "seanmonahan@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "d640b972d7ac86bfb76ae6c6329f12cdd33b3b7c", - "comment": "chore: Update Griffel to v1.5.7." - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.15", - "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.6.0", - "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.7.5", - "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.9.2", - "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.6", - "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.22", - "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713" - } - ] - } - }, - { - "date": "Thu, 25 May 2023 10:00:48 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.33", - "version": "9.0.0-beta.33", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.14", - "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.5.15", - "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.7.4", - "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.9.1", - "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.5", - "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4" - } - ] - } - }, - { - "date": "Wed, 24 May 2023 20:45:27 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.32", - "version": "9.0.0-beta.32", - "comments": { - "none": [ - { - "author": "olfedias@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "69e0617a93cb44ef42f3bd19284b7dc5fe27fed3", - "comment": "chore: update test-ssr script" - } - ], - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.13", - "commit": "3f088b7b09988e7c05af1c953021acc94c273026" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.5.14", - "commit": "3f088b7b09988e7c05af1c953021acc94c273026" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.7.3", - "commit": "3f088b7b09988e7c05af1c953021acc94c273026" - } - ] - } - }, - { - "date": "Thu, 18 May 2023 13:11:08 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.31", - "version": "9.0.0-beta.31", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.5.13", - "commit": "1e6f5c8eec4b67c051fb3aa429e303115570ae4d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.7.2", - "commit": "1e6f5c8eec4b67c051fb3aa429e303115570ae4d" - } - ] - } - }, - { - "date": "Thu, 18 May 2023 00:39:07 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.30", - "version": "9.0.0-beta.30", - "comments": { - "none": [ - { - "author": "olfedias@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "06cd515eda59a3078bfe32f9cc7c1f281cd20208", - "comment": "chore: add test-ssr script to v9 packages" - } - ], - "prerelease": [ - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb", - "comment": "fix: Add aria-owns to InfoLabel." - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.12", - "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.5.12", - "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.7.1", - "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.9.0", - "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.4", - "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb" - } - ] - } - }, - { - "date": "Fri, 12 May 2023 20:27:20 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.29", - "version": "9.0.0-beta.29", - "comments": { - "prerelease": [ - { - "author": "olfedias@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "c28decb23d191a0daaaf6d5d1832429715102129", - "comment": "chore: exclude .swcrc from being published" - }, - { - "author": "olfedias@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "871192b67e1bc8a68da1b4c55b4e0ee2aed0b604", - "comment": "chore: move makeStyles() calls to .styles.ts files" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.11", - "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.5.11", - "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.7.0", - "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.8", - "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.8.1", - "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.3", - "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.21", - "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b" - } - ], - "none": [ - { - "author": "martinhochel@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "dbda7fa69e3000aaf8dd4a061e254ebd35198b8e", - "comment": "fix: update npmignore files to fix npm8/node16 regression how npm publish works" - } - ] - } - }, - { - "date": "Mon, 24 Apr 2023 08:12:37 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.28", - "version": "9.0.0-beta.28", - "comments": { - "prerelease": [ - { - "author": "bernardo.sunderhus@gmail.com", - "package": "@fluentui/react-infobutton", - "commit": "dd76eca6f3584188994575d1d15d805a24ee9a91", - "comment": "chore: adopt custom JSX pragma" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.10", - "commit": "505433ac64f144c9cca456097413d6af4582e5ee" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.5.10", - "commit": "505433ac64f144c9cca456097413d6af4582e5ee" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.2", - "commit": "505433ac64f144c9cca456097413d6af4582e5ee" - } - ] - } - }, - { - "date": "Mon, 17 Apr 2023 17:54:02 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.27", - "version": "9.0.0-beta.27", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.9", - "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.5.9", - "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.6.5", - "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.8.0", - "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585" - } - ] - } - }, - { - "date": "Wed, 12 Apr 2023 09:31:45 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.26", - "version": "9.0.0-beta.26", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.8", - "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.5.8", - "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.6.4", - "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.7.4", - "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8" - } - ] - } - }, - { - "date": "Tue, 04 Apr 2023 18:44:48 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.25", - "version": "9.0.0-beta.25", - "comments": { - "prerelease": [ - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "df9564ee42c12b0dfab646f9e4dd4038c636d3ee", - "comment": "chore: Rename content slot to info." - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.7", - "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.5.7", - "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.6.3", - "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.7.3", - "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce" - } - ] - } - }, - { - "date": "Tue, 21 Mar 2023 21:23:36 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.23", - "version": "9.0.0-beta.23", - "comments": { - "prerelease": [ - { - "author": "makotom@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "7fde5c94869ff9841b142b7ff1d0a3df0ab58f74", - "comment": "chore: Bumping version of @fluentui/react-icons to ^2.0.196." - }, - { - "author": "tristan.watanabe@gmail.com", - "package": "@fluentui/react-infobutton", - "commit": "ead1c6d4c2ac3f3596b62b8cbc07b0a03041f11f", - "comment": "fix: add node field to package.json exports map." - }, - { - "author": "tristan.watanabe@gmail.com", - "package": "@fluentui/react-infobutton", - "commit": "2fac1a139149bd13b76b1306207bc988dca9c72c", - "comment": "chore: migrate to swc transpilation approach." - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.5", - "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.5.5", - "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.6.1", - "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.7", - "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.7.2", - "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.20", - "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5" - } - ] - } - }, - { - "date": "Thu, 16 Mar 2023 14:36:57 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.22", - "version": "9.0.0-beta.22", - "comments": { - "prerelease": [ - { - "author": "behowell@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "b106479e831318cfb3ddf10871e4240530498f31", - "comment": "feat: Add InfoLabel component" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-label to v9.1.4", - "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.5.4", - "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.6.0", - "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.7.1", - "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81" - } - ] - } - }, - { - "date": "Wed, 15 Mar 2023 10:19:53 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.21", - "version": "9.0.0-beta.21", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.5.3", - "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.5.7", - "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.6", - "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2" - } - ] - } - }, - { - "date": "Mon, 13 Mar 2023 08:58:26 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.20", - "version": "9.0.0-beta.20", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.5.2", - "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.5.6", - "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.7.0", - "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e" - } - ] - } - }, - { - "date": "Fri, 10 Mar 2023 07:14:01 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.19", - "version": "9.0.0-beta.19", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.5.1", - "commit": "3cefc38eed17e3f37cd38fca9099cc9d700cd584" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.5.5", - "commit": "3cefc38eed17e3f37cd38fca9099cc9d700cd584" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.6.2", - "commit": "3cefc38eed17e3f37cd38fca9099cc9d700cd584" - } - ] - } - }, - { - "date": "Wed, 08 Mar 2023 17:42:51 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.18", - "version": "9.0.0-beta.18", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.5.0", - "commit": "e0d11faf97f6466f4cd23ed18266cf1e80094f56" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.5.4", - "commit": "e0d11faf97f6466f4cd23ed18266cf1e80094f56" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.6.1", - "commit": "e0d11faf97f6466f4cd23ed18266cf1e80094f56" - } - ] - } - }, - { - "date": "Wed, 22 Feb 2023 23:06:07 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.17", - "version": "9.0.0-beta.17", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.4.11", - "commit": "9ee6caa17f745e014ecba467a4528181ae49be30" - } - ] - } - }, - { - "date": "Wed, 15 Feb 2023 11:44:52 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.16", - "version": "9.0.0-beta.16", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.4.10", - "commit": "087d981aab96bef2e332a373069a19bc702a7ca2" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.5.3", - "commit": "087d981aab96bef2e332a373069a19bc702a7ca2" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.6.0", - "commit": "087d981aab96bef2e332a373069a19bc702a7ca2" - } - ] - } - }, - { - "date": "Mon, 13 Feb 2023 23:43:14 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.15", - "version": "9.0.0-beta.15", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.4.9", - "commit": "29e62b13706c2845b21d665d43cdacf1ef1b1513" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.5.2", - "commit": "29e62b13706c2845b21d665d43cdacf1ef1b1513" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.5.3", - "commit": "29e62b13706c2845b21d665d43cdacf1ef1b1513" - } - ] - } - }, - { - "date": "Mon, 13 Feb 2023 09:35:48 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.14", - "version": "9.0.0-beta.14", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.4.8", - "commit": "b24aed22677cb12a74f185feee89edefd1601b9a" - } - ] - } - }, - { - "date": "Fri, 10 Feb 2023 08:50:02 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.13", - "version": "9.0.0-beta.13", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.4.7", - "commit": "cc62f050f8231e8f21a2cf7dddf33003e0ba3931" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.5.1", - "commit": "cc62f050f8231e8f21a2cf7dddf33003e0ba3931" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.5.2", - "commit": "cc62f050f8231e8f21a2cf7dddf33003e0ba3931" - } - ] - } - }, - { - "date": "Tue, 07 Feb 2023 14:13:05 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.12", - "version": "9.0.0-beta.12", - "comments": { - "prerelease": [ - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "794d9e845cb952f597ba786e70cd8d248be62746", - "comment": "chore: Add aria-label to InfoButton's button and add a11y guidance for using InfoButton with a label." - }, - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "34514e3502e2830d81f9de25956be8b624cd3c20", - "comment": "chore: Making the content focusable and updating example's text." - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.4.6", - "commit": "8a1405562b3328c408f15e3bf511d3eb6a0c0e66" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.5.0", - "commit": "8a1405562b3328c408f15e3bf511d3eb6a0c0e66" - } - ] - } - }, - { - "date": "Tue, 31 Jan 2023 19:53:58 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.11", - "version": "9.0.0-beta.11", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.4.5", - "commit": "794d9e845cb952f597ba786e70cd8d248be62746" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.4.2", - "commit": "794d9e845cb952f597ba786e70cd8d248be62746" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.5.1", - "commit": "794d9e845cb952f597ba786e70cd8d248be62746" - } - ] - } - }, - { - "date": "Thu, 26 Jan 2023 13:31:03 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.10", - "version": "9.0.0-beta.10", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.4.4", - "commit": "403e1370f1effca7d3db131eda381abf31cf66b1" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.4.1", - "commit": "403e1370f1effca7d3db131eda381abf31cf66b1" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.5.0", - "commit": "403e1370f1effca7d3db131eda381abf31cf66b1" - } - ] - } - }, - { - "date": "Mon, 23 Jan 2023 16:43:12 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.9", - "version": "9.0.0-beta.9", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.4.3", - "commit": "828c4260edc4fba07c9ccc8e94f15051c7fd25d3" - } - ] - } - }, - { - "date": "Wed, 18 Jan 2023 16:32:57 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.8", - "version": "9.0.0-beta.8", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.4.2", - "commit": "13cf1d07a6df4617106c731ba0379b6102a08104" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.4.0", - "commit": "13cf1d07a6df4617106c731ba0379b6102a08104" - } - ] - } - }, - { - "date": "Mon, 16 Jan 2023 08:39:02 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.7", - "version": "9.0.0-beta.7", - "comments": { - "prerelease": [ - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "4aa7a43c0c302dc151d6446abfde95fe9637edb0", - "comment": "fix: Update border for Teams HCM to be transparent." - }, - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "b326546752a1df3cf4d626dee2d5c47b59ba00ae", - "comment": "fix: Update PopoverSurface's role to note and remove need to cast props passed to popover slot." - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.4.1", - "commit": "a870d8360e47f3ea03358c4e75e89e08a74845d7" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.3.7", - "commit": "a870d8360e47f3ea03358c4e75e89e08a74845d7" - } - ], - "none": [ - { - "author": "martinhochel@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "64bb45980d68de1219c6b36a7db5363f0a9cff9f", - "comment": "chore: migrate to packaged scripts" - } - ] - } - }, - { - "date": "Mon, 09 Jan 2023 14:35:02 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.6", - "version": "9.0.0-beta.6", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.4.0", - "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.3.6", - "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.4.0", - "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d" - } - ] - } - }, - { - "date": "Wed, 04 Jan 2023 01:40:08 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.5", - "version": "9.0.0-beta.5", - "comments": { - "prerelease": [ - { - "author": "tristan.watanabe@gmail.com", - "package": "@fluentui/react-infobutton", - "commit": "b1f29f551486777885af53a857220bffa5342b0f", - "comment": "chore: migrate to new package structure." - }, - { - "author": "olfedias@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "2c38f1e4ae07b2b60df596efe11015a68f166dbf", - "comment": "chore: Update Griffel to latest version" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.3.6", - "commit": "3e322d15529451be153e97298873253e21af4082" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.3.5", - "commit": "3e322d15529451be153e97298873253e21af4082" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.3.1", - "commit": "3e322d15529451be153e97298873253e21af4082" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.19", - "commit": "3e322d15529451be153e97298873253e21af4082" - } - ], - "none": [ - { - "author": "martinhochel@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "4ec2b998b294d6d9c3196d3d82893bdd97d0c105", - "comment": "chore(scripts): move index.ts to to follow sub-folder domain packaging" - }, - { - "author": "martinhochel@microsoft.com", - "package": "@fluentui/react-infobutton", - "commit": "194b0cf0cc27c1c1233aa945f09b3ad29778d8ca", - "comment": "chore(scripts): use for @fluentui/scripts version within all package.json" - } - ] - } - }, - { - "date": "Wed, 21 Dec 2022 10:20:33 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.4", - "version": "9.0.0-beta.4", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.3.5", - "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.3.4", - "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.5", - "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e" - } - ] - } - }, - { - "date": "Tue, 20 Dec 2022 14:59:34 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.3", - "version": "9.0.0-beta.3", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.3.4", - "commit": "e7530bc179fd0e303448083c76a4af41a0e15322" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.3.3", - "commit": "e7530bc179fd0e303448083c76a4af41a0e15322" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.4", - "commit": "e7530bc179fd0e303448083c76a4af41a0e15322" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.3.0", - "commit": "e7530bc179fd0e303448083c76a4af41a0e15322" - } - ] - } - }, - { - "date": "Mon, 05 Dec 2022 18:29:39 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.2", - "version": "9.0.0-beta.2", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.3.3", - "commit": "4c29542a51bf068e171690cc8e59c14489883912" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.3.2", - "commit": "4c29542a51bf068e171690cc8e59c14489883912" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-theme to v9.1.3", - "commit": "4c29542a51bf068e171690cc8e59c14489883912" - } - ] - } - }, - { - "date": "Thu, 17 Nov 2022 23:05:40 GMT", - "tag": "@fluentui/react-infobutton_v9.0.0-beta.1", - "version": "9.0.0-beta.1", - "comments": { - "prerelease": [ - { - "author": "esteban.230@hotmail.com", - "package": "@fluentui/react-infobutton", - "commit": "e22929a533e0830fc75e547b733b38dee60af00e", - "comment": "chore: Making the package public and preparing to add to unstable." - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-popover to v9.3.2", - "commit": "94e156be5d3b5790d82dccf08c32672733fb9335" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-tabster to v9.3.1", - "commit": "94e156be5d3b5790d82dccf08c32672733fb9335" - }, - { - "author": "beachball", - "package": "@fluentui/react-infobutton", - "comment": "Bump @fluentui/react-utilities to v9.2.2", - "commit": "94e156be5d3b5790d82dccf08c32672733fb9335" - } - ] - } - } - ] -} diff --git a/packages/react-components/react-infobutton/CHANGELOG.md b/packages/react-components/react-infobutton/CHANGELOG.md deleted file mode 100644 index 3213ad2c676b0..0000000000000 --- a/packages/react-components/react-infobutton/CHANGELOG.md +++ /dev/null @@ -1,1208 +0,0 @@ -# Change Log - @fluentui/react-infobutton - -This log was last generated on Tue, 02 Apr 2024 09:48:01 GMT and should not be manually modified. - - - -## [9.0.0-beta.99](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.99) - -Tue, 02 Apr 2024 09:48:01 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.98..@fluentui/react-infobutton_v9.0.0-beta.99) - -### Changes - -- Bump @fluentui/react-label to v9.1.67 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball) -- Bump @fluentui/react-popover to v9.9.3 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball) -- Bump @fluentui/react-tabster to v9.19.6 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball) -- Bump @fluentui/react-utilities to v9.18.6 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.35 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball) - -## [9.0.0-beta.98](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.98) - -Mon, 18 Mar 2024 19:50:46 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.97..@fluentui/react-infobutton_v9.0.0-beta.98) - -### Changes - -- Bump @fluentui/react-label to v9.1.66 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball) -- Bump @fluentui/react-popover to v9.9.2 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball) -- Bump @fluentui/react-tabster to v9.19.5 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball) -- Bump @fluentui/react-theme to v9.1.19 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball) -- Bump @fluentui/react-utilities to v9.18.5 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.34 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball) - -## [9.0.0-beta.97](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.97) - -Fri, 15 Mar 2024 21:43:49 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.96..@fluentui/react-infobutton_v9.0.0-beta.97) - -### Changes - -- Bump @fluentui/react-label to v9.1.65 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball) -- Bump @fluentui/react-popover to v9.9.1 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball) -- Bump @fluentui/react-tabster to v9.19.4 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball) -- Bump @fluentui/react-theme to v9.1.18 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball) -- Bump @fluentui/react-utilities to v9.18.4 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.33 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball) - -## [9.0.0-beta.96](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.96) - -Thu, 07 Mar 2024 19:33:27 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.95..@fluentui/react-infobutton_v9.0.0-beta.96) - -### Changes - -- Bump @fluentui/react-label to v9.1.64 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball) -- Bump @fluentui/react-popover to v9.9.0 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball) -- Bump @fluentui/react-tabster to v9.19.3 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball) -- Bump @fluentui/react-theme to v9.1.17 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball) -- Bump @fluentui/react-utilities to v9.18.3 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.32 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball) - -## [9.0.0-beta.95](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.95) - -Wed, 28 Feb 2024 02:34:19 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.94..@fluentui/react-infobutton_v9.0.0-beta.95) - -### Changes - -- Bump @fluentui/react-label to v9.1.63 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball) -- Bump @fluentui/react-popover to v9.8.40 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball) -- Bump @fluentui/react-tabster to v9.19.2 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball) -- Bump @fluentui/react-utilities to v9.18.2 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.31 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball) - -## [9.0.0-beta.94](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.94) - -Tue, 20 Feb 2024 14:22:30 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.93..@fluentui/react-infobutton_v9.0.0-beta.94) - -### Changes - -- Bump @fluentui/react-label to v9.1.62 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball) -- Bump @fluentui/react-popover to v9.8.39 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball) -- Bump @fluentui/react-tabster to v9.19.1 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball) -- Bump @fluentui/react-utilities to v9.18.1 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.30 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball) - -## [9.0.0-beta.93](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.93) - -Tue, 06 Feb 2024 17:55:21 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.92..@fluentui/react-infobutton_v9.0.0-beta.93) - -### Changes - -- Bump @fluentui/react-popover to v9.8.38 ([PR #30392](https://github.com/microsoft/fluentui/pull/30392) by beachball) -- Bump @fluentui/react-tabster to v9.19.0 ([PR #30392](https://github.com/microsoft/fluentui/pull/30392) by beachball) - -## [9.0.0-beta.92](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.92) - -Tue, 30 Jan 2024 23:16:54 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.91..@fluentui/react-infobutton_v9.0.0-beta.92) - -### Changes - -- Bump @fluentui/react-label to v9.1.61 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball) -- Bump @fluentui/react-popover to v9.8.37 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball) -- Bump @fluentui/react-tabster to v9.18.0 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball) -- Bump @fluentui/react-utilities to v9.18.0 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.29 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball) - -## [9.0.0-beta.91](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.91) - -Mon, 29 Jan 2024 13:56:06 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.90..@fluentui/react-infobutton_v9.0.0-beta.91) - -### Changes - -- Bump @fluentui/react-label to v9.1.60 ([PR #30383](https://github.com/microsoft/fluentui/pull/30383) by beachball) -- Bump @fluentui/react-popover to v9.8.36 ([PR #30383](https://github.com/microsoft/fluentui/pull/30383) by beachball) - -## [9.0.0-beta.90](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.90) - -Fri, 26 Jan 2024 10:40:22 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.89..@fluentui/react-infobutton_v9.0.0-beta.90) - -### Changes - -- Bump @fluentui/react-popover to v9.8.35 ([PR #30391](https://github.com/microsoft/fluentui/pull/30391) by beachball) - -## [9.0.0-beta.89](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.89) - -Tue, 23 Jan 2024 15:11:00 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.88..@fluentui/react-infobutton_v9.0.0-beta.89) - -### Changes - -- Bump @fluentui/react-label to v9.1.59 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball) -- Bump @fluentui/react-popover to v9.8.34 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball) -- Bump @fluentui/react-tabster to v9.17.4 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball) -- Bump @fluentui/react-utilities to v9.17.0 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.28 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball) - -## [9.0.0-beta.88](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.88) - -Thu, 18 Jan 2024 14:25:03 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.87..@fluentui/react-infobutton_v9.0.0-beta.88) - -### Changes - -- Bump @fluentui/react-label to v9.1.58 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball) -- Bump @fluentui/react-popover to v9.8.33 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball) -- Bump @fluentui/react-tabster to v9.17.3 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball) -- Bump @fluentui/react-utilities to v9.16.1 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.27 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball) - -## [9.0.0-beta.87](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.87) - -Wed, 17 Jan 2024 16:18:50 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.86..@fluentui/react-infobutton_v9.0.0-beta.87) - -### Changes - -- Bump @fluentui/react-label to v9.1.57 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball) -- Bump @fluentui/react-popover to v9.8.32 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball) -- Bump @fluentui/react-tabster to v9.17.2 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball) -- Bump @fluentui/react-utilities to v9.16.0 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.26 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball) - -## [9.0.0-beta.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.86) - -Tue, 16 Jan 2024 13:14:19 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.85..@fluentui/react-infobutton_v9.0.0-beta.86) - -### Changes - -- fix: correct version of @types/react-dom peer dep that matches for 16.x ([PR #30259](https://github.com/microsoft/fluentui/pull/30259) by mgodbolt@microsoft.com) -- Bump @fluentui/react-label to v9.1.56 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball) -- Bump @fluentui/react-popover to v9.8.31 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball) -- Bump @fluentui/react-tabster to v9.17.1 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.25 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball) - -## [9.0.0-beta.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.85) - -Thu, 11 Jan 2024 09:04:29 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.84..@fluentui/react-infobutton_v9.0.0-beta.85) - -### Changes - -- Bump @fluentui/react-popover to v9.8.30 ([PR #30259](https://github.com/microsoft/fluentui/pull/30259) by beachball) - -## [9.0.0-beta.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.84) - -Tue, 09 Jan 2024 10:21:34 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.83..@fluentui/react-infobutton_v9.0.0-beta.84) - -### Changes - -- Bump @fluentui/react-popover to v9.8.29 ([PR #30217](https://github.com/microsoft/fluentui/pull/30217) by beachball) - -## [9.0.0-beta.83](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.83) - -Mon, 08 Jan 2024 16:24:22 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.82..@fluentui/react-infobutton_v9.0.0-beta.83) - -### Changes - -- Update version of @fluentui/react-icons to 2.0.224 ([PR #30078](https://github.com/microsoft/fluentui/pull/30078) by ololubek@microsoft.com) -- Bump @fluentui/react-label to v9.1.55 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball) -- Bump @fluentui/react-popover to v9.8.28 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball) -- Bump @fluentui/react-tabster to v9.17.0 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball) -- Bump @fluentui/react-utilities to v9.15.6 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.24 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball) - -## [9.0.0-beta.82](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.82) - -Wed, 03 Jan 2024 09:26:44 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.81..@fluentui/react-infobutton_v9.0.0-beta.82) - -### Changes - -- Bump @fluentui/react-label to v9.1.54 ([PR #30163](https://github.com/microsoft/fluentui/pull/30163) by beachball) -- Bump @fluentui/react-popover to v9.8.27 ([PR #30163](https://github.com/microsoft/fluentui/pull/30163) by beachball) -- Bump @fluentui/react-tabster to v9.16.1 ([PR #30163](https://github.com/microsoft/fluentui/pull/30163) by beachball) -- Bump @fluentui/react-utilities to v9.15.5 ([PR #30163](https://github.com/microsoft/fluentui/pull/30163) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.23 ([PR #30163](https://github.com/microsoft/fluentui/pull/30163) by beachball) - -## [9.0.0-beta.81](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.81) - -Mon, 18 Dec 2023 17:48:16 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.80..@fluentui/react-infobutton_v9.0.0-beta.81) - -### Changes - -- Bump @fluentui/react-popover to v9.8.26 ([PR #30010](https://github.com/microsoft/fluentui/pull/30010) by beachball) - -## [9.0.0-beta.80](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.80) - -Mon, 18 Dec 2023 14:40:46 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.79..@fluentui/react-infobutton_v9.0.0-beta.80) - -### Changes - -- Bump @fluentui/react-label to v9.1.53 ([PR #30103](https://github.com/microsoft/fluentui/pull/30103) by beachball) -- Bump @fluentui/react-popover to v9.8.25 ([PR #30103](https://github.com/microsoft/fluentui/pull/30103) by beachball) -- Bump @fluentui/react-tabster to v9.16.0 ([PR #30103](https://github.com/microsoft/fluentui/pull/30103) by beachball) -- Bump @fluentui/react-utilities to v9.15.4 ([PR #30103](https://github.com/microsoft/fluentui/pull/30103) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.22 ([PR #30103](https://github.com/microsoft/fluentui/pull/30103) by beachball) - -## [9.0.0-beta.79](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.79) - -Thu, 14 Dec 2023 09:58:46 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.78..@fluentui/react-infobutton_v9.0.0-beta.79) - -### Changes - -- Bump @fluentui/react-label to v9.1.52 ([PR #30056](https://github.com/microsoft/fluentui/pull/30056) by beachball) -- Bump @fluentui/react-popover to v9.8.24 ([PR #30056](https://github.com/microsoft/fluentui/pull/30056) by beachball) -- Bump @fluentui/react-tabster to v9.15.1 ([PR #30056](https://github.com/microsoft/fluentui/pull/30056) by beachball) -- Bump @fluentui/react-utilities to v9.15.3 ([PR #30056](https://github.com/microsoft/fluentui/pull/30056) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.21 ([PR #30056](https://github.com/microsoft/fluentui/pull/30056) by beachball) - -## [9.0.0-beta.78](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.78) - -Thu, 30 Nov 2023 13:42:08 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.77..@fluentui/react-infobutton_v9.0.0-beta.78) - -### Changes - -- Bump @fluentui/react-label to v9.1.51 ([PR #29929](https://github.com/microsoft/fluentui/pull/29929) by beachball) -- Bump @fluentui/react-popover to v9.8.23 ([PR #29929](https://github.com/microsoft/fluentui/pull/29929) by beachball) -- Bump @fluentui/react-tabster to v9.15.0 ([PR #29929](https://github.com/microsoft/fluentui/pull/29929) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.20 ([PR #29929](https://github.com/microsoft/fluentui/pull/29929) by beachball) - -## [9.0.0-beta.77](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.77) - -Mon, 20 Nov 2023 09:55:10 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.76..@fluentui/react-infobutton_v9.0.0-beta.77) - -### Changes - -- Bump @fluentui/react-label to v9.1.50 ([PR #29878](https://github.com/microsoft/fluentui/pull/29878) by beachball) -- Bump @fluentui/react-popover to v9.8.22 ([PR #29878](https://github.com/microsoft/fluentui/pull/29878) by beachball) -- Bump @fluentui/react-tabster to v9.14.6 ([PR #29878](https://github.com/microsoft/fluentui/pull/29878) by beachball) - -## [9.0.0-beta.76](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.76) - -Tue, 14 Nov 2023 17:51:27 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.75..@fluentui/react-infobutton_v9.0.0-beta.76) - -### Changes - -- Bump @fluentui/react-popover to v9.8.21 ([PR #29835](https://github.com/microsoft/fluentui/pull/29835) by beachball) -- Bump @fluentui/react-tabster to v9.14.5 ([PR #29835](https://github.com/microsoft/fluentui/pull/29835) by beachball) - -## [9.0.0-beta.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.75) - -Thu, 09 Nov 2023 17:29:36 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.74..@fluentui/react-infobutton_v9.0.0-beta.75) - -### Changes - -- Bump @fluentui/react-label to v9.1.49 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball) -- Bump @fluentui/react-popover to v9.8.20 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball) -- Bump @fluentui/react-tabster to v9.14.4 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball) -- Bump @fluentui/react-theme to v9.1.16 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball) -- Bump @fluentui/react-utilities to v9.15.2 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.19 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball) - -## [9.0.0-beta.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.74) - -Wed, 01 Nov 2023 12:55:59 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.73..@fluentui/react-infobutton_v9.0.0-beta.74) - -### Changes - -- Bump @fluentui/react-label to v9.1.48 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball) -- Bump @fluentui/react-popover to v9.8.19 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball) -- Bump @fluentui/react-tabster to v9.14.3 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball) -- Bump @fluentui/react-theme to v9.1.15 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball) - -## [9.0.0-beta.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.73) - -Sat, 28 Oct 2023 23:35:57 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.72..@fluentui/react-infobutton_v9.0.0-beta.73) - -### Changes - -- chore: Deprecate InfoLabel and InfoButton from react-infobutton in favor of react-infolabel. ([PR #29605](https://github.com/microsoft/fluentui/pull/29605) by esteban.230@hotmail.com) -- Bump @fluentui/react-label to v9.1.47 ([commit](https://github.com/microsoft/fluentui/commit/555b0fae3ec7f052e765557ae243c58000514f92) by beachball) -- Bump @fluentui/react-popover to v9.8.18 ([commit](https://github.com/microsoft/fluentui/commit/555b0fae3ec7f052e765557ae243c58000514f92) by beachball) -- Bump @fluentui/react-tabster to v9.14.2 ([commit](https://github.com/microsoft/fluentui/commit/555b0fae3ec7f052e765557ae243c58000514f92) by beachball) - -## [9.0.0-beta.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.72) - -Mon, 23 Oct 2023 09:51:57 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.71..@fluentui/react-infobutton_v9.0.0-beta.72) - -### Changes - -- Bump @fluentui/react-popover to v9.8.17 ([commit](https://github.com/microsoft/fluentui/commit/e4ef1febe8a185dddc10f8936944d177d50bc396) by beachball) -- Bump @fluentui/react-tabster to v9.14.1 ([commit](https://github.com/microsoft/fluentui/commit/e4ef1febe8a185dddc10f8936944d177d50bc396) by beachball) - -## [9.0.0-beta.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.71) - -Wed, 18 Oct 2023 17:54:03 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.70..@fluentui/react-infobutton_v9.0.0-beta.71) - -### Changes - -- chore: migrate from getNativeElementProps to getIntrinsicElementProps ([PR #29499](https://github.com/microsoft/fluentui/pull/29499) by bernardo.sunderhus@gmail.com) -- Bump @fluentui/react-label to v9.1.46 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball) -- Bump @fluentui/react-popover to v9.8.16 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball) -- Bump @fluentui/react-tabster to v9.14.0 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball) -- Bump @fluentui/react-utilities to v9.15.1 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.18 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball) - -## [9.0.0-beta.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.70) - -Thu, 12 Oct 2023 14:55:44 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.69..@fluentui/react-infobutton_v9.0.0-beta.70) - -### Changes - -- Bump @fluentui/react-label to v9.1.45 ([PR #29513](https://github.com/microsoft/fluentui/pull/29513) by beachball) -- Bump @fluentui/react-popover to v9.8.15 ([PR #29513](https://github.com/microsoft/fluentui/pull/29513) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.17 ([PR #29513](https://github.com/microsoft/fluentui/pull/29513) by beachball) - -## [9.0.0-beta.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.69) - -Wed, 11 Oct 2023 13:54:23 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.68..@fluentui/react-infobutton_v9.0.0-beta.69) - -### Changes - -- refactor: consume virtual parent utilities from @fluentui/react-utilities ([PR #29286](https://github.com/microsoft/fluentui/pull/29286) by lingfan.gao@microsoft.com) -- Bump @fluentui/react-label to v9.1.44 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball) -- Bump @fluentui/react-popover to v9.8.14 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball) -- Bump @fluentui/react-tabster to v9.13.6 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball) -- Bump @fluentui/react-utilities to v9.15.0 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.16 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball) - -## [9.0.0-beta.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.68) - -Mon, 09 Oct 2023 20:45:41 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.67..@fluentui/react-infobutton_v9.0.0-beta.68) - -### Changes - -- fix: Use caption 1 when size is small or medium. ([PR #29418](https://github.com/microsoft/fluentui/pull/29418) by esteban.230@hotmail.com) -- Bump @fluentui/react-label to v9.1.43 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball) -- Bump @fluentui/react-popover to v9.8.13 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball) -- Bump @fluentui/react-portal to v9.3.22 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball) -- Bump @fluentui/react-tabster to v9.13.5 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball) -- Bump @fluentui/react-utilities to v9.14.2 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.15 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball) - -## [9.0.0-beta.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.67) - -Thu, 05 Oct 2023 15:25:35 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.66..@fluentui/react-infobutton_v9.0.0-beta.67) - -### Changes - -- Bump @fluentui/react-label to v9.1.42 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball) -- Bump @fluentui/react-popover to v9.8.12 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball) -- Bump @fluentui/react-portal to v9.3.21 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball) -- Bump @fluentui/react-tabster to v9.13.4 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball) -- Bump @fluentui/react-utilities to v9.14.1 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.14 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball) - -## [9.0.0-beta.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.66) - -Wed, 04 Oct 2023 08:45:47 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.65..@fluentui/react-infobutton_v9.0.0-beta.66) - -### Changes - -- Bump @fluentui/react-label to v9.1.41 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball) -- Bump @fluentui/react-popover to v9.8.11 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball) -- Bump @fluentui/react-portal to v9.3.20 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball) -- Bump @fluentui/react-tabster to v9.13.3 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball) -- Bump @fluentui/react-utilities to v9.14.0 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.13 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball) - -## [9.0.0-beta.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.65) - -Mon, 02 Oct 2023 08:56:05 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.64..@fluentui/react-infobutton_v9.0.0-beta.65) - -### Changes - -- Bump @fluentui/react-label to v9.1.40 ([PR #29301](https://github.com/microsoft/fluentui/pull/29301) by beachball) -- Bump @fluentui/react-popover to v9.8.10 ([PR #29301](https://github.com/microsoft/fluentui/pull/29301) by beachball) -- Bump @fluentui/react-portal to v9.3.19 ([PR #29301](https://github.com/microsoft/fluentui/pull/29301) by beachball) -- Bump @fluentui/react-tabster to v9.13.2 ([PR #29301](https://github.com/microsoft/fluentui/pull/29301) by beachball) - -## [9.0.0-beta.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.64) - -Tue, 26 Sep 2023 17:49:06 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.63..@fluentui/react-infobutton_v9.0.0-beta.64) - -### Changes - -- chore: trigger manual version bump after broken release ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by yuanboxue@microsoft.com) -- Bump @fluentui/react-label to v9.1.39 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball) -- Bump @fluentui/react-popover to v9.8.9 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball) -- Bump @fluentui/react-portal to v9.3.18 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball) -- Bump @fluentui/react-tabster to v9.13.1 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball) -- Bump @fluentui/react-theme to v9.1.14 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball) -- Bump @fluentui/react-utilities to v9.13.5 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.12 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball) - -## [9.0.0-beta.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.63) - -Tue, 26 Sep 2023 15:31:58 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.62..@fluentui/react-infobutton_v9.0.0-beta.63) - -### Changes - -- fix: bump swc core to mitigate transpilation memory leaks ([PR #29253](https://github.com/microsoft/fluentui/pull/29253) by martinhochel@microsoft.com) -- chore: Update react-icons version to pick up IconDirectionContextProvider updated export ([PR #29151](https://github.com/microsoft/fluentui/pull/29151) by ololubek@microsoft.com) -- Bump @fluentui/react-label to v9.1.38 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball) -- Bump @fluentui/react-popover to v9.8.8 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball) -- Bump @fluentui/react-portal to v9.3.17 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball) -- Bump @fluentui/react-tabster to v9.13.0 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball) -- Bump @fluentui/react-theme to v9.1.13 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball) -- Bump @fluentui/react-utilities to v9.13.4 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.11 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball) - -## [9.0.0-beta.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.62) - -Wed, 20 Sep 2023 17:47:37 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.61..@fluentui/react-infobutton_v9.0.0-beta.62) - -### Changes - -- chore: trigger manual version bump after broken release ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by martinhochel@microsoft.com) -- Bump @fluentui/react-label to v9.1.37 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball) -- Bump @fluentui/react-popover to v9.8.7 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball) -- Bump @fluentui/react-portal to v9.3.16 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball) -- Bump @fluentui/react-tabster to v9.12.11 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.10 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball) - -## [9.0.0-beta.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.61) - -Wed, 20 Sep 2023 14:59:53 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.60..@fluentui/react-infobutton_v9.0.0-beta.61) - -### Changes - -- Bump @fluentui/react-label to v9.1.36 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball) -- Bump @fluentui/react-popover to v9.8.6 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball) -- Bump @fluentui/react-portal to v9.3.15 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball) -- Bump @fluentui/react-tabster to v9.12.10 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.9 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball) - -## [9.0.0-beta.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.60) - -Thu, 14 Sep 2023 16:44:47 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.59..@fluentui/react-infobutton_v9.0.0-beta.60) - -### Changes - -- Bump @fluentui/react-label to v9.1.35 ([PR #29145](https://github.com/microsoft/fluentui/pull/29145) by beachball) -- Bump @fluentui/react-popover to v9.8.5 ([PR #29145](https://github.com/microsoft/fluentui/pull/29145) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.8 ([PR #29145](https://github.com/microsoft/fluentui/pull/29145) by beachball) - -## [9.0.0-beta.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.59) - -Tue, 12 Sep 2023 08:51:32 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.58..@fluentui/react-infobutton_v9.0.0-beta.59) - -### Changes - -- feat(react-infobutton): Removing openOnHover from popover props and adding details about the infobutton pattern. ([PR #29120](https://github.com/microsoft/fluentui/pull/29120) by esteban.230@hotmail.com) -- fix: Popover should close when tabbing out of the surface. ([PR #28913](https://github.com/microsoft/fluentui/pull/28913) by esteban.230@hotmail.com) -- Bump @fluentui/react-label to v9.1.34 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball) -- Bump @fluentui/react-popover to v9.8.4 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball) -- Bump @fluentui/react-portal to v9.3.14 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball) -- Bump @fluentui/react-tabster to v9.12.9 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.7 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball) - -## [9.0.0-beta.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.58) - -Wed, 06 Sep 2023 13:31:31 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.57..@fluentui/react-infobutton_v9.0.0-beta.58) - -### Changes - -- Bump @fluentui/react-label to v9.1.33 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball) -- Bump @fluentui/react-popover to v9.8.3 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball) -- Bump @fluentui/react-tabster to v9.12.8 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball) -- Bump @fluentui/react-utilities to v9.13.3 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.6 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball) - -## [9.0.0-beta.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.57) - -Tue, 05 Sep 2023 15:39:04 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.56..@fluentui/react-infobutton_v9.0.0-beta.57) - -### Changes - -- Bump @fluentui/react-label to v9.1.32 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball) -- Bump @fluentui/react-popover to v9.8.2 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball) -- Bump @fluentui/react-tabster to v9.12.7 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball) -- Bump @fluentui/react-utilities to v9.13.2 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.5 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball) - -## [9.0.0-beta.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.56) - -Tue, 05 Sep 2023 13:29:24 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.55..@fluentui/react-infobutton_v9.0.0-beta.56) - -### Changes - -- chore: migrate package to use JSX importSource ([PR #28959](https://github.com/microsoft/fluentui/pull/28959) by bernardo.sunderhus@gmail.com) -- bumps @swc/helpers version to 0.5.1 ([PR #28989](https://github.com/microsoft/fluentui/pull/28989) by bernardo.sunderhus@gmail.com) -- Bump @fluentui/react-label to v9.1.31 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball) -- Bump @fluentui/react-popover to v9.8.1 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball) -- Bump @fluentui/react-tabster to v9.12.6 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball) -- Bump @fluentui/react-theme to v9.1.12 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball) -- Bump @fluentui/react-utilities to v9.13.1 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.4 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball) - -## [9.0.0-beta.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.55) - -Tue, 29 Aug 2023 12:57:34 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.54..@fluentui/react-infobutton_v9.0.0-beta.55) - -### Changes - -- fix(react-infobutton): Making InfoButton's PopoverSurface inline by default. ([PR #28605](https://github.com/microsoft/fluentui/pull/28605) by esteban.230@hotmail.com) -- Bump @fluentui/react-label to v9.1.30 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball) -- Bump @fluentui/react-popover to v9.8.0 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball) -- Bump @fluentui/react-tabster to v9.12.5 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball) -- Bump @fluentui/react-utilities to v9.13.0 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.3 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball) - -## [9.0.0-beta.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.54) - -Thu, 24 Aug 2023 10:26:35 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.53..@fluentui/react-infobutton_v9.0.0-beta.54) - -### Changes - -- Bump @fluentui/react-label to v9.1.29 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball) -- Bump @fluentui/react-popover to v9.7.18 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball) -- Bump @fluentui/react-tabster to v9.12.4 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball) -- Bump @fluentui/react-utilities to v9.12.0 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.2 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball) - -## [9.0.0-beta.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.53) - -Wed, 23 Aug 2023 12:01:49 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.52..@fluentui/react-infobutton_v9.0.0-beta.53) - -### Changes - -- Bump @fluentui/react-label to v9.1.28 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball) -- Bump @fluentui/react-popover to v9.7.17 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball) -- Bump @fluentui/react-tabster to v9.12.3 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball) -- Bump @fluentui/react-utilities to v9.11.2 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.1 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball) - -## [9.0.0-beta.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.52) - -Mon, 21 Aug 2023 11:38:00 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.51..@fluentui/react-infobutton_v9.0.0-beta.52) - -### Changes - -- fix: Cursor should be pointer when hovering the button to show it's a button. ([PR #28893](https://github.com/microsoft/fluentui/pull/28893) by esteban.230@hotmail.com) -- Bump @fluentui/react-popover to v9.7.16 ([PR #28884](https://github.com/microsoft/fluentui/pull/28884) by beachball) - -## [9.0.0-beta.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.51) - -Wed, 16 Aug 2023 17:41:08 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.50..@fluentui/react-infobutton_v9.0.0-beta.51) - -### Changes - -- Bump @fluentui/react-label to v9.1.27 ([PR #28885](https://github.com/microsoft/fluentui/pull/28885) by beachball) -- Bump @fluentui/react-popover to v9.7.15 ([PR #28885](https://github.com/microsoft/fluentui/pull/28885) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0 ([PR #28885](https://github.com/microsoft/fluentui/pull/28885) by beachball) - -## [9.0.0-beta.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.50) - -Wed, 16 Aug 2023 11:38:33 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.49..@fluentui/react-infobutton_v9.0.0-beta.50) - -### Changes - -- Bump @fluentui/react-label to v9.1.26 ([PR #28791](https://github.com/microsoft/fluentui/pull/28791) by beachball) -- Bump @fluentui/react-popover to v9.7.14 ([PR #28791](https://github.com/microsoft/fluentui/pull/28791) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.16 ([PR #28791](https://github.com/microsoft/fluentui/pull/28791) by beachball) - -## [9.0.0-beta.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.49) - -Fri, 11 Aug 2023 12:14:26 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.48..@fluentui/react-infobutton_v9.0.0-beta.49) - -### Changes - -- Bump @fluentui/react-label to v9.1.25 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball) -- Bump @fluentui/react-popover to v9.7.13 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball) -- Bump @fluentui/react-tabster to v9.12.2 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball) -- Bump @fluentui/react-utilities to v9.11.1 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.15 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball) - -## [9.0.0-beta.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.48) - -Wed, 09 Aug 2023 13:16:57 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.47..@fluentui/react-infobutton_v9.0.0-beta.48) - -### Changes - -- chore(cxe-red): migrate to new slot API ([PR #28753](https://github.com/microsoft/fluentui/pull/28753) by bernardo.sunderhus@gmail.com) -- chore: Update Griffel to latest version ([PR #28684](https://github.com/microsoft/fluentui/pull/28684) by olfedias@microsoft.com) -- Bump @fluentui/react-label to v9.1.24 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball) -- Bump @fluentui/react-popover to v9.7.12 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball) -- Bump @fluentui/react-tabster to v9.12.1 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball) -- Bump @fluentui/react-theme to v9.1.11 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.14 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball) - -## [9.0.0-beta.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.47) - -Fri, 04 Aug 2023 08:52:58 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.46..@fluentui/react-infobutton_v9.0.0-beta.47) - -### Changes - -- Bump @fluentui/react-label to v9.1.23 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball) -- Bump @fluentui/react-popover to v9.7.11 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball) -- Bump @fluentui/react-tabster to v9.12.0 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball) -- Bump @fluentui/react-theme to v9.1.10 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball) -- Bump @fluentui/react-utilities to v9.11.0 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.13 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball) - -## [9.0.0-beta.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.46) - -Tue, 01 Aug 2023 10:17:21 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.45..@fluentui/react-infobutton_v9.0.0-beta.46) - -### Changes - -- Bump @fluentui/react-label to v9.1.22 ([PR #28689](https://github.com/microsoft/fluentui/pull/28689) by beachball) -- Bump @fluentui/react-popover to v9.7.10 ([PR #28689](https://github.com/microsoft/fluentui/pull/28689) by beachball) -- Bump @fluentui/react-tabster to v9.11.1 ([PR #28689](https://github.com/microsoft/fluentui/pull/28689) by beachball) - -## [9.0.0-beta.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.45) - -Thu, 27 Jul 2023 10:34:14 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.44..@fluentui/react-infobutton_v9.0.0-beta.45) - -### Changes - -- Bump @fluentui/react-popover to v9.7.9 ([PR #28649](https://github.com/microsoft/fluentui/pull/28649) by beachball) - -## [9.0.0-beta.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.44) - -Tue, 25 Jul 2023 13:29:19 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.43..@fluentui/react-infobutton_v9.0.0-beta.44) - -### Changes - -- chore: Update react-icons version to pick up fowardref change. ([PR #28590](https://github.com/microsoft/fluentui/pull/28590) by ololubek@microsoft.com) -- Bump @fluentui/react-popover to v9.7.8 ([PR #28622](https://github.com/microsoft/fluentui/pull/28622) by beachball) -- Bump @fluentui/react-tabster to v9.11.0 ([PR #28622](https://github.com/microsoft/fluentui/pull/28622) by beachball) - -## [9.0.0-beta.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.43) - -Thu, 20 Jul 2023 18:27:29 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.42..@fluentui/react-infobutton_v9.0.0-beta.43) - -### Changes - -- Bump @fluentui/react-label to v9.1.21 ([PR #26826](https://github.com/microsoft/fluentui/pull/26826) by beachball) -- Bump @fluentui/react-popover to v9.7.7 ([PR #26826](https://github.com/microsoft/fluentui/pull/26826) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.12 ([PR #26826](https://github.com/microsoft/fluentui/pull/26826) by beachball) - -## [9.0.0-beta.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.42) - -Mon, 17 Jul 2023 21:27:35 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.41..@fluentui/react-infobutton_v9.0.0-beta.42) - -### Changes - -- fix(react-infobutton): Make InfoLabel only add aria-owns when the popover is open. ([PR #28463](https://github.com/microsoft/fluentui/pull/28463) by esteban.230@hotmail.com) -- feat(react-infobutton): Remove InfoIcon files from react-infobutton. ([PR #28534](https://github.com/microsoft/fluentui/pull/28534) by esteban.230@hotmail.com) - -## [9.0.0-beta.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.41) - -Tue, 11 Jul 2023 18:46:36 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.40..@fluentui/react-infobutton_v9.0.0-beta.41) - -### Changes - -- Bump @fluentui/react-label to v9.1.20 ([PR #28491](https://github.com/microsoft/fluentui/pull/28491) by beachball) -- Bump @fluentui/react-popover to v9.7.6 ([PR #28491](https://github.com/microsoft/fluentui/pull/28491) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.11 ([PR #28491](https://github.com/microsoft/fluentui/pull/28491) by beachball) -- Bump @fluentui/react-conformance-griffel to v9.0.0 ([PR #28491](https://github.com/microsoft/fluentui/pull/28491) by beachball) - -## [9.0.0-beta.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.40) - -Mon, 03 Jul 2023 13:34:28 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.39..@fluentui/react-infobutton_v9.0.0-beta.40) - -### Changes - -- Bump @fluentui/react-popover to v9.7.5 ([PR #28394](https://github.com/microsoft/fluentui/pull/28394) by beachball) -- Bump @fluentui/react-tabster to v9.10.0 ([PR #28394](https://github.com/microsoft/fluentui/pull/28394) by beachball) - -## [9.0.0-beta.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.39) - -Mon, 03 Jul 2023 11:57:14 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.38..@fluentui/react-infobutton_v9.0.0-beta.39) - -### Changes - -- Bump @fluentui/react-label to v9.1.19 ([PR #28412](https://github.com/microsoft/fluentui/pull/28412) by beachball) -- Bump @fluentui/react-popover to v9.7.4 ([PR #28412](https://github.com/microsoft/fluentui/pull/28412) by beachball) -- Bump @fluentui/react-tabster to v9.9.2 ([PR #28412](https://github.com/microsoft/fluentui/pull/28412) by beachball) -- Bump @fluentui/react-utilities to v9.10.1 ([PR #28412](https://github.com/microsoft/fluentui/pull/28412) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.10 ([PR #28412](https://github.com/microsoft/fluentui/pull/28412) by beachball) - -## [9.0.0-beta.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.38) - -Wed, 28 Jun 2023 11:12:27 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.37..@fluentui/react-infobutton_v9.0.0-beta.38) - -### Changes - -- Bump @fluentui/react-label to v9.1.18 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball) -- Bump @fluentui/react-popover to v9.7.3 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball) -- Bump @fluentui/react-tabster to v9.9.1 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball) -- Bump @fluentui/react-utilities to v9.10.0 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.9 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball) - -## [9.0.0-beta.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.37) - -Tue, 27 Jun 2023 11:21:23 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.36..@fluentui/react-infobutton_v9.0.0-beta.37) - -### Changes - -- Bump @fluentui/react-popover to v9.7.2 ([PR #28291](https://github.com/microsoft/fluentui/pull/28291) by beachball) -- Bump @fluentui/react-tabster to v9.9.0 ([PR #28291](https://github.com/microsoft/fluentui/pull/28291) by beachball) - -## [9.0.0-beta.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.36) - -Mon, 26 Jun 2023 09:53:55 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.35..@fluentui/react-infobutton_v9.0.0-beta.36) - -### Changes - -- Bump @fluentui/react-label to v9.1.17 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball) -- Bump @fluentui/react-popover to v9.7.1 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball) -- Bump @fluentui/react-tabster to v9.8.1 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball) -- Bump @fluentui/react-utilities to v9.9.4 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.8 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball) - -## [9.0.0-beta.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.35) - -Tue, 20 Jun 2023 12:38:58 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.34..@fluentui/react-infobutton_v9.0.0-beta.35) - -### Changes - -- chore: Create InfoIconLabel component scaffold. ([PR #28200](https://github.com/microsoft/fluentui/pull/28200) by esteban.230@hotmail.com) -- chore: Create InfoTip component. ([PR #28071](https://github.com/microsoft/fluentui/pull/28071) by esteban.230@hotmail.com) -- chore: update @fluentui/react-icons to 2.0.203 ([PR #28203](https://github.com/microsoft/fluentui/pull/28203) by ololubek@microsoft.com) -- chore: Rename InfoTip to InfoIcon to better align with InfoButton. ([PR #28177](https://github.com/microsoft/fluentui/pull/28177) by esteban.230@hotmail.com) -- Bump @fluentui/react-label to v9.1.16 ([PR #28229](https://github.com/microsoft/fluentui/pull/28229) by beachball) -- Bump @fluentui/react-popover to v9.7.0 ([PR #28229](https://github.com/microsoft/fluentui/pull/28229) by beachball) -- Bump @fluentui/react-tabster to v9.8.0 ([PR #28229](https://github.com/microsoft/fluentui/pull/28229) by beachball) -- Bump @fluentui/react-theme to v9.1.9 ([PR #28229](https://github.com/microsoft/fluentui/pull/28229) by beachball) -- Bump @fluentui/react-utilities to v9.9.3 ([PR #28229](https://github.com/microsoft/fluentui/pull/28229) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.7 ([PR #28229](https://github.com/microsoft/fluentui/pull/28229) by beachball) -- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.23 ([PR #28229](https://github.com/microsoft/fluentui/pull/28229) by beachball) - -## [9.0.0-beta.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.34) - -Wed, 31 May 2023 06:46:14 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.33..@fluentui/react-infobutton_v9.0.0-beta.34) - -### Changes - -- chore: Update Griffel to v1.5.7. ([PR #27925](https://github.com/microsoft/fluentui/pull/27925) by seanmonahan@microsoft.com) -- Bump @fluentui/react-label to v9.1.15 ([PR #28054](https://github.com/microsoft/fluentui/pull/28054) by beachball) -- Bump @fluentui/react-popover to v9.6.0 ([PR #28054](https://github.com/microsoft/fluentui/pull/28054) by beachball) -- Bump @fluentui/react-tabster to v9.7.5 ([PR #28054](https://github.com/microsoft/fluentui/pull/28054) by beachball) -- Bump @fluentui/react-utilities to v9.9.2 ([PR #28054](https://github.com/microsoft/fluentui/pull/28054) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.6 ([PR #28054](https://github.com/microsoft/fluentui/pull/28054) by beachball) -- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.22 ([PR #28054](https://github.com/microsoft/fluentui/pull/28054) by beachball) - -## [9.0.0-beta.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.33) - -Thu, 25 May 2023 10:00:48 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.32..@fluentui/react-infobutton_v9.0.0-beta.33) - -### Changes - -- Bump @fluentui/react-label to v9.1.14 ([PR #27988](https://github.com/microsoft/fluentui/pull/27988) by beachball) -- Bump @fluentui/react-popover to v9.5.15 ([PR #27988](https://github.com/microsoft/fluentui/pull/27988) by beachball) -- Bump @fluentui/react-tabster to v9.7.4 ([PR #27988](https://github.com/microsoft/fluentui/pull/27988) by beachball) -- Bump @fluentui/react-utilities to v9.9.1 ([PR #27988](https://github.com/microsoft/fluentui/pull/27988) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.5 ([PR #27988](https://github.com/microsoft/fluentui/pull/27988) by beachball) - -## [9.0.0-beta.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.32) - -Wed, 24 May 2023 20:45:27 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.31..@fluentui/react-infobutton_v9.0.0-beta.32) - -### Changes - -- Bump @fluentui/react-label to v9.1.13 ([PR #27989](https://github.com/microsoft/fluentui/pull/27989) by beachball) -- Bump @fluentui/react-popover to v9.5.14 ([PR #27989](https://github.com/microsoft/fluentui/pull/27989) by beachball) -- Bump @fluentui/react-tabster to v9.7.3 ([PR #27989](https://github.com/microsoft/fluentui/pull/27989) by beachball) - -## [9.0.0-beta.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.31) - -Thu, 18 May 2023 13:11:08 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.30..@fluentui/react-infobutton_v9.0.0-beta.31) - -### Changes - -- Bump @fluentui/react-popover to v9.5.13 ([PR #27540](https://github.com/microsoft/fluentui/pull/27540) by beachball) -- Bump @fluentui/react-tabster to v9.7.2 ([PR #27540](https://github.com/microsoft/fluentui/pull/27540) by beachball) - -## [9.0.0-beta.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.30) - -Thu, 18 May 2023 00:39:07 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.29..@fluentui/react-infobutton_v9.0.0-beta.30) - -### Changes - -- fix: Add aria-owns to InfoLabel. ([PR #27834](https://github.com/microsoft/fluentui/pull/27834) by esteban.230@hotmail.com) -- Bump @fluentui/react-label to v9.1.12 ([PR #27834](https://github.com/microsoft/fluentui/pull/27834) by beachball) -- Bump @fluentui/react-popover to v9.5.12 ([PR #27834](https://github.com/microsoft/fluentui/pull/27834) by beachball) -- Bump @fluentui/react-tabster to v9.7.1 ([PR #27834](https://github.com/microsoft/fluentui/pull/27834) by beachball) -- Bump @fluentui/react-utilities to v9.9.0 ([PR #27834](https://github.com/microsoft/fluentui/pull/27834) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.4 ([PR #27834](https://github.com/microsoft/fluentui/pull/27834) by beachball) - -## [9.0.0-beta.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.29) - -Fri, 12 May 2023 20:27:20 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.28..@fluentui/react-infobutton_v9.0.0-beta.29) - -### Changes - -- chore: exclude .swcrc from being published ([PR #27740](https://github.com/microsoft/fluentui/pull/27740) by olfedias@microsoft.com) -- chore: move makeStyles() calls to .styles.ts files ([PR #27710](https://github.com/microsoft/fluentui/pull/27710) by olfedias@microsoft.com) -- Bump @fluentui/react-label to v9.1.11 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball) -- Bump @fluentui/react-popover to v9.5.11 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball) -- Bump @fluentui/react-tabster to v9.7.0 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball) -- Bump @fluentui/react-theme to v9.1.8 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball) -- Bump @fluentui/react-utilities to v9.8.1 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.3 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball) -- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.21 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball) - -## [9.0.0-beta.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.28) - -Mon, 24 Apr 2023 08:12:37 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.27..@fluentui/react-infobutton_v9.0.0-beta.28) - -### Changes - -- chore: adopt custom JSX pragma ([PR #27615](https://github.com/microsoft/fluentui/pull/27615) by bernardo.sunderhus@gmail.com) -- Bump @fluentui/react-label to v9.1.10 ([commit](https://github.com/microsoft/fluentui/commit/505433ac64f144c9cca456097413d6af4582e5ee) by beachball) -- Bump @fluentui/react-popover to v9.5.10 ([commit](https://github.com/microsoft/fluentui/commit/505433ac64f144c9cca456097413d6af4582e5ee) by beachball) -- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.2 ([commit](https://github.com/microsoft/fluentui/commit/505433ac64f144c9cca456097413d6af4582e5ee) by beachball) - -## [9.0.0-beta.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.27) - -Mon, 17 Apr 2023 17:54:02 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.26..@fluentui/react-infobutton_v9.0.0-beta.27) - -### Changes - -- Bump @fluentui/react-label to v9.1.9 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball) -- Bump @fluentui/react-popover to v9.5.9 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball) -- Bump @fluentui/react-tabster to v9.6.5 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball) -- Bump @fluentui/react-utilities to v9.8.0 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball) - -## [9.0.0-beta.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.26) - -Wed, 12 Apr 2023 09:31:45 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.25..@fluentui/react-infobutton_v9.0.0-beta.26) - -### Changes - -- Bump @fluentui/react-label to v9.1.8 ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by beachball) -- Bump @fluentui/react-popover to v9.5.8 ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by beachball) -- Bump @fluentui/react-tabster to v9.6.4 ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by beachball) -- Bump @fluentui/react-utilities to v9.7.4 ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by beachball) - -## [9.0.0-beta.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.25) - -Tue, 04 Apr 2023 18:44:48 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.23..@fluentui/react-infobutton_v9.0.0-beta.25) - -### Changes - -- chore: Rename content slot to info. ([PR #27316](https://github.com/microsoft/fluentui/pull/27316) by esteban.230@hotmail.com) -- Bump @fluentui/react-label to v9.1.7 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball) -- Bump @fluentui/react-popover to v9.5.7 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball) -- Bump @fluentui/react-tabster to v9.6.3 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball) -- Bump @fluentui/react-utilities to v9.7.3 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball) - -## [9.0.0-beta.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.23) - -Tue, 21 Mar 2023 21:23:36 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.22..@fluentui/react-infobutton_v9.0.0-beta.23) - -### Changes - -- chore: Bumping version of @fluentui/react-icons to ^2.0.196. ([PR #27100](https://github.com/microsoft/fluentui/pull/27100) by makotom@microsoft.com) -- fix: add node field to package.json exports map. ([PR #27154](https://github.com/microsoft/fluentui/pull/27154) by tristan.watanabe@gmail.com) -- chore: migrate to swc transpilation approach. ([PR #27250](https://github.com/microsoft/fluentui/pull/27250) by tristan.watanabe@gmail.com) -- Bump @fluentui/react-label to v9.1.5 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball) -- Bump @fluentui/react-popover to v9.5.5 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball) -- Bump @fluentui/react-tabster to v9.6.1 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball) -- Bump @fluentui/react-theme to v9.1.7 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball) -- Bump @fluentui/react-utilities to v9.7.2 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball) -- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.20 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball) - -## [9.0.0-beta.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.22) - -Thu, 16 Mar 2023 14:36:57 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.21..@fluentui/react-infobutton_v9.0.0-beta.22) - -### Changes - -- feat: Add InfoLabel component ([PR #27118](https://github.com/microsoft/fluentui/pull/27118) by behowell@microsoft.com) -- Bump @fluentui/react-label to v9.1.4 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball) -- Bump @fluentui/react-popover to v9.5.4 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball) -- Bump @fluentui/react-tabster to v9.6.0 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball) -- Bump @fluentui/react-utilities to v9.7.1 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball) - -## [9.0.0-beta.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.21) - -Wed, 15 Mar 2023 10:19:53 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.20..@fluentui/react-infobutton_v9.0.0-beta.21) - -### Changes - -- Bump @fluentui/react-popover to v9.5.3 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball) -- Bump @fluentui/react-tabster to v9.5.7 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball) -- Bump @fluentui/react-theme to v9.1.6 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball) - -## [9.0.0-beta.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.20) - -Mon, 13 Mar 2023 08:58:26 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.19..@fluentui/react-infobutton_v9.0.0-beta.20) - -### Changes - -- Bump @fluentui/react-popover to v9.5.2 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball) -- Bump @fluentui/react-tabster to v9.5.6 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball) -- Bump @fluentui/react-utilities to v9.7.0 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball) - -## [9.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.19) - -Fri, 10 Mar 2023 07:14:01 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.18..@fluentui/react-infobutton_v9.0.0-beta.19) - -### Changes - -- Bump @fluentui/react-popover to v9.5.1 ([PR #27157](https://github.com/microsoft/fluentui/pull/27157) by beachball) -- Bump @fluentui/react-tabster to v9.5.5 ([PR #27157](https://github.com/microsoft/fluentui/pull/27157) by beachball) -- Bump @fluentui/react-utilities to v9.6.2 ([PR #27157](https://github.com/microsoft/fluentui/pull/27157) by beachball) - -## [9.0.0-beta.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.18) - -Wed, 08 Mar 2023 17:42:51 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.17..@fluentui/react-infobutton_v9.0.0-beta.18) - -### Changes - -- Bump @fluentui/react-popover to v9.5.0 ([PR #27127](https://github.com/microsoft/fluentui/pull/27127) by beachball) -- Bump @fluentui/react-tabster to v9.5.4 ([PR #27127](https://github.com/microsoft/fluentui/pull/27127) by beachball) -- Bump @fluentui/react-utilities to v9.6.1 ([PR #27127](https://github.com/microsoft/fluentui/pull/27127) by beachball) - -## [9.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.17) - -Wed, 22 Feb 2023 23:06:07 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.16..@fluentui/react-infobutton_v9.0.0-beta.17) - -### Changes - -- Bump @fluentui/react-popover to v9.4.11 ([PR #26616](https://github.com/microsoft/fluentui/pull/26616) by beachball) - -## [9.0.0-beta.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.16) - -Wed, 15 Feb 2023 11:44:52 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.15..@fluentui/react-infobutton_v9.0.0-beta.16) - -### Changes - -- Bump @fluentui/react-popover to v9.4.10 ([PR #26845](https://github.com/microsoft/fluentui/pull/26845) by beachball) -- Bump @fluentui/react-tabster to v9.5.3 ([PR #26845](https://github.com/microsoft/fluentui/pull/26845) by beachball) -- Bump @fluentui/react-utilities to v9.6.0 ([PR #26845](https://github.com/microsoft/fluentui/pull/26845) by beachball) - -## [9.0.0-beta.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.15) - -Mon, 13 Feb 2023 23:43:14 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.14..@fluentui/react-infobutton_v9.0.0-beta.15) - -### Changes - -- Bump @fluentui/react-popover to v9.4.9 ([PR #26814](https://github.com/microsoft/fluentui/pull/26814) by beachball) -- Bump @fluentui/react-tabster to v9.5.2 ([PR #26814](https://github.com/microsoft/fluentui/pull/26814) by beachball) -- Bump @fluentui/react-utilities to v9.5.3 ([PR #26814](https://github.com/microsoft/fluentui/pull/26814) by beachball) - -## [9.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.14) - -Mon, 13 Feb 2023 09:35:48 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.13..@fluentui/react-infobutton_v9.0.0-beta.14) - -### Changes - -- Bump @fluentui/react-popover to v9.4.8 ([PR #26800](https://github.com/microsoft/fluentui/pull/26800) by beachball) - -## [9.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.13) - -Fri, 10 Feb 2023 08:50:02 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.12..@fluentui/react-infobutton_v9.0.0-beta.13) - -### Changes - -- Bump @fluentui/react-popover to v9.4.7 ([commit](https://github.com/microsoft/fluentui/commit/cc62f050f8231e8f21a2cf7dddf33003e0ba3931) by beachball) -- Bump @fluentui/react-tabster to v9.5.1 ([commit](https://github.com/microsoft/fluentui/commit/cc62f050f8231e8f21a2cf7dddf33003e0ba3931) by beachball) -- Bump @fluentui/react-utilities to v9.5.2 ([commit](https://github.com/microsoft/fluentui/commit/cc62f050f8231e8f21a2cf7dddf33003e0ba3931) by beachball) - -## [9.0.0-beta.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.12) - -Tue, 07 Feb 2023 14:13:05 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.11..@fluentui/react-infobutton_v9.0.0-beta.12) - -### Changes - -- chore: Add aria-label to InfoButton's button and add a11y guidance for using InfoButton with a label. ([PR #26557](https://github.com/microsoft/fluentui/pull/26557) by esteban.230@hotmail.com) -- chore: Making the content focusable and updating example's text. ([PR #26596](https://github.com/microsoft/fluentui/pull/26596) by esteban.230@hotmail.com) -- Bump @fluentui/react-popover to v9.4.6 ([PR #26732](https://github.com/microsoft/fluentui/pull/26732) by beachball) -- Bump @fluentui/react-tabster to v9.5.0 ([PR #26732](https://github.com/microsoft/fluentui/pull/26732) by beachball) - -## [9.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.11) - -Tue, 31 Jan 2023 19:53:58 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.10..@fluentui/react-infobutton_v9.0.0-beta.11) - -### Changes - -- Bump @fluentui/react-popover to v9.4.5 ([PR #26557](https://github.com/microsoft/fluentui/pull/26557) by beachball) -- Bump @fluentui/react-tabster to v9.4.2 ([PR #26557](https://github.com/microsoft/fluentui/pull/26557) by beachball) -- Bump @fluentui/react-utilities to v9.5.1 ([PR #26557](https://github.com/microsoft/fluentui/pull/26557) by beachball) - -## [9.0.0-beta.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.10) - -Thu, 26 Jan 2023 13:31:03 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.9..@fluentui/react-infobutton_v9.0.0-beta.10) - -### Changes - -- Bump @fluentui/react-popover to v9.4.4 ([PR #26496](https://github.com/microsoft/fluentui/pull/26496) by beachball) -- Bump @fluentui/react-tabster to v9.4.1 ([PR #26496](https://github.com/microsoft/fluentui/pull/26496) by beachball) -- Bump @fluentui/react-utilities to v9.5.0 ([PR #26496](https://github.com/microsoft/fluentui/pull/26496) by beachball) - -## [9.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.9) - -Mon, 23 Jan 2023 16:43:12 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.8..@fluentui/react-infobutton_v9.0.0-beta.9) - -### Changes - -- Bump @fluentui/react-popover to v9.4.3 ([PR #26434](https://github.com/microsoft/fluentui/pull/26434) by beachball) - -## [9.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.8) - -Wed, 18 Jan 2023 16:32:57 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.7..@fluentui/react-infobutton_v9.0.0-beta.8) - -### Changes - -- Bump @fluentui/react-popover to v9.4.2 ([PR #26377](https://github.com/microsoft/fluentui/pull/26377) by beachball) -- Bump @fluentui/react-tabster to v9.4.0 ([PR #26377](https://github.com/microsoft/fluentui/pull/26377) by beachball) - -## [9.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.7) - -Mon, 16 Jan 2023 08:39:02 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.6..@fluentui/react-infobutton_v9.0.0-beta.7) - -### Changes - -- fix: Update border for Teams HCM to be transparent. ([PR #26305](https://github.com/microsoft/fluentui/pull/26305) by esteban.230@hotmail.com) -- fix: Update PopoverSurface's role to note and remove need to cast props passed to popover slot. ([PR #26300](https://github.com/microsoft/fluentui/pull/26300) by esteban.230@hotmail.com) -- Bump @fluentui/react-popover to v9.4.1 ([commit](https://github.com/microsoft/fluentui/commit/a870d8360e47f3ea03358c4e75e89e08a74845d7) by beachball) -- Bump @fluentui/react-tabster to v9.3.7 ([commit](https://github.com/microsoft/fluentui/commit/a870d8360e47f3ea03358c4e75e89e08a74845d7) by beachball) - -## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.6) - -Mon, 09 Jan 2023 14:35:02 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.5..@fluentui/react-infobutton_v9.0.0-beta.6) - -### Changes - -- Bump @fluentui/react-popover to v9.4.0 ([PR #26255](https://github.com/microsoft/fluentui/pull/26255) by beachball) -- Bump @fluentui/react-tabster to v9.3.6 ([PR #26255](https://github.com/microsoft/fluentui/pull/26255) by beachball) -- Bump @fluentui/react-utilities to v9.4.0 ([PR #26255](https://github.com/microsoft/fluentui/pull/26255) by beachball) - -## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.5) - -Wed, 04 Jan 2023 01:40:08 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.4..@fluentui/react-infobutton_v9.0.0-beta.5) - -### Changes - -- chore: migrate to new package structure. ([PR #26111](https://github.com/microsoft/fluentui/pull/26111) by tristan.watanabe@gmail.com) -- chore: Update Griffel to latest version ([PR #26045](https://github.com/microsoft/fluentui/pull/26045) by olfedias@microsoft.com) -- Bump @fluentui/react-popover to v9.3.6 ([PR #26114](https://github.com/microsoft/fluentui/pull/26114) by beachball) -- Bump @fluentui/react-tabster to v9.3.5 ([PR #26114](https://github.com/microsoft/fluentui/pull/26114) by beachball) -- Bump @fluentui/react-utilities to v9.3.1 ([PR #26114](https://github.com/microsoft/fluentui/pull/26114) by beachball) -- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.19 ([PR #26114](https://github.com/microsoft/fluentui/pull/26114) by beachball) - -## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.4) - -Wed, 21 Dec 2022 10:20:33 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.3..@fluentui/react-infobutton_v9.0.0-beta.4) - -### Changes - -- Bump @fluentui/react-popover to v9.3.5 ([commit](https://github.com/microsoft/fluentui/commit/66bf89f634cad4a275e957d7a2214c7e73ff8c2e) by beachball) -- Bump @fluentui/react-tabster to v9.3.4 ([commit](https://github.com/microsoft/fluentui/commit/66bf89f634cad4a275e957d7a2214c7e73ff8c2e) by beachball) -- Bump @fluentui/react-theme to v9.1.5 ([commit](https://github.com/microsoft/fluentui/commit/66bf89f634cad4a275e957d7a2214c7e73ff8c2e) by beachball) - -## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.3) - -Tue, 20 Dec 2022 14:59:34 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.2..@fluentui/react-infobutton_v9.0.0-beta.3) - -### Changes - -- Bump @fluentui/react-popover to v9.3.4 ([PR #26047](https://github.com/microsoft/fluentui/pull/26047) by beachball) -- Bump @fluentui/react-tabster to v9.3.3 ([PR #26047](https://github.com/microsoft/fluentui/pull/26047) by beachball) -- Bump @fluentui/react-theme to v9.1.4 ([PR #26047](https://github.com/microsoft/fluentui/pull/26047) by beachball) -- Bump @fluentui/react-utilities to v9.3.0 ([PR #26047](https://github.com/microsoft/fluentui/pull/26047) by beachball) - -## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.2) - -Mon, 05 Dec 2022 18:29:39 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.1..@fluentui/react-infobutton_v9.0.0-beta.2) - -### Changes - -- Bump @fluentui/react-popover to v9.3.3 ([PR #25798](https://github.com/microsoft/fluentui/pull/25798) by beachball) -- Bump @fluentui/react-tabster to v9.3.2 ([PR #25798](https://github.com/microsoft/fluentui/pull/25798) by beachball) -- Bump @fluentui/react-theme to v9.1.3 ([PR #25798](https://github.com/microsoft/fluentui/pull/25798) by beachball) - -## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.1) - -Thu, 17 Nov 2022 23:05:40 GMT - -### Changes - -- chore: Making the package public and preparing to add to unstable. ([PR #25686](https://github.com/microsoft/fluentui/pull/25686) by esteban.230@hotmail.com) -- Bump @fluentui/react-popover to v9.3.2 ([PR #25683](https://github.com/microsoft/fluentui/pull/25683) by beachball) -- Bump @fluentui/react-tabster to v9.3.1 ([PR #25683](https://github.com/microsoft/fluentui/pull/25683) by beachball) -- Bump @fluentui/react-utilities to v9.2.2 ([PR #25683](https://github.com/microsoft/fluentui/pull/25683) by beachball) diff --git a/packages/react-components/react-infobutton/LICENSE b/packages/react-components/react-infobutton/LICENSE deleted file mode 100644 index 4b45824df35f2..0000000000000 --- a/packages/react-components/react-infobutton/LICENSE +++ /dev/null @@ -1,15 +0,0 @@ -@fluentui/react-infobutton - -Copyright (c) Microsoft Corporation - -All rights reserved. - -MIT License - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Note: Usage of the fonts and icons referenced in Fluent UI React is subject to the terms listed at https://aka.ms/fluentui-assets-license diff --git a/packages/react-components/react-infobutton/README.md b/packages/react-components/react-infobutton/README.md deleted file mode 100644 index f214df8dc74e5..0000000000000 --- a/packages/react-components/react-infobutton/README.md +++ /dev/null @@ -1,8 +0,0 @@ -# @fluentui/react-infobutton - -**React Infobutton components for [Fluent UI React](https://react.fluentui.dev/)** - -# STATUS: Deprecated 🚧 - -This package has been deprecated and must no longer be used. We now provide an InfoLabel component in `@fluentui/react-components` and in `@fluentui/react-infolabel`. -Please refer to these packages if the component is needed. diff --git a/packages/react-components/react-infobutton/bundle-size/InfoButton.fixture.js b/packages/react-components/react-infobutton/bundle-size/InfoButton.fixture.js deleted file mode 100644 index 5869578ae58c3..0000000000000 --- a/packages/react-components/react-infobutton/bundle-size/InfoButton.fixture.js +++ /dev/null @@ -1,7 +0,0 @@ -import { InfoButton } from '@fluentui/react-infobutton'; - -console.log(InfoButton); - -export default { - name: 'InfoButton', -}; diff --git a/packages/react-components/react-infobutton/bundle-size/InfoLabel.fixture.js b/packages/react-components/react-infobutton/bundle-size/InfoLabel.fixture.js deleted file mode 100644 index db396f5802c38..0000000000000 --- a/packages/react-components/react-infobutton/bundle-size/InfoLabel.fixture.js +++ /dev/null @@ -1,7 +0,0 @@ -import { InfoLabel } from '@fluentui/react-infobutton'; - -console.log(InfoLabel); - -export default { - name: 'InfoLabel', -}; diff --git a/packages/react-components/react-infobutton/config/api-extractor.json b/packages/react-components/react-infobutton/config/api-extractor.json deleted file mode 100644 index e533bf30b48a2..0000000000000 --- a/packages/react-components/react-infobutton/config/api-extractor.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", - "extends": "@fluentui/scripts-api-extractor/api-extractor.common.v-next.json" -} diff --git a/packages/react-components/react-infobutton/config/tests.js b/packages/react-components/react-infobutton/config/tests.js deleted file mode 100644 index 2e211ae9e2142..0000000000000 --- a/packages/react-components/react-infobutton/config/tests.js +++ /dev/null @@ -1 +0,0 @@ -/** Jest test setup file. */ diff --git a/packages/react-components/react-infobutton/cypress.config.ts b/packages/react-components/react-infobutton/cypress.config.ts deleted file mode 100644 index ca52cf041bbf2..0000000000000 --- a/packages/react-components/react-infobutton/cypress.config.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { baseConfig } from '@fluentui/scripts-cypress'; - -export default baseConfig; diff --git a/packages/react-components/react-infobutton/docs/Spec.md b/packages/react-components/react-infobutton/docs/Spec.md deleted file mode 100644 index a852103e421cd..0000000000000 --- a/packages/react-components/react-infobutton/docs/Spec.md +++ /dev/null @@ -1,146 +0,0 @@ -# @fluentui/react-infobutton Spec - -Convergence epic issue: [#25062](https://github.com/microsoft/fluentui/issues/25062) - -## Background - -An InfoButton provides a way for users to get more information about a particular UI element. It is a button containing an icon that, when clicked, displays a Popover with the additional information. InfoButton may contain focusable items inside the Popover. - -Because the Popover isn't always visible, it should not contain information that people must know in order to complete the field. - -### Anatomy - -![Anatomy](../etc/images/anatomy.png) - -## Prior Art - -| Name | library | Notes | -| --------------------------------------------------- | ------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -| IconButtonTooltip | [Carbon Design System](https://www.carbondesignsystem.com/components/tooltip/usage) | This is an example within the tooltip component. | -| Tooltip with card appearance and general tooltip | [EverGreen](https://evergreen.segment.com/components/tooltip) | This are examples within the tooltip component. This library doesn't use a button, instead just an icon. | -| Input and guidance to add info button | [Salesforce](https://www.lightningdesignsystem.com/components/input/) | This component lives within Input and shows how to build an info button instead. | -| TextField with example on how to add an info button | [v8](https://developer.microsoft.com/en-us/fluentui#/controls/web/textfield) | This is just an example and on how to implement it. | -| ContextualHelp | [React Spectrum](https://react-spectrum.adobe.com/react-spectrum/ContextualHelp.html) | It's a full component and uses a Popover instead of tooltip. | - -#### Comparison with v0 and v8 - -- v0 does not have an InfoButton component. -- v8 does not have an InfoButton component, but does have a TextField component that has an example of how to add an info button to a TextField, see "Prior Art" section above for more details. - -## Sample Code - -```jsx - -``` - -## API - -#### Props - -See (InfoButton.types.ts)[../src/components/InfoButton/InfoButton.types.ts] for more API details. - -## Structure - -_**Public**_ - -```jsx - - Popover above-start lorem ipsum dolor sit amet consectetur. - Learn more - - } -/> -``` - -_**Internal**_ - -```jsx -return ( - - - - - - -); -``` - -_**DOM**_ - -```html - - - - -``` - -## Migration - -There's no migration guide as `v0` and `v8` do not have an InfoButton component. - -## Behaviors - -> Note: The behavior will change when used in conjunction with the `Field` component. It is mentioned that when a form has many InfoButtons, it may be better to not make a full tab stop in the button. The idea is to have each field have a "shortcut" that will let you focus on the infobutton. This will be implemented by Field if needed. - -- _Component States_ - - Popover open: The Popover is open and content visible. -- _Interaction_ - - _Keyboard_ - - `Enter` or `Space` key: Opens the Popover. - - Focusable items in Popover: Focus is moved to the `PopoverSurface` and focusable items can be accessed by tabbing. - - No focusable items in Popover: Focus is moved to the `PopoverSurface`. - - `Escape` key: Closes the Popover. - - _Cursor_ - - `Click`: Opens the Popover. - - `Click` outside of Popover: Closes the Popover. - - _Touch_ - - `Tap`: Opens the Popover. - - `Tap` outside of Popover: Closes the Popover. - - _Screen readers_ - - When focusing on the button, the screen reader should announce "{label associated to} information button collapsed". - - When the Popover is opened, the focus moves to the `PopoverSurface` and the screen reader announces the content of the `PopoverSurface` and "note" at the end. - -## Accessibility - -- `PopoverSurfaces`'s role is `note` and its `tabIndex` is set to `-1`. -- The button's `aria-label` is `information`. -- Tab order - - When tabbing through the page, the button should be a tab stop. - - When focused on the button, pressing `Enter` or `Space` should open the Popover. - - When the Popover is open, focus is moved to the `PopoverSurface`. - - When focused on the `PopoverSurface` or content within it, pressing `Escape` should close the Popover. - -## InfoButton vs. InfoIcon - -There are two use cases we want to tackle, covering these means covering the 80-90% of use cases: - -1. When the bubble has a few words and no interactive elements. -2. When the bubble may have more than a few sentences and interactive elements. - -After considering the options, we've decided to have two controls that will cover these use cases. The first one will be InfoIcon which will cover the first use case and the second one will be InfoButton which will cover the second use case. - -### InfoIcon - Icon with a Tooltip - -- An InfoIcon is an icon that has a tooltip. -- InfoIcons must keep the default cursor even when hovered. -- InfoIcons are opened when hovered or focused. -- InfoIcons do not move focus when opened. - -### InfoButton - InfoButton with a Popover - -- An InfoButton is a button that has a Popover attached to it. -- InfoButtons must use the pointer cursor to show this is a button and will have a backplate to differenciate the icon vs button. -- InfoButtons do not open when focused/hovered, instead they open on click/space/enter. -- InfoButton's bubble can be dismissed by pressing Escape, clicking outside the bubble, moving focus away from the bubble, or clicking the button again. -- InfoButton has role note and moves focus to the Popover's surface. - -## InfoButtonLabel and InfoIconLabel - -To avoid having accessibility issues, we will be providing these controls in the form of InfoIconLabel and InfoButtonLabel. These will provide an out of the box accessibility ready experience. diff --git a/packages/react-components/react-infobutton/etc/images/anatomy.png b/packages/react-components/react-infobutton/etc/images/anatomy.png deleted file mode 100644 index a4361077d502522d31784e1c75349213d74c477e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 39342 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

hOO%Bp1J#K|h#Dj5sCmS+ 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 diff --git a/packages/react-components/react-infobutton/etc/react-infobutton.api.md b/packages/react-components/react-infobutton/etc/react-infobutton.api.md deleted file mode 100644 index c9d80fc87725c..0000000000000 --- a/packages/react-components/react-infobutton/etc/react-infobutton.api.md +++ /dev/null @@ -1,82 +0,0 @@ -## API Report File for "@fluentui/react-infobutton" - -> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). - -```ts - -/// - -import type { ComponentProps } from '@fluentui/react-utilities'; -import type { ComponentState } from '@fluentui/react-utilities'; -import { ForwardRefComponent } from '@fluentui/react-utilities'; -import { Label } from '@fluentui/react-label'; -import type { PopoverProps } from '@fluentui/react-popover'; -import type { PopoverSurface } from '@fluentui/react-popover'; -import * as React_2 from 'react'; -import type { Slot } from '@fluentui/react-utilities'; -import type { SlotClassNames } from '@fluentui/react-utilities'; - -// @public @deprecated -export const InfoButton: ForwardRefComponent; - -// @public @deprecated (undocumented) -export const infoButtonClassNames: SlotClassNames; - -// @public @deprecated -export type InfoButtonProps = Omit>, 'disabled'> & { - size?: 'small' | 'medium' | 'large'; - inline?: boolean; -}; - -// @public @deprecated (undocumented) -export type InfoButtonSlots = { - root: NonNullable>; - popover: NonNullable>>>; - info: NonNullable>; -}; - -// @public @deprecated -export type InfoButtonState = ComponentState & Required>; - -// @public @deprecated -export const InfoLabel: ForwardRefComponent; - -// @public @deprecated (undocumented) -export const infoLabelClassNames: SlotClassNames; - -// @public @deprecated -export type InfoLabelProps = ComponentProps, 'label'> & { - info?: InfoButtonProps['info']; -}; - -// @public @deprecated (undocumented) -export type InfoLabelSlots = { - root: NonNullable>; - label: NonNullable>; - infoButton: Slot; -}; - -// @public @deprecated -export type InfoLabelState = ComponentState & Pick; - -// @public @deprecated -export const renderInfoButton_unstable: (state: InfoButtonState) => JSX.Element; - -// @public @deprecated -export const renderInfoLabel_unstable: (state: InfoLabelState) => JSX.Element; - -// @public @deprecated -export const useInfoButton_unstable: (props: InfoButtonProps, ref: React_2.Ref) => InfoButtonState; - -// @public -export const useInfoButtonStyles_unstable: (state: InfoButtonState) => InfoButtonState; - -// @public @deprecated -export const useInfoLabel_unstable: (props: InfoLabelProps, ref: React_2.Ref) => InfoLabelState; - -// @public @deprecated -export const useInfoLabelStyles_unstable: (state: InfoLabelState) => InfoLabelState; - -// (No @packageDocumentation comment for this package) - -``` diff --git a/packages/react-components/react-infobutton/jest.config.js b/packages/react-components/react-infobutton/jest.config.js deleted file mode 100644 index f1c37a04aa5a3..0000000000000 --- a/packages/react-components/react-infobutton/jest.config.js +++ /dev/null @@ -1,21 +0,0 @@ -// @ts-check - -/** - * @type {import('@jest/types').Config.InitialOptions} - */ -module.exports = { - displayName: 'react-infobutton', - preset: '../../../jest.preset.js', - transform: { - '^.+\\.tsx?$': [ - 'ts-jest', - { - tsconfig: '/tsconfig.spec.json', - isolatedModules: true, - }, - ], - }, - coverageDirectory: './coverage', - setupFilesAfterEnv: ['./config/tests.js'], - snapshotSerializers: ['@griffel/jest-serializer'], -}; diff --git a/packages/react-components/react-infobutton/just.config.ts b/packages/react-components/react-infobutton/just.config.ts deleted file mode 100644 index b7b2c9a33bf43..0000000000000 --- a/packages/react-components/react-infobutton/just.config.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { preset, task } from '@fluentui/scripts-tasks'; - -preset(); - -task('build', 'build:react-components').cached?.(); diff --git a/packages/react-components/react-infobutton/package.json b/packages/react-components/react-infobutton/package.json deleted file mode 100644 index b7d26deb5a44c..0000000000000 --- a/packages/react-components/react-infobutton/package.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "name": "@fluentui/react-infobutton", - "version": "9.0.0-beta.99", - "description": "React components for building web experiences", - "main": "lib-commonjs/index.js", - "module": "lib/index.js", - "typings": "./dist/index.d.ts", - "sideEffects": false, - "repository": { - "type": "git", - "url": "https://github.com/microsoft/fluentui" - }, - "license": "MIT", - "scripts": { - "build": "just-scripts build", - "bundle-size": "monosize measure", - "clean": "just-scripts clean", - "code-style": "just-scripts code-style", - "just": "just-scripts", - "lint": "just-scripts lint", - "test": "jest --passWithNoTests", - "generate-api": "just-scripts generate-api", - "type-check": "tsc -b tsconfig.json", - "storybook": "start-storybook", - "start": "yarn storybook", - "e2e": "cypress run --component", - "e2e:local": "cypress open --component", - "test-ssr": "test-ssr \"./stories/**/*.stories.tsx\"" - }, - "devDependencies": { - "@fluentui/eslint-plugin": "*", - "@fluentui/react-conformance": "*", - "@fluentui/react-conformance-griffel": "*", - "@fluentui/scripts-api-extractor": "*", - "@fluentui/scripts-tasks": "*" - }, - "dependencies": { - "@fluentui/react-icons": "^2.0.224", - "@fluentui/react-label": "^9.1.67", - "@fluentui/react-popover": "^9.9.3", - "@fluentui/react-tabster": "^9.19.6", - "@fluentui/react-theme": "^9.1.19", - "@fluentui/react-utilities": "^9.18.6", - "@fluentui/react-jsx-runtime": "^9.0.35", - "@griffel/react": "^1.5.14", - "@swc/helpers": "^0.5.1" - }, - "peerDependencies": { - "@types/react": ">=16.14.0 <19.0.0", - "@types/react-dom": ">=16.9.0 <19.0.0", - "react": ">=16.14.0 <19.0.0", - "react-dom": ">=16.14.0 <19.0.0" - }, - "beachball": { - "disallowedChangeTypes": [ - "major", - "minor", - "patch" - ] - }, - "exports": { - ".": { - "types": "./dist/index.d.ts", - "node": "./lib-commonjs/index.js", - "import": "./lib/index.js", - "require": "./lib-commonjs/index.js" - }, - "./package.json": "./package.json" - }, - "files": [ - "*.md", - "dist/*.d.ts", - "lib", - "lib-commonjs" - ] -} diff --git a/packages/react-components/react-infobutton/project.json b/packages/react-components/react-infobutton/project.json deleted file mode 100644 index 72eb25be14239..0000000000000 --- a/packages/react-components/react-infobutton/project.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "@fluentui/react-infobutton", - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "projectType": "library", - "implicitDependencies": [], - "sourceRoot": "packages/react-components/react-infobutton/src", - "tags": ["vNext", "platform:web"] -} diff --git a/packages/react-components/react-infobutton/src/InfoButton.ts b/packages/react-components/react-infobutton/src/InfoButton.ts deleted file mode 100644 index b72362c124c2a..0000000000000 --- a/packages/react-components/react-infobutton/src/InfoButton.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './components/InfoButton/index'; diff --git a/packages/react-components/react-infobutton/src/InfoLabel.ts b/packages/react-components/react-infobutton/src/InfoLabel.ts deleted file mode 100644 index 32746564357c2..0000000000000 --- a/packages/react-components/react-infobutton/src/InfoLabel.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './components/InfoLabel/index'; diff --git a/packages/react-components/react-infobutton/src/components/InfoButton/DefaultInfoButtonIcons.tsx b/packages/react-components/react-infobutton/src/components/InfoButton/DefaultInfoButtonIcons.tsx deleted file mode 100644 index 463159b2ae819..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoButton/DefaultInfoButtonIcons.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import { - Info12Regular, - Info12Filled, - Info16Regular, - Info16Filled, - Info20Regular, - Info20Filled, - bundleIcon, -} from '@fluentui/react-icons'; - -export const DefaultInfoButtonIcon12 = bundleIcon(Info12Filled, Info12Regular); -export const DefaultInfoButtonIcon16 = bundleIcon(Info16Filled, Info16Regular); -export const DefaultInfoButtonIcon20 = bundleIcon(Info20Filled, Info20Regular); diff --git a/packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.test.tsx b/packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.test.tsx deleted file mode 100644 index 29174140eaa51..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.test.tsx +++ /dev/null @@ -1,48 +0,0 @@ -/* eslint-disable deprecation/deprecation */ -import { InfoButton } from './InfoButton'; -import { isConformant } from '../../testing/isConformant'; -import { infoButtonClassNames } from './useInfoButtonStyles.styles'; -import type { RenderResult } from '@testing-library/react'; - -// testing-library's queryByRole function doesn't look inside portals -function queryByRoleNote(result: RenderResult) { - const notes = result.baseElement.querySelectorAll('[role="note"]'); - if (!notes?.length) { - return null; - } else { - expect(notes.length).toBe(1); - return notes.item(0) as HTMLElement; - } -} - -const getPopoverSurfaceElement = (result: RenderResult) => { - // button needs to be clicked otherwise content won't be rendered. - result.getByRole('button').click(); - const dialog = queryByRoleNote(result); - expect(dialog).not.toBeNull(); - return dialog!; -}; - -describe('InfoButton', () => { - isConformant({ - Component: InfoButton, - displayName: 'InfoButton', - requiredProps: { - info: "This is an InfoButton's information.", - }, - testOptions: { - 'has-static-classnames': [ - { - props: { - info: "This is an InfoButton's information.", - }, - expectedClassNames: { - root: infoButtonClassNames.root, - info: infoButtonClassNames.info, - }, - getPortalElement: getPopoverSurfaceElement, - }, - ], - }, - }); -}); diff --git a/packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.tsx b/packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.tsx deleted file mode 100644 index bfaa837a44d73..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.tsx +++ /dev/null @@ -1,21 +0,0 @@ -/* eslint-disable deprecation/deprecation */ -import * as React from 'react'; -import { ForwardRefComponent } from '@fluentui/react-utilities'; -import { renderInfoButton_unstable } from './renderInfoButton'; -import { useInfoButton_unstable } from './useInfoButton'; -import { useInfoButtonStyles_unstable } from './useInfoButtonStyles.styles'; -import type { InfoButtonProps } from './InfoButton.types'; - -/** - * InfoButtons provide a way to display additional information about a form field or an area in the UI. - * - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -export const InfoButton: ForwardRefComponent = React.forwardRef((props, ref) => { - const state = useInfoButton_unstable(props, ref); - - useInfoButtonStyles_unstable(state); - return renderInfoButton_unstable(state); -}); - -InfoButton.displayName = 'InfoButton'; diff --git a/packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.types.ts b/packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.types.ts deleted file mode 100644 index a678c59a85831..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.types.ts +++ /dev/null @@ -1,48 +0,0 @@ -/* eslint-disable deprecation/deprecation */ -import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities'; -import type { PopoverProps, PopoverSurface } from '@fluentui/react-popover'; - -/** - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -export type InfoButtonSlots = { - root: NonNullable>; - - /** - * The Popover element that wraps the info and root slots. Use this slot to pass props to the Popover. - */ - popover: NonNullable>>>; - - /** - * The information to be displayed in the PopoverSurface when the button is pressed. - */ - info: NonNullable>; -}; - -/** - * InfoButton Props - * - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -export type InfoButtonProps = Omit>, 'disabled'> & { - /** - * Size of the InfoButton. - * - * @default medium - */ - size?: 'small' | 'medium' | 'large'; - - /** - * Whether the InfoButton should be rendered inline or on a Portal. - * - * @default true - */ - inline?: boolean; -}; - -/** - * State used in rendering InfoButton - * - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -export type InfoButtonState = ComponentState & Required>; diff --git a/packages/react-components/react-infobutton/src/components/InfoButton/index.ts b/packages/react-components/react-infobutton/src/components/InfoButton/index.ts deleted file mode 100644 index 5dd78b2d5989e..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoButton/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -export * from './InfoButton'; -export * from './InfoButton.types'; -export * from './renderInfoButton'; -export * from './useInfoButton'; -export * from './useInfoButtonStyles.styles'; diff --git a/packages/react-components/react-infobutton/src/components/InfoButton/renderInfoButton.tsx b/packages/react-components/react-infobutton/src/components/InfoButton/renderInfoButton.tsx deleted file mode 100644 index d7eeff7f4a4ed..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoButton/renderInfoButton.tsx +++ /dev/null @@ -1,25 +0,0 @@ -/* eslint-disable deprecation/deprecation */ -/** @jsxRuntime automatic */ -/** @jsxImportSource @fluentui/react-jsx-runtime */ - -import { assertSlots } from '@fluentui/react-utilities'; -import { PopoverTrigger } from '@fluentui/react-popover'; -import type { InfoButtonState, InfoButtonSlots } from './InfoButton.types'; - -/** - * Render the final JSX of InfoButton - * - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -export const renderInfoButton_unstable = (state: InfoButtonState) => { - assertSlots(state); - - return ( - - - - - - - ); -}; diff --git a/packages/react-components/react-infobutton/src/components/InfoButton/useInfoButton.tsx b/packages/react-components/react-infobutton/src/components/InfoButton/useInfoButton.tsx deleted file mode 100644 index 92918753e8ca4..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoButton/useInfoButton.tsx +++ /dev/null @@ -1,113 +0,0 @@ -/* eslint-disable deprecation/deprecation */ -import * as React from 'react'; -import { DefaultInfoButtonIcon12, DefaultInfoButtonIcon16, DefaultInfoButtonIcon20 } from './DefaultInfoButtonIcons'; -import { - getIntrinsicElementProps, - mergeCallbacks, - useControllableState, - slot, - useMergedRefs, - isHTMLElement, - elementContains, -} from '@fluentui/react-utilities'; -import { Popover, PopoverSurface } from '@fluentui/react-popover'; -import type { InfoButtonProps, InfoButtonState } from './InfoButton.types'; -import type { PopoverProps } from '@fluentui/react-popover'; - -const infoButtonIconMap = { - small: , - medium: , - large: , -} as const; - -const popoverSizeMap = { - small: 'small', - medium: 'small', - large: 'medium', -} as const; - -/** - * Create the state required to render InfoButton. - * - * The returned state can be modified with hooks such as useInfoButtonStyles_unstable, - * before being passed to renderInfoButton_unstable. - * - * @param props - props from this instance of InfoButton - * @param ref - reference to root HTMLElement of InfoButton - * - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -export const useInfoButton_unstable = (props: InfoButtonProps, ref: React.Ref): InfoButtonState => { - const { size = 'medium', inline = true } = props; - - const state: InfoButtonState = { - inline, - size, - - components: { - root: 'button', - popover: Popover as React.FC>, - info: PopoverSurface, - }, - - root: slot.always( - getIntrinsicElementProps('button', { - children: infoButtonIconMap[size], - type: 'button', - 'aria-label': 'information', - ...props, - // FIXME: - // `ref` is wrongly assigned to be `HTMLElement` instead of `HTMLButtonElement` - // but since it would be a breaking change to fix it, we are casting ref to it's proper type - ref: ref as React.Ref, - }), - { elementType: 'button' }, - ), - popover: slot.always(props.popover, { - defaultProps: { - inline, - positioning: 'above-start', - size: popoverSizeMap[size], - withArrow: true, - }, - elementType: Popover as React.FC>>, - }), - info: slot.always(props.info, { - defaultProps: { - role: 'note', - tabIndex: -1, - }, - elementType: PopoverSurface, - }), - }; - - const [popoverOpen, setPopoverOpen] = useControllableState({ - state: state.popover.open, - defaultState: state.popover.defaultOpen, - initialState: false, - }); - - state.popover.open = popoverOpen; - state.popover.onOpenChange = mergeCallbacks(state.popover.onOpenChange, (e, data) => setPopoverOpen(data.open)); - - const focusOutRef = React.useCallback( - (el: HTMLDivElement) => { - if (!el) { - return; - } - - el.addEventListener('focusout', e => { - const nextFocused = e.relatedTarget; - - if (isHTMLElement(nextFocused) && !elementContains(el, nextFocused)) { - setPopoverOpen(false); - } - }); - }, - [setPopoverOpen], - ); - - state.info.ref = useMergedRefs(state.info.ref, focusOutRef); - - return state; -}; diff --git a/packages/react-components/react-infobutton/src/components/InfoButton/useInfoButtonStyles.styles.ts b/packages/react-components/react-infobutton/src/components/InfoButton/useInfoButtonStyles.styles.ts deleted file mode 100644 index 52447d9250630..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoButton/useInfoButtonStyles.styles.ts +++ /dev/null @@ -1,134 +0,0 @@ -/* eslint-disable deprecation/deprecation */ -import { createFocusOutlineStyle } from '@fluentui/react-tabster'; -import { iconFilledClassName, iconRegularClassName } from '@fluentui/react-icons'; -import { makeStyles, mergeClasses, shorthands } from '@griffel/react'; -import { tokens, typographyStyles } from '@fluentui/react-theme'; -import type { InfoButtonSlots, InfoButtonState } from './InfoButton.types'; -import type { SlotClassNames } from '@fluentui/react-utilities'; - -/** - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -export const infoButtonClassNames: SlotClassNames = { - root: 'fui-InfoButton', - // this className won't be used, but it's needed to satisfy the type checker - popover: 'fui-InfoButton__popover', - info: 'fui-InfoButton__info', -}; - -/** - * Styles for the root slot - * - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -const useButtonStyles = makeStyles({ - base: { - alignItems: 'center', - boxSizing: 'border-box', - display: 'inline-flex', - justifyContent: 'center', - textDecorationLine: 'none', - verticalAlign: 'middle', - position: 'relative', - - backgroundColor: tokens.colorTransparentBackground, - color: tokens.colorNeutralForeground2, - - ...shorthands.borderStyle('none'), - ...shorthands.borderRadius(tokens.borderRadiusMedium), - ...shorthands.margin(0), - ...shorthands.padding(tokens.spacingVerticalXS, tokens.spacingHorizontalXS), - - [`& .${iconFilledClassName}`]: { - display: 'none', - }, - [`& .${iconRegularClassName}`]: { - display: 'inline-flex', - }, - - ':hover': { - backgroundColor: tokens.colorTransparentBackgroundHover, - color: tokens.colorNeutralForeground2BrandHover, - cursor: 'pointer', - - [`& .${iconFilledClassName}`]: { - display: 'inline-flex', - }, - [`& .${iconRegularClassName}`]: { - display: 'none', - }, - }, - ':hover:active': { - backgroundColor: tokens.colorTransparentBackgroundPressed, - color: tokens.colorNeutralForeground2BrandPressed, - }, - }, - - selected: { - backgroundColor: tokens.colorTransparentBackgroundSelected, - color: tokens.colorNeutralForeground2BrandSelected, - - [`& .${iconFilledClassName}`]: { - display: 'inline-flex', - }, - [`& .${iconRegularClassName}`]: { - display: 'none', - }, - - '@media (forced-colors: active)': { - backgroundColor: 'Highlight', - color: 'Canvas', - }, - }, - - highContrast: { - '@media (forced-colors: active)': { - color: 'CanvasText', - - ':hover,:hover:active': { - forcedColorAdjust: 'none', - backgroundColor: 'Highlight', - color: 'Canvas', - }, - }, - }, - - focusIndicator: createFocusOutlineStyle(), - - large: { - ...shorthands.padding(tokens.spacingVerticalXXS, tokens.spacingVerticalXXS), - }, -}); - -const usePopoverSurfaceStyles = makeStyles({ - smallMedium: typographyStyles.caption1, - large: typographyStyles.body1, -}); - -/** - * Apply styling to the InfoButton slots based on the state - */ -export const useInfoButtonStyles_unstable = (state: InfoButtonState): InfoButtonState => { - const { size } = state; - const { open } = state.popover; - const buttonStyles = useButtonStyles(); - const popoverSurfaceStyles = usePopoverSurfaceStyles(); - - state.info.className = mergeClasses( - infoButtonClassNames.info, - size === 'large' ? popoverSurfaceStyles.large : popoverSurfaceStyles.smallMedium, - state.info.className, - ); - - state.root.className = mergeClasses( - infoButtonClassNames.root, - buttonStyles.base, - buttonStyles.highContrast, - buttonStyles.focusIndicator, - open && buttonStyles.selected, - size === 'large' && buttonStyles.large, - state.root.className, - ); - - return state; -}; diff --git a/packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.cy.tsx b/packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.cy.tsx deleted file mode 100644 index 0021bc1ba9edf..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.cy.tsx +++ /dev/null @@ -1,83 +0,0 @@ -/* eslint-disable deprecation/deprecation */ -/// - -import * as React from 'react'; -import { mount as mountBase } from '@cypress/react'; -import { FluentProvider } from '@fluentui/react-provider'; -import { teamsLightTheme } from '@fluentui/react-theme'; -import { InfoLabel } from '@fluentui/react-infobutton'; - -const mount = (element: JSX.Element) => { - mountBase({element}); -}; - -const surfaceSelector = '[role="note"]'; - -describe('InfoLabel - close on tab-out', () => { - const openInfoButton = () => { - cy.get('button').focus().realPress('{enter}'); - }; - - it('no focusable elements', () => { - mount(); - - openInfoButton(); - cy.realPress(['Shift', 'Tab']).get(surfaceSelector).should('not.exist'); - openInfoButton(); - cy.realPress('Tab').get(surfaceSelector).should('not.exist'); - }); - - it('single focusable element', () => { - mount( - - Example non-focusable info - - - } - />, - ); - - openInfoButton(); - cy.realPress(['Shift', 'Tab']).get(surfaceSelector).should('not.exist'); - openInfoButton(); - // moving into the focusable item - cy.realPress('Tab').get(surfaceSelector).should('exist'); - // tabbing out with shift + tab from the first focusable item should close the surface since - // the surface is only focusable programmatically - cy.realPress(['Shift', 'Tab']).get(surfaceSelector).should('not.exist'); - openInfoButton(); - cy.realPress('Tab').realPress('Tab').get(surfaceSelector).should('not.exist'); - }); - - it('one or more focusable elements', () => { - mount( - - Example non-focusable info - - - - - } - />, - ); - - openInfoButton(); - cy.realPress(['Shift', 'Tab']).get(surfaceSelector).should('not.exist'); - openInfoButton(); - // moving into the focusable item - cy.realPress('Tab').get(surfaceSelector).should('exist'); - // tabbing out with shift + tab from the first focusable item should close the surface since - // the surface is only focusable programmatically - cy.realPress(['Shift', 'Tab']).get(surfaceSelector).should('not.exist'); - openInfoButton(); - // checking that event does not propagate to children - cy.realPress('Tab').realPress('Tab').realPress(['Shift', 'Tab']).get(surfaceSelector).should('exist'); - cy.realPress('Tab').realPress('Tab').realPress('Tab').get(surfaceSelector).should('not.exist'); - }); -}); diff --git a/packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.test.tsx b/packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.test.tsx deleted file mode 100644 index 811b3431c0499..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.test.tsx +++ /dev/null @@ -1,65 +0,0 @@ -/* eslint-disable deprecation/deprecation */ -import * as React from 'react'; - -import { fireEvent, render } from '@testing-library/react'; -import { isConformant } from '../../testing/isConformant'; -import { InfoLabel } from './InfoLabel'; - -describe('InfoLabel', () => { - isConformant({ - Component: InfoLabel, - displayName: 'InfoLabel', - primarySlot: 'label', - testOptions: { - 'has-static-classnames': [ - { - props: { - info: 'Test', - }, - }, - ], - }, - }); - - it('renders an InfoButton when info is set', () => { - const result = render(Test label); - expect(result.getByRole('button')).toBeTruthy(); - }); - - it("renders an InfoButton when the infoButton's info slot is set", () => { - const result = render(Test label); - expect(result.getByRole('button')).toBeTruthy(); - }); - - it('does not render an InfoButton when info is not set', () => { - const result = render(Test label); - expect(result.queryByRole('button')).toBeNull(); - }); - - it('sets the infoButton aria-labelledby to the label and infoButton', () => { - const result = render(Test label); - - const infoButton = result.getByRole('button'); - const label = result.getByText('Test label') as HTMLLabelElement; - - expect(infoButton.getAttribute('aria-labelledby')).toBe(`${label.id} ${infoButton.id}`); - }); - - it("applies InfoButton's info slot id to aria-owns on the InfoLabel's wrapper when open", () => { - const { container } = render(); - expect(container.getElementsByClassName('info-label-wrapper')[0].getAttribute('aria-owns')).toBeNull(); - - fireEvent.click(container.getElementsByTagName('button')[0]); - - expect(container.getElementsByClassName('info-label-wrapper')[0].getAttribute('aria-owns')).toBe('test-id'); - }); - - it("applies InfoButton's correct id to aria-owns on the InfoLabel's wrapper when id is provided to the infoButton slot", () => { - const { container } = render(); - expect(container.getElementsByClassName('info-label-wrapper')[0].getAttribute('aria-owns')).toBeNull(); - - fireEvent.click(container.getElementsByTagName('button')[0]); - - expect(container.getElementsByClassName('info-label-wrapper')[0].getAttribute('aria-owns')).toBe('test-id'); - }); -}); diff --git a/packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.tsx b/packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.tsx deleted file mode 100644 index 83cb331526ba9..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.tsx +++ /dev/null @@ -1,22 +0,0 @@ -/* eslint-disable deprecation/deprecation */ -import * as React from 'react'; - -import type { ForwardRefComponent } from '@fluentui/react-utilities'; -import type { InfoLabelProps } from './InfoLabel.types'; -import { renderInfoLabel_unstable } from './renderInfoLabel'; -import { useInfoLabel_unstable } from './useInfoLabel'; -import { useInfoLabelStyles_unstable } from './useInfoLabelStyles.styles'; - -/** - * InfoLabel component - * - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -export const InfoLabel: ForwardRefComponent = React.forwardRef((props, ref) => { - const state = useInfoLabel_unstable(props, ref); - - useInfoLabelStyles_unstable(state); - return renderInfoLabel_unstable(state); -}); - -InfoLabel.displayName = 'InfoLabel'; diff --git a/packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.types.ts b/packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.types.ts deleted file mode 100644 index 18dcd839170d0..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.types.ts +++ /dev/null @@ -1,49 +0,0 @@ -/* eslint-disable deprecation/deprecation */ -import { Label } from '@fluentui/react-label'; -import { InfoButton } from '../InfoButton'; -import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities'; -import type { InfoButtonProps } from '../InfoButton'; - -/** - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -export type InfoLabelSlots = { - root: NonNullable>; - - /** - * The Label component. - * - * It is not typically necessary to use this prop. The label text is the child of the ``, and other props - * such as `size` and `required` should be set directly on the `InfoLabel`. - * - * This is the PRIMARY slot: all native properties specified directly on `` will be applied to this slot, - * except `className` and `style`, which remain on the root slot. - */ - label: NonNullable>; - - /** - * The InfoButton component. - * - * It is not typically necessary to use this prop. The content can be set using the `info` prop of the InfoLabel. - */ - infoButton: Slot; -}; - -/** - * InfoLabel Props - * - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -export type InfoLabelProps = ComponentProps, 'label'> & { - /** - * The content of the InfoButton's popover. - */ - info?: InfoButtonProps['info']; -}; - -/** - * State used in rendering InfoLabel - * - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -export type InfoLabelState = ComponentState & Pick; diff --git a/packages/react-components/react-infobutton/src/components/InfoLabel/index.ts b/packages/react-components/react-infobutton/src/components/InfoLabel/index.ts deleted file mode 100644 index 2f2b2f38df5bf..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoLabel/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -export * from './InfoLabel'; -export * from './InfoLabel.types'; -export * from './renderInfoLabel'; -export * from './useInfoLabel'; -export * from './useInfoLabelStyles.styles'; diff --git a/packages/react-components/react-infobutton/src/components/InfoLabel/renderInfoLabel.tsx b/packages/react-components/react-infobutton/src/components/InfoLabel/renderInfoLabel.tsx deleted file mode 100644 index 486ae6bdb001f..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoLabel/renderInfoLabel.tsx +++ /dev/null @@ -1,22 +0,0 @@ -/* eslint-disable deprecation/deprecation */ -/** @jsxRuntime automatic */ -/** @jsxImportSource @fluentui/react-jsx-runtime */ - -import { assertSlots } from '@fluentui/react-utilities'; -import type { InfoLabelSlots, InfoLabelState } from './InfoLabel.types'; - -/** - * Render the final JSX of InfoLabel - * - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -export const renderInfoLabel_unstable = (state: InfoLabelState) => { - assertSlots(state); - - return ( - - - {state.infoButton && } - - ); -}; diff --git a/packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabel.ts b/packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabel.ts deleted file mode 100644 index 0512b7cb2aa03..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabel.ts +++ /dev/null @@ -1,98 +0,0 @@ -/* eslint-disable deprecation/deprecation */ -import * as React from 'react'; - -import { Label } from '@fluentui/react-label'; -import { mergeCallbacks, useEventCallback, useId, slot } from '@fluentui/react-utilities'; -import { InfoButton } from '../InfoButton/InfoButton'; -import type { InfoLabelProps, InfoLabelState } from './InfoLabel.types'; - -/** - * Create the state required to render InfoLabel. - * - * The returned state can be modified with hooks such as useInfoLabelStyles_unstable, - * before being passed to renderInfoLabel_unstable. - * - * @param props - props from this instance of InfoLabel - * @param ref - reference to label element of InfoLabel - * - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -export const useInfoLabel_unstable = (props: InfoLabelProps, ref: React.Ref): InfoLabelState => { - const { - root: rootShorthand, - label: labelShorthand, - infoButton: infoButtonShorthand, - info, - size, - className, - style, - ...labelProps - } = props; - const baseId = useId('infolabel-'); - const [open, setOpen] = React.useState(false); - - const root = slot.always(rootShorthand, { - defaultProps: { - className, - style, - }, - elementType: 'span', - }); - - const label = slot.always(labelShorthand, { - defaultProps: { - id: baseId + '__label', - ref, - size, - ...labelProps, - }, - elementType: Label, - }); - - const infoButton = slot.optional(infoButtonShorthand, { - renderByDefault: !!info, - defaultProps: { - id: baseId + '__infoButton', - size, - info, - }, - elementType: InfoButton, - }); - - const infoButtonPopover = slot.always(infoButton?.popover, { - elementType: 'div', - }); - infoButtonPopover.onOpenChange = useEventCallback( - mergeCallbacks(infoButtonPopover.onOpenChange, (e, data) => { - setOpen(data.open); - }), - ); - - if (infoButton) { - infoButton.popover = infoButtonPopover; - infoButton.info = slot.optional(infoButton?.info, { - defaultProps: { - id: baseId + '__info', - }, - elementType: 'div', - }); - - infoButton['aria-labelledby'] ??= `${label.id} ${infoButton.id}`; - - if (open) { - root['aria-owns'] ??= infoButton.info?.id; - } - } - - return { - size, - components: { - root: 'span', - label: Label, - infoButton: InfoButton, - }, - root, - label, - infoButton, - }; -}; diff --git a/packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabelStyles.styles.ts b/packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabelStyles.styles.ts deleted file mode 100644 index 7327e19bc2e54..0000000000000 --- a/packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabelStyles.styles.ts +++ /dev/null @@ -1,62 +0,0 @@ -/* eslint-disable deprecation/deprecation */ -import { tokens } from '@fluentui/react-theme'; -import type { SlotClassNames } from '@fluentui/react-utilities'; -import { makeStyles, mergeClasses } from '@griffel/react'; -import type { InfoLabelSlots, InfoLabelState } from './InfoLabel.types'; - -/** - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -export const infoLabelClassNames: SlotClassNames = { - root: 'fui-InfoLabel', - label: 'fui-InfoLabel__label', - infoButton: 'fui-InfoLabel__infoButton', -}; - -const useLabelStyles = makeStyles({ - base: { - verticalAlign: 'top', - cursor: 'inherit', - color: 'inherit', - }, -}); - -const useInfoButtonStyles = makeStyles({ - base: { - verticalAlign: 'top', - - // Negative margin to align with the text - marginTop: `calc(0px - ${tokens.spacingVerticalXXS})`, - marginBottom: `calc(0px - ${tokens.spacingVerticalXXS})`, - }, - - large: { - // Negative margin to align with the text - marginTop: '-1px', - marginBottom: '-1px', - }, -}); - -/** - * Apply styling to the InfoLabel slots based on the state - * - * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead - */ -export const useInfoLabelStyles_unstable = (state: InfoLabelState): InfoLabelState => { - state.root.className = mergeClasses(infoLabelClassNames.root, state.root.className); - - const labelStyles = useLabelStyles(); - state.label.className = mergeClasses(infoLabelClassNames.label, labelStyles.base, state.label.className); - - const infoButtonStyles = useInfoButtonStyles(); - if (state.infoButton) { - state.infoButton.className = mergeClasses( - infoLabelClassNames.infoButton, - infoButtonStyles.base, - state.size === 'large' && infoButtonStyles.large, - state.infoButton.className, - ); - } - - return state; -}; diff --git a/packages/react-components/react-infobutton/src/index.ts b/packages/react-components/react-infobutton/src/index.ts deleted file mode 100644 index 463d77df095f5..0000000000000 --- a/packages/react-components/react-infobutton/src/index.ts +++ /dev/null @@ -1,17 +0,0 @@ -/* eslint-disable deprecation/deprecation */ -export { - InfoButton, - infoButtonClassNames, - renderInfoButton_unstable, - useInfoButtonStyles_unstable, - useInfoButton_unstable, -} from './InfoButton'; -export type { InfoButtonProps, InfoButtonSlots, InfoButtonState } from './InfoButton'; -export { - InfoLabel, - infoLabelClassNames, - renderInfoLabel_unstable, - useInfoLabelStyles_unstable, - useInfoLabel_unstable, -} from './InfoLabel'; -export type { InfoLabelProps, InfoLabelSlots, InfoLabelState } from './InfoLabel'; diff --git a/packages/react-components/react-infobutton/src/testing/isConformant.ts b/packages/react-components/react-infobutton/src/testing/isConformant.ts deleted file mode 100644 index a3d988f29a172..0000000000000 --- a/packages/react-components/react-infobutton/src/testing/isConformant.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { isConformant as baseIsConformant } from '@fluentui/react-conformance'; -import type { IsConformantOptions, TestObject } from '@fluentui/react-conformance'; -import griffelTests from '@fluentui/react-conformance-griffel'; - -export function isConformant( - testInfo: Omit, 'componentPath'> & { componentPath?: string }, -) { - const defaultOptions: Partial> = { - tsConfig: { configName: 'tsconfig.spec.json' }, - componentPath: require.main?.filename.replace('.test', ''), - extraTests: griffelTests as TestObject, - }; - - baseIsConformant(defaultOptions, testInfo); -} diff --git a/packages/react-components/react-infobutton/tsconfig.cy.json b/packages/react-components/react-infobutton/tsconfig.cy.json deleted file mode 100644 index 93a140885851d..0000000000000 --- a/packages/react-components/react-infobutton/tsconfig.cy.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "isolatedModules": false, - "types": ["node", "cypress", "cypress-storybook/cypress", "cypress-real-events"], - "lib": ["ES2019", "dom"] - }, - "include": ["**/*.cy.ts", "**/*.cy.tsx"] -} diff --git a/packages/react-components/react-infobutton/tsconfig.json b/packages/react-components/react-infobutton/tsconfig.json deleted file mode 100644 index 1317f81620ca5..0000000000000 --- a/packages/react-components/react-infobutton/tsconfig.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "extends": "../../../tsconfig.base.json", - "compilerOptions": { - "target": "ES2019", - "noEmit": true, - "isolatedModules": true, - "importHelpers": true, - "jsx": "react", - "noUnusedLocals": true, - "preserveConstEnums": true - }, - "include": [], - "files": [], - "references": [ - { - "path": "./tsconfig.lib.json" - }, - { - "path": "./tsconfig.spec.json" - }, - { - "path": "./.storybook/tsconfig.json" - }, - { - "path": "./tsconfig.cy.json" - } - ] -} diff --git a/packages/react-components/react-infobutton/tsconfig.lib.json b/packages/react-components/react-infobutton/tsconfig.lib.json deleted file mode 100644 index 6f90cf95c005b..0000000000000 --- a/packages/react-components/react-infobutton/tsconfig.lib.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "noEmit": false, - "lib": ["ES2019", "dom"], - "declaration": true, - "declarationDir": "../../../dist/out-tsc/types", - "outDir": "../../../dist/out-tsc", - "inlineSources": true, - "types": ["static-assets", "environment"] - }, - "exclude": [ - "./src/testing/**", - "**/*.spec.ts", - "**/*.spec.tsx", - "**/*.test.ts", - "**/*.test.tsx", - "**/*.stories.ts", - "**/*.stories.tsx" - ], - "include": ["./src/**/*.ts", "./src/**/*.tsx"] -} diff --git a/packages/react-components/react-infobutton/tsconfig.spec.json b/packages/react-components/react-infobutton/tsconfig.spec.json deleted file mode 100644 index 911456fe4b4d9..0000000000000 --- a/packages/react-components/react-infobutton/tsconfig.spec.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "module": "CommonJS", - "outDir": "dist", - "types": ["jest", "node"] - }, - "include": [ - "**/*.spec.ts", - "**/*.spec.tsx", - "**/*.test.ts", - "**/*.test.tsx", - "**/*.d.ts", - "./src/testing/**/*.ts", - "./src/testing/**/*.tsx" - ] -} diff --git a/packages/react-components/react-infolabel/docs/Spec.md b/packages/react-components/react-infolabel/docs/Spec.md index a852103e421cd..aad7acd6a39e4 100644 --- a/packages/react-components/react-infolabel/docs/Spec.md +++ b/packages/react-components/react-infolabel/docs/Spec.md @@ -1,4 +1,4 @@ -# @fluentui/react-infobutton Spec +# @fluentui/react-infolabel Spec Convergence epic issue: [#25062](https://github.com/microsoft/fluentui/issues/25062) diff --git a/tsconfig.base.all.json b/tsconfig.base.all.json index 7958021e68a9a..03710db6e7dc4 100644 --- a/tsconfig.base.all.json +++ b/tsconfig.base.all.json @@ -112,7 +112,6 @@ "@fluentui/react-focus-management": ["packages/react-focus-management/src/index.ts"], "@fluentui/react-icons-compat": ["packages/react-components/react-icons-compat/src/index.ts"], "@fluentui/react-image": ["packages/react-components/react-image/src/index.ts"], - "@fluentui/react-infobutton": ["packages/react-components/react-infobutton/src/index.ts"], "@fluentui/react-infolabel": ["packages/react-components/react-infolabel/src/index.ts"], "@fluentui/react-input": ["packages/react-components/react-input/src/index.ts"], "@fluentui/react-jsx-runtime": ["packages/react-components/react-jsx-runtime/src/index.ts"], diff --git a/tsconfig.base.json b/tsconfig.base.json index 5f9853e7ca849..aff86dba33862 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -46,7 +46,6 @@ "@fluentui/react-focus-management": ["packages/react-focus-management/src/index.ts"], "@fluentui/react-icons-compat": ["packages/react-components/react-icons-compat/src/index.ts"], "@fluentui/react-image": ["packages/react-components/react-image/src/index.ts"], - "@fluentui/react-infobutton": ["packages/react-components/react-infobutton/src/index.ts"], "@fluentui/react-infolabel": ["packages/react-components/react-infolabel/src/index.ts"], "@fluentui/react-input": ["packages/react-components/react-input/src/index.ts"], "@fluentui/react-jsx-runtime": ["packages/react-components/react-jsx-runtime/src/index.ts"], diff --git a/yarn.lock b/yarn.lock index 373cb86f2a277..d214cbf44646c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1972,6 +1972,21 @@ "@griffel/react" "^1.0.0" tslib "^2.1.0" +"@fluentui/react-infobutton@9.0.0-beta.99": + version "9.0.0-beta.99" + resolved "https://registry.yarnpkg.com/@fluentui/react-infobutton/-/react-infobutton-9.0.0-beta.99.tgz#d58c8816ce1bb61c0d5b8515a75971c07d2a75e8" + integrity sha512-egrYTSoOvbvWl3aYAgU1M6sBPJbsxeSQuqXpbZvn0AXH99AhMOjVLsiDUkolNWRbbxp5V2zh22Q/1Hg0bSp+Og== + dependencies: + "@fluentui/react-icons" "^2.0.224" + "@fluentui/react-jsx-runtime" "^9.0.35" + "@fluentui/react-label" "^9.1.67" + "@fluentui/react-popover" "^9.9.3" + "@fluentui/react-tabster" "^9.19.6" + "@fluentui/react-theme" "^9.1.19" + "@fluentui/react-utilities" "^9.18.6" + "@griffel/react" "^1.5.14" + "@swc/helpers" "^0.5.1" + "@griffel/babel-preset@1.4.20", "@griffel/babel-preset@^1.4.20": version "1.4.20" resolved "https://registry.yarnpkg.com/@griffel/babel-preset/-/babel-preset-1.4.20.tgz#047eb62f104e7bea781820816263e7407fafe543" From 4682653bc619947b320d0556f03a4fd49a757c12 Mon Sep 17 00:00:00 2001 From: Esteban Munoz Date: Tue, 9 Apr 2024 14:07:34 -0700 Subject: [PATCH 2/5] updating snapshots --- .../VerticalBarChartUT.test.tsx.snap | 2 - .../__snapshots__/AreaChart.test.tsx.snap | 6 --- .../__snapshots__/AreaChartRTL.test.tsx.snap | 8 ---- .../__snapshots__/DonutChart.test.tsx.snap | 21 --------- .../__snapshots__/DonutChartRTL.test.tsx.snap | 4 -- .../__snapshots__/GaugeChart.test.tsx.snap | 21 --------- .../GroupedVerticalBarChart.test.tsx.snap | 7 --- .../GroupedVerticalBarChartRTL.test.tsx.snap | 19 -------- .../HeatMapChartRTL.test.tsx.snap | 4 -- .../HorizontalBarChart.test.tsx.snap | 16 ------- .../HorizontalBarChartRTL.test.tsx.snap | 30 ------------- .../HorizontalBarChartWithAxis.test.tsx.snap | 7 --- ...orizontalBarChartWithAxisRTL.test.tsx.snap | 12 ----- .../__snapshots__/Legends.test.tsx.snap | 4 -- .../__snapshots__/LineChartRTL.test.tsx.snap | 10 ----- .../__snapshots__/PieChart.test.tsx.snap | 2 - .../__snapshots__/PieChartRTL.test.tsx.snap | 3 -- .../__snapshots__/SankeyChart.test.tsx.snap | 9 ---- .../SankeyChartRTL.test.tsx.snap | 3 -- .../__snapshots__/Sparkline.test.tsx.snap | 2 - .../__snapshots__/SparklineRTL.test.tsx.snap | 3 -- .../MultiStackedBarChart.test.tsx.snap | 44 ------------------- .../MultiStackedBarChartRTL.test.tsx.snap | 28 ------------ .../StackedBarChart.test.tsx.snap | 19 -------- .../StackedBarChartRTL.test.tsx.snap | 15 ------- .../__snapshots__/TreeChart.test.tsx.snap | 4 -- .../VerticalBarChart.test.tsx.snap | 15 ------- .../VerticalBarChartRTL.test.tsx.snap | 16 ------- .../VerticalStackedBarChart.test.tsx.snap | 17 ------- .../VerticalStackedBarChartRTL.test.tsx.snap | 16 ------- .../UnifiedPeoplePicker.test.tsx.snap | 2 - .../__snapshots__/UnifiedPicker.test.tsx.snap | 2 - .../__snapshots__/Breadcrumb.test.tsx.snap | 8 ---- .../CommandBar.deprecated.test.tsx.snap | 1 - .../__snapshots__/CommandBar.test.tsx.snap | 2 - .../ContextualMenu.test.tsx.snap | 1 - .../__snapshots__/DetailsColumn.test.tsx.snap | 2 - .../__snapshots__/DetailsHeader.test.tsx.snap | 3 -- .../__snapshots__/DetailsList.test.tsx.snap | 23 ---------- .../__snapshots__/DetailsListV2.test.tsx.snap | 23 ---------- .../__snapshots__/DetailsRow.test.tsx.snap | 9 ---- .../ShimmeredDetailsList.test.tsx.snap | 2 - .../__snapshots__/Dropdown.test.tsx.snap | 2 - .../BaseExtendedPicker.test.tsx.snap | 2 - .../Nav/__snapshots__/Nav.test.tsx.snap | 2 - .../Pivot.deprecated.test.tsx.snap | 1 - .../Pivot/__snapshots__/Pivot.test.tsx.snap | 9 ---- .../Rating/__snapshots__/Rating.test.tsx.snap | 2 - .../SwatchColorPicker.test.tsx.snap | 1 - .../WeeklyDayPicker.test.tsx.snap | 2 - 50 files changed, 466 deletions(-) diff --git a/packages/react-charting/UnitTests/__snapshots__/VerticalBarChartUT.test.tsx.snap b/packages/react-charting/UnitTests/__snapshots__/VerticalBarChartUT.test.tsx.snap index af04526ccecac..19891a2d9447d 100644 --- a/packages/react-charting/UnitTests/__snapshots__/VerticalBarChartUT.test.tsx.snap +++ b/packages/react-charting/UnitTests/__snapshots__/VerticalBarChartUT.test.tsx.snap @@ -33,7 +33,6 @@ exports[`vertical bar chart with numeric x-axis data Should render the vertical overflow: auto; } data-focuszone-id="FocusZone5" - data-tabster="{\\"uncontrolled\\": {}}" >