You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
💡Added support to ModernTaxonomyPicker in DynamicForm - Fix 1275 [Repo Rescuer Challenge] (#1962)
* InitialCommit - Fix 1275
* bump-updated documentation
* Resolved comments and conflicts
* Resolved conflicts as suggested
* Removed anchor term guid from ModernTaxonomyPicker
* Resolving comments from Michael
* Roll-back on spfx-fast-serve-helpers version to be explicit
| customIcons | { [ columnInternalName: string ]: string } | no | Specifies custom icons for the form. The key of this dictionary is the column internal name, the value is the Fluent UI icon name. |
69
+
| customIcons | { [ columnInternalName: string ]: string } | no | Specifies custom icons for the form. The key of this dictionary is the column internal name, the value is the Fluent UI icon name. |
70
70
| storeLastActiveTab | boolean | no | When uploading files: Specifies if last active tab will be stored after the Upload panel has been closed. Note: the value of selected tab is stored in the queryString hash. Default - `true`|
71
71
| folderPath | string | no | Server relative or library relative folder to create the item in. This option is only available for document libraries and works only when the contentTypeId is specified and has a base type of type Document or Folder. Defaults to the root folder of the library. |
72
+
| useModernTaxonomyPicker | boolean | no | Specifies if the form should render [ModernTaxonomyPicker](./ModernTaxonomyPicker.md) control for Managed metadata fields. If set to `true`, Dynamic form will render ModernTaxonomyPicker control. If set to `false`, Dynamic form will render TaxonomyPicker control. Default is `false`|
72
73
| className | string | no | Set CSS Class. |
73
74
| styles | IStyleFunctionOrObject<IDynamicFormStyleProps, [IDynamicFormStyles](#idynamicformstyles-interface)>| no | Styles to apply on control. See the example [here](#how-to-use-styles-property)|
* This option is only available for document libraries and works only when the contentTypeId is specified and has a base type of type Document or Folder.
145
+
* Library relative folder to create the item in.
146
+
* This option is only available for document libraries and works only when the contentTypeId is specified and has a base type of type Document or Folder.
147
147
* Defaults to the root folder.
148
148
*/
149
149
folderPath?: string;
150
+
151
+
/**
152
+
* Set to true to use the Modern Taxonomy Picker (ModernTaxonomyPicker).
153
+
* Set to false to use the classic TaxonomyPicker.
154
+
* Default is false
155
+
*/
156
+
useModernTaxonomyPicker?: boolean;
157
+
150
158
/**
151
159
* Call to provide customized styling
152
160
* Read https://github.com/microsoft/fluentui/blob/master/docs/react-wiki-archive/Component-Styling.md#using-a-styleable-component for more information
0 commit comments