diff --git a/change/@fluentui-react-examples-9e1f155d-10c7-4cad-8e1d-81e83825d81e.json b/change/@fluentui-react-examples-9e1f155d-10c7-4cad-8e1d-81e83825d81e.json new file mode 100644 index 00000000000000..8dce14f40179e0 --- /dev/null +++ b/change/@fluentui-react-examples-9e1f155d-10c7-4cad-8e1d-81e83825d81e.json @@ -0,0 +1,7 @@ +{ + "type": "none", + "comment": "Remove converged react-text from examples", + "packageName": "@fluentui/react-examples", + "email": "andredias@microsoft.com", + "dependentChangeType": "none" +} diff --git a/change/@fluentui-react-text-159922e7-615e-44ef-87d2-395a206ce8ef.json b/change/@fluentui-react-text-159922e7-615e-44ef-87d2-395a206ce8ef.json new file mode 100644 index 00000000000000..9dd4fdae0864f6 --- /dev/null +++ b/change/@fluentui-react-text-159922e7-615e-44ef-87d2-395a206ce8ef.json @@ -0,0 +1,7 @@ +{ + "type": "none", + "comment": "react-text scaffolding", + "packageName": "@fluentui/react-text", + "email": "andredias@microsoft.com", + "dependentChangeType": "none" +} diff --git a/jest.config.js b/jest.config.js index e118749542eb8f..b6e07af78131e6 100644 --- a/jest.config.js +++ b/jest.config.js @@ -4,6 +4,7 @@ module.exports = { '/packages/react-menu', '/packages/react-storybook', '/packages/react-accordion', + '/packages/react-text', '/packages/react-portal', '/packages/react-aria', ], diff --git a/nx.json b/nx.json index b1e626fc3f617e..bf00874f401650 100644 --- a/nx.json +++ b/nx.json @@ -112,7 +112,7 @@ "@fluentui/react-storybook": { "implicitDependencies": [] }, "@fluentui/react-tabs": { "implicitDependencies": [] }, "@fluentui/react-tabster": { "implicitDependencies": [] }, - "@fluentui/react-text": { "implicitDependencies": [] }, + "@fluentui/react-text": { "tags": ["vNext", "platform:web"], "implicitDependencies": [] }, "@fluentui/react-theme": { "implicitDependencies": [] }, "@fluentui/react-theme-provider": { "implicitDependencies": [] }, "@fluentui/react-toggle": { "implicitDependencies": [] }, diff --git a/packages/react-examples/package.json b/packages/react-examples/package.json index 50eaaef4319dfe..4eba37da342292 100644 --- a/packages/react-examples/package.json +++ b/packages/react-examples/package.json @@ -62,7 +62,6 @@ "@fluentui/react-shared-contexts": "^9.0.0-alpha.15", "@fluentui/react-slider": "^1.0.0-beta.111", "@fluentui/react-tabs": "^1.0.0-beta.113", - "@fluentui/react-text": "^0.3.3", "@fluentui/react-theme": "^9.0.0-alpha.15", "@fluentui/react-theme-provider": "^9.0.0-alpha.43", "@fluentui/react-toggle": "^1.0.0-beta.111", diff --git a/packages/react-examples/src/react-button/Playground.tsx b/packages/react-examples/src/react-button/Playground.tsx index 2cf8ef4d353c94..a07660129cf1af 100644 --- a/packages/react-examples/src/react-button/Playground.tsx +++ b/packages/react-examples/src/react-button/Playground.tsx @@ -1,6 +1,5 @@ import * as React from 'react'; -import { Checkbox, Dropdown, IDropdownOption, Stack, TextField } from '@fluentui/react'; -import { Text } from '@fluentui/react-text'; +import { Checkbox, Dropdown, IDropdownOption, Stack, Text, TextField } from '@fluentui/react'; import { PlaygroundProps } from './Playground.types'; const tableStyle: React.CSSProperties = { @@ -147,7 +146,7 @@ export const Playground = function (props: PlaygroundProps): JSX.E - {section.sectionName} + {section.sectionName} {sectionList} diff --git a/packages/react-examples/src/react-text/Text/Text.stories.tsx b/packages/react-examples/src/react-text/Text/Text.stories.tsx deleted file mode 100644 index ffa920f5d074b1..00000000000000 --- a/packages/react-examples/src/react-text/Text/Text.stories.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import { Text } from '@fluentui/react-text'; -import * as React from 'react'; - -const Divider: React.FC = () => ( -
-); - -export const TextSizeStories = () => ( - <> - Hello I am Caption Regular Primary - - - Hello I am Body Regular Primary - - - I am Subheadline Semibold Primary - I am Headline Semibold Primary - - - Title 3 Semibold Primary - Title 2 Semibold Primary - Title 1 Semibold Primary - - - Large Title Semibold Primary - Display Semibold Primary - -); diff --git a/packages/react-text/.storybook/main.js b/packages/react-text/.storybook/main.js new file mode 100644 index 00000000000000..f47245f2d07f01 --- /dev/null +++ b/packages/react-text/.storybook/main.js @@ -0,0 +1,11 @@ +const rootMain = require('../../../.storybook/main'); + +module.exports = /** @type {Pick} */ ({ + stories: [...rootMain.stories, '../src/**/*.stories.mdx', '../src/**/*.stories.@(ts|tsx)'], + addons: [...rootMain.addons], + webpackFinal: (config, options) => { + const localConfig = { ...rootMain.webpackFinal(config, options) }; + + return localConfig; + }, +}); diff --git a/packages/react-text/.storybook/preview.js b/packages/react-text/.storybook/preview.js new file mode 100644 index 00000000000000..b52409294c3304 --- /dev/null +++ b/packages/react-text/.storybook/preview.js @@ -0,0 +1,3 @@ +import * as rootPreview from '../../../.storybook/preview'; + +export const decorators = [...rootPreview.decorators]; diff --git a/packages/react-text/.storybook/tsconfig.json b/packages/react-text/.storybook/tsconfig.json new file mode 100644 index 00000000000000..3bd9adcd2ee05e --- /dev/null +++ b/packages/react-text/.storybook/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "allowJs": true, + "checkJs": true + }, + "exclude": ["../**/*.test.ts", "../**/*.test.js", "../**/*.test.tsx", "../**/*.test.jsx"], + "include": ["../src/**/*", "*.js"] +} diff --git a/packages/react-text/CHANGELOG.json b/packages/react-text/CHANGELOG.json deleted file mode 100644 index 5e95db87b8096d..00000000000000 --- a/packages/react-text/CHANGELOG.json +++ /dev/null @@ -1,1669 +0,0 @@ -{ - "name": "@fluentui/react-text", - "entries": [ - { - "date": "Tue, 15 Jun 2021 07:40:20 GMT", - "tag": "@fluentui/react-text_v0.3.3", - "version": "0.3.3", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.29", - "author": "behowell@microsoft.com", - "commit": "10b1e17acaa01675866f7a623be1a61b1478d7d7", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.42", - "author": "behowell@microsoft.com", - "commit": "10b1e17acaa01675866f7a623be1a61b1478d7d7", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.18", - "author": "behowell@microsoft.com", - "commit": "10b1e17acaa01675866f7a623be1a61b1478d7d7", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Mon, 07 Jun 2021 07:38:15 GMT", - "tag": "@fluentui/react-text_v0.3.3", - "version": "0.3.3", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.17", - "author": "martinhochel@microsoft.com", - "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.28", - "author": "martinhochel@microsoft.com", - "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.41", - "author": "martinhochel@microsoft.com", - "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1", - "package": "@fluentui/react-text" - } - ], - "patch": [ - { - "comment": "Bump @fluentui/react-conformance to v0.4.1", - "author": "martinhochel@microsoft.com", - "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Fri, 04 Jun 2021 07:37:23 GMT", - "tag": "@fluentui/react-text_v0.3.2", - "version": "0.3.2", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.16", - "author": "Humberto.Morimoto@microsoft.com", - "commit": "1ca8c8f0c4eb633e6b34c0b6182c09103d4c7fcb", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.40", - "author": "Humberto.Morimoto@microsoft.com", - "commit": "1ca8c8f0c4eb633e6b34c0b6182c09103d4c7fcb", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.27", - "author": "Humberto.Morimoto@microsoft.com", - "commit": "1ca8c8f0c4eb633e6b34c0b6182c09103d4c7fcb", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 03 Jun 2021 07:36:03 GMT", - "tag": "@fluentui/react-text_v0.3.2", - "version": "0.3.2", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.39", - "author": "miroslav.stastny@microsoft.com", - "commit": "32aed1a91b19ac1beb161a7a2ab43e78b51f53d1", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.15", - "author": "miroslav.stastny@microsoft.com", - "commit": "32aed1a91b19ac1beb161a7a2ab43e78b51f53d1", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Tue, 01 Jun 2021 07:31:58 GMT", - "tag": "@fluentui/react-text_v0.3.2", - "version": "0.3.2", - "comments": { - "none": [ - { - "comment": "Revert \"chore: enable Jest aliases for converged packages (#18337)\"", - "author": "olfedias@microsoft.com", - "commit": "b5f2a02b37c8ea394a65f7a22bff057de93370dd", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Fri, 28 May 2021 07:33:57 GMT", - "tag": "@fluentui/react-text_v0.3.2", - "version": "0.3.2", - "comments": { - "none": [ - { - "comment": "enable Jest aliases", - "author": "olfedias@microsoft.com", - "commit": "5379823a6f53bd36a936806153d228b9a0ef0543", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Wed, 26 May 2021 07:35:43 GMT", - "tag": "@fluentui/react-text_v0.3.2", - "version": "0.3.2", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.14", - "author": "olfedias@microsoft.com", - "commit": "d2504c72ec7fba0cf4dcf1984c2e1a9322720225", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.25", - "author": "lingfan.gao@microsoft.com", - "commit": "6ffca36c9537a1852d8ec26478b8b7aeb059e17c", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Fri, 21 May 2021 07:34:54 GMT", - "tag": "@fluentui/react-text_v0.3.2", - "version": "0.3.2", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.37", - "author": "behowell@microsoft.com", - "commit": "aabab8dedf6aa56a403b314157bcef84b6bcd585", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.14", - "author": "behowell@microsoft.com", - "commit": "aabab8dedf6aa56a403b314157bcef84b6bcd585", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.24", - "author": "behowell@microsoft.com", - "commit": "aabab8dedf6aa56a403b314157bcef84b6bcd585", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 20 May 2021 07:41:54 GMT", - "tag": "@fluentui/react-text_v0.3.2", - "version": "0.3.2", - "comments": { - "none": [ - { - "comment": "Update conformance tests in all packages to use a package-level isConformant wrapper with appropriate generics for props", - "author": "elcraig@microsoft.com", - "commit": "1e6ad173e2cfa18cfcae13311be7916f1b241432", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.13", - "author": "elcraig@microsoft.com", - "commit": "505db08044507a6a9260459a1013897ca68a2ed6", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.23", - "author": "elcraig@microsoft.com", - "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.36", - "author": "elcraig@microsoft.com", - "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb", - "package": "@fluentui/react-text" - } - ], - "patch": [ - { - "comment": "Bump @fluentui/react-conformance to v0.4.0", - "author": "elcraig@microsoft.com", - "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Wed, 19 May 2021 07:34:20 GMT", - "tag": "@fluentui/react-text_v0.3.1", - "version": "0.3.1", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.12", - "author": "olfedias@microsoft.com", - "commit": "975140887c6ad2391f8db63003ed440239ec9c25", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.35", - "author": "olfedias@microsoft.com", - "commit": "975140887c6ad2391f8db63003ed440239ec9c25", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.22", - "author": "olfedias@microsoft.com", - "commit": "975140887c6ad2391f8db63003ed440239ec9c25", - "package": "@fluentui/react-text" - } - ], - "patch": [ - { - "comment": "Bump @fluentui/react-conformance to v0.3.1", - "author": "martinhochel@microsoft.com", - "commit": "616b4b7c381c757871e8a590564d8eff7337834c", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Tue, 18 May 2021 07:34:38 GMT", - "tag": "@fluentui/react-text_v0.3.0", - "version": "0.3.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.11", - "author": "olfedias@microsoft.com", - "commit": "c845a5045c99d8d83b2584cee016b1701cd3de57", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.34", - "author": "olfedias@microsoft.com", - "commit": "c845a5045c99d8d83b2584cee016b1701cd3de57", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 13 May 2021 07:36:55 GMT", - "tag": "@fluentui/react-text_v0.3.0", - "version": "0.3.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.10", - "author": "olfedias@microsoft.com", - "commit": "fb53fd67729d8236e0681d74322717f6974c8b72", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.33", - "author": "olfedias@microsoft.com", - "commit": "fb53fd67729d8236e0681d74322717f6974c8b72", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Wed, 12 May 2021 07:36:20 GMT", - "tag": "@fluentui/react-text_v0.3.0", - "version": "0.3.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.9", - "author": "olfedias@microsoft.com", - "commit": "894712616ee3271fcf06e5fb24ad01e326e30bb5", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.32", - "author": "olfedias@microsoft.com", - "commit": "894712616ee3271fcf06e5fb24ad01e326e30bb5", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Mon, 10 May 2021 07:36:07 GMT", - "tag": "@fluentui/react-text_v0.3.0", - "version": "0.3.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.8", - "author": "olfedias@microsoft.com", - "commit": "78c12235fcfebe43b7a77d36cbdfc67461ec32dc", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.31", - "author": "olfedias@microsoft.com", - "commit": "78c12235fcfebe43b7a77d36cbdfc67461ec32dc", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 07:36:50 GMT", - "tag": "@fluentui/react-text_v0.3.0", - "version": "0.3.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.7", - "author": "olfedias@microsoft.com", - "commit": "427fcf0fffb899e5ffcac4dfa61fca5d22ee176c", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.30", - "author": "olfedias@microsoft.com", - "commit": "427fcf0fffb899e5ffcac4dfa61fca5d22ee176c", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Mon, 03 May 2021 07:45:19 GMT", - "tag": "@fluentui/react-text_v0.3.0", - "version": "0.3.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.21", - "author": "lingfan.gao@microsoft.com", - "commit": "5e6aa4df0c03051e59d686d24b35f01c721a3b4e", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Fri, 30 Apr 2021 07:42:23 GMT", - "tag": "@fluentui/react-text_v0.3.0", - "version": "0.3.0", - "comments": { - "minor": [ - { - "comment": "Upgrade to ts 4.0", - "author": "joschect@microsoft.com", - "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279", - "package": "@fluentui/react-text" - } - ], - "patch": [ - { - "comment": "Bump @fluentui/eslint-plugin to v1.2.0", - "author": "joschect@microsoft.com", - "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-conformance to v0.3.0", - "author": "joschect@microsoft.com", - "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/scripts to v1.0.0", - "author": "joschect@microsoft.com", - "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.6", - "author": "joschect@microsoft.com", - "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.20", - "author": "joschect@microsoft.com", - "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.29", - "author": "joschect@microsoft.com", - "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Tue, 27 Apr 2021 07:34:03 GMT", - "tag": "@fluentui/react-text_v0.2.9", - "version": "0.2.9", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.5", - "author": "bsunderhus@microsoft.com", - "commit": "fdb1af09ba60238bb1c3913af6a6a6fe98f49034", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.28", - "author": "olfedias@microsoft.com", - "commit": "db7072f553820bf5becb0c4e20a3256359a5418d", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Mon, 26 Apr 2021 07:34:31 GMT", - "tag": "@fluentui/react-text_v0.2.9", - "version": "0.2.9", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.4", - "author": "bsunderhus@microsoft.com", - "commit": "76e2027d772bc9d19d3d217c449c5965262f73c4", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.27", - "author": "bsunderhus@microsoft.com", - "commit": "76e2027d772bc9d19d3d217c449c5965262f73c4", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Fri, 23 Apr 2021 07:37:10 GMT", - "tag": "@fluentui/react-text_v0.2.9", - "version": "0.2.9", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.3", - "author": "olfedias@microsoft.com", - "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.19", - "author": "olfedias@microsoft.com", - "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.26", - "author": "olfedias@microsoft.com", - "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095", - "package": "@fluentui/react-text" - } - ], - "patch": [ - { - "comment": "Bump @fluentui/react-conformance to v0.2.6", - "author": "olfedias@microsoft.com", - "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 22 Apr 2021 07:33:28 GMT", - "tag": "@fluentui/react-text_v0.2.8", - "version": "0.2.8", - "comments": { - "none": [ - { - "comment": "Adds snapshot serializer to converged component", - "author": "bsunderhus@microsoft.com", - "commit": "bf7ee8d466296bd5974bd5abf9aaa20868aa9add", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.2", - "author": "bsunderhus@microsoft.com", - "commit": "bf7ee8d466296bd5974bd5abf9aaa20868aa9add", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.25", - "author": "bsunderhus@microsoft.com", - "commit": "bf7ee8d466296bd5974bd5abf9aaa20868aa9add", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.18", - "author": "olfedias@microsoft.com", - "commit": "7feded422987e9c82f3250f419ab62118a52f9d4", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Wed, 21 Apr 2021 07:31:50 GMT", - "tag": "@fluentui/react-text_v0.2.8", - "version": "0.2.8", - "comments": { - "patch": [ - { - "comment": "Rename ax() to mergeClasses()", - "author": "miroslav.stastny@microsoft.com", - "commit": "64da065944467537d8f23a97ef4c19c3d60a529b", - "package": "@fluentui/react-text" - } - ], - "none": [ - { - "comment": "Bump @fluentui/react-conformance to v0.2.5", - "author": "martinhochel@microsoft.com", - "commit": "c12557d08ab5673ec3d3ba9747cfec64f39309eb", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.24", - "author": "miroslav.stastny@microsoft.com", - "commit": "64da065944467537d8f23a97ef4c19c3d60a529b", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.17", - "author": "miroslav.stastny@microsoft.com", - "commit": "64da065944467537d8f23a97ef4c19c3d60a529b", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Tue, 20 Apr 2021 07:31:35 GMT", - "tag": "@fluentui/react-text_v0.2.7", - "version": "0.2.7", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.23", - "author": "lingfan.gao@microsoft.com", - "commit": "c1e049dbcbf869f0a6e04d00f84dcfa7217eb808", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Mon, 19 Apr 2021 07:33:33 GMT", - "tag": "@fluentui/react-text_v0.2.7", - "version": "0.2.7", - "comments": { - "none": [ - { - "comment": "Remove unneeded react-app-polyfill devDependency", - "author": "elcraig@microsoft.com", - "commit": "fdc32557d49e5d70ea7e4af8957102d415b44547", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Fri, 16 Apr 2021 18:08:21 GMT", - "tag": "@fluentui/react-text_v0.2.7", - "version": "0.2.7", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.22", - "author": "bsunderhus@microsoft.com", - "commit": "e158c65f9712556cfcca1e80c7156889885c95b0", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.16", - "author": "lingfan.gao@microsoft.com", - "commit": "202f547fef3255f5c59ff4ad912c67b4978ef457", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Wed, 14 Apr 2021 07:34:12 GMT", - "tag": "@fluentui/react-text_v0.2.7", - "version": "0.2.7", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.21", - "author": "bsunderhus@microsoft.com", - "commit": "1b2e9185653032fed3dce7d3a919f8d6e95550c7", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Fri, 09 Apr 2021 23:42:49 GMT", - "tag": "@fluentui/react-text_v0.2.7", - "version": "0.2.7", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.20", - "author": "olfedias@microsoft.com", - "commit": "3febbf40a59f1acb8e37516559fed1dd6f5b62fb", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Fri, 09 Apr 2021 07:31:06 GMT", - "tag": "@fluentui/react-text_v0.2.7", - "version": "0.2.7", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.20", - "author": "olfedias@microsoft.com", - "commit": "876c6d64de40213f9cc15062464bb13f702002fd", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 08 Apr 2021 07:33:06 GMT", - "tag": "@fluentui/react-text_v0.2.7", - "version": "0.2.7", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.19", - "author": "olfedias@microsoft.com", - "commit": "45f6f31cefc412032a792179308ad837af63155a", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 01 Apr 2021 20:13:37 GMT", - "tag": "@fluentui/react-text_v0.2.7", - "version": "0.2.7", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.18", - "author": "bsunderhus@microsoft.com", - "commit": "dec60bc3ea87901ff8c2c52989301ae8f4229721", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.15", - "author": "bsunderhus@microsoft.com", - "commit": "dec60bc3ea87901ff8c2c52989301ae8f4229721", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Wed, 31 Mar 2021 00:53:43 GMT", - "tag": "@fluentui/react-text_v0.2.7", - "version": "0.2.7", - "comments": { - "patch": [ - { - "comment": "Fix type errors caught by makeMergeProps improvements", - "author": "behowell@microsoft.com", - "commit": "e45eeaba8deb93e825a9d3f72e87a9c4c9225ea1", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.14", - "author": "behowell@microsoft.com", - "commit": "e45eeaba8deb93e825a9d3f72e87a9c4c9225ea1", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.17", - "author": "olfedias@microsoft.com", - "commit": "a20aadf2a8998d47d995a70b636f74cb7f26f48f", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Tue, 30 Mar 2021 07:34:45 GMT", - "tag": "@fluentui/react-text_v0.2.6", - "version": "0.2.6", - "comments": { - "patch": [ - { - "comment": "chore: restore \"sideEffects\" to enable treeshaking", - "author": "olfedias@microsoft.com", - "commit": "8d6eb6f174660017e96d2c539a08e1d64ccdf4a3", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.16", - "author": "olfedias@microsoft.com", - "commit": "8d6eb6f174660017e96d2c539a08e1d64ccdf4a3", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.13", - "author": "olfedias@microsoft.com", - "commit": "8d6eb6f174660017e96d2c539a08e1d64ccdf4a3", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Fri, 26 Mar 2021 07:32:34 GMT", - "tag": "@fluentui/react-text_v0.2.5", - "version": "0.2.5", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.12", - "author": "lingfan.gao@microsoft.com", - "commit": "8b5295e082e07dbe428bff7b9548c80c338f07c8", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.15", - "author": "lingfan.gao@microsoft.com", - "commit": "8b5295e082e07dbe428bff7b9548c80c338f07c8", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 25 Mar 2021 07:33:24 GMT", - "tag": "@fluentui/react-text_v0.2.5", - "version": "0.2.5", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.14", - "author": "olfedias@microsoft.com", - "commit": "66638eed425fff31d69182529b03268836c5e1ec", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.11", - "author": "lingfan.gao@microsoft.com", - "commit": "31b7b0d625e40f818d33c5df0890b584caaf0e6c", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Wed, 24 Mar 2021 07:32:21 GMT", - "tag": "@fluentui/react-text_v0.2.5", - "version": "0.2.5", - "comments": { - "patch": [ - { - "comment": "react-text - Updates styles from makeStylesCompat to makeStyle", - "author": "bsunderhus@microsoft.com", - "commit": "93088c25769c0524121ba43475a54fa80b0a3ba3", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Tue, 23 Mar 2021 07:31:43 GMT", - "tag": "@fluentui/react-text_v0.2.4", - "version": "0.2.4", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.10", - "author": "lingfan.gao@microsoft.com", - "commit": "fc0d87258337229e59ec1c1fec87dc91193858f1", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.13", - "author": "lingfan.gao@microsoft.com", - "commit": "fc0d87258337229e59ec1c1fec87dc91193858f1", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Mon, 22 Mar 2021 07:34:09 GMT", - "tag": "@fluentui/react-text_v0.2.4", - "version": "0.2.4", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.12", - "author": "martinhochel@microsoft.com", - "commit": "25c4ce7c54a2a65d3db4e5f2b13785468b669329", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 18 Mar 2021 20:15:34 GMT", - "tag": "@fluentui/react-text_v0.2.4", - "version": "0.2.4", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.9", - "author": "lingfan.gao@microsoft.com", - "commit": "165259181dd79866dc7ae5fa57c10a0f209d668f", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.12", - "author": "lingfan.gao@microsoft.com", - "commit": "165259181dd79866dc7ae5fa57c10a0f209d668f", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Wed, 17 Mar 2021 07:35:44 GMT", - "tag": "@fluentui/react-text_v0.2.4", - "version": "0.2.4", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.11", - "author": "olfedias@microsoft.com", - "commit": "51902da6d01f0e9a790ca686e32eb94b31ecf733", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Tue, 16 Mar 2021 07:32:44 GMT", - "tag": "@fluentui/react-text_v0.2.4", - "version": "0.2.4", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui/react-conformance to v0.2.4", - "author": "elcraig@microsoft.com", - "commit": "8bbe3d16c5c00716dfcbafa6d693437b8d090da3", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.11", - "author": "elcraig@microsoft.com", - "commit": "8bbe3d16c5c00716dfcbafa6d693437b8d090da3", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Mon, 15 Mar 2021 07:36:20 GMT", - "tag": "@fluentui/react-text_v0.2.3", - "version": "0.2.3", - "comments": { - "none": [ - { - "comment": "Remove unneeded scripts", - "author": "elcraig@microsoft.com", - "commit": "3b4dd6b9e941da11297cea43c5218a4da2d277d5", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.10", - "author": "elcraig@microsoft.com", - "commit": "3b4dd6b9e941da11297cea43c5218a4da2d277d5", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.8", - "author": "elcraig@microsoft.com", - "commit": "b0bef818ea07833d9b9797ef26a4b24200ed0307", - "package": "@fluentui/react-text" - } - ], - "patch": [ - { - "comment": "Remove set-version references", - "author": "elcraig@microsoft.com", - "commit": "b0bef818ea07833d9b9797ef26a4b24200ed0307", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Fri, 12 Mar 2021 20:04:27 GMT", - "tag": "@fluentui/react-text_v0.2.2", - "version": "0.2.2", - "comments": { - "none": [ - { - "comment": "Move `@types/node` and `@types/webpack-env` devDependencies to root, and remove unneeded references", - "author": "elcraig@microsoft.com", - "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.7", - "author": "elcraig@microsoft.com", - "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d", - "package": "@fluentui/react-text" - } - ], - "patch": [ - { - "comment": "Change makeStyles to makeStylesCompat", - "author": "bsunderhus@microsoft.com", - "commit": "47ed02fa4d7f1ce693bf18a9463c6527e69d2417", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.9", - "author": "elcraig@microsoft.com", - "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Wed, 10 Mar 2021 07:34:39 GMT", - "tag": "@fluentui/react-text_v0.2.1", - "version": "0.2.1", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.7", - "author": "lingfan.gao@microsoft.com", - "commit": "458d1a05b3288c5d36da578f954df06f227066bf", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.8", - "author": "lingfan.gao@microsoft.com", - "commit": "458d1a05b3288c5d36da578f954df06f227066bf", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Fri, 05 Mar 2021 20:30:59 GMT", - "tag": "@fluentui/react-text_v0.2.1", - "version": "0.2.1", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.6", - "author": "lingfan.gao@microsoft.com", - "commit": "f7b97e9dc1cf0fec0201533042db4befb800cbd0", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.7", - "author": "lingfan.gao@microsoft.com", - "commit": "f7b97e9dc1cf0fec0201533042db4befb800cbd0", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Wed, 03 Mar 2021 00:10:09 GMT", - "tag": "@fluentui/react-text_v0.2.1", - "version": "0.2.1", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.5", - "author": "miroslav.stastny@microsoft.com", - "commit": "712ca04cd82ad2b3426762a409cdce05a7cc80fc", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.6", - "author": "miroslav.stastny@microsoft.com", - "commit": "712ca04cd82ad2b3426762a409cdce05a7cc80fc", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Tue, 02 Mar 2021 07:24:27 GMT", - "tag": "@fluentui/react-text_v0.2.1", - "version": "0.2.1", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.5", - "author": "behowell@microsoft.com", - "commit": "b97a96052d0b4c0c1d2f280bdb01f443f8d9bc63", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.4", - "author": "olfedias@microsoft.com", - "commit": "529d34473f30680fa35928e0d977434ab2ed2173", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Fri, 26 Feb 2021 01:16:27 GMT", - "tag": "@fluentui/react-text_v0.2.1", - "version": "0.2.1", - "comments": { - "patch": [ - { - "comment": "Update references to major-bumped packages", - "author": "elcraig@microsoft.com", - "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.4", - "author": "elcraig@microsoft.com", - "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.3", - "author": "elcraig@microsoft.com", - "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 25 Feb 2021 20:16:39 GMT", - "tag": "@fluentui/react-text_v0.2.0", - "version": "0.2.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.3", - "author": "humbertomakotomorimoto@gmail.com", - "commit": "40e4e2ed855e0b2a4ac67a462f2b79919aef868b", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 25 Feb 2021 01:15:27 GMT", - "tag": "@fluentui/react-text_v0.2.0", - "version": "0.2.0", - "comments": { - "minor": [ - { - "comment": "rework to use makeStyles()", - "author": "olfedias@microsoft.com", - "commit": "167f9c3e008dc8b6f70374131c157852ca1e7fe2", - "package": "@fluentui/react-text" - } - ], - "none": [ - { - "comment": "make @fluentui/react-conformance public", - "author": "altinokd@microsoft.com", - "commit": "9de2c9938c00408da7746d4b3f6fe7f80b37e37f", - "package": "@fluentui/react-text" - } - ], - "patch": [ - { - "comment": "Bump @fluentui/react-conformance to v0.2.1", - "author": "altinokd@microsoft.com", - "commit": "9de2c9938c00408da7746d4b3f6fe7f80b37e37f", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.2", - "author": "olfedias@microsoft.com", - "commit": "1d7e4a8bb6f772aee299c37aadc289d83035955c", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.2", - "author": "lingfan.gao@microsoft.com", - "commit": "f8aad9bd5f65b102478944d69e841b37a19d0599", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Wed, 24 Feb 2021 00:05:29 GMT", - "tag": "@fluentui/react-text_v0.1.9", - "version": "0.1.9", - "comments": { - "patch": [ - { - "comment": "bump dependencies to v9", - "author": "olfedias@microsoft.com", - "commit": "74da15f2f1fb10fe089fcaef24a47ac5dba89ad2", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/react-theme-provider to v9.0.0-alpha.1", - "author": "olfedias@microsoft.com", - "commit": "74da15f2f1fb10fe089fcaef24a47ac5dba89ad2", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.1", - "author": "olfedias@microsoft.com", - "commit": "74da15f2f1fb10fe089fcaef24a47ac5dba89ad2", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Mon, 22 Feb 2021 12:26:22 GMT", - "tag": "@fluentui/react-text_v0.1.8", - "version": "0.1.8", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/react-utilities to v0.4.0", - "author": "elcraig@microsoft.com", - "commit": "a37bab178f676de967b937a8bad1a309e3e67fd8", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/react-theme-provider to v1.0.0-beta.27", - "author": "lingfan.gao@microsoft.com", - "commit": "68bc4c7d68b5c01022658fcc485342670d56df39", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/theme to v2.0.0-beta.19", - "author": "elcraig@microsoft.com", - "commit": "a37bab178f676de967b937a8bad1a309e3e67fd8", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 18 Feb 2021 19:38:50 GMT", - "tag": "@fluentui/react-text_v0.1.8", - "version": "0.1.8", - "comments": { - "patch": [ - { - "comment": "Allow React 17 in peerDependencies", - "author": "elcraig@microsoft.com", - "commit": "3b7379fde2d54e677a1d65ae86468bb5fdaf9fa4", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/react-theme-provider to v1.0.0-beta.26", - "author": "elcraig@microsoft.com", - "commit": "3b7379fde2d54e677a1d65ae86468bb5fdaf9fa4", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/theme to v2.0.0-beta.18", - "author": "elcraig@microsoft.com", - "commit": "3b7379fde2d54e677a1d65ae86468bb5fdaf9fa4", - "package": "@fluentui/react-text" - } - ], - "none": [ - { - "comment": "Bump @fluentui/react-utilities to v0.3.1", - "author": "elcraig@microsoft.com", - "commit": "3b7379fde2d54e677a1d65ae86468bb5fdaf9fa4", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 18 Feb 2021 12:27:34 GMT", - "tag": "@fluentui/react-text_v0.1.7", - "version": "0.1.7", - "comments": { - "patch": [ - { - "comment": "use @fluentui/react-utilities instead of @fluentui/react-utils", - "author": "olfedias@microsoft.com", - "commit": "e0d4772fbaff0afd7ae0a2f85b53c4ca3831a701", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/eslint-plugin to v1.0.0-beta.2", - "author": "elcraig@microsoft.com", - "commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/theme to v2.0.0-beta.17", - "author": "elcraig@microsoft.com", - "commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-conformance to v1.0.0", - "author": "elcraig@microsoft.com", - "commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/set-version to v8.0.0-beta.2", - "author": "elcraig@microsoft.com", - "commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/scripts to v1.0.0", - "author": "elcraig@microsoft.com", - "commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0", - "package": "@fluentui/react-text" - } - ], - "none": [ - { - "comment": "Bump @fluentui/react-theme-provider to v1.0.0-beta.25", - "author": "olfedias@microsoft.com", - "commit": "e0d4772fbaff0afd7ae0a2f85b53c4ca3831a701", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utilities to v0.3.0", - "author": "olfedias@microsoft.com", - "commit": "e0d4772fbaff0afd7ae0a2f85b53c4ca3831a701", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Wed, 17 Feb 2021 12:21:39 GMT", - "tag": "@fluentui/react-text_v0.1.6", - "version": "0.1.6", - "comments": { - "none": [ - { - "comment": "chore: apply single version policy on jest", - "author": "martinhochel@microsoft.com", - "commit": "0de01d003589b5e2f166bc070729dca20125a091", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Mon, 15 Feb 2021 12:22:00 GMT", - "tag": "@fluentui/react-text_v0.1.6", - "version": "0.1.6", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-theme-provider to v1.0.0-beta.24", - "author": "olfedias@microsoft.com", - "commit": "c5110956b421df4bc7542ca117935ae4c7919864", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utils to v0.3.2-0", - "author": "xgao@microsoft.com", - "commit": "d5a5a4f26ce900b3e1b3c0f6c46a17c2e3430439", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/theme to v2.0.0-beta.16", - "author": "xgao@microsoft.com", - "commit": "d5a5a4f26ce900b3e1b3c0f6c46a17c2e3430439", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Fri, 12 Feb 2021 12:26:20 GMT", - "tag": "@fluentui/react-text_v0.1.6", - "version": "0.1.6", - "comments": { - "patch": [ - { - "comment": "Updated typings", - "author": "lingfan.gao@microsoft.com", - "commit": "1a358e08d1a3a767e5018b671d5509d82642179d", - "package": "@fluentui/react-text" - }, - { - "comment": "Remove theming logic/interface which are unrelated to v8 release from @fluentui/theme package.", - "author": "xgao@microsoft.com", - "commit": "84f36ddd24db3546e4ccb129a60f7f7f98ceefef", - "package": "@fluentui/react-text" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/react-theme-provider to v1.0.0-beta.23", - "author": "lingfan.gao@microsoft.com", - "commit": "8ee2abdf839b14a45598ded245e0d0865618f4bb", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/theme to v2.0.0-beta.15", - "author": "xgao@microsoft.com", - "commit": "84f36ddd24db3546e4ccb129a60f7f7f98ceefef", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 11 Feb 2021 12:18:41 GMT", - "tag": "@fluentui/react-text_v0.1.5", - "version": "0.1.5", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/react-theme-provider to v1.0.0-beta.22", - "author": "martinhochel@microsoft.com", - "commit": "7566015a7edd355b4fcd3796bc8f44f732ef0877", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 11 Feb 2021 00:58:10 GMT", - "tag": "@fluentui/react-text_v0.1.5", - "version": "0.1.5", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-theme-provider to v1.0.0-beta.22", - "author": "xgao@microsoft.com", - "commit": "69357e7a30d4c282ad82d2ecf4da6fc4b942ab99", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/react-utils to v0.3.1-0", - "author": "xgao@microsoft.com", - "commit": "69357e7a30d4c282ad82d2ecf4da6fc4b942ab99", - "package": "@fluentui/react-text" - }, - { - "comment": "Bump @fluentui/theme to v2.0.0-beta.14", - "author": "xgao@microsoft.com", - "commit": "69357e7a30d4c282ad82d2ecf4da6fc4b942ab99", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Tue, 09 Feb 2021 00:56:52 GMT", - "tag": "@fluentui/react-text_v0.1.5", - "version": "0.1.5", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-theme-provider to v1.0.0-beta.21", - "author": "lingfan.gao@microsoft.com", - "commit": "fe4959d22fec3382fa743b396f671b1b63a26b9e", - "package": "@fluentui/react-text" - } - ], - "patch": [ - { - "comment": "Bump @fluentui/react-utils to v0.3.0", - "author": "lingfan.gao@microsoft.com", - "commit": "fe4959d22fec3382fa743b396f671b1b63a26b9e", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Mon, 08 Feb 2021 12:23:08 GMT", - "tag": "@fluentui/react-text_v0.1.4", - "version": "0.1.4", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-theme-provider to v1.0.0-beta.20", - "author": "miroslav.stastny@microsoft.com", - "commit": "bca3d0d79accb3675bf3dfd49c0297e646b91d2c", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Wed, 03 Feb 2021 05:51:40 GMT", - "tag": "@fluentui/react-text_v0.1.4", - "version": "0.1.4", - "comments": { - "none": [ - { - "comment": "refactor: remove unused .npmrc in packages", - "author": "hantatsang@gmail.com", - "commit": "c688ee2ea6f192c4874974ebf11598523ccf6db9", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Tue, 02 Feb 2021 12:21:54 GMT", - "tag": "@fluentui/react-text_v0.1.4", - "version": "0.1.4", - "comments": { - "patch": [ - { - "comment": "use a compat version of ThemeProvider", - "author": "olfedias@microsoft.com", - "commit": "27074a29ffdf4d437dc4d6fcb347effe9fcb195f", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Mon, 01 Feb 2021 12:23:48 GMT", - "tag": "@fluentui/react-text_v0.1.3", - "version": "0.1.3", - "comments": { - "patch": [ - { - "comment": "add prerelease in disallowed change type for version packages and fix current versioning.", - "author": "xgao@microsoft.com", - "commit": "9ec4369a9e7850d7ab37803f931d1a0cf30743a9", - "package": "@fluentui/react-text" - }, - { - "comment": "Extract compose/next to react-utils", - "author": "lingfan.gao@microsoft.com", - "commit": "f4917ffe3172175eaa332448032d27c64319b679", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 28 Jan 2021 12:25:56 GMT", - "tag": "@fluentui/react-text_v0.1.3-15", - "version": "0.1.3-15", - "comments": { - "prerelease": [ - { - "comment": "Updating to webpack 5, latest typings, latest loaders and plugins.", - "author": "dzearing@microsoft.com", - "commit": "9c2c4a61c7d9eb8d153945ff57962118b569ea5b", - "package": "@fluentui/react-text" - } - ], - "none": [ - { - "comment": "Delete update-api script which is no longer needed", - "author": "elcraig@microsoft.com", - "commit": "943a9ef5768a9cd77ade84217d142f93b1be6127", - "package": "@fluentui/react-text" - }, - { - "comment": "Remove incorrect mock of requestAnimationFrame", - "author": "elcraig@microsoft.com", - "commit": "6bd0ce75decd9f62c40967bd7a59bfff960a0105", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Thu, 21 Jan 2021 12:36:12 GMT", - "tag": "@fluentui/react-text_v0.1.3-14", - "version": "0.1.3-14", - "comments": { - "prerelease": [ - { - "comment": " Updating dev dependencies.", - "author": "dzearing@microsoft.com", - "commit": "f7813725750ecc893ca37792bbb004e554591279", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Tue, 17 Nov 2020 12:36:24 GMT", - "tag": "@fluentui/react-text_v0.1.3-6", - "version": "0.1.3-6", - "comments": { - "prerelease": [ - { - "comment": "Updating api to match output of makeStyles.", - "author": "dzearing@hotmail.com", - "commit": "c170c8c0891fd77ea5572f5e922a15efcfeeccab", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Fri, 23 Oct 2020 23:25:40 GMT", - "tag": "@fluentui/react-text_v0.1.2", - "version": "0.1.2", - "comments": { - "patch": [ - { - "comment": "Major bump react-compose package since it dependes on packages with new major.", - "author": "xgao@microsoft.com", - "commit": "302f8e93bc5bc9fd87d1c5a082713560f3bc4583", - "package": "@fluentui/react-text" - } - ] - } - }, - { - "date": "Fri, 23 Oct 2020 03:26:15 GMT", - "tag": "@fluentui/react-text_v0.1.1", - "version": "0.1.1", - "comments": { - "patch": [ - { - "comment": "create `react-text` package", - "author": "olfedias@microsoft.com", - "commit": "5b078c73e52ed6c791b369a320fa053c101df1de", - "package": "@fluentui/react-text" - }, - { - "comment": "Remove unneeded package dependencies.", - "author": "xgao@microsoft.com", - "commit": "9775badfc989f8820a437367a53f761cc3ca7512", - "package": "@fluentui/react-text" - }, - { - "comment": "Rename @uifabric/set-version to @fluentui/set-version", - "author": "ololubek@microsoft.com", - "commit": "2eba5d5be163a7a64975f058dc38b465f2363064", - "package": "@fluentui/react-text" - } - ], - "none": [ - { - "comment": "Remove unused storybook dependency", - "author": "elcraig@microsoft.com", - "commit": "aec02d96e7cef745e9867c03a528426a5ad28038", - "package": "@fluentui/react-text" - }, - { - "comment": "Rename build-related packages", - "author": "elcraig@microsoft.com", - "commit": "32a158fd2c7fca8dc308a3e41f692817e6c26c44", - "package": "@fluentui/react-text" - }, - { - "comment": "Update package version for @fluentui/react version 8 beta release.", - "author": "xgao@microsoft.com", - "commit": "ee2622a8572c11f1eeb9d7f1c8d759d6ae0281ca", - "package": "@fluentui/react-text" - } - ] - } - } - ] -} diff --git a/packages/react-text/CHANGELOG.md b/packages/react-text/CHANGELOG.md deleted file mode 100644 index 4f2544b237ace5..00000000000000 --- a/packages/react-text/CHANGELOG.md +++ /dev/null @@ -1,670 +0,0 @@ -# Change Log - @fluentui/react-text - -This log was last generated on Tue, 15 Jun 2021 07:40:20 GMT and should not be manually modified. - - - -## [0.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.3.3) - -Tue, 15 Jun 2021 07:40:20 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.3.3..@fluentui/react-text_v0.3.3) - -### Changes - -- Bump @fluentui/react-utilities to v9.0.0-alpha.29 ([PR #18521](https://github.com/microsoft/fluentui/pull/18521) by behowell@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.42 ([PR #18521](https://github.com/microsoft/fluentui/pull/18521) by behowell@microsoft.com) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.18 ([PR #18521](https://github.com/microsoft/fluentui/pull/18521) by behowell@microsoft.com) - -## [0.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.3.3) - -Mon, 07 Jun 2021 07:38:15 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.3.2..@fluentui/react-text_v0.3.3) - -### Patches - -- Bump @fluentui/react-conformance to v0.4.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.17 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.28 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.41 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com) - -## [0.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.3.2) - -Fri, 04 Jun 2021 07:37:23 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.3.2..@fluentui/react-text_v0.3.2) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.16 ([PR #18168](https://github.com/microsoft/fluentui/pull/18168) by Humberto.Morimoto@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.40 ([PR #18168](https://github.com/microsoft/fluentui/pull/18168) by Humberto.Morimoto@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.27 ([PR #18168](https://github.com/microsoft/fluentui/pull/18168) by Humberto.Morimoto@microsoft.com) - -## [0.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.3.2) - -Thu, 03 Jun 2021 07:36:03 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.3.2..@fluentui/react-text_v0.3.2) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.39 ([PR #18321](https://github.com/microsoft/fluentui/pull/18321) by miroslav.stastny@microsoft.com) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.15 ([PR #18321](https://github.com/microsoft/fluentui/pull/18321) by miroslav.stastny@microsoft.com) - -## [0.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.3.2) - -Wed, 26 May 2021 07:35:43 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.3.2..@fluentui/react-text_v0.3.2) - -### Changes - -- Bump @fluentui/react-utilities to v9.0.0-alpha.25 ([PR #18323](https://github.com/microsoft/fluentui/pull/18323) by lingfan.gao@microsoft.com) - -## [0.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.3.2) - -Fri, 21 May 2021 07:34:54 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.3.2..@fluentui/react-text_v0.3.2) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.37 ([PR #18259](https://github.com/microsoft/fluentui/pull/18259) by behowell@microsoft.com) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.14 ([PR #18259](https://github.com/microsoft/fluentui/pull/18259) by behowell@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.24 ([PR #18259](https://github.com/microsoft/fluentui/pull/18259) by behowell@microsoft.com) - -## [0.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.3.2) - -Thu, 20 May 2021 07:41:54 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.3.1..@fluentui/react-text_v0.3.2) - -### Patches - -- Bump @fluentui/react-conformance to v0.4.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.13 ([PR #18041](https://github.com/microsoft/fluentui/pull/18041) by elcraig@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.23 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.36 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com) - -## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.3.1) - -Wed, 19 May 2021 07:34:20 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.3.0..@fluentui/react-text_v0.3.1) - -### Patches - -- Bump @fluentui/react-conformance to v0.3.1 ([PR #18194](https://github.com/microsoft/fluentui/pull/18194) by martinhochel@microsoft.com) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.12 ([PR #18037](https://github.com/microsoft/fluentui/pull/18037) by olfedias@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.35 ([PR #18037](https://github.com/microsoft/fluentui/pull/18037) by olfedias@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.22 ([PR #18037](https://github.com/microsoft/fluentui/pull/18037) by olfedias@microsoft.com) - -## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.3.0) - -Tue, 18 May 2021 07:34:38 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.3.0..@fluentui/react-text_v0.3.0) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.11 ([PR #18171](https://github.com/microsoft/fluentui/pull/18171) by olfedias@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.34 ([PR #18171](https://github.com/microsoft/fluentui/pull/18171) by olfedias@microsoft.com) - -## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.3.0) - -Thu, 13 May 2021 07:36:55 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.3.0..@fluentui/react-text_v0.3.0) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.10 ([PR #18039](https://github.com/microsoft/fluentui/pull/18039) by olfedias@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.33 ([PR #18039](https://github.com/microsoft/fluentui/pull/18039) by olfedias@microsoft.com) - -## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.3.0) - -Wed, 12 May 2021 07:36:20 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.3.0..@fluentui/react-text_v0.3.0) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.9 ([PR #18097](https://github.com/microsoft/fluentui/pull/18097) by olfedias@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.32 ([PR #18097](https://github.com/microsoft/fluentui/pull/18097) by olfedias@microsoft.com) - -## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.3.0) - -Mon, 10 May 2021 07:36:07 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.3.0..@fluentui/react-text_v0.3.0) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.8 ([PR #18095](https://github.com/microsoft/fluentui/pull/18095) by olfedias@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.31 ([PR #18095](https://github.com/microsoft/fluentui/pull/18095) by olfedias@microsoft.com) - -## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.3.0) - -Wed, 05 May 2021 07:36:50 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.3.0..@fluentui/react-text_v0.3.0) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.7 ([PR #18038](https://github.com/microsoft/fluentui/pull/18038) by olfedias@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.30 ([PR #18038](https://github.com/microsoft/fluentui/pull/18038) by olfedias@microsoft.com) - -## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.3.0) - -Mon, 03 May 2021 07:45:19 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.3.0..@fluentui/react-text_v0.3.0) - -### Changes - -- Bump @fluentui/react-utilities to v9.0.0-alpha.21 ([PR #18005](https://github.com/microsoft/fluentui/pull/18005) by lingfan.gao@microsoft.com) - -## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.3.0) - -Fri, 30 Apr 2021 07:42:23 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.9..@fluentui/react-text_v0.3.0) - -### Minor changes - -- Upgrade to ts 4.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com) - -### Patches - -- Bump @fluentui/eslint-plugin to v1.2.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com) -- Bump @fluentui/react-conformance to v0.3.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com) -- Bump @fluentui/scripts to v1.0.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.6 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.20 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.29 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com) - -## [0.2.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.9) - -Tue, 27 Apr 2021 07:34:03 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.9..@fluentui/react-text_v0.2.9) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.5 ([PR #17922](https://github.com/microsoft/fluentui/pull/17922) by bsunderhus@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.28 ([PR #17803](https://github.com/microsoft/fluentui/pull/17803) by olfedias@microsoft.com) - -## [0.2.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.9) - -Mon, 26 Apr 2021 07:34:31 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.9..@fluentui/react-text_v0.2.9) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.4 ([PR #17936](https://github.com/microsoft/fluentui/pull/17936) by bsunderhus@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.27 ([PR #17936](https://github.com/microsoft/fluentui/pull/17936) by bsunderhus@microsoft.com) - -## [0.2.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.9) - -Fri, 23 Apr 2021 07:37:10 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.8..@fluentui/react-text_v0.2.9) - -### Patches - -- Bump @fluentui/react-conformance to v0.2.6 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.3 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.19 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.26 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com) - -## [0.2.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.8) - -Thu, 22 Apr 2021 07:33:28 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.8..@fluentui/react-text_v0.2.8) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.2 ([PR #17826](https://github.com/microsoft/fluentui/pull/17826) by bsunderhus@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.25 ([PR #17826](https://github.com/microsoft/fluentui/pull/17826) by bsunderhus@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.18 ([PR #17897](https://github.com/microsoft/fluentui/pull/17897) by olfedias@microsoft.com) - -## [0.2.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.8) - -Wed, 21 Apr 2021 07:31:50 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.7..@fluentui/react-text_v0.2.8) - -### Patches - -- Rename ax() to mergeClasses() ([PR #17875](https://github.com/microsoft/fluentui/pull/17875) by miroslav.stastny@microsoft.com) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.24 ([PR #17875](https://github.com/microsoft/fluentui/pull/17875) by miroslav.stastny@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.17 ([PR #17875](https://github.com/microsoft/fluentui/pull/17875) by miroslav.stastny@microsoft.com) - -## [0.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.7) - -Tue, 20 Apr 2021 07:31:35 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.7..@fluentui/react-text_v0.2.7) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.23 ([PR #17855](https://github.com/microsoft/fluentui/pull/17855) by lingfan.gao@microsoft.com) - -## [0.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.7) - -Fri, 16 Apr 2021 18:08:21 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.7..@fluentui/react-text_v0.2.7) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.22 ([PR #17840](https://github.com/microsoft/fluentui/pull/17840) by bsunderhus@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.16 ([PR #17794](https://github.com/microsoft/fluentui/pull/17794) by lingfan.gao@microsoft.com) - -## [0.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.7) - -Wed, 14 Apr 2021 07:34:12 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.7..@fluentui/react-text_v0.2.7) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.21 ([PR #17707](https://github.com/microsoft/fluentui/pull/17707) by bsunderhus@microsoft.com) - -## [0.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.7) - -Fri, 09 Apr 2021 07:31:06 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.7..@fluentui/react-text_v0.2.7) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.20 ([PR #17670](https://github.com/microsoft/fluentui/pull/17670) by olfedias@microsoft.com) - -## [0.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.7) - -Thu, 08 Apr 2021 07:33:06 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.7..@fluentui/react-text_v0.2.7) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.19 ([PR #17713](https://github.com/microsoft/fluentui/pull/17713) by olfedias@microsoft.com) - -## [0.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.7) - -Thu, 01 Apr 2021 20:13:37 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.7..@fluentui/react-text_v0.2.7) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.18 ([PR #17651](https://github.com/microsoft/fluentui/pull/17651) by bsunderhus@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.15 ([PR #17651](https://github.com/microsoft/fluentui/pull/17651) by bsunderhus@microsoft.com) - -## [0.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.7) - -Wed, 31 Mar 2021 00:53:43 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.6..@fluentui/react-text_v0.2.7) - -### Patches - -- Fix type errors caught by makeMergeProps improvements ([PR #17508](https://github.com/microsoft/fluentui/pull/17508) by behowell@microsoft.com) - -### Changes - -- Bump @fluentui/react-utilities to v9.0.0-alpha.14 ([PR #17508](https://github.com/microsoft/fluentui/pull/17508) by behowell@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.17 ([PR #17549](https://github.com/microsoft/fluentui/pull/17549) by olfedias@microsoft.com) - -## [0.2.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.6) - -Tue, 30 Mar 2021 07:34:45 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.5..@fluentui/react-text_v0.2.6) - -### Patches - -- chore: restore "sideEffects" to enable treeshaking ([PR #17584](https://github.com/microsoft/fluentui/pull/17584) by olfedias@microsoft.com) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.16 ([PR #17584](https://github.com/microsoft/fluentui/pull/17584) by olfedias@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.13 ([PR #17584](https://github.com/microsoft/fluentui/pull/17584) by olfedias@microsoft.com) - -## [0.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.5) - -Fri, 26 Mar 2021 07:32:34 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.5..@fluentui/react-text_v0.2.5) - -### Changes - -- Bump @fluentui/react-utilities to v9.0.0-alpha.12 ([PR #17524](https://github.com/microsoft/fluentui/pull/17524) by lingfan.gao@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.15 ([PR #17524](https://github.com/microsoft/fluentui/pull/17524) by lingfan.gao@microsoft.com) - -## [0.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.5) - -Thu, 25 Mar 2021 07:33:24 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.5..@fluentui/react-text_v0.2.5) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.14 ([PR #17539](https://github.com/microsoft/fluentui/pull/17539) by olfedias@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.11 ([PR #17528](https://github.com/microsoft/fluentui/pull/17528) by lingfan.gao@microsoft.com) - -## [0.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.5) - -Wed, 24 Mar 2021 07:32:21 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.4..@fluentui/react-text_v0.2.5) - -### Patches - -- react-text - Updates styles from makeStylesCompat to makeStyle ([PR #17443](https://github.com/microsoft/fluentui/pull/17443) by bsunderhus@microsoft.com) - -## [0.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.4) - -Tue, 23 Mar 2021 07:31:43 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.4..@fluentui/react-text_v0.2.4) - -### Changes - -- Bump @fluentui/react-utilities to v9.0.0-alpha.10 ([PR #17339](https://github.com/microsoft/fluentui/pull/17339) by lingfan.gao@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.13 ([PR #17339](https://github.com/microsoft/fluentui/pull/17339) by lingfan.gao@microsoft.com) - -## [0.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.4) - -Thu, 18 Mar 2021 20:15:34 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.4..@fluentui/react-text_v0.2.4) - -### Changes - -- Bump @fluentui/react-utilities to v9.0.0-alpha.9 ([PR #17387](https://github.com/microsoft/fluentui/pull/17387) by lingfan.gao@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.12 ([PR #17387](https://github.com/microsoft/fluentui/pull/17387) by lingfan.gao@microsoft.com) - -## [0.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.4) - -Tue, 16 Mar 2021 07:32:44 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.3..@fluentui/react-text_v0.2.4) - -### Patches - -- Bump @fluentui/react-conformance to v0.2.4 ([PR #17418](https://github.com/microsoft/fluentui/pull/17418) by elcraig@microsoft.com) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.11 ([PR #17418](https://github.com/microsoft/fluentui/pull/17418) by elcraig@microsoft.com) - -## [0.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.3) - -Mon, 15 Mar 2021 07:36:20 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.2..@fluentui/react-text_v0.2.3) - -### Patches - -- Remove set-version references ([PR #17381](https://github.com/microsoft/fluentui/pull/17381) by elcraig@microsoft.com) - -## [0.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.2) - -Fri, 12 Mar 2021 20:04:27 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.1..@fluentui/react-text_v0.2.2) - -### Patches - -- Change makeStyles to makeStylesCompat ([PR #17354](https://github.com/microsoft/fluentui/pull/17354) by bsunderhus@microsoft.com) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.9 ([PR #17373](https://github.com/microsoft/fluentui/pull/17373) by elcraig@microsoft.com) - -## [0.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.1) - -Wed, 10 Mar 2021 07:34:39 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.1..@fluentui/react-text_v0.2.1) - -### Changes - -- Bump @fluentui/react-utilities to v9.0.0-alpha.7 ([PR #17293](https://github.com/microsoft/fluentui/pull/17293) by lingfan.gao@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.8 ([PR #17293](https://github.com/microsoft/fluentui/pull/17293) by lingfan.gao@microsoft.com) - -## [0.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.1) - -Fri, 05 Mar 2021 20:30:59 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.1..@fluentui/react-text_v0.2.1) - -### Changes - -- Bump @fluentui/react-utilities to v9.0.0-alpha.6 ([PR #17273](https://github.com/microsoft/fluentui/pull/17273) by lingfan.gao@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.7 ([PR #17273](https://github.com/microsoft/fluentui/pull/17273) by lingfan.gao@microsoft.com) - -## [0.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.1) - -Wed, 03 Mar 2021 00:10:09 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.1..@fluentui/react-text_v0.2.1) - -### Changes - -- Bump @fluentui/react-utilities to v9.0.0-alpha.5 ([PR #17211](https://github.com/microsoft/fluentui/pull/17211) by miroslav.stastny@microsoft.com) -- Bump @fluentui/react-make-styles to v9.0.0-alpha.6 ([PR #17211](https://github.com/microsoft/fluentui/pull/17211) by miroslav.stastny@microsoft.com) - -## [0.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.1) - -Tue, 02 Mar 2021 07:24:27 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.1..@fluentui/react-text_v0.2.1) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.5 ([PR #17131](https://github.com/microsoft/fluentui/pull/17131) by behowell@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.4 ([PR #17197](https://github.com/microsoft/fluentui/pull/17197) by olfedias@microsoft.com) - -## [0.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.1) - -Fri, 26 Feb 2021 01:16:27 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.0..@fluentui/react-text_v0.2.1) - -### Patches - -- Update references to major-bumped packages ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.4 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.3 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com) - -## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.0) - -Thu, 25 Feb 2021 20:16:39 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.2.0..@fluentui/react-text_v0.2.0) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.3 ([PR #17085](https://github.com/microsoft/fluentui/pull/17085) by humbertomakotomorimoto@gmail.com) - -## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.2.0) - -Thu, 25 Feb 2021 01:15:27 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.9..@fluentui/react-text_v0.2.0) - -### Minor changes - -- rework to use makeStyles() ([PR #17160](https://github.com/microsoft/fluentui/pull/17160) by olfedias@microsoft.com) - -### Patches - -- Bump @fluentui/react-conformance to v0.2.1 ([PR #17118](https://github.com/microsoft/fluentui/pull/17118) by altinokd@microsoft.com) - -### Changes - -- Bump @fluentui/react-make-styles to v9.0.0-alpha.2 ([PR #17157](https://github.com/microsoft/fluentui/pull/17157) by olfedias@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.2 ([PR #17113](https://github.com/microsoft/fluentui/pull/17113) by lingfan.gao@microsoft.com) - -## [0.1.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.9) - -Wed, 24 Feb 2021 00:05:29 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.8..@fluentui/react-text_v0.1.9) - -### Patches - -- bump dependencies to v9 ([PR #17093](https://github.com/microsoft/fluentui/pull/17093) by olfedias@microsoft.com) - -### Changes - -- Bump @fluentui/react-theme-provider to v9.0.0-alpha.1 ([PR #17093](https://github.com/microsoft/fluentui/pull/17093) by olfedias@microsoft.com) -- Bump @fluentui/react-utilities to v9.0.0-alpha.1 ([PR #17093](https://github.com/microsoft/fluentui/pull/17093) by olfedias@microsoft.com) - -## [0.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.8) - -Mon, 22 Feb 2021 12:26:22 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.8..@fluentui/react-text_v0.1.8) - -### Changes - -- Bump @fluentui/react-theme-provider to v1.0.0-beta.27 ([PR #17091](https://github.com/microsoft/fluentui/pull/17091) by lingfan.gao@microsoft.com) -- Bump @fluentui/theme to v2.0.0-beta.19 ([PR #17061](https://github.com/microsoft/fluentui/pull/17061) by elcraig@microsoft.com) - -## [0.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.8) - -Thu, 18 Feb 2021 19:38:50 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.7..@fluentui/react-text_v0.1.8) - -### Patches - -- Allow React 17 in peerDependencies ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com) - -### Changes - -- Bump @fluentui/react-theme-provider to v1.0.0-beta.26 ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com) -- Bump @fluentui/theme to v2.0.0-beta.18 ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com) - -## [0.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.7) - -Thu, 18 Feb 2021 12:27:34 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.6..@fluentui/react-text_v0.1.7) - -### Patches - -- use @fluentui/react-utilities instead of @fluentui/react-utils ([PR #16970](https://github.com/microsoft/fluentui/pull/16970) by olfedias@microsoft.com) - -### Changes - -- Bump @fluentui/eslint-plugin to v1.0.0-beta.2 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com) -- Bump @fluentui/theme to v2.0.0-beta.17 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com) -- Bump @fluentui/react-conformance to v1.0.0 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com) -- Bump @fluentui/set-version to v8.0.0-beta.2 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com) -- Bump @fluentui/scripts to v1.0.0 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com) - -## [0.1.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.6) - -Mon, 15 Feb 2021 12:22:00 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.6..@fluentui/react-text_v0.1.6) - -### Changes - -- Bump @fluentui/react-theme-provider to v1.0.0-beta.24 ([PR #16963](https://github.com/microsoft/fluentui/pull/16963) by olfedias@microsoft.com) -- Bump @fluentui/react-utils to v0.3.2-0 ([PR #16880](https://github.com/microsoft/fluentui/pull/16880) by xgao@microsoft.com) -- Bump @fluentui/theme to v2.0.0-beta.16 ([PR #16880](https://github.com/microsoft/fluentui/pull/16880) by xgao@microsoft.com) - -## [0.1.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.6) - -Fri, 12 Feb 2021 12:26:20 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.5..@fluentui/react-text_v0.1.6) - -### Patches - -- Updated typings ([PR #16902](https://github.com/microsoft/fluentui/pull/16902) by lingfan.gao@microsoft.com) -- Remove theming logic/interface which are unrelated to v8 release from @fluentui/theme package. ([PR #16935](https://github.com/microsoft/fluentui/pull/16935) by xgao@microsoft.com) - -### Changes - -- Bump @fluentui/react-theme-provider to v1.0.0-beta.23 ([PR #16945](https://github.com/microsoft/fluentui/pull/16945) by lingfan.gao@microsoft.com) -- Bump @fluentui/theme to v2.0.0-beta.15 ([PR #16935](https://github.com/microsoft/fluentui/pull/16935) by xgao@microsoft.com) - -## [0.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.5) - -Thu, 11 Feb 2021 00:58:10 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.5..@fluentui/react-text_v0.1.5) - -### Changes - -- Bump @fluentui/react-theme-provider to v1.0.0-beta.22 ([PR #16911](https://github.com/microsoft/fluentui/pull/16911) by xgao@microsoft.com) -- Bump @fluentui/react-utils to v0.3.1-0 ([PR #16911](https://github.com/microsoft/fluentui/pull/16911) by xgao@microsoft.com) -- Bump @fluentui/theme to v2.0.0-beta.14 ([PR #16911](https://github.com/microsoft/fluentui/pull/16911) by xgao@microsoft.com) - -## [0.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.5) - -Tue, 09 Feb 2021 00:56:52 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.4..@fluentui/react-text_v0.1.5) - -### Patches - -- Bump @fluentui/react-utils to v0.3.0 ([PR #16865](https://github.com/microsoft/fluentui/pull/16865) by lingfan.gao@microsoft.com) - -### Changes - -- Bump @fluentui/react-theme-provider to v1.0.0-beta.21 ([PR #16865](https://github.com/microsoft/fluentui/pull/16865) by lingfan.gao@microsoft.com) - -## [0.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.4) - -Mon, 08 Feb 2021 12:23:08 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.4..@fluentui/react-text_v0.1.4) - -### Changes - -- Bump @fluentui/react-theme-provider to v1.0.0-beta.20 ([PR #16844](https://github.com/microsoft/fluentui/pull/16844) by miroslav.stastny@microsoft.com) - -## [0.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.4) - -Tue, 02 Feb 2021 12:21:54 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.3..@fluentui/react-text_v0.1.4) - -### Patches - -- use a compat version of ThemeProvider ([PR #16729](https://github.com/microsoft/fluentui/pull/16729) by olfedias@microsoft.com) - -## [0.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.3) - -Mon, 01 Feb 2021 12:23:48 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.3-15..@fluentui/react-text_v0.1.3) - -### Patches - -- add prerelease in disallowed change type for version packages and fix current versioning. ([PR #16696](https://github.com/microsoft/fluentui/pull/16696) by xgao@microsoft.com) -- Extract compose/next to react-utils ([PR #16690](https://github.com/microsoft/fluentui/pull/16690) by lingfan.gao@microsoft.com) - -## [0.1.3-15](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.3-15) - -Thu, 28 Jan 2021 12:25:56 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.3-14..@fluentui/react-text_v0.1.3-15) - -### Changes - -- Updating to webpack 5, latest typings, latest loaders and plugins. ([PR #16447](https://github.com/microsoft/fluentui/pull/16447) by dzearing@microsoft.com) - -## [0.1.3-14](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.3-14) - -Thu, 21 Jan 2021 12:36:12 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.3-6..@fluentui/react-text_v0.1.3-14) - -### Changes - -- Updating dev dependencies. ([PR #16548](https://github.com/microsoft/fluentui/pull/16548) by dzearing@microsoft.com) - -## [0.1.3-6](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.3-6) - -Tue, 17 Nov 2020 12:36:24 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.2..@fluentui/react-text_v0.1.3-6) - -### Changes - -- Updating api to match output of makeStyles. ([PR #15952](https://github.com/microsoft/fluentui/pull/15952) by dzearing@hotmail.com) - -## [0.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.2) - -Fri, 23 Oct 2020 23:25:40 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v0.1.1..@fluentui/react-text_v0.1.2) - -### Patches - -- Major bump react-compose package since it dependes on packages with new major. ([PR #15679](https://github.com/microsoft/fluentui/pull/15679) by xgao@microsoft.com) - -## [0.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.1.1) - -Fri, 23 Oct 2020 03:26:15 GMT - -### Patches - -- create `react-text` package ([PR #15304](https://github.com/microsoft/fluentui/pull/15304) by olfedias@microsoft.com) -- Remove unneeded package dependencies. ([PR #15456](https://github.com/microsoft/fluentui/pull/15456) by xgao@microsoft.com) -- Rename @uifabric/set-version to @fluentui/set-version ([PR #15616](https://github.com/microsoft/fluentui/pull/15616) by ololubek@microsoft.com) diff --git a/packages/react-text/README.md b/packages/react-text/README.md index 418edd57c451f8..a37feac50e6997 100644 --- a/packages/react-text/README.md +++ b/packages/react-text/README.md @@ -1,15 +1,5 @@ # @fluentui/react-text -**React Text component for [Fluent UI React](https://developer.microsoft.com/en-us/fluentui)** +**React Text component and wrappers for [Fluent UI React](https://developer.microsoft.com/en-us/fluentui)** These are not production-ready components and **should never be used in product**. This space is useful for testing new components whose APIs might change before final release. - -To import React Text component: - -```js -import { Text } from '@fluentui/react-text'; - -const App = () => { - return A sample text; -}; -``` diff --git a/packages/react-text/config/api-extractor.json b/packages/react-text/config/api-extractor.json index 238b8a6d0170a4..f890ae360b7f7f 100644 --- a/packages/react-text/config/api-extractor.json +++ b/packages/react-text/config/api-extractor.json @@ -1,29 +1,4 @@ { "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", - "mainEntryPointFilePath": "/lib/index.d.ts", - "apiReport": { - "enabled": true - }, - "docModel": { - "enabled": true, - "apiJsonFilePath": "/dist/.api.json" - }, - "dtsRollup": { - "enabled": true - }, - "messages": { - "extractorMessageReporting": { - "ae-missing-release-tag": { - "logLevel": "none" - }, - "ae-unresolved-link": { - "logLevel": "none" - } - }, - "tsdocMessageReporting": { - "tsdoc-undefined-tag": { - "logLevel": "none" - } - } - } + "extends": "@fluentui/scripts/api-extractor/api-extractor.common.json" } diff --git a/packages/react-text/config/api-extractor.local.json b/packages/react-text/config/api-extractor.local.json new file mode 100644 index 00000000000000..c2ea401c1c3685 --- /dev/null +++ b/packages/react-text/config/api-extractor.local.json @@ -0,0 +1,5 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", + "extends": "./api-extractor.json", + "mainEntryPointFilePath": "/dist//src/index.d.ts" +} diff --git a/packages/react-text/config/tests.js b/packages/react-text/config/tests.js index 9d42be853e4657..3882d3702ddc99 100644 --- a/packages/react-text/config/tests.js +++ b/packages/react-text/config/tests.js @@ -1,4 +1,5 @@ /** Jest test setup file. */ + const { configure } = require('enzyme'); const Adapter = require('enzyme-adapter-react-16'); diff --git a/packages/react-text/etc/react-text.api.md b/packages/react-text/etc/react-text.api.md index 519f2786064e7d..935fdd7ffb81b0 100644 --- a/packages/react-text/etc/react-text.api.md +++ b/packages/react-text/etc/react-text.api.md @@ -5,32 +5,34 @@ ```ts import { ComponentProps } from '@fluentui/react-utilities'; +import { ComponentState } from '@fluentui/react-utilities'; import * as React_2 from 'react'; // @public -export const renderText: (state: TextProps) => JSX.Element; +export const renderText: (state: TextState) => JSX.Element; -// @public (undocumented) -const Text_2: React_2.FunctionComponent>; +// @public +const Text_2: React_2.ForwardRefExoticComponent>; export { Text_2 as Text } -// @public (undocumented) -export interface TextProps extends ComponentProps, React_2.HTMLAttributes { - variant?: 'caption' | 'body' | 'subHeadline' | 'headline' | 'title1' | 'title2' | 'title3' | 'largeTitle' | 'display'; +// @public +export type TextDefaultedProps = never; + +// @public +export interface TextProps extends ComponentProps, React_2.HTMLAttributes { } -// @public (undocumented) -export interface TextState extends TextProps { - // (undocumented) - ref: React_2.RefObject; +// @public +export interface TextState extends ComponentState { + ref: React_2.Ref; } // @public export const useText: (props: TextProps, ref: React_2.Ref, defaultProps?: TextProps | undefined) => TextState; -// @public (undocumented) -export function useTextStyles(state: TextState): TextState; +// @public +export const useTextStyles: (state: TextState) => TextState; // (No @packageDocumentation comment for this package) diff --git a/packages/react-text/jest.config.js b/packages/react-text/jest.config.js index c2a9e205df8e6d..79b5832e9d0b02 100644 --- a/packages/react-text/jest.config.js +++ b/packages/react-text/jest.config.js @@ -1,9 +1,21 @@ -const { createConfig } = require('@fluentui/scripts/jest/jest-resources'); -const path = require('path'); +// @ts-check -const config = createConfig({ - setupFiles: [path.resolve(path.join(__dirname, 'config', 'tests.js'))], +/** + * @type {jest.InitialOptions} + */ +module.exports = { + displayName: 'react-text', + preset: '../../jest.preset.js', + globals: { + 'ts-jest': { + tsConfig: '/tsconfig.json', + diagnostics: false, + }, + }, + transform: { + '^.+\\.tsx?$': 'ts-jest', + }, + coverageDirectory: './coverage', + setupFilesAfterEnv: ['./config/tests.js'], snapshotSerializers: ['@fluentui/jest-serializer-make-styles'], -}); - -module.exports = config; +}; diff --git a/packages/react-text/package.json b/packages/react-text/package.json index 526fdf3d7ae741..f27825ae951c22 100644 --- a/packages/react-text/package.json +++ b/packages/react-text/package.json @@ -1,7 +1,8 @@ { "name": "@fluentui/react-text", - "version": "0.3.3", - "description": "Fluent UI React Text component.", + "private": true, + "version": "9.0.0-alpha.0", + "description": "Text is a typography and styling abstraction component that can be used to ensure the consistency of all text across your application.", "main": "lib-commonjs/index.js", "module": "lib/index.js", "typings": "lib/index.d.ts", @@ -17,10 +18,11 @@ "code-style": "just-scripts code-style", "just": "just-scripts", "lint": "just-scripts lint", - "start": "just-scripts dev:storybook", - "start-test": "just-scripts jest-watch", - "test": "just-scripts test", - "update-snapshots": "just-scripts jest -u" + "start": "storybook", + "test": "jest", + "docs": "api-extractor run --config=config/api-extractor.local.json --local", + "build:local": "tsc -p . --module esnext --emitDeclarationOnly && node ../../scripts/typescript/normalize-import --output dist/packages/react-text/src && yarn docs", + "storybook": "start-storybook" }, "devDependencies": { "@fluentui/eslint-plugin": "^1.3.1", @@ -48,5 +50,13 @@ "@types/react-dom": ">=16.8.0 <18.0.0", "react": ">=16.8.0 <18.0.0", "react-dom": ">=16.8.0 <18.0.0" + }, + "beachball": { + "tag": "alpha", + "disallowedChangeTypes": [ + "major", + "minor", + "patch" + ] } } diff --git a/packages/react-text/src/common/isConformant.ts b/packages/react-text/src/common/isConformant.ts index ea0dd4023669b0..20b3e37e97d44b 100644 --- a/packages/react-text/src/common/isConformant.ts +++ b/packages/react-text/src/common/isConformant.ts @@ -6,7 +6,6 @@ export function isConformant( const defaultOptions: Partial> = { asPropHandlesRef: true, componentPath: module!.parent!.filename.replace('.test', ''), - disabledTests: ['has-docblock'], }; baseIsConformant(defaultOptions, testInfo); diff --git a/packages/react-text/src/components/Text/Text.test.tsx b/packages/react-text/src/components/Text/Text.test.tsx index a4d1e254218b1b..1460ef201a321c 100644 --- a/packages/react-text/src/components/Text/Text.test.tsx +++ b/packages/react-text/src/components/Text/Text.test.tsx @@ -1,11 +1,8 @@ -import { isConformant } from '../../common/isConformant'; -import * as path from 'path'; - import { Text } from './Text'; +import { isConformant } from '../../common/isConformant'; describe('Text', () => { isConformant({ - componentPath: path.join(__dirname, 'Text.ts'), Component: Text, displayName: 'Text', }); diff --git a/packages/react-text/src/components/Text/Text.ts b/packages/react-text/src/components/Text/Text.tsx similarity index 65% rename from packages/react-text/src/components/Text/Text.ts rename to packages/react-text/src/components/Text/Text.tsx index b83c57cb97dc48..49e9aca62a021e 100644 --- a/packages/react-text/src/components/Text/Text.ts +++ b/packages/react-text/src/components/Text/Text.tsx @@ -1,18 +1,16 @@ import * as React from 'react'; - -import { renderText } from './renderText'; -import { TextProps } from './Text.types'; import { useText } from './useText'; +import { TextProps } from './Text.types'; +import { renderText } from './renderText'; import { useTextStyles } from './useTextStyles'; -export const Text: React.FunctionComponent> = React.forwardRef< - HTMLElement, - TextProps ->((props, ref) => { +/** + * Typography and styling abstraction component used to ensure consistency of text. + */ +export const Text = React.forwardRef((props, ref) => { const state = useText(props, ref); useTextStyles(state); - return renderText(state); }); diff --git a/packages/react-text/src/components/Text/Text.types.ts b/packages/react-text/src/components/Text/Text.types.ts index 87d321f1e32797..47135d7f39af7c 100644 --- a/packages/react-text/src/components/Text/Text.types.ts +++ b/packages/react-text/src/components/Text/Text.types.ts @@ -1,11 +1,28 @@ -import { ComponentProps } from '@fluentui/react-utilities'; import * as React from 'react'; +import { ComponentProps, ComponentState } from '@fluentui/react-utilities'; -export interface TextProps extends ComponentProps, React.HTMLAttributes { - /** A text can define its look via defined variants. */ - variant?: 'caption' | 'body' | 'subHeadline' | 'headline' | 'title1' | 'title2' | 'title3' | 'largeTitle' | 'display'; +/** + * Text Props + */ +export interface TextProps extends ComponentProps, React.HTMLAttributes { + /* + * TODO Add props and slots here + * Any slot property should be listed in the textShorthandProps array below + * Any property that has a default value should be listed in TextDefaultedProps as e.g. 'size' | 'icon' + */ } -export interface TextState extends TextProps { - ref: React.RefObject; +/** + * Names of TextProps that have a default value in useText + */ +export type TextDefaultedProps = never; // TODO add names of properties with default values + +/** + * State used in rendering Text + */ +export interface TextState extends ComponentState { + /** + * Ref to the root element + */ + ref: React.Ref; } diff --git a/packages/react-text/src/components/Text/index.ts b/packages/react-text/src/components/Text/index.ts index 2798d48aad29f9..04fc42f94ff616 100644 --- a/packages/react-text/src/components/Text/index.ts +++ b/packages/react-text/src/components/Text/index.ts @@ -1,5 +1,5 @@ -export * from './renderText'; export * from './Text'; export * from './Text.types'; +export * from './renderText'; export * from './useText'; export * from './useTextStyles'; diff --git a/packages/react-text/src/components/Text/renderText.tsx b/packages/react-text/src/components/Text/renderText.tsx index b7c9eca14dd99d..0f4ab9efa85eee 100644 --- a/packages/react-text/src/components/Text/renderText.tsx +++ b/packages/react-text/src/components/Text/renderText.tsx @@ -1,13 +1,17 @@ import * as React from 'react'; import { getSlots } from '@fluentui/react-utilities'; - -import { TextProps } from './Text.types'; +import { TextState } from './Text.types'; /** - * Define the render function. Given the state of a text, renders it. + * Render the final JSX of Text */ -export const renderText = (state: TextProps) => { - const { slots, slotProps } = getSlots(state, [] /* there are no slots in Text */); +export const renderText = (state: TextState) => { + const { slots, slotProps } = getSlots(state); - return ; + return ( + + {/* TODO Add additional slots in the appropriate place */} + {state.children} + + ); }; diff --git a/packages/react-text/src/components/Text/useText.ts b/packages/react-text/src/components/Text/useText.ts new file mode 100644 index 00000000000000..d162faf073c6ba --- /dev/null +++ b/packages/react-text/src/components/Text/useText.ts @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { makeMergeProps } from '@fluentui/react-utilities'; +import { TextProps, TextState } from './Text.types'; + +const mergeProps = makeMergeProps(); + +/** + * Create the state required to render Text. + * + * The returned state can be modified with hooks such as useTextStyles, + * before being passed to renderText. + * + * @param props - props from this instance of Text + * @param ref - reference to root HTMLElement of Text + * @param defaultProps - (optional) default prop values provided by the implementing type + */ +export const useText = (props: TextProps, ref: React.Ref, defaultProps?: TextProps): TextState => { + const state = mergeProps( + { + ref, + }, + defaultProps, + props, + ); + + return state; +}; diff --git a/packages/react-text/src/components/Text/useText.tsx b/packages/react-text/src/components/Text/useText.tsx deleted file mode 100644 index 9b924363b093bb..00000000000000 --- a/packages/react-text/src/components/Text/useText.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import * as React from 'react'; -import { makeMergeProps, resolveShorthandProps, useMergedRefs } from '@fluentui/react-utilities'; - -import { TextProps, TextState } from './Text.types'; - -const textShorthandProps = [] as const; - -const mergeProps = makeMergeProps({ deepMerge: textShorthandProps }); - -/** - * Given user props, returns state and render function for a Text. - */ -export const useText = (props: TextProps, ref: React.Ref, defaultProps?: TextProps): TextState => { - const state = mergeProps( - { - ref: useMergedRefs(ref, React.useRef(null)), - as: 'span', - }, - defaultProps && resolveShorthandProps(defaultProps, textShorthandProps), - resolveShorthandProps(props, textShorthandProps), - ); - - return state; -}; diff --git a/packages/react-text/src/components/Text/useTextStyles.ts b/packages/react-text/src/components/Text/useTextStyles.ts index a32a940630efaf..25b314e28141a1 100644 --- a/packages/react-text/src/components/Text/useTextStyles.ts +++ b/packages/react-text/src/components/Text/useTextStyles.ts @@ -1,62 +1,26 @@ -import { mergeClasses, makeStyles } from '@fluentui/react-make-styles'; +import { makeStyles, mergeClasses } from '@fluentui/react-make-styles'; import { TextState } from './Text.types'; +/** + * Styles for the root slot + */ const useStyles = makeStyles({ root: theme => ({ - fontSize: theme.global.type.fontSizes.base[300], - lineHeight: theme.global.type.lineHeights.base[300], - fontWeight: theme.global.type.fontWeights.regular, - }), - caption: theme => ({ - fontSize: theme.global.type.fontSizes.base[200], - lineHeight: theme.global.type.lineHeights.base[200], - fontWeight: theme.global.type.fontWeights.regular, - }), - body: theme => ({ - fontSize: theme.global.type.fontSizes.base[300], - lineHeight: theme.global.type.lineHeights.base[300], - fontWeight: theme.global.type.fontWeights.regular, - }), - subHeadline: theme => ({ - fontSize: theme.global.type.fontSizes.base[400], - lineHeight: theme.global.type.lineHeights.base[400], - fontWeight: theme.global.type.fontWeights.semibold, - }), - headline: theme => ({ - fontSize: theme.global.type.fontSizes.base[500], - lineHeight: theme.global.type.lineHeights.base[500], - fontWeight: theme.global.type.fontWeights.semibold, - }), - title3: theme => ({ - fontSize: theme.global.type.fontSizes.base[600], - lineHeight: theme.global.type.lineHeights.base[600], - fontWeight: theme.global.type.fontWeights.semibold, - }), - title2: theme => ({ - fontSize: theme.global.type.fontSizes.hero[700], - lineHeight: theme.global.type.lineHeights.hero[700], - fontWeight: theme.global.type.fontWeights.semibold, - }), - title1: theme => ({ - fontSize: theme.global.type.fontSizes.hero[800], - lineHeight: theme.global.type.lineHeights.hero[800], - fontWeight: theme.global.type.fontWeights.semibold, - }), - largeTitle: theme => ({ - fontSize: theme.global.type.fontSizes.hero[900], - lineHeight: theme.global.type.lineHeights.hero[900], - fontWeight: theme.global.type.fontWeights.semibold, - }), - display: theme => ({ - fontSize: theme.global.type.fontSizes.hero[1000], - lineHeight: theme.global.type.lineHeights.hero[1000], - fontWeight: theme.global.type.fontWeights.semibold, + // TODO Add default styles for the root element }), + + // TODO add additional classes for different states and/or slots }); -export function useTextStyles(state: TextState): TextState { +/** + * Apply styling to the Text slots based on the state + */ +export const useTextStyles = (state: TextState): TextState => { const styles = useStyles(); - state.className = mergeClasses('ms-Text', styles.root, state.variant && styles[state.variant], state.className); + state.className = mergeClasses(styles.root, state.className); + + // TODO Add class names to slots, for example: + // state.mySlot.className = mergeClasses(styles.mySlot, state.mySlot.className); return state; -} +}; diff --git a/packages/react-text/tsconfig.json b/packages/react-text/tsconfig.json index beb1660276af80..1259d048631bd2 100644 --- a/packages/react-text/tsconfig.json +++ b/packages/react-text/tsconfig.json @@ -1,22 +1,17 @@ { + "extends": "../../tsconfig.base.json", + "include": ["src"], "compilerOptions": { - "baseUrl": ".", + "target": "ES5", + "module": "CommonJS", + "lib": ["es5", "dom"], "outDir": "dist", - "target": "es5", - "module": "commonjs", "jsx": "react", "declaration": true, - "sourceMap": true, "experimentalDecorators": true, "importHelpers": true, "noUnusedLocals": true, - "forceConsistentCasingInFileNames": true, - "strict": true, - "moduleResolution": "node", "preserveConstEnums": true, - "lib": ["es5", "dom"], - "typeRoots": ["../../node_modules/@types", "../../typings"], - "types": ["jest", "custom-global"] - }, - "include": ["src"] + "types": ["jest", "custom-global", "inline-style-expand-shorthand"] + } } diff --git a/tsconfig.base.json b/tsconfig.base.json index 6e6a1cc0f2ee33..bb309e288b5677 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -31,6 +31,7 @@ "@fluentui/react-portal": ["packages/react-portal/src/index.ts"], "@fluentui/react-storybook": ["packages/react-storybook/src/index.ts"], "@fluentui/react-accordion": ["packages/react-accordion/src/index.ts"], + "@fluentui/react-text": ["packages/react-text/src/index.ts"], "@fluentui/react-aria": ["packages/react-aria/src/index.ts"] } }, diff --git a/workspace.json b/workspace.json index cc36ad33c9dd81..d66250775f132e 100644 --- a/workspace.json +++ b/workspace.json @@ -135,7 +135,11 @@ "@fluentui/react-storybook": { "root": "packages/react-storybook", "projectType": "library" }, "@fluentui/react-tabs": { "root": "packages/react-tabs", "projectType": "library" }, "@fluentui/react-tabster": { "root": "packages/react-tabster", "projectType": "library" }, - "@fluentui/react-text": { "root": "packages/react-text", "projectType": "library" }, + "@fluentui/react-text": { + "root": "packages/react-text", + "projectType": "library", + "sourceRoot": "packages/react-text/src" + }, "@fluentui/react-theme": { "root": "packages/react-theme", "projectType": "library" }, "@fluentui/react-theme-provider": { "root": "packages/react-theme-provider", "projectType": "library" }, "@fluentui/react-toggle": { "root": "packages/react-toggle", "projectType": "library" },