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

Package detail

@fluentui/react-tag-picker

microsoft489.8kMIT9.5.7TypeScript support: included

FluentUI TagPicker component

readme

@fluentui/react-tag-picker

React TagPicker components for Fluent UI React

To import React TagPicker components:

import * as React from 'react';
import {
  TagPicker,
  TagPickerList,
  TagPickerInput,
  TagPickerControl,
  TagPickerProps,
  TagPickerOption,
  TagPickerGroup,
} from '@fluentui/react-tag-picker';
import { Tag, Avatar } from '@fluentui/react-components';

const options = [
  'John Doe',
  'Jane Doe',
  'Max Mustermann',
  'Erika Mustermann',
  'Pierre Dupont',
  'Amelie Dupont',
  'Mario Rossi',
  'Maria Rossi',
];

export const Example = () => {
  const [selectedOptions, setSelectedOptions] = React.useState<string[]>([]);
  const onOptionSelect: TagPickerProps['onOptionSelect'] = (e, data) => {
    setSelectedOptions(data.selectedOptions);
  };

  return (
    <div style={{ maxWidth: 400 }}>
      <TagPicker onOptionSelect={onOptionSelect} selectedOptions={selectedOptions}>
        <TagPickerControl>
          <TagPickerGroup>
            {selectedOptions.map(option => (
              <Tag key={option} shape="rounded" media={<Avatar name={option} color="colorful" />} value={option}>
                {option}
              </Tag>
            ))}
          </TagPickerGroup>
          <TagPickerInput />
        </TagPickerControl>
        <TagPickerList>
          {options
            .filter(option => !selectedOptions.includes(option))
            .map(option => (
              <TagPickerOption
                secondaryContent="Microsoft FTE"
                media={<Avatar name={option} color="colorful" />}
                value={option}
                key={option}
              >
                {option}
              </TagPickerOption>
            ))}
        </TagPickerList>
      </TagPicker>
    </div>
  );
};

changelog

Change Log - @fluentui/react-tag-picker

This log was last generated on Wed, 14 May 2025 18:45:49 GMT and should not be manually modified.

9.5.7

Wed, 14 May 2025 18:45:49 GMT Compare changes

Patches

  • Bump @fluentui/react-portal to v9.5.7 (PR #34449 by beachball)
  • Bump @fluentui/react-tabster to v9.24.7 (PR #34449 by beachball)
  • Bump @fluentui/react-aria to v9.14.7 (PR #34449 by beachball)
  • Bump @fluentui/react-combobox to v9.14.7 (PR #34449 by beachball)
  • Bump @fluentui/react-tags to v9.5.5 (PR #34449 by beachball)
  • Bump @fluentui/react-positioning to v9.17.0 (PR #34449 by beachball)
  • Bump @fluentui/react-field to v9.2.7 (PR #34449 by beachball)

9.5.6

Thu, 24 Apr 2025 09:59:45 GMT Compare changes

Patches

  • Bump @fluentui/react-portal to v9.5.6 (PR #34315 by beachball)
  • Bump @fluentui/react-tabster to v9.24.6 (PR #34315 by beachball)
  • Bump @fluentui/react-aria to v9.14.6 (PR #34315 by beachball)
  • Bump @fluentui/react-combobox to v9.14.6 (PR #34315 by beachball)
  • Bump @fluentui/react-tags to v9.5.4 (PR #34315 by beachball)
  • Bump @fluentui/react-field to v9.2.6 (PR #34315 by beachball)

9.5.5

Wed, 16 Apr 2025 19:42:04 GMT Compare changes

Patches

  • fix: avoid "ResizeObserver loop limit exceeded" being thrown (PR #34139 by olfedias@microsoft.com)
  • Bump @fluentui/react-jsx-runtime to v9.0.54 (PR #34166 by beachball)
  • Bump @fluentui/react-utilities to v9.19.0 (PR #34166 by beachball)
  • Bump @fluentui/react-portal to v9.5.5 (PR #34166 by beachball)
  • Bump @fluentui/react-tabster to v9.24.5 (PR #34166 by beachball)
  • Bump @fluentui/react-aria to v9.14.5 (PR #34166 by beachball)
  • Bump @fluentui/react-combobox to v9.14.5 (PR #34166 by beachball)
  • Bump @fluentui/react-tags to v9.5.3 (PR #34166 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.76 (PR #34166 by beachball)
  • Bump @fluentui/react-positioning to v9.16.7 (PR #34166 by beachball)
  • Bump @fluentui/react-field to v9.2.5 (PR #34166 by beachball)

9.5.4

Tue, 01 Apr 2025 15:08:02 GMT Compare changes

Patches

  • Bump @fluentui/react-portal to v9.5.4 (PR #33909 by beachball)
  • Bump @fluentui/react-tabster to v9.24.4 (PR #33909 by beachball)
  • Bump @fluentui/react-aria to v9.14.4 (PR #33909 by beachball)
  • Bump @fluentui/react-combobox to v9.14.4 (PR #33909 by beachball)
  • Bump @fluentui/react-tags to v9.5.2 (PR #33909 by beachball)
  • Bump @fluentui/react-field to v9.2.4 (PR #33909 by beachball)

9.5.3

Thu, 27 Mar 2025 21:12:51 GMT Compare changes

Patches

  • Bump @fluentui/react-jsx-runtime to v9.0.53 (PR #34034 by beachball)
  • Bump @fluentui/react-shared-contexts to v9.23.1 (PR #34034 by beachball)
  • Bump @fluentui/react-utilities to v9.18.23 (PR #34034 by beachball)
  • Bump @fluentui/react-portal to v9.5.3 (PR #34034 by beachball)
  • Bump @fluentui/react-tabster to v9.24.3 (PR #34034 by beachball)
  • Bump @fluentui/react-aria to v9.14.3 (PR #34034 by beachball)
  • Bump @fluentui/react-combobox to v9.14.3 (PR #34034 by beachball)
  • Bump @fluentui/react-tags to v9.5.1 (PR #34034 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.75 (PR #34034 by beachball)
  • Bump @fluentui/react-positioning to v9.16.6 (PR #34034 by beachball)
  • Bump @fluentui/react-field to v9.2.3 (PR #34034 by beachball)

9.5.2

Wed, 19 Mar 2025 15:40:43 GMT Compare changes

Patches

  • Bump @fluentui/react-jsx-runtime to v9.0.52 (PR #34032 by beachball)
  • Bump @fluentui/react-shared-contexts to v9.23.0 (PR #34032 by beachball)
  • Bump @fluentui/react-utilities to v9.18.22 (PR #34032 by beachball)
  • Bump @fluentui/react-portal to v9.5.2 (PR #34032 by beachball)
  • Bump @fluentui/react-tabster to v9.24.2 (PR #34032 by beachball)
  • Bump @fluentui/react-aria to v9.14.2 (PR #34032 by beachball)
  • Bump @fluentui/react-combobox to v9.14.2 (PR #34032 by beachball)
  • Bump @fluentui/react-tags to v9.5.0 (PR #34032 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.74 (PR #34032 by beachball)
  • Bump @fluentui/react-positioning to v9.16.5 (PR #34032 by beachball)
  • Bump @fluentui/react-field to v9.2.2 (PR #34032 by beachball)

9.5.1

Tue, 11 Mar 2025 18:58:53 GMT Compare changes

Patches

  • fix: use correct tokens for hover, active and focus states (PR #33927 by vgenaev@gmail.com)
  • Bump @fluentui/react-jsx-runtime to v9.0.51 (PR #33927 by beachball)
  • Bump @fluentui/react-shared-contexts to v9.22.0 (PR #33927 by beachball)
  • Bump @fluentui/react-utilities to v9.18.21 (PR #33927 by beachball)
  • Bump @fluentui/react-portal to v9.5.1 (PR #33927 by beachball)
  • Bump @fluentui/react-tabster to v9.24.1 (PR #33927 by beachball)
  • Bump @fluentui/react-aria to v9.14.1 (PR #33927 by beachball)
  • Bump @fluentui/react-combobox to v9.14.1 (PR #33927 by beachball)
  • Bump @fluentui/react-tags to v9.4.1 (PR #33927 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.73 (PR #33927 by beachball)
  • Bump @fluentui/react-positioning to v9.16.4 (PR #33927 by beachball)
  • Bump @fluentui/react-field to v9.2.1 (PR #33927 by beachball)

9.5.0

Fri, 21 Feb 2025 14:34:05 GMT Compare changes

Minor changes

  • Bump @fluentui/react-portal to v9.5.0 (PR #33876 by beachball)
  • Bump @fluentui/react-tabster to v9.24.0 (PR #33876 by beachball)
  • Bump @fluentui/react-aria to v9.14.0 (PR #33876 by beachball)
  • Bump @fluentui/react-combobox to v9.14.0 (PR #33876 by beachball)
  • Bump @fluentui/react-tags to v9.4.0 (PR #33876 by beachball)
  • Bump @fluentui/react-field to v9.2.0 (PR #33876 by beachball)

9.4.3

Fri, 07 Feb 2025 10:42:12 GMT Compare changes

Patches

9.4.2

Tue, 28 Jan 2025 21:26:34 GMT Compare changes

Patches

9.4.1

Mon, 27 Jan 2025 20:27:35 GMT Compare changes

Patches

  • Bump @fluentui/react-combobox to v9.13.18 (PR #33724 by beachball)
  • Bump @fluentui/react-tags to v9.3.30 (PR #33724 by beachball)
  • Bump @fluentui/react-positioning to v9.16.3 (PR #33724 by beachball)
  • Bump @fluentui/react-field to v9.1.86 (PR #33724 by beachball)

9.4.0

Wed, 22 Jan 2025 14:00:10 GMT Compare changes

Minor changes

  • feature: single line layout (PR #32247 by bernardo.sunderhus@gmail.com)
  • Bump @fluentui/react-jsx-runtime to v9.0.50 (PR #33631 by beachball)
  • Bump @fluentui/react-utilities to v9.18.20 (PR #33631 by beachball)
  • Bump @fluentui/react-portal to v9.4.42 (PR #33631 by beachball)
  • Bump @fluentui/react-tabster to v9.23.3 (PR #33631 by beachball)
  • Bump @fluentui/react-aria to v9.13.14 (PR #33631 by beachball)
  • Bump @fluentui/react-combobox to v9.13.17 (PR #33631 by beachball)
  • Bump @fluentui/react-tags to v9.3.29 (PR #33631 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.72 (PR #33631 by beachball)
  • Bump @fluentui/react-positioning to v9.16.2 (PR #33631 by beachball)
  • Bump @fluentui/react-field to v9.1.85 (PR #33631 by beachball)

Patches

9.3.14

Wed, 08 Jan 2025 18:33:36 GMT Compare changes

Patches

  • Bump @fluentui/react-jsx-runtime to v9.0.49 (PR #33550 by beachball)
  • Bump @fluentui/react-portal to v9.4.41 (PR #33550 by beachball)
  • Bump @fluentui/react-aria to v9.13.13 (PR #33550 by beachball)
  • Bump @fluentui/react-combobox to v9.13.16 (PR #33550 by beachball)
  • Bump @fluentui/react-tags to v9.3.28 (PR #33550 by beachball)
  • Bump @fluentui/react-positioning to v9.16.1 (PR #33550 by beachball)
  • Bump @fluentui/react-field to v9.1.84 (PR #33550 by beachball)

9.3.13

Wed, 18 Dec 2024 10:59:37 GMT Compare changes

Patches

  • Bump @fluentui/react-tags to v9.3.27 (PR #33483 by beachball)

9.3.12

Mon, 16 Dec 2024 16:26:49 GMT Compare changes

Patches

  • Bump @fluentui/react-jsx-runtime to v9.0.48 (PR #33468 by beachball)
  • Bump @fluentui/react-shared-contexts to v9.21.2 (PR #33468 by beachball)
  • Bump @fluentui/react-theme to v9.1.24 (PR #33468 by beachball)
  • Bump @fluentui/react-utilities to v9.18.19 (PR #33468 by beachball)
  • Bump @fluentui/react-portal to v9.4.40 (PR #33468 by beachball)
  • Bump @fluentui/react-tabster to v9.23.2 (PR #33468 by beachball)
  • Bump @fluentui/react-aria to v9.13.12 (PR #33468 by beachball)
  • Bump @fluentui/react-combobox to v9.13.15 (PR #33468 by beachball)
  • Bump @fluentui/react-tags to v9.3.26 (PR #33468 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.71 (PR #33468 by beachball)
  • Bump @fluentui/react-positioning to v9.16.0 (PR #33468 by beachball)
  • Bump @fluentui/react-field to v9.1.83 (PR #33468 by beachball)

9.3.11

Mon, 09 Dec 2024 17:38:16 GMT Compare changes

Patches

  • Bump @fluentui/react-aria to v9.13.11 (PR #33431 by beachball)
  • Bump @fluentui/react-combobox to v9.13.14 (PR #33431 by beachball)
  • Bump @fluentui/react-tags to v9.3.25 (PR #33431 by beachball)
  • Bump @fluentui/react-positioning to v9.15.14 (PR #33431 by beachball)
  • Bump @fluentui/react-field to v9.1.82 (PR #33431 by beachball)

9.3.10

Fri, 06 Dec 2024 12:53:43 GMT Compare changes

Patches

  • chore: remove usage of "export *" (PR #33380 by olfedias@microsoft.com)
  • Bump @fluentui/react-jsx-runtime to v9.0.47 (PR #33372 by beachball)
  • Bump @fluentui/react-shared-contexts to v9.21.1 (PR #33372 by beachball)
  • Bump @fluentui/react-theme to v9.1.23 (PR #33372 by beachball)
  • Bump @fluentui/react-utilities to v9.18.18 (PR #33372 by beachball)
  • Bump @fluentui/react-portal to v9.4.39 (PR #33372 by beachball)
  • Bump @fluentui/react-tabster to v9.23.1 (PR #33372 by beachball)
  • Bump @fluentui/react-aria to v9.13.10 (PR #33372 by beachball)
  • Bump @fluentui/react-combobox to v9.13.13 (PR #33372 by beachball)
  • Bump @fluentui/react-tags to v9.3.24 (PR #33372 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.70 (PR #33372 by beachball)
  • Bump @fluentui/react-positioning to v9.15.13 (PR #33372 by beachball)
  • Bump @fluentui/react-field to v9.1.81 (PR #33372 by beachball)

9.3.9

Mon, 18 Nov 2024 09:44:40 GMT Compare changes

Patches

  • Bump @fluentui/react-combobox to v9.13.12 (PR #33229 by beachball)
  • Bump @fluentui/react-tags to v9.3.23 (PR #33229 by beachball)
  • Bump @fluentui/react-positioning to v9.15.12 (PR #33229 by beachball)
  • Bump @fluentui/react-field to v9.1.80 (PR #33229 by beachball)

9.3.8

Tue, 12 Nov 2024 09:31:27 GMT Compare changes

Patches

  • Bump @fluentui/react-tags to v9.3.22 (commit by beachball)

9.3.7

Mon, 11 Nov 2024 10:00:58 GMT Compare changes

Patches

  • chore: replace npm-scripts and just-scrtips with nx inferred tasks (PR #33074 by martinhochel@microsoft.com)
  • style: resolve exposed jsx pragma lint issues within monorepo (PR #32975 by martinhochel@microsoft.com)
  • Bump @fluentui/react-jsx-runtime to v9.0.46 (PR #33238 by beachball)
  • Bump @fluentui/react-shared-contexts to v9.21.0 (PR #33238 by beachball)
  • Bump @fluentui/react-theme to v9.1.22 (PR #33238 by beachball)
  • Bump @fluentui/react-utilities to v9.18.17 (PR #33238 by beachball)
  • Bump @fluentui/react-portal to v9.4.38 (PR #33238 by beachball)
  • Bump @fluentui/react-tabster to v9.23.0 (PR #33238 by beachball)
  • Bump @fluentui/react-aria to v9.13.9 (PR #33238 by beachball)
  • Bump @fluentui/react-combobox to v9.13.11 (PR #33238 by beachball)
  • Bump @fluentui/react-tags to v9.3.21 (PR #33238 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.69 (PR #33238 by beachball)
  • Bump @fluentui/react-positioning to v9.15.11 (PR #33238 by beachball)
  • Bump @fluentui/keyboard-keys to v9.0.8 (PR #33238 by beachball)
  • Bump @fluentui/react-field to v9.1.79 (PR #33238 by beachball)

9.3.6

Tue, 15 Oct 2024 17:17:53 GMT Compare changes

Patches

  • Bump @fluentui/react-jsx-runtime to v9.0.45 (PR #32999 by beachball)
  • Bump @fluentui/react-shared-contexts to v9.20.2 (PR #32999 by beachball)
  • Bump @fluentui/react-theme to v9.1.21 (PR #32999 by beachball)
  • Bump @fluentui/react-utilities to v9.18.16 (PR #32999 by beachball)
  • Bump @fluentui/react-portal to v9.4.37 (PR #32999 by beachball)
  • Bump @fluentui/react-tabster to v9.22.9 (PR #32999 by beachball)
  • Bump @fluentui/react-aria to v9.13.8 (PR #32999 by beachball)
  • Bump @fluentui/react-combobox to v9.13.10 (PR #32999 by beachball)
  • Bump @fluentui/react-tags to v9.3.20 (PR #32999 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.68 (PR #32999 by beachball)
  • Bump @fluentui/react-positioning to v9.15.10 (PR #32999 by beachball)
  • Bump @fluentui/react-field to v9.1.78 (PR #32999 by beachball)

9.3.5

Tue, 08 Oct 2024 22:05:59 GMT Compare changes

Patches

  • Bump @fluentui/react-portal to v9.4.36 (PR #33007 by beachball)
  • Bump @fluentui/react-tabster to v9.22.8 (PR #33007 by beachball)
  • Bump @fluentui/react-aria to v9.13.7 (PR #33007 by beachball)
  • Bump @fluentui/react-combobox to v9.13.9 (PR #33007 by beachball)
  • Bump @fluentui/react-tags to v9.3.19 (PR #33007 by beachball)
  • Bump @fluentui/react-field to v9.1.77 (PR #33007 by beachball)

9.3.4

Thu, 26 Sep 2024 14:15:28 GMT Compare changes

Patches

  • Bump @fluentui/react-combobox to v9.13.8 (PR #32924 by beachball)

9.3.3

Mon, 23 Sep 2024 12:40:15 GMT Compare changes

Patches

  • Bump @fluentui/react-jsx-runtime to v9.0.44 (PR #32840 by beachball)
  • Bump @fluentui/react-shared-contexts to v9.20.1 (PR #32840 by beachball)
  • Bump @fluentui/react-theme to v9.1.20 (PR #32840 by beachball)
  • Bump @fluentui/react-utilities to v9.18.15 (PR #32840 by beachball)
  • Bump @fluentui/react-portal to v9.4.35 (PR #32840 by beachball)
  • Bump @fluentui/react-tabster to v9.22.7 (PR #32840 by beachball)
  • Bump @fluentui/react-aria to v9.13.6 (PR #32840 by beachball)
  • Bump @fluentui/react-combobox to v9.13.7 (PR #32840 by beachball)
  • Bump @fluentui/react-tags to v9.3.18 (PR #32840 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.67 (PR #32840 by beachball)
  • Bump @fluentui/react-positioning to v9.15.9 (PR #32840 by beachball)
  • Bump @fluentui/react-field to v9.1.76 (PR #32840 by beachball)

9.3.2

Tue, 10 Sep 2024 10:19:09 GMT Compare changes

Patches

  • bugfix: ensures input behaviour on text selection (PR #32285 by bernardo.sunderhus@gmail.com)
  • fix(react-tag-picker): compute aria-label/aria-labelledby for expand button, stories a11y fixes (PR #32297 by jiangemma@microsoft.com)
  • fix(react-tag-picker): allows TagPickerGroup to be disabled (PR #32317 by jiangemma@microsoft.com)
  • Bump @fluentui/react-jsx-runtime to v9.0.43 (PR #32494 by beachball)
  • Bump @fluentui/react-utilities to v9.18.14 (PR #32494 by beachball)
  • Bump @fluentui/react-portal to v9.4.34 (PR #32494 by beachball)
  • Bump @fluentui/react-tabster to v9.22.6 (PR #32494 by beachball)
  • Bump @fluentui/react-aria to v9.13.5 (PR #32494 by beachball)
  • Bump @fluentui/react-combobox to v9.13.6 (PR #32494 by beachball)
  • Bump @fluentui/react-tags to v9.3.17 (PR #32494 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.66 (PR #32494 by beachball)
  • Bump @fluentui/react-positioning to v9.15.8 (PR #32494 by beachball)
  • Bump @fluentui/react-field to v9.1.75 (PR #32494 by beachball)

9.3.1

Thu, 15 Aug 2024 13:49:46 GMT Compare changes

Patches

  • Bump @fluentui/react-portal to v9.4.33 (PR #32313 by beachball)
  • Bump @fluentui/react-tabster to v9.22.5 (PR #32313 by beachball)
  • Bump @fluentui/react-aria to v9.13.4 (PR #32313 by beachball)
  • Bump @fluentui/react-combobox to v9.13.5 (PR #32313 by beachball)
  • Bump @fluentui/react-tags to v9.3.16 (PR #32313 by beachball)
  • Bump @fluentui/react-field to v9.1.74 (PR #32313 by beachball)

9.3.0

Thu, 15 Aug 2024 08:22:15 GMT Compare changes

Minor changes

  • feature: introduces noPopover property to TagPicker (PR #32158 by bernardo.sunderhus@gmail.com)
  • Bump @fluentui/react-portal to v9.4.32 (PR #31885 by beachball)
  • Bump @fluentui/react-tabster to v9.22.4 (PR #31885 by beachball)
  • Bump @fluentui/react-aria to v9.13.3 (PR #31885 by beachball)
  • Bump @fluentui/react-combobox to v9.13.4 (PR #31885 by beachball)
  • Bump @fluentui/react-tags to v9.3.15 (PR #31885 by beachball)
  • Bump @fluentui/react-field to v9.1.73 (PR #31885 by beachball)

9.2.5

Mon, 05 Aug 2024 22:33:04 GMT Compare changes

Patches

  • Bump @fluentui/react-tags to v9.3.14 (PR #32077 by beachball)

9.2.4

Tue, 30 Jul 2024 18:47:35 GMT Compare changes

Patches

  • Bump @fluentui/react-combobox to v9.13.3 (PR #32157 by beachball)
  • Bump @fluentui/react-tags to v9.3.13 (PR #32157 by beachball)
  • Bump @fluentui/react-positioning to v9.15.7 (PR #32157 by beachball)
  • Bump @fluentui/react-field to v9.1.72 (PR #32157 by beachball)

9.2.3

Tue, 23 Jul 2024 20:13:14 GMT Compare changes

Patches

  • Bump @fluentui/react-jsx-runtime to v9.0.42 (PR #32067 by beachball)
  • Bump @fluentui/react-shared-contexts to v9.20.0 (PR #32067 by beachball)
  • Bump @fluentui/react-utilities to v9.18.13 (PR #32067 by beachball)
  • Bump @fluentui/react-portal to v9.4.31 (PR #32067 by beachball)
  • Bump @fluentui/react-tabster to v9.22.3 (PR #32067 by beachball)
  • Bump @fluentui/react-aria to v9.13.2 (PR #32067 by beachball)
  • Bump @fluentui/react-combobox to v9.13.2 (PR #32067 by beachball)
  • Bump @fluentui/react-tags to v9.3.12 (PR #32067 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.65 (PR #32067 by beachball)
  • Bump @fluentui/react-positioning to v9.15.6 (PR #32067 by beachball)
  • Bump @fluentui/react-field to v9.1.71 (PR #32067 by beachball)

9.2.2

Mon, 15 Jul 2024 17:25:17 GMT Compare changes

Patches

  • fix: revert incorectly set npm versions in all packages (PR #31937 by martinhochel@microsoft.com)
  • Bump @fluentui/react-jsx-runtime to v9.0.41 (PR #31998 by beachball)
  • Bump @fluentui/react-shared-contexts to v9.19.1 (PR #31998 by beachball)
  • Bump @fluentui/react-utilities to v9.18.12 (PR #31998 by beachball)
  • Bump @fluentui/react-portal to v9.4.30 (PR #31998 by beachball)
  • Bump @fluentui/react-tabster to v9.22.2 (PR #31998 by beachball)
  • Bump @fluentui/react-aria to v9.13.1 (PR #31998 by beachball)
  • Bump @fluentui/react-combobox to v9.13.1 (PR #31998 by beachball)
  • Bump @fluentui/react-tags to v9.3.11 (PR #31998 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.64 (PR #31998 by beachball)
  • Bump @fluentui/react-positioning to v9.15.5 (PR #31998 by beachball)
  • Bump @fluentui/react-field to v9.1.70 (PR #31998 by beachball)

9.2.1

Thu, 04 Jul 2024 15:14:36 GMT Compare changes

Patches

  • Bump @fluentui/react-combobox to v9.13.0 (PR #31893 by beachball)

9.2.0

Mon, 01 Jul 2024 20:30:34 GMT Compare changes

Minor changes

  • Update internal state to match Combobox and Listbox changes (PR #31415 by sarah.higley@microsoft.com)
  • Bump @fluentui/react-jsx-runtime to v9.0.40 (PR #31861 by beachball)
  • Bump @fluentui/react-utilities to v9.18.11 (PR #31861 by beachball)
  • Bump @fluentui/react-portal to v9.4.29 (PR #31861 by beachball)
  • Bump @fluentui/react-tabster to v9.22.1 (PR #31861 by beachball)
  • Bump @fluentui/react-aria to v9.13.0 (PR #31861 by beachball)
  • Bump @fluentui/react-combobox to v9.12.0 (PR #31861 by beachball)
  • Bump @fluentui/react-tags to v9.3.10 (PR #31861 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.63 (PR #31861 by beachball)
  • Bump @fluentui/react-positioning to v9.15.4 (PR #31861 by beachball)
  • Bump @fluentui/react-field to v9.1.69 (PR #31861 by beachball)

Patches

9.1.1

Mon, 17 Jun 2024 07:34:17 GMT Compare changes

Patches

  • Bump @fluentui/react-portal to v9.4.28 (commit by beachball)
  • Bump @fluentui/react-tabster to v9.22.0 (commit by beachball)
  • Bump @fluentui/react-aria to v9.12.1 (commit by beachball)
  • Bump @fluentui/react-combobox to v9.11.8 (commit by beachball)
  • Bump @fluentui/react-tags to v9.3.9 (commit by beachball)
  • Bump @fluentui/react-context-selector to v9.1.62 (commit by beachball)
  • Bump @fluentui/react-field to v9.1.68 (commit by beachball)

9.1.0

Thu, 06 Jun 2024 15:26:40 GMT Compare changes

Minor changes

  • feat: adds text property to TagPickerOption (PR #31474 by bernardo.sunderhus@gmail.com)
  • Bump @fluentui/react-jsx-runtime to v9.0.39 (PR #31586 by beachball)
  • Bump @fluentui/react-utilities to v9.18.10 (PR #31586 by beachball)
  • Bump @fluentui/react-portal to v9.4.27 (PR #31586 by beachball)
  • Bump @fluentui/react-tabster to v9.21.5 (PR #31586 by beachball)
  • Bump @fluentui/react-aria to v9.12.0 (PR #31586 by beachball)
  • Bump @fluentui/react-combobox to v9.11.7 (PR #31586 by beachball)
  • Bump @fluentui/react-tags to v9.3.8 (PR #31586 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.61 (PR #31586 by beachball)
  • Bump @fluentui/react-positioning to v9.15.3 (PR #31586 by beachball)
  • Bump @fluentui/react-field to v9.1.67 (PR #31586 by beachball)

9.0.4

Thu, 23 May 2024 08:02:49 GMT Compare changes

Patches

  • chore: replace usage of .shorthands() in styles (PR #31432 by olfedias@microsoft.com)
  • Bump @fluentui/react-portal to v9.4.26 (commit by beachball)
  • Bump @fluentui/react-tabster to v9.21.4 (commit by beachball)
  • Bump @fluentui/react-aria to v9.11.4 (commit by beachball)
  • Bump @fluentui/react-combobox to v9.11.6 (commit by beachball)
  • Bump @fluentui/react-tags to v9.3.7 (commit by beachball)
  • Bump @fluentui/react-positioning to v9.15.2 (commit by beachball)

9.0.3

Mon, 20 May 2024 12:45:06 GMT Compare changes

Patches

  • chore: bump @griffel/react (PR #31258 by olfedias@microsoft.com)
  • Bump @fluentui/react-jsx-runtime to v9.0.38 (PR #26682 by beachball)
  • Bump @fluentui/react-shared-contexts to v9.19.0 (PR #26682 by beachball)
  • Bump @fluentui/react-utilities to v9.18.9 (PR #26682 by beachball)
  • Bump @fluentui/react-portal to v9.4.25 (PR #26682 by beachball)
  • Bump @fluentui/react-tabster to v9.21.3 (PR #26682 by beachball)
  • Bump @fluentui/react-aria to v9.11.3 (PR #26682 by beachball)
  • Bump @fluentui/react-combobox to v9.11.5 (PR #26682 by beachball)
  • Bump @fluentui/react-tags to v9.3.6 (PR #26682 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.60 (PR #26682 by beachball)
  • Bump @fluentui/react-positioning to v9.15.1 (PR #26682 by beachball)
  • Bump @fluentui/react-field to v9.1.66 (PR #26682 by beachball)

9.0.2

Thu, 16 May 2024 09:25:19 GMT Compare changes

Patches

9.0.1

Mon, 13 May 2024 12:34:20 GMT Compare changes

Patches

  • Bump @fluentui/react-combobox to v9.11.3 (PR #31328 by beachball)

9.0.0

Thu, 09 May 2024 19:35:12 GMT Compare changes

Minor changes

0.5.0

Mon, 06 May 2024 12:55:01 GMT Compare changes

Minor changes

  • chore: removes freeform prop (PR #31273 by bernardo.sunderhus@gmail.com)
  • Bump @fluentui/react-jsx-runtime to v9.0.37 (PR #31271 by beachball)
  • Bump @fluentui/react-shared-contexts to v9.18.0 (PR #31271 by beachball)
  • Bump @fluentui/react-utilities to v9.18.8 (PR #31271 by beachball)
  • Bump @fluentui/react-portal to v9.4.23 (PR #31271 by beachball)
  • Bump @fluentui/react-tabster to v9.21.1 (PR #31271 by beachball)
  • Bump @fluentui/react-aria to v9.11.1 (PR #31271 by beachball)
  • Bump @fluentui/react-combobox to v9.11.1 (PR #31271 by beachball)
  • Bump @fluentui/react-tags to v9.3.3 (PR #31271 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.59 (PR #31271 by beachball)
  • Bump @fluentui/react-positioning to v9.14.5 (PR #31271 by beachball)
  • Bump @fluentui/react-field to v9.1.64 (PR #31271 by beachball)

Patches

0.4.0

Thu, 02 May 2024 11:36:40 GMT Compare changes

Minor changes

Patches

0.3.2

Tue, 23 Apr 2024 08:17:49 GMT Compare changes

Patches

  • Bump @fluentui/react-jsx-runtime to v9.0.36 (PR #31113 by beachball)
  • Bump @fluentui/react-shared-contexts to v9.17.0 (PR #31113 by beachball)
  • Bump @fluentui/react-utilities to v9.18.7 (PR #31113 by beachball)
  • Bump @fluentui/react-portal to v9.4.21 (PR #31113 by beachball)
  • Bump @fluentui/react-tabster to v9.20.1 (PR #31113 by beachball)
  • Bump @fluentui/react-aria to v9.10.5 (PR #31113 by beachball)
  • Bump @fluentui/react-combobox to v9.10.1 (PR #31113 by beachball)
  • Bump @fluentui/react-tags to v9.3.1 (PR #31113 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.58 (PR #31113 by beachball)
  • Bump @fluentui/react-positioning to v9.14.4 (PR #31113 by beachball)
  • Bump @fluentui/react-field to v9.1.62 (PR #31113 by beachball)

0.3.1

Thu, 18 Apr 2024 12:43:14 GMT Compare changes

Patches

0.3.0

Wed, 17 Apr 2024 21:54:00 GMT Compare changes

Minor changes

Patches

0.2.0

Thu, 04 Apr 2024 12:08:08 GMT Compare changes

Minor changes

Patches

0.1.1

Tue, 02 Apr 2024 09:48:01 GMT Compare changes

Patches

  • bugfix: removes errouneous combobox imports (PR #30926 by bernardo.sunderhus@gmail.com)
  • Bump @fluentui/react-jsx-runtime to v9.0.35 (PR #30644 by beachball)
  • Bump @fluentui/react-shared-contexts to v9.16.0 (PR #30644 by beachball)
  • Bump @fluentui/react-utilities to v9.18.6 (PR #30644 by beachball)
  • Bump @fluentui/react-portal to v9.4.19 (PR #30644 by beachball)
  • Bump @fluentui/react-tabster to v9.19.6 (PR #30644 by beachball)
  • Bump @fluentui/react-aria to v9.10.3 (PR #30644 by beachball)
  • Bump @fluentui/react-combobox to v9.9.5 (PR #30644 by beachball)
  • Bump @fluentui/react-tags to v9.2.1 (PR #30644 by beachball)
  • Bump @fluentui/react-context-selector to v9.1.57 (PR #30644 by beachball)
  • Bump @fluentui/react-positioning to v9.14.3 (PR #30644 by beachball)

0.1.0

Thu, 28 Mar 2024 10:43:54 GMT

Minor changes