Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
06d1725
Initial implementation of Field and InputField
behowell Aug 17, 2022
84ff5e9
Revert some dependencies in react-field for now
behowell Aug 17, 2022
edf391a
Merge branch 'master' of https://github.com/microsoft/fluentui into f…
behowell Aug 17, 2022
4189e9a
Rename fieldOrientation to orientation, and add UseFieldParams argume…
behowell Aug 18, 2022
4dba2ae
Rename helperText to hint
behowell Aug 18, 2022
7040897
Rename status to validationState, statusText to validationMessage, an…
behowell Aug 18, 2022
6ee6dcd
Add all Field components
behowell Aug 19, 2022
efbec05
Fix issue in SpinButtonField
behowell Aug 19, 2022
049a28f
Merge branch 'field/implement' of https://github.com/behowell/fluentu…
behowell Aug 30, 2022
3235bc2
Merge branch 'field/implement' of https://github.com/behowell/fluentu…
behowell Aug 30, 2022
d77c166
Add ComboboxField
behowell Aug 30, 2022
988ae99
Add ComboboxField tests
behowell Aug 30, 2022
0e4340f
Rename `fieldComponent` slot to `field`
behowell Aug 31, 2022
6d47406
Rename `field` slot to `control`
behowell Aug 31, 2022
11aa35b
Merge branch 'master' of https://github.com/microsoft/fluentui into f…
behowell Aug 31, 2022
5cba764
Merge branch 'field/implement' of https://github.com/behowell/fluentu…
behowell Aug 31, 2022
79ba601
Rename `field` slot to `control`
behowell Aug 31, 2022
364f387
Clean up how CheckboxField applies the fieldLabel
behowell Aug 31, 2022
94a9bba
Update CheckboxField conformance tests to use fieldLabel
behowell Aug 31, 2022
7fe46a7
Merge branch 'master' of https://github.com/microsoft/fluentui into f…
behowell Sep 2, 2022
c3df78f
Update api.md
behowell Sep 2, 2022
249713e
Remove comment about PRIMARY slot on Field control prop.
behowell Sep 2, 2022
4967264
CheckboxField: put required on the checkbox label, not fieldLabel
behowell Sep 2, 2022
9816cd4
Add stories for all components
behowell Sep 2, 2022
bcdfd1f
Merge branch 'master' of https://github.com/microsoft/fluentui into f…
behowell Sep 2, 2022
47c41fc
Refactor FieldConfig to not include props and ref
behowell Sep 6, 2022
5d77563
Merge branch 'master' of https://github.com/microsoft/fluentui into f…
behowell Sep 6, 2022
6d1fe7f
Implement PR feedback
behowell Sep 7, 2022
516c8b2
Add dependencies to vr-test package
behowell Sep 7, 2022
a5d5b04
Revert changes intended for another branch
behowell Sep 7, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion packages/react-components/react-field/.storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ const rootMain = require('../../../../.storybook/main');

module.exports = /** @type {Omit<import('../../../../.storybook/main'), 'typescript'|'babel'>} */ ({
...rootMain,
stories: [...rootMain.stories, '../src/**/*.stories.mdx', '../src/**/index.stories.@(ts|tsx)'],
stories: [
...rootMain.stories,
'../src/**/*.stories.mdx',
'../src/stories/Field/index.stories.@(ts|tsx)',
'../src/**/index.stories.@(ts|tsx)',
],
addons: [...rootMain.addons],
webpackFinal: (config, options) => {
const localConfig = { ...rootMain.webpackFinal(config, options) };
Expand Down
Loading