Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@fluentui-react-native/experimental-text

microsoft189MIT0.14.9TypeScript support: included

A cross-platform Text component using the Fluent Design System

readme

FluentUI React Native

npm version Build Status Build Status

FluentUI React Native is a javascript component library that provides developers with controls that are part of the Fluent Design System. These controls are built on React Native and fully customizable.

FluentUI React Native is still in the alpha stages of development for both the components and the repo. We encourage anyone who is interested in getting an early glimpse of our plans to download and use our components, but please note that you may hit bumps along the way. Please leave us feedback or file issues if you run into bumps, and we will continue to improve the quality of the repo.

Development status on each platform: | Windows | macOS | iOS | Android | |---------------------|---------------------|-------------|-------------| | Alpha (in progress) | Alpha (in progress) | Alpha (in progress) | Alpha (in progress) |

Getting Started

If you have an existing React Native project, it's easy to begin using FluentUI React Native. If you need to setup a new React Native project, please see the React Native Windows Getting Started documentation.

Prerequisites

Create New React Native project (if needed)

  1. Follow the instructions on the React Native Windows Getting Started documentation to create a React Native project.

  2. Navigate to the root folder of your project, and use npm to install the package:

 npm i @fluentui/react-native
  1. After successful installation, you can test the package by importing components at the top of your app's entry file, e.g. App.js:
import { Checkbox } from '@fluentui/react-native';
  1. After importing the @fluentui/react-native package, you can use components such as Text and Checkbox in your JSX.
// In App.js in a new project
import React from 'react';
import { View, Text } from 'react-native';
import { Checkbox } from '@fluentui/react-native';
function HelloWorldApp() {
  return (
    <View
      style={{
        flex: 1,
        justifyContent: 'center',
        alignItems: 'center',
      }}
    >
      <Text>Hello, world!</Text>
      <Checkbox label="Hello World Checkbox" />
    </View>
  );
}
export default HelloWorldApp;

If you run into an error that says pragma and pragmaFrag cannot be set when runtime is automatic, you can try switching to classic runtime.

Documentation

Components and Controls

Our component documentation can be found in SPEC.md files for each component. The current list can be found in our Wiki's sidebar. They will be uploaded to a website at a future time.

Expanding Component documentation

Our SPEC.md files should reflect the current state of controls that have established the v1 set of properties on any one platform.

Since the FluentUI React Native controls are cross-platform, but represented by a single page, it's important to distinguish platform differences and limitations. Examples include:

  • If the component is not available on all supported platforms.
  • If the component has properties not available on all supported platforms.
  • If the component has limited support for a given property on any supported platforms.
  • If the component has distinguishable behavior on a supported platform that must be minded while used.

Theming framework

Documentation for Theming can be found in our docs file, or for more in depth documentation, along side the implementation.

Developing in the repo

Yarn + Lage

This repo is set up as a monorepo using Yarn workspaces. To install yarn, please follow instructions in the Yarn documentation.

For running tasks the repo has switched to using Lage for task running. The primary tasks that can be executed at the root are:

  • yarn build - does the typescript build for all packages in the repository
  • yarn test - will build, lint, and run any applicable tests on all packages in the repo
  • yarn bundle - will bundle all packages in the repo
  • yarn buildci - will build, lint, run tests, and bundle everything in the repo

Note that Lage uses caching to avoid redundant steps and has very minimal output. To avoid caching add --no-cache as a command line argument. Similarly adding --verbose will give more detailed output.

Setup your development environment

To start developing in the repository you can:

  1. git clone https://github.com/microsoft/fluentui-react-native.git
  2. cd fluentui-react-native
  3. yarn
  4. yarn build

After a successful yarn build, you can explore FluentUI Tester, our demo application to play with each of the controls. To run FluentUI Tester, please follow instructions in the FluentUI Tester readme.

Note: If your repo is located on either your Desktop or Documents folder, you may encounter the error: "Watchman error... Operation not permitted". Clone it in a different directory to avoid Watchman permission issues.

Prettier

This repo is set up to run Prettier. To run Prettier in fix mode on the repo, run yarn prettier-fix at the root of the Repo.

If you are using VSCode as your editor, you can configure it to run Prettier on save. Prettier is a recommended extension for the repo. You can configure it to run by:

  1. Installing the Prettier extension for VSCode
  2. Going to Settings > Text Editor > Formatting > Check Format On Save

Contributing

Please visit our contribution guide for more information on contributing to this repo.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

changelog

Change Log - @fluentui-react-native/experimental-text

This log was last generated on Fri, 23 Feb 2024 03:19:10 GMT and should not be manually modified.

0.14.9

Fri, 23 Feb 2024 03:19:10 GMT

Patches

  • Bump @fluentui-react-native/text to v0.22.9

0.14.8

Thu, 22 Feb 2024 23:27:45 GMT

Patches

  • Rework package json version notation (rofang@microsoft.com)
  • Bump @fluentui-react-native/text to v0.22.8

0.14.7

Mon, 22 Jan 2024 22:09:17 GMT

Patches

  • Bump @fluentui-react-native/text to v0.22.7

0.14.6

Thu, 04 Jan 2024 21:06:26 GMT

Patches

  • Bump @fluentui-react-native/text to v0.22.6

0.14.5

Thu, 04 Jan 2024 01:35:42 GMT

Patches

  • Bump @fluentui-react-native/text to v0.22.5

0.14.4

Wed, 03 Jan 2024 00:15:20 GMT

Patches

  • Bump @fluentui-react-native/text to v0.22.4

0.14.3

Thu, 21 Dec 2023 01:31:00 GMT

Patches

  • Bump @fluentui-react-native/text to v0.22.3

0.14.2

Wed, 20 Dec 2023 20:20:38 GMT

Patches

  • Bump @fluentui-react-native/text to v0.22.2

0.14.1

Wed, 20 Dec 2023 00:05:24 GMT

Patches

  • Bump @fluentui-react-native/text to v0.22.1

0.14.0

Thu, 09 Nov 2023 02:39:09 GMT

Minor changes

0.13.14

Tue, 07 Nov 2023 20:20:34 GMT

Patches

  • Manually bump packages stuck in the pipeline (safreibe@microsoft.com)
  • Bump @fluentui-react-native/text to v0.21.14

0.13.12

Mon, 30 Oct 2023 21:26:06 GMT

Patches

  • Bump @fluentui-react-native/text to v0.21.12

0.13.11

Wed, 25 Oct 2023 20:50:34 GMT

Patches

  • Bump @fluentui-react-native/text to v0.21.11

0.13.10

Mon, 25 Sep 2023 12:49:34 GMT

Patches

  • Bump @fluentui-react-native/text to v0.21.10

0.13.9

Tue, 29 Aug 2023 22:56:32 GMT

Patches

  • Bump @fluentui-react-native/text to v0.21.9

0.13.8

Wed, 23 Aug 2023 18:55:24 GMT

Patches

  • Bump @fluentui-react-native/text to v0.21.8

0.13.7

Mon, 14 Aug 2023 20:14:41 GMT

Patches

  • Bump @fluentui-react-native/text to v0.21.7

0.13.6

Wed, 09 Aug 2023 22:02:15 GMT

Patches

  • Bump @fluentui-react-native/text to v0.21.6

0.13.5

Mon, 31 Jul 2023 19:29:59 GMT

Patches

  • Bump @fluentui-react-native/text to v0.21.5

0.13.4

Tue, 18 Jul 2023 19:09:32 GMT

Patches

  • Bump @fluentui-react-native/text to v0.21.4

0.13.3

Fri, 07 Jul 2023 20:45:12 GMT

Patches

  • Bump @fluentui-react-native/text to v0.21.3

0.13.2

Mon, 19 Jun 2023 18:37:35 GMT

Patches

  • Bump @fluentui-react-native/text to v0.21.2

0.13.1

Sat, 17 Jun 2023 00:00:18 GMT

Patches

  • Bump @fluentui-react-native/text to v0.21.1

0.13.0

Mon, 12 Jun 2023 17:46:43 GMT

Minor changes

0.12.1

Fri, 09 Jun 2023 15:29:07 GMT

Patches

  • Bump @fluentui-react-native/text to v0.20.1

0.12.0

Mon, 05 Jun 2023 19:26:23 GMT

Minor changes

0.11.64

Tue, 30 May 2023 20:34:15 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.33

0.11.63

Wed, 03 May 2023 07:08:52 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.32

0.11.62

Mon, 10 Apr 2023 19:48:24 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.31

0.11.61

Thu, 23 Mar 2023 20:49:23 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.30

0.11.60

Tue, 21 Mar 2023 21:53:46 GMT

Patches

0.11.59

Sat, 18 Mar 2023 17:22:31 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.28

0.11.58

Tue, 14 Mar 2023 20:50:45 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.27

0.11.57

Tue, 07 Mar 2023 20:54:15 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.26

0.11.56

Sat, 04 Mar 2023 00:02:26 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.25

0.11.55

Fri, 03 Mar 2023 06:47:26 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.24

0.11.54

Tue, 28 Feb 2023 21:34:10 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.23

0.11.53

Fri, 24 Feb 2023 20:40:00 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.22

0.11.52

Fri, 24 Feb 2023 02:22:40 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.21

0.11.51

Sat, 11 Feb 2023 01:32:30 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.20

0.11.50

Fri, 03 Feb 2023 01:49:36 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.19

0.11.49

Thu, 02 Feb 2023 01:29:39 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.18

0.11.48

Wed, 01 Feb 2023 22:33:17 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.17

0.11.47

Mon, 30 Jan 2023 07:12:38 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.16

0.11.46

Wed, 25 Jan 2023 21:31:18 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.15

0.11.45

Fri, 20 Jan 2023 21:49:21 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.14

0.11.44

Fri, 20 Jan 2023 18:06:46 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.13

0.11.43

Wed, 18 Jan 2023 01:55:11 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.12

0.11.42

Tue, 10 Jan 2023 20:17:18 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.11

0.11.41

Mon, 09 Jan 2023 22:25:00 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.10

0.11.40

Fri, 06 Jan 2023 12:26:31 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.9

0.11.39

Wed, 04 Jan 2023 16:55:53 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.8

0.11.38

Tue, 03 Jan 2023 23:38:40 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.7

0.11.37

Fri, 30 Dec 2022 16:09:27 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.6

0.11.36

Fri, 30 Dec 2022 03:49:05 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.5

0.11.35

Thu, 29 Dec 2022 08:02:57 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.4

0.11.34

Thu, 29 Dec 2022 03:47:47 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.3

0.11.33

Tue, 27 Dec 2022 22:21:15 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.2

0.11.32

Tue, 27 Dec 2022 10:18:14 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.1

0.11.31

Thu, 15 Dec 2022 14:50:50 GMT

Patches

  • Bump @fluentui-react-native/text to v0.19.0

0.11.30

Tue, 13 Dec 2022 23:18:04 GMT

Patches

0.11.29

Fri, 09 Dec 2022 05:23:38 GMT

Patches

  • Bump @fluentui-react-native/text to v0.18.2

0.11.28

Tue, 06 Dec 2022 16:59:54 GMT

Patches

  • Bump @fluentui-react-native/text to v0.18.1

0.11.27

Tue, 06 Dec 2022 00:46:41 GMT

Patches

  • Bump @fluentui-react-native/text to v0.18.0

0.11.26

Thu, 01 Dec 2022 03:12:20 GMT

Patches

  • Bump @fluentui-react-native/text to v0.17.1

0.11.25

Mon, 28 Nov 2022 19:49:35 GMT

Patches

  • Bump @fluentui-react-native/text to v0.17.0

0.11.24

Mon, 28 Nov 2022 11:51:06 GMT

Patches

  • Bump @fluentui-react-native/text to v0.16.2

0.11.23

Wed, 16 Nov 2022 08:47:25 GMT

Patches

  • Bump @fluentui-react-native/text to v0.16.1

0.11.22

Sun, 13 Nov 2022 09:17:07 GMT

Patches

  • Bump @fluentui-react-native/text to v0.16.0

0.11.21

Fri, 11 Nov 2022 18:06:32 GMT

Patches

  • Bump @fluentui-react-native/text to v0.15.15

0.11.20

Tue, 08 Nov 2022 22:18:44 GMT

Patches

  • Bump @fluentui-react-native/text to v0.15.14

0.11.19

Tue, 08 Nov 2022 19:22:01 GMT

Patches

  • Bump @fluentui-react-native/text to v0.15.13

0.11.18

Fri, 04 Nov 2022 14:36:23 GMT

Patches

  • Bump @fluentui-react-native/text to v0.15.12

0.11.17

Thu, 27 Oct 2022 11:09:35 GMT

Patches

  • Bump @fluentui-react-native/text to v0.15.11

0.11.16

Tue, 25 Oct 2022 22:47:45 GMT

Patches

  • Bump @fluentui-react-native/text to v0.15.10

0.11.15

Fri, 21 Oct 2022 13:09:26 GMT

Patches

  • Bump @fluentui-react-native/text to v0.15.9

0.11.14

Mon, 17 Oct 2022 17:52:49 GMT

Patches

  • Bump @fluentui-react-native/text to v0.15.8

0.11.13

Fri, 14 Oct 2022 19:11:13 GMT

Patches

  • Bump @fluentui-react-native/text to v0.15.7

0.11.12

Wed, 12 Oct 2022 21:54:15 GMT

Patches

  • Bump @fluentui-react-native/text to v0.15.6

0.11.11

Tue, 11 Oct 2022 22:41:44 GMT

Patches

  • Bump @fluentui-react-native/text to v0.15.5

0.11.10

Thu, 06 Oct 2022 17:24:49 GMT

Patches

  • Bump @fluentui-react-native/text to v0.15.4

0.11.9

Tue, 04 Oct 2022 21:09:28 GMT

Patches

  • Bump @fluentui-react-native/text to v0.15.3

0.11.8

Fri, 30 Sep 2022 08:04:44 GMT

Patches

  • Bump @fluentui-react-native/text to v0.15.2

0.11.7

Fri, 30 Sep 2022 00:54:35 GMT

Patches

0.11.6

Wed, 21 Sep 2022 21:00:40 GMT

Patches

  • Bump @fluentui-react-native/text to v0.15.0

0.11.5

Fri, 16 Sep 2022 01:53:06 GMT

Patches

  • Bump @fluentui-react-native/text to v0.14.4

0.11.4

Wed, 14 Sep 2022 23:07:42 GMT

Patches

  • Bump @fluentui-react-native/text to v0.14.3

0.11.3

Tue, 06 Sep 2022 18:22:03 GMT

Patches

  • Bump @fluentui-react-native/text to v0.14.2

0.11.2

Mon, 29 Aug 2022 23:21:44 GMT

Patches

  • Bump @fluentui-react-native/text to v0.14.1

0.11.1

Fri, 05 Aug 2022 23:22:38 GMT

Patches

  • Bump @fluentui-react-native/text to v0.14.0

0.11.0

Fri, 29 Jul 2022 21:04:38 GMT

Minor changes

  • move text from experimental to components dir (email not defined)
  • Bump @fluentui-react-native/text to v0.13.0

0.10.2

Tue, 19 Jul 2022 18:10:02 GMT

Patches

  • add support for onAccessibilityTap on Text (email not defined)

0.10.1

Thu, 14 Jul 2022 20:03:37 GMT

Patches

0.10.0

Thu, 14 Jul 2022 18:09:51 GMT

Minor changes

  • Update to React Native 0.66 (sanajmi@microsoft.com)
  • Bump @fluentui-react-native/adapters to v0.9.0
  • Bump @fluentui-react-native/framework to v0.8.0
  • Bump @fluentui-react-native/theme-tokens to v0.19.0

0.9.3

Thu, 14 Jul 2022 17:13:16 GMT

Patches

  • add support for onAccessibilityTap on Text (email not defined)

0.9.2

Fri, 08 Jul 2022 21:23:37 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.32

0.9.1

Thu, 07 Jul 2022 21:24:07 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.31

0.9.0

Wed, 25 May 2022 18:43:08 GMT

Minor changes

  • Add text implementation v2 (email not defined)
  • Bump @fluentui-react-native/framework to v0.7.30
  • Bump @fluentui-react-native/theme-tokens to v0.18.0

Patches

0.7.28

Sat, 21 May 2022 16:18:06 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.28

0.7.27

Sat, 21 May 2022 01:47:58 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.27

0.7.26

Wed, 04 May 2022 21:06:04 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.26

0.7.25

Thu, 28 Apr 2022 19:09:51 GMT

Patches

  • Revert "Add Text props and test new Variant types (#1615)" (sanajmi@microsoft.com)
  • Bump @fluentui-react-native/framework to v0.7.25

0.7.24

Wed, 27 Apr 2022 19:30:38 GMT

Patches

  • initial Text implementation (email not defined)
  • Bump @fluentui-react-native/framework to v0.7.24

0.7.23

Thu, 21 Apr 2022 21:50:03 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.23

0.7.22

Tue, 19 Apr 2022 16:54:55 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.22

0.7.21

Wed, 06 Apr 2022 22:58:22 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.21

0.7.20

Tue, 05 Apr 2022 20:05:50 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.20

0.7.19

Thu, 31 Mar 2022 07:27:47 GMT

Patches

  • Ban export * in index files for better tree-shakeability (4123478+tido64@users.noreply.github.com)
  • Bump @fluentui-react-native/adapters to v0.8.5
  • Bump @fluentui-react-native/framework to v0.7.19

0.7.18

Wed, 23 Mar 2022 17:24:05 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.18

0.7.17

Mon, 07 Mar 2022 19:15:33 GMT

Patches

  • Bump @fluentui-react-native/adapters to v0.8.4
  • Bump @fluentui-react-native/framework to v0.7.17

0.7.16

Fri, 04 Mar 2022 23:43:10 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.16

0.7.15

Thu, 03 Mar 2022 20:20:09 GMT

Patches

  • Add snapshot and fix runtime error (ruaraki@microsoft.com)
  • Bump @fluentui-react-native/framework to v0.7.15

0.7.14

Fri, 18 Feb 2022 23:27:11 GMT

Patches

  • Bump @fluentui-react-native/adapters to v0.8.3
  • Bump @fluentui-react-native/framework to v0.7.14

0.7.13

Thu, 17 Feb 2022 01:22:02 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.13

0.7.12

Wed, 02 Feb 2022 02:29:07 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.12

0.7.11

Fri, 14 Jan 2022 21:49:07 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.11

0.7.10

Fri, 14 Jan 2022 01:00:02 GMT

Patches

  • fix disabled button (email not defined)
  • Bump @fluentui-react-native/framework to v0.7.10

0.7.9

Thu, 06 Jan 2022 23:14:38 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.9

0.7.8

Thu, 06 Jan 2022 21:30:08 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.8

0.7.7

Tue, 21 Dec 2021 20:56:31 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.7

0.7.6

Mon, 20 Dec 2021 22:56:00 GMT

Patches

  • Add repository property to all package.json files (ruaraki@microsoft.com)
  • Bump @fluentui-react-native/adapters to v0.8.2
  • Bump @fluentui-react-native/framework to v0.7.6

0.7.5

Sat, 18 Dec 2021 04:15:04 GMT

Patches

0.7.4

Fri, 17 Dec 2021 22:06:58 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.4

0.7.3

Fri, 17 Dec 2021 19:53:21 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.3

0.7.2

Fri, 17 Dec 2021 01:26:42 GMT

Patches

  • Bump @fluentui-react-native/framework to v0.7.2

0.7.1

Thu, 16 Dec 2021 19:10:27 GMT

Patches

  • Rename Jest snapshots to be platform agnostic (sanajmi@microsoft.com)
  • Bump @fluentui-react-native/adapters to v0.8.1
  • Bump @fluentui-react-native/framework to v0.7.1

0.7.0

Wed, 17 Nov 2021 19:28:07 GMT

Minor changes

Patches

0.6.28

Tue, 09 Nov 2021 23:04:33 GMT

Patches

0.6.27

Mon, 01 Nov 2021 18:53:37 GMT

Patches

0.6.26

Mon, 25 Oct 2021 19:24:43 GMT

Patches

0.6.25

Wed, 20 Oct 2021 03:46:25 GMT

Patches

0.6.24

Tue, 19 Oct 2021 20:23:36 GMT

Patches

0.6.23

Thu, 07 Oct 2021 20:59:20 GMT

Patches

0.6.22

Fri, 01 Oct 2021 17:52:17 GMT

Patches

0.6.21

Tue, 28 Sep 2021 21:08:25 GMT

Patches

0.6.20

Tue, 21 Sep 2021 16:32:12 GMT

Patches

0.6.19

Mon, 13 Sep 2021 23:22:43 GMT

Patches

0.6.18

Fri, 10 Sep 2021 18:16:59 GMT

Patches

0.6.17

Thu, 09 Sep 2021 22:12:19 GMT

Patches

0.6.16

Thu, 09 Sep 2021 20:03:01 GMT

Patches

0.6.15

Thu, 26 Aug 2021 21:02:08 GMT

Patches

0.6.14

Thu, 26 Aug 2021 04:48:40 GMT

Patches

0.6.13

Mon, 23 Aug 2021 23:35:47 GMT

Patches

0.6.12

Thu, 19 Aug 2021 18:31:21 GMT

Patches

0.6.11

Wed, 18 Aug 2021 23:00:57 GMT

Patches

0.6.10

Fri, 13 Aug 2021 16:12:26 GMT

Patches

0.6.9

Thu, 12 Aug 2021 17:23:44 GMT

Patches

0.6.8

Tue, 10 Aug 2021 21:12:30 GMT

Patches

0.6.7

Mon, 09 Aug 2021 22:49:01 GMT

Patches

0.6.6

Mon, 09 Aug 2021 19:16:08 GMT

Patches

0.6.5

Sat, 07 Aug 2021 02:50:29 GMT

Patches

0.6.4

Sat, 07 Aug 2021 00:40:04 GMT

Patches

0.6.3

Fri, 06 Aug 2021 23:18:21 GMT

Patches

0.6.2

Fri, 06 Aug 2021 00:36:02 GMT

Patches

0.6.1

Wed, 04 Aug 2021 16:54:20 GMT

Patches

0.6.0

Wed, 04 Aug 2021 06:26:25 GMT

Minor changes

Patches

0.5.17

Tue, 03 Aug 2021 23:48:50 GMT

Patches

0.5.16

Tue, 03 Aug 2021 22:33:17 GMT

Patches

0.5.15

Thu, 29 Jul 2021 17:53:12 GMT

Patches

0.5.14

Tue, 27 Jul 2021 22:17:20 GMT

Patches

0.5.13

Mon, 26 Jul 2021 20:41:04 GMT

Patches

0.5.12

Sun, 25 Jul 2021 16:30:17 GMT

Patches

  • Bump @fluentui-react-native/adapters to v0.6.5 (email not defined)

0.5.8

Wed, 21 Jul 2021 22:55:40 GMT

Patches

0.5.1

Fri, 18 Jun 2021 00:38:19 GMT

Patches

0.5.0

Tue, 15 Jun 2021 00:55:36 GMT

Minor changes

0.4.0

Sat, 06 Mar 2021 00:20:05 GMT

Minor changes

Patches

0.3.2

Mon, 01 Mar 2021 22:53:12 GMT

Patches

0.3.0

Wed, 13 Jan 2021 20:04:26 GMT

Minor changes

0.2.0

Fri, 23 Oct 2020 22:27:37 GMT

Minor changes

0.1.2

Mon, 19 Oct 2020 22:06:02 GMT

Patches

0.1.1

Mon, 12 Oct 2020 04:09:31 GMT

Patches

  • new variants (email not defined)