@fluentui/react-button 1.0.0-beta.8 → 9.0.0-alpha.100
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.json +3258 -1
- package/CHANGELOG.md +1247 -2
- package/README.md +19 -108
- package/dist/demo/index.html +71 -0
- package/dist/demo/react-dom.development.js +21413 -0
- package/dist/demo/react.development.js +3155 -0
- package/dist/react-button.d.ts +130 -355
- package/lib/Button.js.map +1 -1
- package/lib/CompoundButton.js.map +1 -1
- package/lib/MenuButton.js.map +1 -1
- package/lib/SplitButton.js.map +1 -1
- package/lib/ToggleButton.js.map +1 -1
- package/lib/common/isConformant.d.ts +4 -2
- package/lib/common/isConformant.js +9 -5
- package/lib/common/isConformant.js.map +1 -1
- package/lib/components/Button/Button.d.ts +4 -5
- package/lib/components/Button/Button.js +8 -9
- package/lib/components/Button/Button.js.map +1 -1
- package/lib/components/Button/Button.types.d.ts +46 -114
- package/lib/components/Button/Button.types.js +1 -0
- package/lib/components/Button/Button.types.js.map +1 -1
- package/lib/components/Button/index.d.ts +3 -3
- package/lib/components/Button/index.js +4 -3
- package/lib/components/Button/index.js.map +1 -1
- package/lib/components/Button/renderButton.d.ts +2 -2
- package/lib/components/Button/renderButton.js +10 -10
- package/lib/components/Button/renderButton.js.map +1 -1
- package/lib/components/Button/useButton.d.ts +5 -10
- package/lib/components/Button/useButton.js +49 -24
- package/lib/components/Button/useButton.js.map +1 -1
- package/lib/components/Button/useButtonStyles.d.ts +10 -0
- package/lib/components/Button/useButtonStyles.js +354 -0
- package/lib/components/Button/useButtonStyles.js.map +1 -0
- package/lib/components/CompoundButton/CompoundButton.d.ts +4 -5
- package/lib/components/CompoundButton/CompoundButton.js +8 -11
- package/lib/components/CompoundButton/CompoundButton.js.map +1 -1
- package/lib/components/CompoundButton/CompoundButton.types.d.ts +8 -27
- package/lib/components/CompoundButton/CompoundButton.types.js +1 -0
- package/lib/components/CompoundButton/CompoundButton.types.js.map +1 -1
- package/lib/components/CompoundButton/index.d.ts +2 -1
- package/lib/components/CompoundButton/index.js +3 -1
- package/lib/components/CompoundButton/index.js.map +1 -1
- package/lib/components/CompoundButton/renderCompoundButton.d.ts +2 -2
- package/lib/components/CompoundButton/renderCompoundButton.js +10 -12
- package/lib/components/CompoundButton/renderCompoundButton.js.map +1 -1
- package/lib/components/CompoundButton/useCompoundButton.d.ts +5 -10
- package/lib/components/CompoundButton/useCompoundButton.js +25 -28
- package/lib/components/CompoundButton/useCompoundButton.js.map +1 -1
- package/lib/components/CompoundButton/useCompoundButtonStyles.d.ts +2 -0
- package/lib/components/CompoundButton/useCompoundButtonStyles.js +164 -0
- package/lib/components/CompoundButton/useCompoundButtonStyles.js.map +1 -0
- package/lib/components/MenuButton/MenuButton.d.ts +4 -5
- package/lib/components/MenuButton/MenuButton.js +8 -21
- package/lib/components/MenuButton/MenuButton.js.map +1 -1
- package/lib/components/MenuButton/MenuButton.types.d.ts +7 -50
- package/lib/components/MenuButton/MenuButton.types.js +1 -0
- package/lib/components/MenuButton/MenuButton.types.js.map +1 -1
- package/lib/components/MenuButton/index.d.ts +2 -3
- package/lib/components/MenuButton/index.js +3 -3
- package/lib/components/MenuButton/index.js.map +1 -1
- package/lib/components/MenuButton/renderMenuButton.d.ts +2 -4
- package/lib/components/MenuButton/renderMenuButton.js +10 -14
- package/lib/components/MenuButton/renderMenuButton.js.map +1 -1
- package/lib/components/MenuButton/useMenuButton.d.ts +3 -7
- package/lib/components/MenuButton/useMenuButton.js +28 -22
- package/lib/components/MenuButton/useMenuButton.js.map +1 -1
- package/lib/components/MenuButton/useMenuButtonStyles.d.ts +2 -0
- package/lib/components/MenuButton/useMenuButtonStyles.js +34 -0
- package/lib/components/MenuButton/useMenuButtonStyles.js.map +1 -0
- package/lib/components/SplitButton/SplitButton.d.ts +5 -5
- package/lib/components/SplitButton/SplitButton.js +9 -22
- package/lib/components/SplitButton/SplitButton.js.map +1 -1
- package/lib/components/SplitButton/SplitButton.types.d.ts +12 -28
- package/lib/components/SplitButton/SplitButton.types.js +1 -0
- package/lib/components/SplitButton/SplitButton.types.js.map +1 -1
- package/lib/components/SplitButton/index.d.ts +3 -2
- package/lib/components/SplitButton/index.js +3 -1
- package/lib/components/SplitButton/index.js.map +1 -1
- package/lib/components/SplitButton/renderSplitButton.d.ts +2 -4
- package/lib/components/SplitButton/renderSplitButton.js +8 -10
- package/lib/components/SplitButton/renderSplitButton.js.map +1 -1
- package/lib/components/SplitButton/useSplitButton.d.ts +5 -7
- package/lib/components/SplitButton/useSplitButton.js +69 -47
- package/lib/components/SplitButton/useSplitButton.js.map +1 -1
- package/lib/components/SplitButton/useSplitButtonStyles.d.ts +2 -0
- package/lib/components/SplitButton/useSplitButtonStyles.js +77 -0
- package/lib/components/SplitButton/useSplitButtonStyles.js.map +1 -0
- package/lib/components/ToggleButton/ToggleButton.d.ts +4 -5
- package/lib/components/ToggleButton/ToggleButton.js +8 -11
- package/lib/components/ToggleButton/ToggleButton.js.map +1 -1
- package/lib/components/ToggleButton/ToggleButton.types.d.ts +11 -17
- package/lib/components/ToggleButton/ToggleButton.types.js +1 -0
- package/lib/components/ToggleButton/ToggleButton.types.js.map +1 -1
- package/lib/components/ToggleButton/index.d.ts +3 -3
- package/lib/components/ToggleButton/index.js +4 -3
- package/lib/components/ToggleButton/index.js.map +1 -1
- package/lib/components/ToggleButton/renderToggleButton.d.ts +1 -0
- package/lib/components/ToggleButton/renderToggleButton.js +2 -0
- package/lib/components/ToggleButton/renderToggleButton.js.map +1 -0
- package/lib/components/ToggleButton/useToggleButton.d.ts +8 -5
- package/lib/components/ToggleButton/useToggleButton.js +47 -5
- package/lib/components/ToggleButton/useToggleButton.js.map +1 -1
- package/lib/components/ToggleButton/useToggleButtonStyles.d.ts +2 -0
- package/lib/components/ToggleButton/useToggleButtonStyles.js +190 -0
- package/lib/components/ToggleButton/useToggleButtonStyles.js.map +1 -0
- package/lib/index.d.ts +0 -1
- package/lib/index.js +0 -1
- package/lib/index.js.map +1 -1
- package/lib/tsdoc-metadata.json +1 -1
- package/lib-commonjs/Button.js +7 -2
- package/lib-commonjs/Button.js.map +1 -1
- package/lib-commonjs/CompoundButton.js +7 -2
- package/lib-commonjs/CompoundButton.js.map +1 -1
- package/lib-commonjs/MenuButton.js +7 -2
- package/lib-commonjs/MenuButton.js.map +1 -1
- package/lib-commonjs/SplitButton.js +7 -2
- package/lib-commonjs/SplitButton.js.map +1 -1
- package/lib-commonjs/ToggleButton.js +7 -2
- package/lib-commonjs/ToggleButton.js.map +1 -1
- package/lib-commonjs/common/isConformant.d.ts +4 -2
- package/lib-commonjs/common/isConformant.js +19 -7
- package/lib-commonjs/common/isConformant.js.map +1 -1
- package/lib-commonjs/components/Button/Button.d.ts +4 -5
- package/lib-commonjs/components/Button/Button.js +20 -12
- package/lib-commonjs/components/Button/Button.js.map +1 -1
- package/lib-commonjs/components/Button/Button.types.d.ts +46 -114
- package/lib-commonjs/components/Button/Button.types.js +4 -1
- package/lib-commonjs/components/Button/Button.types.js.map +1 -1
- package/lib-commonjs/components/Button/index.d.ts +3 -3
- package/lib-commonjs/components/Button/index.js +23 -5
- package/lib-commonjs/components/Button/index.js.map +1 -1
- package/lib-commonjs/components/Button/renderButton.d.ts +2 -2
- package/lib-commonjs/components/Button/renderButton.js +24 -14
- package/lib-commonjs/components/Button/renderButton.js.map +1 -1
- package/lib-commonjs/components/Button/useButton.d.ts +5 -10
- package/lib-commonjs/components/Button/useButton.js +59 -25
- package/lib-commonjs/components/Button/useButton.js.map +1 -1
- package/lib-commonjs/components/Button/useButtonStyles.d.ts +10 -0
- package/lib-commonjs/components/Button/useButtonStyles.js +365 -0
- package/lib-commonjs/components/Button/useButtonStyles.js.map +1 -0
- package/lib-commonjs/components/CompoundButton/CompoundButton.d.ts +4 -5
- package/lib-commonjs/components/CompoundButton/CompoundButton.js +20 -14
- package/lib-commonjs/components/CompoundButton/CompoundButton.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/CompoundButton.types.d.ts +8 -27
- package/lib-commonjs/components/CompoundButton/CompoundButton.types.js +4 -1
- package/lib-commonjs/components/CompoundButton/CompoundButton.types.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/index.d.ts +2 -1
- package/lib-commonjs/components/CompoundButton/index.js +22 -3
- package/lib-commonjs/components/CompoundButton/index.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/renderCompoundButton.d.ts +2 -2
- package/lib-commonjs/components/CompoundButton/renderCompoundButton.js +24 -16
- package/lib-commonjs/components/CompoundButton/renderCompoundButton.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/useCompoundButton.d.ts +5 -10
- package/lib-commonjs/components/CompoundButton/useCompoundButton.js +35 -28
- package/lib-commonjs/components/CompoundButton/useCompoundButton.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.d.ts +2 -0
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js +175 -0
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js.map +1 -0
- package/lib-commonjs/components/MenuButton/MenuButton.d.ts +4 -5
- package/lib-commonjs/components/MenuButton/MenuButton.js +20 -24
- package/lib-commonjs/components/MenuButton/MenuButton.js.map +1 -1
- package/lib-commonjs/components/MenuButton/MenuButton.types.d.ts +7 -50
- package/lib-commonjs/components/MenuButton/MenuButton.types.js +4 -1
- package/lib-commonjs/components/MenuButton/MenuButton.types.js.map +1 -1
- package/lib-commonjs/components/MenuButton/index.d.ts +2 -3
- package/lib-commonjs/components/MenuButton/index.js +22 -5
- package/lib-commonjs/components/MenuButton/index.js.map +1 -1
- package/lib-commonjs/components/MenuButton/renderMenuButton.d.ts +2 -4
- package/lib-commonjs/components/MenuButton/renderMenuButton.js +24 -18
- package/lib-commonjs/components/MenuButton/renderMenuButton.js.map +1 -1
- package/lib-commonjs/components/MenuButton/useMenuButton.d.ts +3 -7
- package/lib-commonjs/components/MenuButton/useMenuButton.js +41 -23
- package/lib-commonjs/components/MenuButton/useMenuButton.js.map +1 -1
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.d.ts +2 -0
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js +44 -0
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js.map +1 -0
- package/lib-commonjs/components/SplitButton/SplitButton.d.ts +5 -5
- package/lib-commonjs/components/SplitButton/SplitButton.js +21 -25
- package/lib-commonjs/components/SplitButton/SplitButton.js.map +1 -1
- package/lib-commonjs/components/SplitButton/SplitButton.types.d.ts +12 -28
- package/lib-commonjs/components/SplitButton/SplitButton.types.js +4 -1
- package/lib-commonjs/components/SplitButton/SplitButton.types.js.map +1 -1
- package/lib-commonjs/components/SplitButton/index.d.ts +3 -2
- package/lib-commonjs/components/SplitButton/index.js +22 -3
- package/lib-commonjs/components/SplitButton/index.js.map +1 -1
- package/lib-commonjs/components/SplitButton/renderSplitButton.d.ts +2 -4
- package/lib-commonjs/components/SplitButton/renderSplitButton.js +22 -14
- package/lib-commonjs/components/SplitButton/renderSplitButton.js.map +1 -1
- package/lib-commonjs/components/SplitButton/useSplitButton.d.ts +5 -7
- package/lib-commonjs/components/SplitButton/useSplitButton.js +81 -48
- package/lib-commonjs/components/SplitButton/useSplitButton.js.map +1 -1
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.d.ts +2 -0
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js +88 -0
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js.map +1 -0
- package/lib-commonjs/components/ToggleButton/ToggleButton.d.ts +4 -5
- package/lib-commonjs/components/ToggleButton/ToggleButton.js +20 -14
- package/lib-commonjs/components/ToggleButton/ToggleButton.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/ToggleButton.types.d.ts +11 -17
- package/lib-commonjs/components/ToggleButton/ToggleButton.types.js +4 -1
- package/lib-commonjs/components/ToggleButton/ToggleButton.types.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/index.d.ts +3 -3
- package/lib-commonjs/components/ToggleButton/index.js +23 -5
- package/lib-commonjs/components/ToggleButton/index.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/renderToggleButton.d.ts +1 -0
- package/lib-commonjs/components/ToggleButton/renderToggleButton.js +16 -0
- package/lib-commonjs/components/ToggleButton/renderToggleButton.js.map +1 -0
- package/lib-commonjs/components/ToggleButton/useToggleButton.d.ts +8 -5
- package/lib-commonjs/components/ToggleButton/useToggleButton.js +60 -7
- package/lib-commonjs/components/ToggleButton/useToggleButton.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.d.ts +2 -0
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js +200 -0
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js.map +1 -0
- package/lib-commonjs/index.d.ts +0 -1
- package/lib-commonjs/index.js +11 -3
- package/lib-commonjs/index.js.map +1 -1
- package/package.json +37 -35
- package/config/api-extractor.json +0 -3
- package/config/pre-copy.json +0 -9
- package/config/tests.js +0 -11
- package/etc/react-button.api.md +0 -335
- package/just.config.ts +0 -3
- package/lib/components/Button/useButtonClasses.d.ts +0 -29
- package/lib/components/Button/useButtonClasses.js +0 -417
- package/lib/components/Button/useButtonClasses.js.map +0 -1
- package/lib/components/Button/useButtonState.d.ts +0 -6
- package/lib/components/Button/useButtonState.js +0 -28
- package/lib/components/Button/useButtonState.js.map +0 -1
- package/lib/components/CompoundButton/useCompoundButtonClasses.d.ts +0 -4
- package/lib/components/CompoundButton/useCompoundButtonClasses.js +0 -180
- package/lib/components/CompoundButton/useCompoundButtonClasses.js.map +0 -1
- package/lib/components/MenuButton/useExpanded.d.ts +0 -18
- package/lib/components/MenuButton/useExpanded.js +0 -61
- package/lib/components/MenuButton/useExpanded.js.map +0 -1
- package/lib/components/MenuButton/useMenuButtonClasses.d.ts +0 -3
- package/lib/components/MenuButton/useMenuButtonClasses.js +0 -78
- package/lib/components/MenuButton/useMenuButtonClasses.js.map +0 -1
- package/lib/components/MenuButton/useMenuButtonState.d.ts +0 -2
- package/lib/components/MenuButton/useMenuButtonState.js +0 -9
- package/lib/components/MenuButton/useMenuButtonState.js.map +0 -1
- package/lib/components/SplitButton/useSplitButtonClasses.d.ts +0 -3
- package/lib/components/SplitButton/useSplitButtonClasses.js +0 -123
- package/lib/components/SplitButton/useSplitButtonClasses.js.map +0 -1
- package/lib/components/ToggleButton/useChecked.d.ts +0 -14
- package/lib/components/ToggleButton/useChecked.js +0 -25
- package/lib/components/ToggleButton/useChecked.js.map +0 -1
- package/lib/components/ToggleButton/useToggleButtonClasses.d.ts +0 -3
- package/lib/components/ToggleButton/useToggleButtonClasses.js +0 -130
- package/lib/components/ToggleButton/useToggleButtonClasses.js.map +0 -1
- package/lib/utils/tempTypes.d.ts +0 -33
- package/lib/utils/tempTypes.js +0 -4
- package/lib/utils/tempTypes.js.map +0 -1
- package/lib/version.d.ts +0 -1
- package/lib/version.js +0 -5
- package/lib/version.js.map +0 -1
- package/lib-amd/Button.d.ts +0 -1
- package/lib-amd/Button.js +0 -6
- package/lib-amd/Button.js.map +0 -1
- package/lib-amd/CompoundButton.d.ts +0 -1
- package/lib-amd/CompoundButton.js +0 -6
- package/lib-amd/CompoundButton.js.map +0 -1
- package/lib-amd/MenuButton.d.ts +0 -1
- package/lib-amd/MenuButton.js +0 -6
- package/lib-amd/MenuButton.js.map +0 -1
- package/lib-amd/SplitButton.d.ts +0 -1
- package/lib-amd/SplitButton.js +0 -6
- package/lib-amd/SplitButton.js.map +0 -1
- package/lib-amd/ToggleButton.d.ts +0 -1
- package/lib-amd/ToggleButton.js +0 -6
- package/lib-amd/ToggleButton.js.map +0 -1
- package/lib-amd/common/isConformant.d.ts +0 -2
- package/lib-amd/common/isConformant.js +0 -13
- package/lib-amd/common/isConformant.js.map +0 -1
- package/lib-amd/components/Button/Button.d.ts +0 -7
- package/lib-amd/components/Button/Button.js +0 -16
- package/lib-amd/components/Button/Button.js.map +0 -1
- package/lib-amd/components/Button/Button.types.d.ts +0 -130
- package/lib-amd/components/Button/Button.types.js +0 -5
- package/lib-amd/components/Button/Button.types.js.map +0 -1
- package/lib-amd/components/Button/index.d.ts +0 -5
- package/lib-amd/components/Button/index.js +0 -9
- package/lib-amd/components/Button/index.js.map +0 -1
- package/lib-amd/components/Button/renderButton.d.ts +0 -5
- package/lib-amd/components/Button/renderButton.js +0 -17
- package/lib-amd/components/Button/renderButton.js.map +0 -1
- package/lib-amd/components/Button/useButton.d.ts +0 -13
- package/lib-amd/components/Button/useButton.js +0 -28
- package/lib-amd/components/Button/useButton.js.map +0 -1
- package/lib-amd/components/Button/useButtonClasses.d.ts +0 -29
- package/lib-amd/components/Button/useButtonClasses.js +0 -417
- package/lib-amd/components/Button/useButtonClasses.js.map +0 -1
- package/lib-amd/components/Button/useButtonState.d.ts +0 -6
- package/lib-amd/components/Button/useButtonState.js +0 -32
- package/lib-amd/components/Button/useButtonState.js.map +0 -1
- package/lib-amd/components/CompoundButton/CompoundButton.d.ts +0 -7
- package/lib-amd/components/CompoundButton/CompoundButton.js +0 -17
- package/lib-amd/components/CompoundButton/CompoundButton.js.map +0 -1
- package/lib-amd/components/CompoundButton/CompoundButton.types.d.ts +0 -33
- package/lib-amd/components/CompoundButton/CompoundButton.types.js +0 -5
- package/lib-amd/components/CompoundButton/CompoundButton.types.js.map +0 -1
- package/lib-amd/components/CompoundButton/index.d.ts +0 -4
- package/lib-amd/components/CompoundButton/index.js +0 -8
- package/lib-amd/components/CompoundButton/index.js.map +0 -1
- package/lib-amd/components/CompoundButton/renderCompoundButton.d.ts +0 -5
- package/lib-amd/components/CompoundButton/renderCompoundButton.js +0 -19
- package/lib-amd/components/CompoundButton/renderCompoundButton.js.map +0 -1
- package/lib-amd/components/CompoundButton/useCompoundButton.d.ts +0 -13
- package/lib-amd/components/CompoundButton/useCompoundButton.js +0 -32
- package/lib-amd/components/CompoundButton/useCompoundButton.js.map +0 -1
- package/lib-amd/components/CompoundButton/useCompoundButtonClasses.d.ts +0 -4
- package/lib-amd/components/CompoundButton/useCompoundButtonClasses.js +0 -182
- package/lib-amd/components/CompoundButton/useCompoundButtonClasses.js.map +0 -1
- package/lib-amd/components/MenuButton/MenuButton.d.ts +0 -7
- package/lib-amd/components/MenuButton/MenuButton.js +0 -26
- package/lib-amd/components/MenuButton/MenuButton.js.map +0 -1
- package/lib-amd/components/MenuButton/MenuButton.types.d.ts +0 -54
- package/lib-amd/components/MenuButton/MenuButton.types.js +0 -5
- package/lib-amd/components/MenuButton/MenuButton.types.js.map +0 -1
- package/lib-amd/components/MenuButton/index.d.ts +0 -6
- package/lib-amd/components/MenuButton/index.js +0 -10
- package/lib-amd/components/MenuButton/index.js.map +0 -1
- package/lib-amd/components/MenuButton/renderMenuButton.d.ts +0 -7
- package/lib-amd/components/MenuButton/renderMenuButton.js +0 -21
- package/lib-amd/components/MenuButton/renderMenuButton.js.map +0 -1
- package/lib-amd/components/MenuButton/useExpanded.d.ts +0 -18
- package/lib-amd/components/MenuButton/useExpanded.js +0 -62
- package/lib-amd/components/MenuButton/useExpanded.js.map +0 -1
- package/lib-amd/components/MenuButton/useMenuButton.d.ts +0 -10
- package/lib-amd/components/MenuButton/useMenuButton.js +0 -27
- package/lib-amd/components/MenuButton/useMenuButton.js.map +0 -1
- package/lib-amd/components/MenuButton/useMenuButtonClasses.d.ts +0 -3
- package/lib-amd/components/MenuButton/useMenuButtonClasses.js +0 -81
- package/lib-amd/components/MenuButton/useMenuButtonClasses.js.map +0 -1
- package/lib-amd/components/MenuButton/useMenuButtonState.d.ts +0 -2
- package/lib-amd/components/MenuButton/useMenuButtonState.js +0 -11
- package/lib-amd/components/MenuButton/useMenuButtonState.js.map +0 -1
- package/lib-amd/components/SplitButton/SplitButton.d.ts +0 -7
- package/lib-amd/components/SplitButton/SplitButton.js +0 -26
- package/lib-amd/components/SplitButton/SplitButton.js.map +0 -1
- package/lib-amd/components/SplitButton/SplitButton.types.d.ts +0 -35
- package/lib-amd/components/SplitButton/SplitButton.types.js +0 -5
- package/lib-amd/components/SplitButton/SplitButton.types.js.map +0 -1
- package/lib-amd/components/SplitButton/index.d.ts +0 -4
- package/lib-amd/components/SplitButton/index.js +0 -8
- package/lib-amd/components/SplitButton/index.js.map +0 -1
- package/lib-amd/components/SplitButton/renderSplitButton.d.ts +0 -7
- package/lib-amd/components/SplitButton/renderSplitButton.js +0 -17
- package/lib-amd/components/SplitButton/renderSplitButton.js.map +0 -1
- package/lib-amd/components/SplitButton/useSplitButton.d.ts +0 -10
- package/lib-amd/components/SplitButton/useSplitButton.js +0 -50
- package/lib-amd/components/SplitButton/useSplitButton.js.map +0 -1
- package/lib-amd/components/SplitButton/useSplitButtonClasses.d.ts +0 -3
- package/lib-amd/components/SplitButton/useSplitButtonClasses.js +0 -123
- package/lib-amd/components/SplitButton/useSplitButtonClasses.js.map +0 -1
- package/lib-amd/components/ToggleButton/ToggleButton.d.ts +0 -7
- package/lib-amd/components/ToggleButton/ToggleButton.js +0 -17
- package/lib-amd/components/ToggleButton/ToggleButton.js.map +0 -1
- package/lib-amd/components/ToggleButton/ToggleButton.types.d.ts +0 -25
- package/lib-amd/components/ToggleButton/ToggleButton.types.js +0 -5
- package/lib-amd/components/ToggleButton/ToggleButton.types.js.map +0 -1
- package/lib-amd/components/ToggleButton/index.d.ts +0 -5
- package/lib-amd/components/ToggleButton/index.js +0 -9
- package/lib-amd/components/ToggleButton/index.js.map +0 -1
- package/lib-amd/components/ToggleButton/useChecked.d.ts +0 -14
- package/lib-amd/components/ToggleButton/useChecked.js +0 -27
- package/lib-amd/components/ToggleButton/useChecked.js.map +0 -1
- package/lib-amd/components/ToggleButton/useToggleButton.d.ts +0 -6
- package/lib-amd/components/ToggleButton/useToggleButton.js +0 -10
- package/lib-amd/components/ToggleButton/useToggleButton.js.map +0 -1
- package/lib-amd/components/ToggleButton/useToggleButtonClasses.d.ts +0 -3
- package/lib-amd/components/ToggleButton/useToggleButtonClasses.js +0 -132
- package/lib-amd/components/ToggleButton/useToggleButtonClasses.js.map +0 -1
- package/lib-amd/index.d.ts +0 -6
- package/lib-amd/index.js +0 -10
- package/lib-amd/index.js.map +0 -1
- package/lib-amd/utils/tempTypes.d.ts +0 -33
- package/lib-amd/utils/tempTypes.js +0 -8
- package/lib-amd/utils/tempTypes.js.map +0 -1
- package/lib-amd/version.d.ts +0 -1
- package/lib-amd/version.js +0 -6
- package/lib-amd/version.js.map +0 -1
- package/lib-commonjs/components/Button/useButtonClasses.d.ts +0 -29
- package/lib-commonjs/components/Button/useButtonClasses.js +0 -419
- package/lib-commonjs/components/Button/useButtonClasses.js.map +0 -1
- package/lib-commonjs/components/Button/useButtonState.d.ts +0 -6
- package/lib-commonjs/components/Button/useButtonState.js +0 -30
- package/lib-commonjs/components/Button/useButtonState.js.map +0 -1
- package/lib-commonjs/components/CompoundButton/useCompoundButtonClasses.d.ts +0 -4
- package/lib-commonjs/components/CompoundButton/useCompoundButtonClasses.js +0 -182
- package/lib-commonjs/components/CompoundButton/useCompoundButtonClasses.js.map +0 -1
- package/lib-commonjs/components/MenuButton/useExpanded.d.ts +0 -18
- package/lib-commonjs/components/MenuButton/useExpanded.js +0 -63
- package/lib-commonjs/components/MenuButton/useExpanded.js.map +0 -1
- package/lib-commonjs/components/MenuButton/useMenuButtonClasses.d.ts +0 -3
- package/lib-commonjs/components/MenuButton/useMenuButtonClasses.js +0 -80
- package/lib-commonjs/components/MenuButton/useMenuButtonClasses.js.map +0 -1
- package/lib-commonjs/components/MenuButton/useMenuButtonState.d.ts +0 -2
- package/lib-commonjs/components/MenuButton/useMenuButtonState.js +0 -11
- package/lib-commonjs/components/MenuButton/useMenuButtonState.js.map +0 -1
- package/lib-commonjs/components/SplitButton/useSplitButtonClasses.d.ts +0 -3
- package/lib-commonjs/components/SplitButton/useSplitButtonClasses.js +0 -125
- package/lib-commonjs/components/SplitButton/useSplitButtonClasses.js.map +0 -1
- package/lib-commonjs/components/ToggleButton/useChecked.d.ts +0 -14
- package/lib-commonjs/components/ToggleButton/useChecked.js +0 -27
- package/lib-commonjs/components/ToggleButton/useChecked.js.map +0 -1
- package/lib-commonjs/components/ToggleButton/useToggleButtonClasses.d.ts +0 -3
- package/lib-commonjs/components/ToggleButton/useToggleButtonClasses.js +0 -132
- package/lib-commonjs/components/ToggleButton/useToggleButtonClasses.js.map +0 -1
- package/lib-commonjs/utils/tempTypes.d.ts +0 -33
- package/lib-commonjs/utils/tempTypes.js +0 -6
- package/lib-commonjs/utils/tempTypes.js.map +0 -1
- package/lib-commonjs/version.d.ts +0 -1
- package/lib-commonjs/version.js +0 -7
- package/lib-commonjs/version.js.map +0 -1
- package/src/components/Button/Button.types.ts +0 -166
- package/src/components/CompoundButton/CompoundButton.types.ts +0 -37
- package/src/components/MenuButton/MenuButton.types.ts +0 -63
- package/src/components/SplitButton/SplitButton.types.ts +0 -41
- package/src/components/ToggleButton/ToggleButton.types.ts +0 -29
package/CHANGELOG.json
CHANGED
@@ -2,7 +2,3264 @@
|
|
2
2
|
"name": "@fluentui/react-button",
|
3
3
|
"entries": [
|
4
4
|
{
|
5
|
-
"date": "
|
5
|
+
"date": "Tue, 05 Oct 2021 09:26:55 GMT",
|
6
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.100",
|
7
|
+
"version": "9.0.0-alpha.100",
|
8
|
+
"comments": {
|
9
|
+
"prerelease": [
|
10
|
+
{
|
11
|
+
"author": "bsunderhus@microsoft.com",
|
12
|
+
"package": "@fluentui/react-button",
|
13
|
+
"comment": "Adds ForwardRefComponent to react-button components declaration",
|
14
|
+
"commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"author": "beachball",
|
18
|
+
"package": "@fluentui/react-button",
|
19
|
+
"comment": "Bump @fluentui/react-aria to v9.0.0-alpha.44",
|
20
|
+
"commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"author": "beachball",
|
24
|
+
"package": "@fluentui/react-button",
|
25
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.77",
|
26
|
+
"commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"author": "beachball",
|
30
|
+
"package": "@fluentui/react-button",
|
31
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.72",
|
32
|
+
"commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"author": "beachball",
|
36
|
+
"package": "@fluentui/react-button",
|
37
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.56",
|
38
|
+
"commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"author": "beachball",
|
42
|
+
"package": "@fluentui/react-button",
|
43
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.59",
|
44
|
+
"commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"author": "beachball",
|
48
|
+
"package": "@fluentui/react-button",
|
49
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.52",
|
50
|
+
"commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"author": "beachball",
|
54
|
+
"package": "@fluentui/react-button",
|
55
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.21",
|
56
|
+
"commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
|
57
|
+
},
|
58
|
+
{
|
59
|
+
"author": "beachball",
|
60
|
+
"package": "@fluentui/react-button",
|
61
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-alpha.91",
|
62
|
+
"commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
|
63
|
+
}
|
64
|
+
]
|
65
|
+
}
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"date": "Fri, 01 Oct 2021 14:13:08 GMT",
|
69
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.99",
|
70
|
+
"version": "9.0.0-alpha.99",
|
71
|
+
"comments": {
|
72
|
+
"prerelease": [
|
73
|
+
{
|
74
|
+
"author": "lingfangao@hotmail.com",
|
75
|
+
"package": "@fluentui/react-button",
|
76
|
+
"comment": "Bump v9 prerelease versions to rerelease",
|
77
|
+
"commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
|
78
|
+
},
|
79
|
+
{
|
80
|
+
"author": "beachball",
|
81
|
+
"package": "@fluentui/react-button",
|
82
|
+
"comment": "Bump @fluentui/keyboard-keys to v9.0.0-alpha.5",
|
83
|
+
"commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
|
84
|
+
},
|
85
|
+
{
|
86
|
+
"author": "beachball",
|
87
|
+
"package": "@fluentui/react-button",
|
88
|
+
"comment": "Bump @fluentui/react-aria to v9.0.0-alpha.43",
|
89
|
+
"commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
|
90
|
+
},
|
91
|
+
{
|
92
|
+
"author": "beachball",
|
93
|
+
"package": "@fluentui/react-button",
|
94
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.76",
|
95
|
+
"commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"author": "beachball",
|
99
|
+
"package": "@fluentui/react-button",
|
100
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.71",
|
101
|
+
"commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
|
102
|
+
},
|
103
|
+
{
|
104
|
+
"author": "beachball",
|
105
|
+
"package": "@fluentui/react-button",
|
106
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.55",
|
107
|
+
"commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"author": "beachball",
|
111
|
+
"package": "@fluentui/react-button",
|
112
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.58",
|
113
|
+
"commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"author": "beachball",
|
117
|
+
"package": "@fluentui/react-button",
|
118
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.51",
|
119
|
+
"commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
|
120
|
+
},
|
121
|
+
{
|
122
|
+
"author": "beachball",
|
123
|
+
"package": "@fluentui/react-button",
|
124
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.20",
|
125
|
+
"commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"author": "beachball",
|
129
|
+
"package": "@fluentui/react-button",
|
130
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-alpha.90",
|
131
|
+
"commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
|
132
|
+
}
|
133
|
+
]
|
134
|
+
}
|
135
|
+
},
|
136
|
+
{
|
137
|
+
"date": "Fri, 01 Oct 2021 12:30:46 GMT",
|
138
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.97",
|
139
|
+
"version": "9.0.0-alpha.97",
|
140
|
+
"comments": {
|
141
|
+
"prerelease": [
|
142
|
+
{
|
143
|
+
"author": "bsunderhus@microsoft.com",
|
144
|
+
"package": "@fluentui/react-button",
|
145
|
+
"comment": "Updates button to simplify prop merging",
|
146
|
+
"commit": "c5f91bfccb65073eb01e4b4aa0b720bb6bf06b5d"
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"author": "beachball",
|
150
|
+
"package": "@fluentui/react-button",
|
151
|
+
"comment": "Bump @fluentui/react-aria to v9.0.0-alpha.41",
|
152
|
+
"commit": "c5f91bfccb65073eb01e4b4aa0b720bb6bf06b5d"
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"author": "beachball",
|
156
|
+
"package": "@fluentui/react-button",
|
157
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-alpha.88",
|
158
|
+
"commit": "c5f91bfccb65073eb01e4b4aa0b720bb6bf06b5d"
|
159
|
+
}
|
160
|
+
]
|
161
|
+
}
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"date": "Fri, 01 Oct 2021 09:44:56 GMT",
|
165
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.96",
|
166
|
+
"version": "9.0.0-alpha.96",
|
167
|
+
"comments": {
|
168
|
+
"prerelease": [
|
169
|
+
{
|
170
|
+
"author": "lingfangao@hotmail.com",
|
171
|
+
"package": "@fluentui/react-button",
|
172
|
+
"comment": "Use the renamed createCustomFocusIndicatorStyle helper for focus outline style",
|
173
|
+
"commit": "0ebd18ceaba3d032748f76da4ce06fcf8942c6c5"
|
174
|
+
},
|
175
|
+
{
|
176
|
+
"author": "beachball",
|
177
|
+
"package": "@fluentui/react-button",
|
178
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.69",
|
179
|
+
"commit": "0ebd18ceaba3d032748f76da4ce06fcf8942c6c5"
|
180
|
+
},
|
181
|
+
{
|
182
|
+
"author": "beachball",
|
183
|
+
"package": "@fluentui/react-button",
|
184
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-alpha.87",
|
185
|
+
"commit": "0ebd18ceaba3d032748f76da4ce06fcf8942c6c5"
|
186
|
+
}
|
187
|
+
]
|
188
|
+
}
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"date": "Thu, 30 Sep 2021 09:18:15 GMT",
|
192
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.95",
|
193
|
+
"version": "9.0.0-alpha.95",
|
194
|
+
"comments": {
|
195
|
+
"none": [
|
196
|
+
{
|
197
|
+
"author": "peter@draxler.ml",
|
198
|
+
"package": "@fluentui/react-button",
|
199
|
+
"comment": "update stories structure to make them exportable to CodeSandbox",
|
200
|
+
"commit": "d5578f1a321c72a95ee2760fd128437bc793c60d"
|
201
|
+
}
|
202
|
+
],
|
203
|
+
"prerelease": [
|
204
|
+
{
|
205
|
+
"author": "beachball",
|
206
|
+
"package": "@fluentui/react-button",
|
207
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-alpha.86",
|
208
|
+
"commit": "d5578f1a321c72a95ee2760fd128437bc793c60d"
|
209
|
+
}
|
210
|
+
]
|
211
|
+
}
|
212
|
+
},
|
213
|
+
{
|
214
|
+
"date": "Wed, 29 Sep 2021 08:06:11 GMT",
|
215
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.94",
|
216
|
+
"version": "9.0.0-alpha.94",
|
217
|
+
"comments": {
|
218
|
+
"prerelease": [
|
219
|
+
{
|
220
|
+
"author": "beachball",
|
221
|
+
"package": "@fluentui/react-button",
|
222
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.74",
|
223
|
+
"commit": "ede1575b3a5c8f893124af9415c53968564fb923"
|
224
|
+
},
|
225
|
+
{
|
226
|
+
"author": "beachball",
|
227
|
+
"package": "@fluentui/react-button",
|
228
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.68",
|
229
|
+
"commit": "ede1575b3a5c8f893124af9415c53968564fb923"
|
230
|
+
},
|
231
|
+
{
|
232
|
+
"author": "beachball",
|
233
|
+
"package": "@fluentui/react-button",
|
234
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.56",
|
235
|
+
"commit": "ede1575b3a5c8f893124af9415c53968564fb923"
|
236
|
+
},
|
237
|
+
{
|
238
|
+
"author": "beachball",
|
239
|
+
"package": "@fluentui/react-button",
|
240
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.49",
|
241
|
+
"commit": "ede1575b3a5c8f893124af9415c53968564fb923"
|
242
|
+
},
|
243
|
+
{
|
244
|
+
"author": "beachball",
|
245
|
+
"package": "@fluentui/react-button",
|
246
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.18",
|
247
|
+
"commit": "ede1575b3a5c8f893124af9415c53968564fb923"
|
248
|
+
},
|
249
|
+
{
|
250
|
+
"author": "beachball",
|
251
|
+
"package": "@fluentui/react-button",
|
252
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-alpha.85",
|
253
|
+
"commit": "ede1575b3a5c8f893124af9415c53968564fb923"
|
254
|
+
}
|
255
|
+
]
|
256
|
+
}
|
257
|
+
},
|
258
|
+
{
|
259
|
+
"date": "Mon, 27 Sep 2021 08:06:00 GMT",
|
260
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.93",
|
261
|
+
"version": "9.0.0-alpha.93",
|
262
|
+
"comments": {
|
263
|
+
"prerelease": [
|
264
|
+
{
|
265
|
+
"author": "beachball",
|
266
|
+
"package": "@fluentui/react-button",
|
267
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.73",
|
268
|
+
"commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
|
269
|
+
},
|
270
|
+
{
|
271
|
+
"author": "beachball",
|
272
|
+
"package": "@fluentui/react-button",
|
273
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.67",
|
274
|
+
"commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
|
275
|
+
},
|
276
|
+
{
|
277
|
+
"author": "beachball",
|
278
|
+
"package": "@fluentui/react-button",
|
279
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.53",
|
280
|
+
"commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"author": "beachball",
|
284
|
+
"package": "@fluentui/react-button",
|
285
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.55",
|
286
|
+
"commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
|
287
|
+
},
|
288
|
+
{
|
289
|
+
"author": "beachball",
|
290
|
+
"package": "@fluentui/react-button",
|
291
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48",
|
292
|
+
"commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
|
293
|
+
},
|
294
|
+
{
|
295
|
+
"author": "beachball",
|
296
|
+
"package": "@fluentui/react-button",
|
297
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.17",
|
298
|
+
"commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
|
299
|
+
},
|
300
|
+
{
|
301
|
+
"author": "beachball",
|
302
|
+
"package": "@fluentui/react-button",
|
303
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-alpha.84",
|
304
|
+
"commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
|
305
|
+
}
|
306
|
+
]
|
307
|
+
}
|
308
|
+
},
|
309
|
+
{
|
310
|
+
"date": "Fri, 24 Sep 2021 09:17:17 GMT",
|
311
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.92",
|
312
|
+
"version": "9.0.0-alpha.92",
|
313
|
+
"comments": {
|
314
|
+
"prerelease": [
|
315
|
+
{
|
316
|
+
"author": "beachball",
|
317
|
+
"package": "@fluentui/react-button",
|
318
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.72",
|
319
|
+
"commit": "0d26909912889432060fd4c87b2f4a45017e1532"
|
320
|
+
},
|
321
|
+
{
|
322
|
+
"author": "beachball",
|
323
|
+
"package": "@fluentui/react-button",
|
324
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.66",
|
325
|
+
"commit": "0d26909912889432060fd4c87b2f4a45017e1532"
|
326
|
+
},
|
327
|
+
{
|
328
|
+
"author": "beachball",
|
329
|
+
"package": "@fluentui/react-button",
|
330
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.52",
|
331
|
+
"commit": "0d26909912889432060fd4c87b2f4a45017e1532"
|
332
|
+
},
|
333
|
+
{
|
334
|
+
"author": "beachball",
|
335
|
+
"package": "@fluentui/react-button",
|
336
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.54",
|
337
|
+
"commit": "0d26909912889432060fd4c87b2f4a45017e1532"
|
338
|
+
},
|
339
|
+
{
|
340
|
+
"author": "beachball",
|
341
|
+
"package": "@fluentui/react-button",
|
342
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.47",
|
343
|
+
"commit": "0d26909912889432060fd4c87b2f4a45017e1532"
|
344
|
+
},
|
345
|
+
{
|
346
|
+
"author": "beachball",
|
347
|
+
"package": "@fluentui/react-button",
|
348
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.16",
|
349
|
+
"commit": "0d26909912889432060fd4c87b2f4a45017e1532"
|
350
|
+
},
|
351
|
+
{
|
352
|
+
"author": "beachball",
|
353
|
+
"package": "@fluentui/react-button",
|
354
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-alpha.83",
|
355
|
+
"commit": "0d26909912889432060fd4c87b2f4a45017e1532"
|
356
|
+
}
|
357
|
+
]
|
358
|
+
}
|
359
|
+
},
|
360
|
+
{
|
361
|
+
"date": "Thu, 23 Sep 2021 08:21:34 GMT",
|
362
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.91",
|
363
|
+
"version": "9.0.0-alpha.91",
|
364
|
+
"comments": {
|
365
|
+
"prerelease": [
|
366
|
+
{
|
367
|
+
"author": "gcox@microsoft.com",
|
368
|
+
"package": "@fluentui/react-button",
|
369
|
+
"comment": "Updated for consistency to have shape and appearance properties",
|
370
|
+
"commit": "95682da34c48813f7658032ae490d21d2f363b90"
|
371
|
+
},
|
372
|
+
{
|
373
|
+
"author": "beachball",
|
374
|
+
"package": "@fluentui/react-button",
|
375
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.71",
|
376
|
+
"commit": "95682da34c48813f7658032ae490d21d2f363b90"
|
377
|
+
},
|
378
|
+
{
|
379
|
+
"author": "beachball",
|
380
|
+
"package": "@fluentui/react-button",
|
381
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.65",
|
382
|
+
"commit": "95682da34c48813f7658032ae490d21d2f363b90"
|
383
|
+
},
|
384
|
+
{
|
385
|
+
"author": "beachball",
|
386
|
+
"package": "@fluentui/react-button",
|
387
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.51",
|
388
|
+
"commit": "95682da34c48813f7658032ae490d21d2f363b90"
|
389
|
+
},
|
390
|
+
{
|
391
|
+
"author": "beachball",
|
392
|
+
"package": "@fluentui/react-button",
|
393
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.53",
|
394
|
+
"commit": "95682da34c48813f7658032ae490d21d2f363b90"
|
395
|
+
},
|
396
|
+
{
|
397
|
+
"author": "beachball",
|
398
|
+
"package": "@fluentui/react-button",
|
399
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.46",
|
400
|
+
"commit": "95682da34c48813f7658032ae490d21d2f363b90"
|
401
|
+
},
|
402
|
+
{
|
403
|
+
"author": "beachball",
|
404
|
+
"package": "@fluentui/react-button",
|
405
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.15",
|
406
|
+
"commit": "95682da34c48813f7658032ae490d21d2f363b90"
|
407
|
+
},
|
408
|
+
{
|
409
|
+
"author": "beachball",
|
410
|
+
"package": "@fluentui/react-button",
|
411
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-alpha.82",
|
412
|
+
"commit": "95682da34c48813f7658032ae490d21d2f363b90"
|
413
|
+
}
|
414
|
+
]
|
415
|
+
}
|
416
|
+
},
|
417
|
+
{
|
418
|
+
"date": "Wed, 22 Sep 2021 10:10:07 GMT",
|
419
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.90",
|
420
|
+
"version": "9.0.0-alpha.90",
|
421
|
+
"comments": {
|
422
|
+
"prerelease": [
|
423
|
+
{
|
424
|
+
"author": "ololubek@microsoft.com",
|
425
|
+
"package": "@fluentui/react-button",
|
426
|
+
"comment": "update react-icons dependency",
|
427
|
+
"commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
|
428
|
+
},
|
429
|
+
{
|
430
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
431
|
+
"package": "@fluentui/react-button",
|
432
|
+
"comment": "SplitButton: Adding missing verticalAlign=middle style.",
|
433
|
+
"commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
|
434
|
+
},
|
435
|
+
{
|
436
|
+
"author": "beachball",
|
437
|
+
"package": "@fluentui/react-button",
|
438
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.70",
|
439
|
+
"commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
|
440
|
+
},
|
441
|
+
{
|
442
|
+
"author": "beachball",
|
443
|
+
"package": "@fluentui/react-button",
|
444
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.64",
|
445
|
+
"commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
|
446
|
+
},
|
447
|
+
{
|
448
|
+
"author": "beachball",
|
449
|
+
"package": "@fluentui/react-button",
|
450
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.50",
|
451
|
+
"commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
|
452
|
+
},
|
453
|
+
{
|
454
|
+
"author": "beachball",
|
455
|
+
"package": "@fluentui/react-button",
|
456
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.52",
|
457
|
+
"commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
|
458
|
+
},
|
459
|
+
{
|
460
|
+
"author": "beachball",
|
461
|
+
"package": "@fluentui/react-button",
|
462
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.45",
|
463
|
+
"commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
|
464
|
+
},
|
465
|
+
{
|
466
|
+
"author": "beachball",
|
467
|
+
"package": "@fluentui/react-button",
|
468
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.14",
|
469
|
+
"commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
|
470
|
+
},
|
471
|
+
{
|
472
|
+
"author": "beachball",
|
473
|
+
"package": "@fluentui/react-button",
|
474
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-alpha.81",
|
475
|
+
"commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
|
476
|
+
}
|
477
|
+
]
|
478
|
+
}
|
479
|
+
},
|
480
|
+
{
|
481
|
+
"date": "Tue, 21 Sep 2021 07:42:34 GMT",
|
482
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.89",
|
483
|
+
"version": "9.0.0-alpha.89",
|
484
|
+
"comments": {
|
485
|
+
"prerelease": [
|
486
|
+
{
|
487
|
+
"author": "gcox@microsoft.com",
|
488
|
+
"package": "@fluentui/react-button",
|
489
|
+
"comment": "Updating to types over interfaces",
|
490
|
+
"commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
|
491
|
+
},
|
492
|
+
{
|
493
|
+
"author": "beachball",
|
494
|
+
"package": "@fluentui/react-button",
|
495
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.69",
|
496
|
+
"commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
|
497
|
+
},
|
498
|
+
{
|
499
|
+
"author": "beachball",
|
500
|
+
"package": "@fluentui/react-button",
|
501
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.63",
|
502
|
+
"commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
|
503
|
+
},
|
504
|
+
{
|
505
|
+
"author": "beachball",
|
506
|
+
"package": "@fluentui/react-button",
|
507
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.51",
|
508
|
+
"commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
|
509
|
+
},
|
510
|
+
{
|
511
|
+
"author": "beachball",
|
512
|
+
"package": "@fluentui/react-button",
|
513
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.44",
|
514
|
+
"commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
|
515
|
+
},
|
516
|
+
{
|
517
|
+
"author": "beachball",
|
518
|
+
"package": "@fluentui/react-button",
|
519
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.13",
|
520
|
+
"commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
|
521
|
+
},
|
522
|
+
{
|
523
|
+
"author": "beachball",
|
524
|
+
"package": "@fluentui/react-button",
|
525
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-alpha.80",
|
526
|
+
"commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
|
527
|
+
}
|
528
|
+
]
|
529
|
+
}
|
530
|
+
},
|
531
|
+
{
|
532
|
+
"date": "Mon, 20 Sep 2021 07:36:26 GMT",
|
533
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.88",
|
534
|
+
"version": "9.0.0-alpha.88",
|
535
|
+
"comments": {
|
536
|
+
"prerelease": [
|
537
|
+
{
|
538
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
539
|
+
"package": "@fluentui/react-button",
|
540
|
+
"comment": "SplitButton: Re-introducing SplitButton using the latest version of makeStyles.",
|
541
|
+
"commit": "b8a304770f77c0353553a152dad34421070400a6"
|
542
|
+
},
|
543
|
+
{
|
544
|
+
"author": "lingfangao@hotmail.com",
|
545
|
+
"package": "@fluentui/react-button",
|
546
|
+
"commit": "b8a304770f77c0353553a152dad34421070400a6",
|
547
|
+
"comment": "Bump @fluentui/react-button to v9.0.0-alpha.88"
|
548
|
+
}
|
549
|
+
],
|
550
|
+
"none": [
|
551
|
+
{
|
552
|
+
"author": "lingfangao@hotmail.com",
|
553
|
+
"package": "@fluentui/react-button",
|
554
|
+
"comment": "chore: use versioon eslint-plugin and react-conformance in dev dependencies",
|
555
|
+
"commit": "b8a304770f77c0353553a152dad34421070400a6"
|
556
|
+
}
|
557
|
+
]
|
558
|
+
}
|
559
|
+
},
|
560
|
+
{
|
561
|
+
"date": "Fri, 17 Sep 2021 07:35:26 GMT",
|
562
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.87",
|
563
|
+
"version": "9.0.0-alpha.87",
|
564
|
+
"comments": {
|
565
|
+
"prerelease": [
|
566
|
+
{
|
567
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
568
|
+
"package": "@fluentui/react-button",
|
569
|
+
"comment": "Modifying MenuButton to adhere to MenuTrigger changes.",
|
570
|
+
"commit": "90d71a0914acbb73a0365d60a85237e3d58ef575"
|
571
|
+
},
|
572
|
+
{
|
573
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
574
|
+
"package": "@fluentui/react-button",
|
575
|
+
"comment": "Updating API comments to be more descriptive.",
|
576
|
+
"commit": "90d71a0914acbb73a0365d60a85237e3d58ef575"
|
577
|
+
},
|
578
|
+
{
|
579
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
580
|
+
"package": "@fluentui/react-button",
|
581
|
+
"commit": "90d71a0914acbb73a0365d60a85237e3d58ef575",
|
582
|
+
"comment": "Bump @fluentui/react-button to v9.0.0-alpha.87"
|
583
|
+
}
|
584
|
+
]
|
585
|
+
}
|
586
|
+
},
|
587
|
+
{
|
588
|
+
"date": "Thu, 16 Sep 2021 07:38:39 GMT",
|
589
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.86",
|
590
|
+
"version": "9.0.0-alpha.86",
|
591
|
+
"comments": {
|
592
|
+
"prerelease": [
|
593
|
+
{
|
594
|
+
"author": "behowell@microsoft.com",
|
595
|
+
"package": "@fluentui/react-button",
|
596
|
+
"commit": "fbe41e2877a20ce0f3c01b5188e17c12f941cc4c",
|
597
|
+
"comment": "Bump @fluentui/react-button to v9.0.0-alpha.86"
|
598
|
+
}
|
599
|
+
]
|
600
|
+
}
|
601
|
+
},
|
602
|
+
{
|
603
|
+
"date": "Tue, 14 Sep 2021 20:09:02 GMT",
|
604
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.85",
|
605
|
+
"version": "9.0.0-alpha.85",
|
606
|
+
"comments": {
|
607
|
+
"prerelease": [
|
608
|
+
{
|
609
|
+
"author": "bsunderhus@microsoft.com",
|
610
|
+
"package": "@fluentui/react-button",
|
611
|
+
"commit": "10495c31fb5c5cf48b4665601a75a0cfabb6a03c",
|
612
|
+
"comment": "Bump @fluentui/react-button to v9.0.0-alpha.85"
|
613
|
+
}
|
614
|
+
]
|
615
|
+
}
|
616
|
+
},
|
617
|
+
{
|
618
|
+
"date": "Fri, 10 Sep 2021 16:31:53 GMT",
|
619
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.84",
|
620
|
+
"version": "9.0.0-alpha.84",
|
621
|
+
"comments": {
|
622
|
+
"prerelease": [
|
623
|
+
{
|
624
|
+
"author": "lingfangao@hotmail.com",
|
625
|
+
"package": "@fluentui/react-button",
|
626
|
+
"comment": "chore(v9): Move all internal v9 dependencies from caret to fixed version",
|
627
|
+
"commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0"
|
628
|
+
},
|
629
|
+
{
|
630
|
+
"author": "lingfangao@hotmail.com",
|
631
|
+
"package": "@fluentui/react-button",
|
632
|
+
"commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0",
|
633
|
+
"comment": "Bump @fluentui/react-button to v9.0.0-alpha.84"
|
634
|
+
}
|
635
|
+
]
|
636
|
+
}
|
637
|
+
},
|
638
|
+
{
|
639
|
+
"date": "Fri, 10 Sep 2021 07:39:51 GMT",
|
640
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.83",
|
641
|
+
"version": "9.0.0-alpha.83",
|
642
|
+
"comments": {
|
643
|
+
"none": [
|
644
|
+
{
|
645
|
+
"comment": "Updating README.md",
|
646
|
+
"author": "czearing@outlook.com",
|
647
|
+
"commit": "47c570ff69cb5303b1cc419b0eab8fddf8890ade",
|
648
|
+
"package": "@fluentui/react-button"
|
649
|
+
}
|
650
|
+
],
|
651
|
+
"prerelease": [
|
652
|
+
{
|
653
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-alpha.74",
|
654
|
+
"author": "behowell@microsoft.com",
|
655
|
+
"commit": "8700a515c7f2659761c5b53f55c32453bc3510b1",
|
656
|
+
"package": "@fluentui/react-button"
|
657
|
+
}
|
658
|
+
]
|
659
|
+
}
|
660
|
+
},
|
661
|
+
{
|
662
|
+
"date": "Wed, 08 Sep 2021 07:34:11 GMT",
|
663
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.82",
|
664
|
+
"version": "9.0.0-alpha.82",
|
665
|
+
"comments": {
|
666
|
+
"prerelease": [
|
667
|
+
{
|
668
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-alpha.73",
|
669
|
+
"author": "lingfangao@hotmail.com",
|
670
|
+
"commit": "1b6533cbc87422583bff6d1d6fcd74c9bdbad1c7",
|
671
|
+
"package": "@fluentui/react-button"
|
672
|
+
}
|
673
|
+
]
|
674
|
+
}
|
675
|
+
},
|
676
|
+
{
|
677
|
+
"date": "Tue, 07 Sep 2021 07:34:55 GMT",
|
678
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.81",
|
679
|
+
"version": "9.0.0-alpha.81",
|
680
|
+
"comments": {
|
681
|
+
"none": [
|
682
|
+
{
|
683
|
+
"comment": "Bump @fluentui/react-conformance to v0.5.0",
|
684
|
+
"author": "olfedias@microsoft.com",
|
685
|
+
"commit": "37e0f35eb706d40c4537010de97db94a831022d3",
|
686
|
+
"package": "@fluentui/react-button"
|
687
|
+
}
|
688
|
+
]
|
689
|
+
}
|
690
|
+
},
|
691
|
+
{
|
692
|
+
"date": "Mon, 06 Sep 2021 07:34:53 GMT",
|
693
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.81",
|
694
|
+
"version": "9.0.0-alpha.81",
|
695
|
+
"comments": {
|
696
|
+
"prerelease": [
|
697
|
+
{
|
698
|
+
"comment": "refactor(Button): use `event.key` for keyboard event",
|
699
|
+
"author": "lingfangao@hotmail.com",
|
700
|
+
"commit": "c3b21e84137ee07572e52faffbfffd384ed92609",
|
701
|
+
"package": "@fluentui/react-button"
|
702
|
+
}
|
703
|
+
]
|
704
|
+
}
|
705
|
+
},
|
706
|
+
{
|
707
|
+
"date": "Fri, 03 Sep 2021 00:13:07 GMT",
|
708
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.80",
|
709
|
+
"version": "9.0.0-alpha.80",
|
710
|
+
"comments": {
|
711
|
+
"prerelease": [
|
712
|
+
{
|
713
|
+
"comment": "MenuButton: Cleaning up implementation and adhering to MenuTrigger contract.",
|
714
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
715
|
+
"commit": "cfddfa922c3931371abb7c0e047783e5b49b33c0",
|
716
|
+
"package": "@fluentui/react-button"
|
717
|
+
}
|
718
|
+
],
|
719
|
+
"none": [
|
720
|
+
{
|
721
|
+
"comment": "enable makeStyles conformance tests",
|
722
|
+
"author": "olfedias@microsoft.com",
|
723
|
+
"commit": "7d1896d9a205eee055d3a2ccdb21710ca397271d",
|
724
|
+
"package": "@fluentui/react-button"
|
725
|
+
}
|
726
|
+
]
|
727
|
+
}
|
728
|
+
},
|
729
|
+
{
|
730
|
+
"date": "Thu, 02 Sep 2021 07:36:46 GMT",
|
731
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.79",
|
732
|
+
"version": "9.0.0-alpha.79",
|
733
|
+
"comments": {
|
734
|
+
"prerelease": [
|
735
|
+
{
|
736
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.43",
|
737
|
+
"author": "olfedias@microsoft.com",
|
738
|
+
"commit": "ff3225d408fa6a97628e3f08a5a11a196bef6934",
|
739
|
+
"package": "@fluentui/react-button"
|
740
|
+
}
|
741
|
+
],
|
742
|
+
"patch": [
|
743
|
+
{
|
744
|
+
"comment": "Bump @fluentui/react-conformance to v0.4.5",
|
745
|
+
"author": "olfedias@microsoft.com",
|
746
|
+
"commit": "8f887d05e8f2fed8433b147c6e175d8297455c51",
|
747
|
+
"package": "@fluentui/react-button"
|
748
|
+
}
|
749
|
+
]
|
750
|
+
}
|
751
|
+
},
|
752
|
+
{
|
753
|
+
"date": "Wed, 01 Sep 2021 07:39:56 GMT",
|
754
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.78",
|
755
|
+
"version": "9.0.0-alpha.78",
|
756
|
+
"comments": {
|
757
|
+
"prerelease": [
|
758
|
+
{
|
759
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.43",
|
760
|
+
"author": "bsunderhus@microsoft.com",
|
761
|
+
"commit": "40254a1b07bd51affd276e51af0b1d517714b45c",
|
762
|
+
"package": "@fluentui/react-button"
|
763
|
+
}
|
764
|
+
]
|
765
|
+
}
|
766
|
+
},
|
767
|
+
{
|
768
|
+
"date": "Tue, 31 Aug 2021 07:37:47 GMT",
|
769
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.77",
|
770
|
+
"version": "9.0.0-alpha.77",
|
771
|
+
"comments": {
|
772
|
+
"prerelease": [
|
773
|
+
{
|
774
|
+
"comment": "Button: Adding type=button to all button components, removing @docCategory tags from API and fixing some documentation in the comments.",
|
775
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
776
|
+
"commit": "abed5eb9fb05032c87e724176132618343886083",
|
777
|
+
"package": "@fluentui/react-button"
|
778
|
+
}
|
779
|
+
],
|
780
|
+
"none": [
|
781
|
+
{
|
782
|
+
"comment": "revert(react-button): remove vNext components used in SB from devDeps that are stale",
|
783
|
+
"author": "martinhochel@microsoft.com",
|
784
|
+
"commit": "77a8622d91df6507eb4bd8367c9c98ed165ebeac",
|
785
|
+
"package": "@fluentui/react-button"
|
786
|
+
}
|
787
|
+
]
|
788
|
+
}
|
789
|
+
},
|
790
|
+
{
|
791
|
+
"date": "Mon, 30 Aug 2021 07:35:05 GMT",
|
792
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.76",
|
793
|
+
"version": "9.0.0-alpha.76",
|
794
|
+
"comments": {
|
795
|
+
"prerelease": [
|
796
|
+
{
|
797
|
+
"comment": "Updating TypeScript type-only imports/exports to use import/export type syntax.",
|
798
|
+
"author": "dzearing@hotmail.com",
|
799
|
+
"commit": "e2ee214821eeb15080fa66ea0905dee4838fb291",
|
800
|
+
"package": "@fluentui/react-button"
|
801
|
+
}
|
802
|
+
]
|
803
|
+
}
|
804
|
+
},
|
805
|
+
{
|
806
|
+
"date": "Fri, 27 Aug 2021 07:33:32 GMT",
|
807
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.75",
|
808
|
+
"version": "9.0.0-alpha.75",
|
809
|
+
"comments": {
|
810
|
+
"prerelease": [
|
811
|
+
{
|
812
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.40",
|
813
|
+
"author": "olfedias@microsoft.com",
|
814
|
+
"commit": "a59db5b49ed755bf1b64ac0ac051d626ec50ffd3",
|
815
|
+
"package": "@fluentui/react-button"
|
816
|
+
}
|
817
|
+
]
|
818
|
+
}
|
819
|
+
},
|
820
|
+
{
|
821
|
+
"date": "Thu, 26 Aug 2021 07:35:43 GMT",
|
822
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.74",
|
823
|
+
"version": "9.0.0-alpha.74",
|
824
|
+
"comments": {
|
825
|
+
"prerelease": [
|
826
|
+
{
|
827
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.39",
|
828
|
+
"author": "martinhochel@microsoft.com",
|
829
|
+
"commit": "210a7de72f25eb379bb76f76867351b7cad36ccd",
|
830
|
+
"package": "@fluentui/react-button"
|
831
|
+
}
|
832
|
+
],
|
833
|
+
"none": [
|
834
|
+
{
|
835
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.34",
|
836
|
+
"author": "martinhochel@microsoft.com",
|
837
|
+
"commit": "210a7de72f25eb379bb76f76867351b7cad36ccd",
|
838
|
+
"package": "@fluentui/react-button"
|
839
|
+
}
|
840
|
+
]
|
841
|
+
}
|
842
|
+
},
|
843
|
+
{
|
844
|
+
"date": "Tue, 24 Aug 2021 07:34:48 GMT",
|
845
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.73",
|
846
|
+
"version": "9.0.0-alpha.73",
|
847
|
+
"comments": {
|
848
|
+
"none": [
|
849
|
+
{
|
850
|
+
"comment": "Button docs",
|
851
|
+
"author": "peter@draxler.ml",
|
852
|
+
"commit": "035204943d15cadaa01f60d2fae628b6f7e77448",
|
853
|
+
"package": "@fluentui/react-button"
|
854
|
+
}
|
855
|
+
]
|
856
|
+
}
|
857
|
+
},
|
858
|
+
{
|
859
|
+
"date": "Fri, 20 Aug 2021 07:37:28 GMT",
|
860
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.73",
|
861
|
+
"version": "9.0.0-alpha.73",
|
862
|
+
"comments": {
|
863
|
+
"prerelease": [
|
864
|
+
{
|
865
|
+
"comment": "Update .npmignore",
|
866
|
+
"author": "elcraig@microsoft.com",
|
867
|
+
"commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
|
868
|
+
"package": "@fluentui/react-button"
|
869
|
+
}
|
870
|
+
],
|
871
|
+
"none": [
|
872
|
+
{
|
873
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.38",
|
874
|
+
"author": "elcraig@microsoft.com",
|
875
|
+
"commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
|
876
|
+
"package": "@fluentui/react-button"
|
877
|
+
},
|
878
|
+
{
|
879
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.4.0",
|
880
|
+
"author": "behowell@microsoft.com",
|
881
|
+
"commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
|
882
|
+
"package": "@fluentui/react-button"
|
883
|
+
},
|
884
|
+
{
|
885
|
+
"comment": "Bump @fluentui/a11y-testing to v0.1.0",
|
886
|
+
"author": "behowell@microsoft.com",
|
887
|
+
"commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
|
888
|
+
"package": "@fluentui/react-button"
|
889
|
+
},
|
890
|
+
{
|
891
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.34",
|
892
|
+
"author": "elcraig@microsoft.com",
|
893
|
+
"commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
|
894
|
+
"package": "@fluentui/react-button"
|
895
|
+
},
|
896
|
+
{
|
897
|
+
"comment": "Bump @fluentui/keyboard-key to v0.3.4",
|
898
|
+
"author": "behowell@microsoft.com",
|
899
|
+
"commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
|
900
|
+
"package": "@fluentui/react-button"
|
901
|
+
},
|
902
|
+
{
|
903
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.40",
|
904
|
+
"author": "elcraig@microsoft.com",
|
905
|
+
"commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
|
906
|
+
"package": "@fluentui/react-button"
|
907
|
+
},
|
908
|
+
{
|
909
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.58",
|
910
|
+
"author": "elcraig@microsoft.com",
|
911
|
+
"commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
|
912
|
+
"package": "@fluentui/react-button"
|
913
|
+
},
|
914
|
+
{
|
915
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.52",
|
916
|
+
"author": "elcraig@microsoft.com",
|
917
|
+
"commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
|
918
|
+
"package": "@fluentui/react-button"
|
919
|
+
},
|
920
|
+
{
|
921
|
+
"comment": "Bump @fluentui/react-conformance to v0.4.4",
|
922
|
+
"author": "behowell@microsoft.com",
|
923
|
+
"commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
|
924
|
+
"package": "@fluentui/react-button"
|
925
|
+
},
|
926
|
+
{
|
927
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
928
|
+
"author": "behowell@microsoft.com",
|
929
|
+
"commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
|
930
|
+
"package": "@fluentui/react-button"
|
931
|
+
}
|
932
|
+
]
|
933
|
+
}
|
934
|
+
},
|
935
|
+
{
|
936
|
+
"date": "Thu, 19 Aug 2021 07:41:35 GMT",
|
937
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.72",
|
938
|
+
"version": "9.0.0-alpha.72",
|
939
|
+
"comments": {
|
940
|
+
"prerelease": [
|
941
|
+
{
|
942
|
+
"comment": "fix default styling for button on focus",
|
943
|
+
"author": "ololubek@microsoft.com",
|
944
|
+
"commit": "b94c509dfdb919a254199db9cdb7cdaeb01026df",
|
945
|
+
"package": "@fluentui/react-button"
|
946
|
+
}
|
947
|
+
]
|
948
|
+
}
|
949
|
+
},
|
950
|
+
{
|
951
|
+
"date": "Wed, 18 Aug 2021 07:33:54 GMT",
|
952
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.71",
|
953
|
+
"version": "9.0.0-alpha.71",
|
954
|
+
"comments": {
|
955
|
+
"prerelease": [
|
956
|
+
{
|
957
|
+
"comment": "Update hc focus styling for vNext button",
|
958
|
+
"author": "ololubek@microsoft.com",
|
959
|
+
"commit": "f5ea93b0c0b9905c078b7ace1511b5a78ec8346d",
|
960
|
+
"package": "@fluentui/react-button"
|
961
|
+
}
|
962
|
+
],
|
963
|
+
"none": [
|
964
|
+
{
|
965
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.36",
|
966
|
+
"author": "martinhochel@microsoft.com",
|
967
|
+
"commit": "5dfa622011b10aaab3ab1fb3fc2e5f77c8a13166",
|
968
|
+
"package": "@fluentui/react-button"
|
969
|
+
}
|
970
|
+
]
|
971
|
+
}
|
972
|
+
},
|
973
|
+
{
|
974
|
+
"date": "Fri, 13 Aug 2021 07:36:34 GMT",
|
975
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.70",
|
976
|
+
"version": "9.0.0-alpha.70",
|
977
|
+
"comments": {
|
978
|
+
"prerelease": [
|
979
|
+
{
|
980
|
+
"comment": "Button: Adding font family styles.",
|
981
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
982
|
+
"commit": "669af99bc4859a13a2f599202d310e889c6c5e85",
|
983
|
+
"package": "@fluentui/react-button"
|
984
|
+
}
|
985
|
+
]
|
986
|
+
}
|
987
|
+
},
|
988
|
+
{
|
989
|
+
"date": "Wed, 11 Aug 2021 07:34:54 GMT",
|
990
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.69",
|
991
|
+
"version": "9.0.0-alpha.69",
|
992
|
+
"comments": {
|
993
|
+
"prerelease": [
|
994
|
+
{
|
995
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.35",
|
996
|
+
"author": "olfedias@microsoft.com",
|
997
|
+
"commit": "954ba1d43684df75942a18c0ef05dc99187729ff",
|
998
|
+
"package": "@fluentui/react-button"
|
999
|
+
}
|
1000
|
+
]
|
1001
|
+
}
|
1002
|
+
},
|
1003
|
+
{
|
1004
|
+
"date": "Mon, 09 Aug 2021 07:35:14 GMT",
|
1005
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.68",
|
1006
|
+
"version": "9.0.0-alpha.68",
|
1007
|
+
"comments": {
|
1008
|
+
"none": [
|
1009
|
+
{
|
1010
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.34",
|
1011
|
+
"author": "czearing@outlook.com",
|
1012
|
+
"commit": "c8aa3a59fbe9a59ca90077418d7c82de9f31ee13",
|
1013
|
+
"package": "@fluentui/react-button"
|
1014
|
+
}
|
1015
|
+
]
|
1016
|
+
}
|
1017
|
+
},
|
1018
|
+
{
|
1019
|
+
"date": "Fri, 06 Aug 2021 07:35:14 GMT",
|
1020
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.68",
|
1021
|
+
"version": "9.0.0-alpha.68",
|
1022
|
+
"comments": {
|
1023
|
+
"prerelease": [
|
1024
|
+
{
|
1025
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.34",
|
1026
|
+
"author": "jspurlin@microsoft.com",
|
1027
|
+
"commit": "8a09087b4215a36a50b6d3478cd2b74155c9c630",
|
1028
|
+
"package": "@fluentui/react-button"
|
1029
|
+
}
|
1030
|
+
]
|
1031
|
+
}
|
1032
|
+
},
|
1033
|
+
{
|
1034
|
+
"date": "Wed, 04 Aug 2021 07:34:12 GMT",
|
1035
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.67",
|
1036
|
+
"version": "9.0.0-alpha.67",
|
1037
|
+
"comments": {
|
1038
|
+
"none": [
|
1039
|
+
{
|
1040
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.37",
|
1041
|
+
"author": "czearing@outlook.com",
|
1042
|
+
"commit": "109e85b19d8ee37a9c31ddf8e2083471bab64526",
|
1043
|
+
"package": "@fluentui/react-button"
|
1044
|
+
}
|
1045
|
+
]
|
1046
|
+
}
|
1047
|
+
},
|
1048
|
+
{
|
1049
|
+
"date": "Tue, 03 Aug 2021 07:39:30 GMT",
|
1050
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.67",
|
1051
|
+
"version": "9.0.0-alpha.67",
|
1052
|
+
"comments": {
|
1053
|
+
"patch": [
|
1054
|
+
{
|
1055
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.3.3",
|
1056
|
+
"author": "behowell@microsoft.com",
|
1057
|
+
"commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
|
1058
|
+
"package": "@fluentui/react-button"
|
1059
|
+
},
|
1060
|
+
{
|
1061
|
+
"comment": "Bump @fluentui/a11y-testing to v0.1.0",
|
1062
|
+
"author": "behowell@microsoft.com",
|
1063
|
+
"commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
|
1064
|
+
"package": "@fluentui/react-button"
|
1065
|
+
},
|
1066
|
+
{
|
1067
|
+
"comment": "Bump @fluentui/keyboard-key to v0.3.4",
|
1068
|
+
"author": "behowell@microsoft.com",
|
1069
|
+
"commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
|
1070
|
+
"package": "@fluentui/react-button"
|
1071
|
+
},
|
1072
|
+
{
|
1073
|
+
"comment": "Bump @fluentui/react-conformance to v0.4.4",
|
1074
|
+
"author": "behowell@microsoft.com",
|
1075
|
+
"commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
|
1076
|
+
"package": "@fluentui/react-button"
|
1077
|
+
},
|
1078
|
+
{
|
1079
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
1080
|
+
"author": "behowell@microsoft.com",
|
1081
|
+
"commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
|
1082
|
+
"package": "@fluentui/react-button"
|
1083
|
+
}
|
1084
|
+
]
|
1085
|
+
}
|
1086
|
+
},
|
1087
|
+
{
|
1088
|
+
"date": "Mon, 02 Aug 2021 07:36:20 GMT",
|
1089
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.66",
|
1090
|
+
"version": "9.0.0-alpha.66",
|
1091
|
+
"comments": {
|
1092
|
+
"prerelease": [
|
1093
|
+
{
|
1094
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.36",
|
1095
|
+
"author": "lingfan.gao@microsoft.com",
|
1096
|
+
"commit": "ab0e1bafdd9ace2974b3362cd2300fb32af466fb",
|
1097
|
+
"package": "@fluentui/react-button"
|
1098
|
+
}
|
1099
|
+
]
|
1100
|
+
}
|
1101
|
+
},
|
1102
|
+
{
|
1103
|
+
"date": "Mon, 26 Jul 2021 07:37:30 GMT",
|
1104
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.65",
|
1105
|
+
"version": "9.0.0-alpha.65",
|
1106
|
+
"comments": {
|
1107
|
+
"none": [
|
1108
|
+
{
|
1109
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.31",
|
1110
|
+
"author": "olfedias@microsoft.com",
|
1111
|
+
"commit": "8c249a1c1a8dcc4b0d9877e5d5e8e6d126063788",
|
1112
|
+
"package": "@fluentui/react-button"
|
1113
|
+
}
|
1114
|
+
],
|
1115
|
+
"prerelease": [
|
1116
|
+
{
|
1117
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.46",
|
1118
|
+
"author": "olfedias@microsoft.com",
|
1119
|
+
"commit": "19db6cb57a237073b0bb50d07eb921b1ce2e0c61",
|
1120
|
+
"package": "@fluentui/react-button"
|
1121
|
+
}
|
1122
|
+
]
|
1123
|
+
}
|
1124
|
+
},
|
1125
|
+
{
|
1126
|
+
"date": "Fri, 23 Jul 2021 07:38:19 GMT",
|
1127
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.64",
|
1128
|
+
"version": "9.0.0-alpha.64",
|
1129
|
+
"comments": {
|
1130
|
+
"prerelease": [
|
1131
|
+
{
|
1132
|
+
"comment": "Fix button jump effect on border disparities",
|
1133
|
+
"author": "bsunderhus@microsoft.com",
|
1134
|
+
"commit": "6d8fde315b1bcfe5948f7c309a3ddece1a71c8ff",
|
1135
|
+
"package": "@fluentui/react-button"
|
1136
|
+
},
|
1137
|
+
{
|
1138
|
+
"comment": "Update theme tokens",
|
1139
|
+
"author": "miroslav.stastny@microsoft.com",
|
1140
|
+
"commit": "5d812148593dc574a6f3a343a5657614b4d10456",
|
1141
|
+
"package": "@fluentui/react-button"
|
1142
|
+
},
|
1143
|
+
{
|
1144
|
+
"comment": "Button: Handling children correctly and not as a slot.",
|
1145
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
1146
|
+
"commit": "e1a39cd66ca28991eac12f63e8129ff24fd4daa8",
|
1147
|
+
"package": "@fluentui/react-button"
|
1148
|
+
}
|
1149
|
+
]
|
1150
|
+
}
|
1151
|
+
},
|
1152
|
+
{
|
1153
|
+
"date": "Thu, 22 Jul 2021 07:36:55 GMT",
|
1154
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.63",
|
1155
|
+
"version": "9.0.0-alpha.63",
|
1156
|
+
"comments": {
|
1157
|
+
"prerelease": [
|
1158
|
+
{
|
1159
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.29",
|
1160
|
+
"author": "lingfan.gao@microsoft.com",
|
1161
|
+
"commit": "84296aa8db9ddbf0250f24703fb304c360ff05e1",
|
1162
|
+
"package": "@fluentui/react-button"
|
1163
|
+
}
|
1164
|
+
]
|
1165
|
+
}
|
1166
|
+
},
|
1167
|
+
{
|
1168
|
+
"date": "Tue, 20 Jul 2021 22:23:17 GMT",
|
1169
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.62",
|
1170
|
+
"version": "9.0.0-alpha.62",
|
1171
|
+
"comments": {
|
1172
|
+
"prerelease": [
|
1173
|
+
{
|
1174
|
+
"comment": "Button: Migrate to new dx",
|
1175
|
+
"author": "tristan.watanabe@gmail.com",
|
1176
|
+
"commit": "f8578ee238037bb8af86582d7f75659ff0bc8ebd",
|
1177
|
+
"package": "@fluentui/react-button"
|
1178
|
+
}
|
1179
|
+
],
|
1180
|
+
"none": [
|
1181
|
+
{
|
1182
|
+
"comment": "add bundle size fixtures",
|
1183
|
+
"author": "olfedias@microsoft.com",
|
1184
|
+
"commit": "0723d064145b7f6be971187a5cf9b66859308e2f",
|
1185
|
+
"package": "@fluentui/react-button"
|
1186
|
+
},
|
1187
|
+
{
|
1188
|
+
"comment": "Sync babel-make-styles with published version",
|
1189
|
+
"author": "elcraig@microsoft.com",
|
1190
|
+
"commit": "d57f601738c32dfa1e651529d8edfec10a6b46b7",
|
1191
|
+
"package": "@fluentui/react-button"
|
1192
|
+
},
|
1193
|
+
{
|
1194
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.28",
|
1195
|
+
"author": "olfedias@microsoft.com",
|
1196
|
+
"commit": "eb109ce88fe81cc91338ece32be1f4e49b81a678",
|
1197
|
+
"package": "@fluentui/react-button"
|
1198
|
+
},
|
1199
|
+
{
|
1200
|
+
"comment": "Bump @fluentui/a11y-testing to v0.1.0",
|
1201
|
+
"author": "lingfan.gao@microsoft.com",
|
1202
|
+
"commit": "87ab56f142ad5f10d772ba339ea26d84600ac965",
|
1203
|
+
"package": "@fluentui/react-button"
|
1204
|
+
},
|
1205
|
+
{
|
1206
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.25",
|
1207
|
+
"author": "olfedias@microsoft.com",
|
1208
|
+
"commit": "eb109ce88fe81cc91338ece32be1f4e49b81a678",
|
1209
|
+
"package": "@fluentui/react-button"
|
1210
|
+
},
|
1211
|
+
{
|
1212
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.49",
|
1213
|
+
"author": "olfedias@microsoft.com",
|
1214
|
+
"commit": "eb109ce88fe81cc91338ece32be1f4e49b81a678",
|
1215
|
+
"package": "@fluentui/react-button"
|
1216
|
+
},
|
1217
|
+
{
|
1218
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.43",
|
1219
|
+
"author": "olfedias@microsoft.com",
|
1220
|
+
"commit": "eb109ce88fe81cc91338ece32be1f4e49b81a678",
|
1221
|
+
"package": "@fluentui/react-button"
|
1222
|
+
},
|
1223
|
+
{
|
1224
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.33",
|
1225
|
+
"author": "olfedias@microsoft.com",
|
1226
|
+
"commit": "0723d064145b7f6be971187a5cf9b66859308e2f",
|
1227
|
+
"package": "@fluentui/react-button"
|
1228
|
+
}
|
1229
|
+
]
|
1230
|
+
}
|
1231
|
+
},
|
1232
|
+
{
|
1233
|
+
"date": "Fri, 16 Jul 2021 22:53:17 GMT",
|
1234
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.61",
|
1235
|
+
"version": "9.0.0-alpha.61",
|
1236
|
+
"comments": {
|
1237
|
+
"prerelease": [
|
1238
|
+
{
|
1239
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.26",
|
1240
|
+
"author": "olfedias@microsoft.com",
|
1241
|
+
"commit": "91e053b6cfb80ed71f99957fc1e6b92f67920ab3",
|
1242
|
+
"package": "@fluentui/react-button"
|
1243
|
+
}
|
1244
|
+
]
|
1245
|
+
}
|
1246
|
+
},
|
1247
|
+
{
|
1248
|
+
"date": "Thu, 15 Jul 2021 07:36:18 GMT",
|
1249
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.60",
|
1250
|
+
"version": "9.0.0-alpha.60",
|
1251
|
+
"comments": {
|
1252
|
+
"prerelease": [
|
1253
|
+
{
|
1254
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.33",
|
1255
|
+
"author": "bsunderhus@microsoft.com",
|
1256
|
+
"commit": "b60234948eacb8c6fa9d08ab8e98d963f583d475",
|
1257
|
+
"package": "@fluentui/react-button"
|
1258
|
+
}
|
1259
|
+
]
|
1260
|
+
}
|
1261
|
+
},
|
1262
|
+
{
|
1263
|
+
"date": "Tue, 13 Jul 2021 22:32:58 GMT",
|
1264
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.59",
|
1265
|
+
"version": "9.0.0-alpha.59",
|
1266
|
+
"comments": {
|
1267
|
+
"patch": [
|
1268
|
+
{
|
1269
|
+
"comment": "Bump @fluentui/react-conformance to v0.4.3",
|
1270
|
+
"author": "elcraig@microsoft.com",
|
1271
|
+
"commit": "12b74625dec55bd1919f6370513043d87705e5ea",
|
1272
|
+
"package": "@fluentui/react-button"
|
1273
|
+
}
|
1274
|
+
]
|
1275
|
+
}
|
1276
|
+
},
|
1277
|
+
{
|
1278
|
+
"date": "Tue, 13 Jul 2021 07:35:36 GMT",
|
1279
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.58",
|
1280
|
+
"version": "9.0.0-alpha.58",
|
1281
|
+
"comments": {
|
1282
|
+
"prerelease": [
|
1283
|
+
{
|
1284
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.24",
|
1285
|
+
"author": "behowell@microsoft.com",
|
1286
|
+
"commit": "8e5969e291bcafac21df12c9fb591bdd5654c613",
|
1287
|
+
"package": "@fluentui/react-button"
|
1288
|
+
}
|
1289
|
+
]
|
1290
|
+
}
|
1291
|
+
},
|
1292
|
+
{
|
1293
|
+
"date": "Mon, 12 Jul 2021 07:33:23 GMT",
|
1294
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.57",
|
1295
|
+
"version": "9.0.0-alpha.57",
|
1296
|
+
"comments": {
|
1297
|
+
"prerelease": [
|
1298
|
+
{
|
1299
|
+
"comment": "Button: Adding back block, circular, disabledFocusable and outline props and making some styling fixes.",
|
1300
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
1301
|
+
"commit": "394b16b92fae7773125c32edc1df56c7758cba4e",
|
1302
|
+
"package": "@fluentui/react-button"
|
1303
|
+
}
|
1304
|
+
]
|
1305
|
+
}
|
1306
|
+
},
|
1307
|
+
{
|
1308
|
+
"date": "Fri, 09 Jul 2021 07:39:31 GMT",
|
1309
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.56",
|
1310
|
+
"version": "9.0.0-alpha.56",
|
1311
|
+
"comments": {
|
1312
|
+
"patch": [
|
1313
|
+
{
|
1314
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.3.2",
|
1315
|
+
"author": "martinhochel@microsoft.com",
|
1316
|
+
"commit": "18902eb64710aa6253a79781357b8390bb13665c",
|
1317
|
+
"package": "@fluentui/react-button"
|
1318
|
+
},
|
1319
|
+
{
|
1320
|
+
"comment": "Bump @fluentui/a11y-testing to v0.1.0",
|
1321
|
+
"author": "martinhochel@microsoft.com",
|
1322
|
+
"commit": "18902eb64710aa6253a79781357b8390bb13665c",
|
1323
|
+
"package": "@fluentui/react-button"
|
1324
|
+
},
|
1325
|
+
{
|
1326
|
+
"comment": "Bump @fluentui/keyboard-key to v0.3.3",
|
1327
|
+
"author": "martinhochel@microsoft.com",
|
1328
|
+
"commit": "18902eb64710aa6253a79781357b8390bb13665c",
|
1329
|
+
"package": "@fluentui/react-button"
|
1330
|
+
},
|
1331
|
+
{
|
1332
|
+
"comment": "Bump @fluentui/react-conformance to v0.4.2",
|
1333
|
+
"author": "martinhochel@microsoft.com",
|
1334
|
+
"commit": "18902eb64710aa6253a79781357b8390bb13665c",
|
1335
|
+
"package": "@fluentui/react-button"
|
1336
|
+
},
|
1337
|
+
{
|
1338
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
1339
|
+
"author": "martinhochel@microsoft.com",
|
1340
|
+
"commit": "18902eb64710aa6253a79781357b8390bb13665c",
|
1341
|
+
"package": "@fluentui/react-button"
|
1342
|
+
}
|
1343
|
+
]
|
1344
|
+
}
|
1345
|
+
},
|
1346
|
+
{
|
1347
|
+
"date": "Fri, 02 Jul 2021 23:15:55 GMT",
|
1348
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.55",
|
1349
|
+
"version": "9.0.0-alpha.55",
|
1350
|
+
"comments": {
|
1351
|
+
"prerelease": [
|
1352
|
+
{
|
1353
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.22",
|
1354
|
+
"author": "olfedias@microsoft.com",
|
1355
|
+
"commit": "936b45148b58d15c9c843f0503f7bdf12b9da4e9",
|
1356
|
+
"package": "@fluentui/react-button"
|
1357
|
+
}
|
1358
|
+
]
|
1359
|
+
}
|
1360
|
+
},
|
1361
|
+
{
|
1362
|
+
"date": "Fri, 02 Jul 2021 07:37:06 GMT",
|
1363
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.54",
|
1364
|
+
"version": "9.0.0-alpha.54",
|
1365
|
+
"comments": {
|
1366
|
+
"prerelease": [
|
1367
|
+
{
|
1368
|
+
"comment": "Rename typings and getSlots to have the Compat Suffix",
|
1369
|
+
"author": "bsunderhus@microsoft.com",
|
1370
|
+
"commit": "c939e67b1840a9eb5f7706afcda8c14df8f18d33",
|
1371
|
+
"package": "@fluentui/react-button"
|
1372
|
+
}
|
1373
|
+
]
|
1374
|
+
}
|
1375
|
+
},
|
1376
|
+
{
|
1377
|
+
"date": "Thu, 01 Jul 2021 07:35:05 GMT",
|
1378
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.53",
|
1379
|
+
"version": "9.0.0-alpha.53",
|
1380
|
+
"comments": {
|
1381
|
+
"prerelease": [
|
1382
|
+
{
|
1383
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.20",
|
1384
|
+
"author": "olfedias@microsoft.com",
|
1385
|
+
"commit": "c5019f09e666bac820addb36facaf0c133c0f7bc",
|
1386
|
+
"package": "@fluentui/react-button"
|
1387
|
+
}
|
1388
|
+
]
|
1389
|
+
}
|
1390
|
+
},
|
1391
|
+
{
|
1392
|
+
"date": "Wed, 30 Jun 2021 07:38:35 GMT",
|
1393
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.52",
|
1394
|
+
"version": "9.0.0-alpha.52",
|
1395
|
+
"comments": {
|
1396
|
+
"prerelease": [
|
1397
|
+
{
|
1398
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.19",
|
1399
|
+
"author": "tristan.watanabe@gmail.com",
|
1400
|
+
"commit": "804ca93da84e19cec0737729473be5034a2e4939",
|
1401
|
+
"package": "@fluentui/react-button"
|
1402
|
+
}
|
1403
|
+
]
|
1404
|
+
}
|
1405
|
+
},
|
1406
|
+
{
|
1407
|
+
"date": "Tue, 29 Jun 2021 07:33:32 GMT",
|
1408
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.51",
|
1409
|
+
"version": "9.0.0-alpha.51",
|
1410
|
+
"comments": {
|
1411
|
+
"prerelease": [
|
1412
|
+
{
|
1413
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.18",
|
1414
|
+
"author": "olfedias@microsoft.com",
|
1415
|
+
"commit": "073ea5f67e3088a92f68caeeca32ef96410aabc5",
|
1416
|
+
"package": "@fluentui/react-button"
|
1417
|
+
}
|
1418
|
+
],
|
1419
|
+
"none": [
|
1420
|
+
{
|
1421
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.35",
|
1422
|
+
"author": "lingfan.gao@microsoft.com",
|
1423
|
+
"commit": "4f907a837f3b85923178b611e4fbb0d9ac222dda",
|
1424
|
+
"package": "@fluentui/react-button"
|
1425
|
+
}
|
1426
|
+
]
|
1427
|
+
}
|
1428
|
+
},
|
1429
|
+
{
|
1430
|
+
"date": "Mon, 28 Jun 2021 07:35:16 GMT",
|
1431
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.50",
|
1432
|
+
"version": "9.0.0-alpha.50",
|
1433
|
+
"comments": {
|
1434
|
+
"none": [
|
1435
|
+
{
|
1436
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.17",
|
1437
|
+
"author": "olfedias@microsoft.com",
|
1438
|
+
"commit": "bf6fd1290ea6c6861a5d80f704e0d6d0cadb71e0",
|
1439
|
+
"package": "@fluentui/react-button"
|
1440
|
+
}
|
1441
|
+
]
|
1442
|
+
}
|
1443
|
+
},
|
1444
|
+
{
|
1445
|
+
"date": "Fri, 25 Jun 2021 07:31:35 GMT",
|
1446
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.50",
|
1447
|
+
"version": "9.0.0-alpha.50",
|
1448
|
+
"comments": {
|
1449
|
+
"none": [
|
1450
|
+
{
|
1451
|
+
"comment": "Correcting interface doc comment typos in react-button",
|
1452
|
+
"author": "czearing@outlook.com",
|
1453
|
+
"commit": "78a001da63401022bbcb1cef142240d2c9671e53",
|
1454
|
+
"package": "@fluentui/react-button"
|
1455
|
+
}
|
1456
|
+
]
|
1457
|
+
}
|
1458
|
+
},
|
1459
|
+
{
|
1460
|
+
"date": "Wed, 23 Jun 2021 07:31:49 GMT",
|
1461
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.50",
|
1462
|
+
"version": "9.0.0-alpha.50",
|
1463
|
+
"comments": {
|
1464
|
+
"prerelease": [
|
1465
|
+
{
|
1466
|
+
"comment": "react-button: Removing last remnants of legacy patterns.",
|
1467
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
1468
|
+
"commit": "15047a334d953f8638dfe678470b5efc3d206d1c",
|
1469
|
+
"package": "@fluentui/react-button"
|
1470
|
+
}
|
1471
|
+
],
|
1472
|
+
"none": [
|
1473
|
+
{
|
1474
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.17",
|
1475
|
+
"author": "olfedias@microsoft.com",
|
1476
|
+
"commit": "6aa065bafaa4a169b771706bc93c2faff9ac78a7",
|
1477
|
+
"package": "@fluentui/react-button"
|
1478
|
+
}
|
1479
|
+
]
|
1480
|
+
}
|
1481
|
+
},
|
1482
|
+
{
|
1483
|
+
"date": "Tue, 22 Jun 2021 07:35:11 GMT",
|
1484
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.49",
|
1485
|
+
"version": "9.0.0-alpha.49",
|
1486
|
+
"comments": {
|
1487
|
+
"prerelease": [
|
1488
|
+
{
|
1489
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.17",
|
1490
|
+
"author": "olfedias@microsoft.com",
|
1491
|
+
"commit": "3fccf5c8a8ea30529b736b9189e294969242f886",
|
1492
|
+
"package": "@fluentui/react-button"
|
1493
|
+
}
|
1494
|
+
]
|
1495
|
+
}
|
1496
|
+
},
|
1497
|
+
{
|
1498
|
+
"date": "Mon, 21 Jun 2021 07:34:33 GMT",
|
1499
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.48",
|
1500
|
+
"version": "9.0.0-alpha.48",
|
1501
|
+
"comments": {
|
1502
|
+
"none": [
|
1503
|
+
{
|
1504
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.16",
|
1505
|
+
"author": "miroslav.stastny@microsoft.com",
|
1506
|
+
"commit": "7301e00ef64eefcbd9f20e4ac8fd45849b3f74f3",
|
1507
|
+
"package": "@fluentui/react-button"
|
1508
|
+
}
|
1509
|
+
]
|
1510
|
+
}
|
1511
|
+
},
|
1512
|
+
{
|
1513
|
+
"date": "Tue, 15 Jun 2021 07:40:20 GMT",
|
1514
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.48",
|
1515
|
+
"version": "9.0.0-alpha.48",
|
1516
|
+
"comments": {
|
1517
|
+
"prerelease": [
|
1518
|
+
{
|
1519
|
+
"comment": "Temporary typing fix for children prop",
|
1520
|
+
"author": "behowell@microsoft.com",
|
1521
|
+
"commit": "10b1e17acaa01675866f7a623be1a61b1478d7d7",
|
1522
|
+
"package": "@fluentui/react-button"
|
1523
|
+
}
|
1524
|
+
]
|
1525
|
+
}
|
1526
|
+
},
|
1527
|
+
{
|
1528
|
+
"date": "Fri, 11 Jun 2021 07:34:26 GMT",
|
1529
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.47",
|
1530
|
+
"version": "9.0.0-alpha.47",
|
1531
|
+
"comments": {
|
1532
|
+
"prerelease": [
|
1533
|
+
{
|
1534
|
+
"comment": "CompoundButton: Removing legacy patterns from converged component.",
|
1535
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
1536
|
+
"commit": "7ebdcb7d875fd0433a1e6ae749fdf15148981cdb",
|
1537
|
+
"package": "@fluentui/react-button"
|
1538
|
+
},
|
1539
|
+
{
|
1540
|
+
"comment": "ToggleButton: Removing legacy patterns from converged component.",
|
1541
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
1542
|
+
"commit": "0b25e8db7219b261df060d8dfafd11c307848ba2",
|
1543
|
+
"package": "@fluentui/react-button"
|
1544
|
+
},
|
1545
|
+
{
|
1546
|
+
"comment": "MenuButton: Removing legacy patterns from converged component.",
|
1547
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
1548
|
+
"commit": "92eecaa70a1a48c71c29415eb88d7c1d628f12d9",
|
1549
|
+
"package": "@fluentui/react-button"
|
1550
|
+
}
|
1551
|
+
]
|
1552
|
+
}
|
1553
|
+
},
|
1554
|
+
{
|
1555
|
+
"date": "Thu, 10 Jun 2021 07:32:59 GMT",
|
1556
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.46",
|
1557
|
+
"version": "9.0.0-alpha.46",
|
1558
|
+
"comments": {
|
1559
|
+
"prerelease": [
|
1560
|
+
{
|
1561
|
+
"comment": "Button: Removing legacy patterns from converged component.",
|
1562
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
1563
|
+
"commit": "aa5faf97d86f8ff8464ea8840a3a90e11b56da4f",
|
1564
|
+
"package": "@fluentui/react-button"
|
1565
|
+
}
|
1566
|
+
]
|
1567
|
+
}
|
1568
|
+
},
|
1569
|
+
{
|
1570
|
+
"date": "Wed, 09 Jun 2021 07:33:38 GMT",
|
1571
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.45",
|
1572
|
+
"version": "9.0.0-alpha.45",
|
1573
|
+
"comments": {
|
1574
|
+
"prerelease": [
|
1575
|
+
{
|
1576
|
+
"comment": "Adds focus indicator style to react-button",
|
1577
|
+
"author": "bsunderhus@microsoft.com",
|
1578
|
+
"commit": "14b56aa2b7a2bb84b1b9f310d400a1849985f9f9",
|
1579
|
+
"package": "@fluentui/react-button"
|
1580
|
+
}
|
1581
|
+
]
|
1582
|
+
}
|
1583
|
+
},
|
1584
|
+
{
|
1585
|
+
"date": "Mon, 07 Jun 2021 07:38:15 GMT",
|
1586
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.44",
|
1587
|
+
"version": "9.0.0-alpha.44",
|
1588
|
+
"comments": {
|
1589
|
+
"patch": [
|
1590
|
+
{
|
1591
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.3.1",
|
1592
|
+
"author": "martinhochel@microsoft.com",
|
1593
|
+
"commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
|
1594
|
+
"package": "@fluentui/react-button"
|
1595
|
+
},
|
1596
|
+
{
|
1597
|
+
"comment": "Bump @fluentui/a11y-testing to v0.1.0",
|
1598
|
+
"author": "martinhochel@microsoft.com",
|
1599
|
+
"commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
|
1600
|
+
"package": "@fluentui/react-button"
|
1601
|
+
},
|
1602
|
+
{
|
1603
|
+
"comment": "Bump @fluentui/keyboard-key to v0.3.2",
|
1604
|
+
"author": "martinhochel@microsoft.com",
|
1605
|
+
"commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
|
1606
|
+
"package": "@fluentui/react-button"
|
1607
|
+
},
|
1608
|
+
{
|
1609
|
+
"comment": "Bump @fluentui/react-conformance to v0.4.1",
|
1610
|
+
"author": "martinhochel@microsoft.com",
|
1611
|
+
"commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
|
1612
|
+
"package": "@fluentui/react-button"
|
1613
|
+
},
|
1614
|
+
{
|
1615
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
1616
|
+
"author": "martinhochel@microsoft.com",
|
1617
|
+
"commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
|
1618
|
+
"package": "@fluentui/react-button"
|
1619
|
+
}
|
1620
|
+
]
|
1621
|
+
}
|
1622
|
+
},
|
1623
|
+
{
|
1624
|
+
"date": "Fri, 04 Jun 2021 07:37:23 GMT",
|
1625
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.43",
|
1626
|
+
"version": "9.0.0-alpha.43",
|
1627
|
+
"comments": {
|
1628
|
+
"prerelease": [
|
1629
|
+
{
|
1630
|
+
"comment": "MenuButton: Re-introducing MenuButton using the latest version of makeStyles.",
|
1631
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
1632
|
+
"commit": "1ca8c8f0c4eb633e6b34c0b6182c09103d4c7fcb",
|
1633
|
+
"package": "@fluentui/react-button"
|
1634
|
+
}
|
1635
|
+
]
|
1636
|
+
}
|
1637
|
+
},
|
1638
|
+
{
|
1639
|
+
"date": "Thu, 03 Jun 2021 07:36:03 GMT",
|
1640
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.42",
|
1641
|
+
"version": "9.0.0-alpha.42",
|
1642
|
+
"comments": {
|
1643
|
+
"prerelease": [
|
1644
|
+
{
|
1645
|
+
"comment": "Use updated theme tokens in component styles",
|
1646
|
+
"author": "miroslav.stastny@microsoft.com",
|
1647
|
+
"commit": "32aed1a91b19ac1beb161a7a2ab43e78b51f53d1",
|
1648
|
+
"package": "@fluentui/react-button"
|
1649
|
+
}
|
1650
|
+
],
|
1651
|
+
"none": [
|
1652
|
+
{
|
1653
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.13",
|
1654
|
+
"author": "martinhochel@microsoft.com",
|
1655
|
+
"commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
|
1656
|
+
"package": "@fluentui/react-button"
|
1657
|
+
},
|
1658
|
+
{
|
1659
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.39",
|
1660
|
+
"author": "martinhochel@microsoft.com",
|
1661
|
+
"commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
|
1662
|
+
"package": "@fluentui/react-button"
|
1663
|
+
},
|
1664
|
+
{
|
1665
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.15",
|
1666
|
+
"author": "martinhochel@microsoft.com",
|
1667
|
+
"commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
|
1668
|
+
"package": "@fluentui/react-button"
|
1669
|
+
},
|
1670
|
+
{
|
1671
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.26",
|
1672
|
+
"author": "martinhochel@microsoft.com",
|
1673
|
+
"commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
|
1674
|
+
"package": "@fluentui/react-button"
|
1675
|
+
}
|
1676
|
+
]
|
1677
|
+
}
|
1678
|
+
},
|
1679
|
+
{
|
1680
|
+
"date": "Wed, 02 Jun 2021 07:37:15 GMT",
|
1681
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.41",
|
1682
|
+
"version": "9.0.0-alpha.41",
|
1683
|
+
"comments": {
|
1684
|
+
"prerelease": [
|
1685
|
+
{
|
1686
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.12",
|
1687
|
+
"author": "bsunderhus@microsoft.com",
|
1688
|
+
"commit": "7f5734bd8a2a124969c6402534605fe0ee9df4af",
|
1689
|
+
"package": "@fluentui/react-button"
|
1690
|
+
}
|
1691
|
+
]
|
1692
|
+
}
|
1693
|
+
},
|
1694
|
+
{
|
1695
|
+
"date": "Tue, 01 Jun 2021 07:31:58 GMT",
|
1696
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.40",
|
1697
|
+
"version": "9.0.0-alpha.40",
|
1698
|
+
"comments": {
|
1699
|
+
"none": [
|
1700
|
+
{
|
1701
|
+
"comment": "Revert \"chore: enable Jest aliases for converged packages (#18337)\"",
|
1702
|
+
"author": "olfedias@microsoft.com",
|
1703
|
+
"commit": "b5f2a02b37c8ea394a65f7a22bff057de93370dd",
|
1704
|
+
"package": "@fluentui/react-button"
|
1705
|
+
}
|
1706
|
+
]
|
1707
|
+
}
|
1708
|
+
},
|
1709
|
+
{
|
1710
|
+
"date": "Fri, 28 May 2021 07:33:57 GMT",
|
1711
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.40",
|
1712
|
+
"version": "9.0.0-alpha.40",
|
1713
|
+
"comments": {
|
1714
|
+
"none": [
|
1715
|
+
{
|
1716
|
+
"comment": "enable Jest aliases",
|
1717
|
+
"author": "olfedias@microsoft.com",
|
1718
|
+
"commit": "5379823a6f53bd36a936806153d228b9a0ef0543",
|
1719
|
+
"package": "@fluentui/react-button"
|
1720
|
+
}
|
1721
|
+
]
|
1722
|
+
}
|
1723
|
+
},
|
1724
|
+
{
|
1725
|
+
"date": "Wed, 26 May 2021 07:35:43 GMT",
|
1726
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.40",
|
1727
|
+
"version": "9.0.0-alpha.40",
|
1728
|
+
"comments": {
|
1729
|
+
"none": [
|
1730
|
+
{
|
1731
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.11",
|
1732
|
+
"author": "olfedias@microsoft.com",
|
1733
|
+
"commit": "d2504c72ec7fba0cf4dcf1984c2e1a9322720225",
|
1734
|
+
"package": "@fluentui/react-button"
|
1735
|
+
}
|
1736
|
+
],
|
1737
|
+
"prerelease": [
|
1738
|
+
{
|
1739
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.25",
|
1740
|
+
"author": "lingfan.gao@microsoft.com",
|
1741
|
+
"commit": "6ffca36c9537a1852d8ec26478b8b7aeb059e17c",
|
1742
|
+
"package": "@fluentui/react-button"
|
1743
|
+
}
|
1744
|
+
]
|
1745
|
+
}
|
1746
|
+
},
|
1747
|
+
{
|
1748
|
+
"date": "Fri, 21 May 2021 07:34:54 GMT",
|
1749
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.39",
|
1750
|
+
"version": "9.0.0-alpha.39",
|
1751
|
+
"comments": {
|
1752
|
+
"none": [
|
1753
|
+
{
|
1754
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.11",
|
1755
|
+
"author": "miroslav.stastny@microsoft.com",
|
1756
|
+
"commit": "3f78f90075ae78bfd28f7d498ae8f012f0221279",
|
1757
|
+
"package": "@fluentui/react-button"
|
1758
|
+
}
|
1759
|
+
],
|
1760
|
+
"prerelease": [
|
1761
|
+
{
|
1762
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.24",
|
1763
|
+
"author": "behowell@microsoft.com",
|
1764
|
+
"commit": "aabab8dedf6aa56a403b314157bcef84b6bcd585",
|
1765
|
+
"package": "@fluentui/react-button"
|
1766
|
+
}
|
1767
|
+
]
|
1768
|
+
}
|
1769
|
+
},
|
1770
|
+
{
|
1771
|
+
"date": "Thu, 20 May 2021 07:41:54 GMT",
|
1772
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.38",
|
1773
|
+
"version": "9.0.0-alpha.38",
|
1774
|
+
"comments": {
|
1775
|
+
"none": [
|
1776
|
+
{
|
1777
|
+
"comment": "Update conformance tests in all packages to use a package-level isConformant wrapper with appropriate generics for props",
|
1778
|
+
"author": "elcraig@microsoft.com",
|
1779
|
+
"commit": "1e6ad173e2cfa18cfcae13311be7916f1b241432",
|
1780
|
+
"package": "@fluentui/react-button"
|
1781
|
+
}
|
1782
|
+
],
|
1783
|
+
"patch": [
|
1784
|
+
{
|
1785
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.3.0",
|
1786
|
+
"author": "elcraig@microsoft.com",
|
1787
|
+
"commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
|
1788
|
+
"package": "@fluentui/react-button"
|
1789
|
+
},
|
1790
|
+
{
|
1791
|
+
"comment": "Bump @fluentui/a11y-testing to v0.1.0",
|
1792
|
+
"author": "elcraig@microsoft.com",
|
1793
|
+
"commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
|
1794
|
+
"package": "@fluentui/react-button"
|
1795
|
+
},
|
1796
|
+
{
|
1797
|
+
"comment": "Bump @fluentui/keyboard-key to v0.3.1",
|
1798
|
+
"author": "elcraig@microsoft.com",
|
1799
|
+
"commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
|
1800
|
+
"package": "@fluentui/react-button"
|
1801
|
+
},
|
1802
|
+
{
|
1803
|
+
"comment": "Bump @fluentui/react-conformance to v0.4.0",
|
1804
|
+
"author": "elcraig@microsoft.com",
|
1805
|
+
"commit": "1e6ad173e2cfa18cfcae13311be7916f1b241432",
|
1806
|
+
"package": "@fluentui/react-button"
|
1807
|
+
},
|
1808
|
+
{
|
1809
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
1810
|
+
"author": "elcraig@microsoft.com",
|
1811
|
+
"commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
|
1812
|
+
"package": "@fluentui/react-button"
|
1813
|
+
}
|
1814
|
+
]
|
1815
|
+
}
|
1816
|
+
},
|
1817
|
+
{
|
1818
|
+
"date": "Wed, 19 May 2021 07:34:20 GMT",
|
1819
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.37",
|
1820
|
+
"version": "9.0.0-alpha.37",
|
1821
|
+
"comments": {
|
1822
|
+
"prerelease": [
|
1823
|
+
{
|
1824
|
+
"comment": "chore: add more Babel plugins",
|
1825
|
+
"author": "olfedias@microsoft.com",
|
1826
|
+
"commit": "975140887c6ad2391f8db63003ed440239ec9c25",
|
1827
|
+
"package": "@fluentui/react-button"
|
1828
|
+
}
|
1829
|
+
],
|
1830
|
+
"patch": [
|
1831
|
+
{
|
1832
|
+
"comment": "Bump @fluentui/react-conformance to v0.3.1",
|
1833
|
+
"author": "martinhochel@microsoft.com",
|
1834
|
+
"commit": "616b4b7c381c757871e8a590564d8eff7337834c",
|
1835
|
+
"package": "@fluentui/react-button"
|
1836
|
+
}
|
1837
|
+
]
|
1838
|
+
}
|
1839
|
+
},
|
1840
|
+
{
|
1841
|
+
"date": "Tue, 18 May 2021 07:34:38 GMT",
|
1842
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.36",
|
1843
|
+
"version": "9.0.0-alpha.36",
|
1844
|
+
"comments": {
|
1845
|
+
"prerelease": [
|
1846
|
+
{
|
1847
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.8",
|
1848
|
+
"author": "olfedias@microsoft.com",
|
1849
|
+
"commit": "c845a5045c99d8d83b2584cee016b1701cd3de57",
|
1850
|
+
"package": "@fluentui/react-button"
|
1851
|
+
}
|
1852
|
+
]
|
1853
|
+
}
|
1854
|
+
},
|
1855
|
+
{
|
1856
|
+
"date": "Thu, 13 May 2021 07:36:55 GMT",
|
1857
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.35",
|
1858
|
+
"version": "9.0.0-alpha.35",
|
1859
|
+
"comments": {
|
1860
|
+
"prerelease": [
|
1861
|
+
{
|
1862
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.7",
|
1863
|
+
"author": "olfedias@microsoft.com",
|
1864
|
+
"commit": "fb53fd67729d8236e0681d74322717f6974c8b72",
|
1865
|
+
"package": "@fluentui/react-button"
|
1866
|
+
}
|
1867
|
+
]
|
1868
|
+
}
|
1869
|
+
},
|
1870
|
+
{
|
1871
|
+
"date": "Wed, 12 May 2021 07:36:20 GMT",
|
1872
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.34",
|
1873
|
+
"version": "9.0.0-alpha.34",
|
1874
|
+
"comments": {
|
1875
|
+
"prerelease": [
|
1876
|
+
{
|
1877
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.6",
|
1878
|
+
"author": "olfedias@microsoft.com",
|
1879
|
+
"commit": "894712616ee3271fcf06e5fb24ad01e326e30bb5",
|
1880
|
+
"package": "@fluentui/react-button"
|
1881
|
+
}
|
1882
|
+
]
|
1883
|
+
}
|
1884
|
+
},
|
1885
|
+
{
|
1886
|
+
"date": "Mon, 10 May 2021 07:36:07 GMT",
|
1887
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.33",
|
1888
|
+
"version": "9.0.0-alpha.33",
|
1889
|
+
"comments": {
|
1890
|
+
"prerelease": [
|
1891
|
+
{
|
1892
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.5",
|
1893
|
+
"author": "olfedias@microsoft.com",
|
1894
|
+
"commit": "78c12235fcfebe43b7a77d36cbdfc67461ec32dc",
|
1895
|
+
"package": "@fluentui/react-button"
|
1896
|
+
}
|
1897
|
+
]
|
1898
|
+
}
|
1899
|
+
},
|
1900
|
+
{
|
1901
|
+
"date": "Wed, 05 May 2021 07:36:50 GMT",
|
1902
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.32",
|
1903
|
+
"version": "9.0.0-alpha.32",
|
1904
|
+
"comments": {
|
1905
|
+
"prerelease": [
|
1906
|
+
{
|
1907
|
+
"comment": "transform styles with Babel plugin",
|
1908
|
+
"author": "olfedias@microsoft.com",
|
1909
|
+
"commit": "a48d8dfd969f944c44b8c902cc9d418c333d063d",
|
1910
|
+
"package": "@fluentui/react-button"
|
1911
|
+
}
|
1912
|
+
]
|
1913
|
+
}
|
1914
|
+
},
|
1915
|
+
{
|
1916
|
+
"date": "Mon, 03 May 2021 07:45:19 GMT",
|
1917
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.31",
|
1918
|
+
"version": "9.0.0-alpha.31",
|
1919
|
+
"comments": {
|
1920
|
+
"prerelease": [
|
1921
|
+
{
|
1922
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.21",
|
1923
|
+
"author": "lingfan.gao@microsoft.com",
|
1924
|
+
"commit": "5e6aa4df0c03051e59d686d24b35f01c721a3b4e",
|
1925
|
+
"package": "@fluentui/react-button"
|
1926
|
+
}
|
1927
|
+
]
|
1928
|
+
}
|
1929
|
+
},
|
1930
|
+
{
|
1931
|
+
"date": "Fri, 30 Apr 2021 07:42:23 GMT",
|
1932
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.30",
|
1933
|
+
"version": "9.0.0-alpha.30",
|
1934
|
+
"comments": {
|
1935
|
+
"prerelease": [
|
1936
|
+
{
|
1937
|
+
"comment": "Upgrade typescript to 4.1.5",
|
1938
|
+
"author": "joschect@microsoft.com",
|
1939
|
+
"commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
|
1940
|
+
"package": "@fluentui/react-button"
|
1941
|
+
}
|
1942
|
+
],
|
1943
|
+
"patch": [
|
1944
|
+
{
|
1945
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.2.0",
|
1946
|
+
"author": "joschect@microsoft.com",
|
1947
|
+
"commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
|
1948
|
+
"package": "@fluentui/react-button"
|
1949
|
+
},
|
1950
|
+
{
|
1951
|
+
"comment": "Bump @fluentui/a11y-testing to v0.1.0",
|
1952
|
+
"author": "joschect@microsoft.com",
|
1953
|
+
"commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
|
1954
|
+
"package": "@fluentui/react-button"
|
1955
|
+
},
|
1956
|
+
{
|
1957
|
+
"comment": "Bump @fluentui/keyboard-key to v0.3.0",
|
1958
|
+
"author": "joschect@microsoft.com",
|
1959
|
+
"commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
|
1960
|
+
"package": "@fluentui/react-button"
|
1961
|
+
},
|
1962
|
+
{
|
1963
|
+
"comment": "Bump @fluentui/react-conformance to v0.3.0",
|
1964
|
+
"author": "joschect@microsoft.com",
|
1965
|
+
"commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
|
1966
|
+
"package": "@fluentui/react-button"
|
1967
|
+
},
|
1968
|
+
{
|
1969
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
1970
|
+
"author": "joschect@microsoft.com",
|
1971
|
+
"commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
|
1972
|
+
"package": "@fluentui/react-button"
|
1973
|
+
}
|
1974
|
+
]
|
1975
|
+
}
|
1976
|
+
},
|
1977
|
+
{
|
1978
|
+
"date": "Tue, 27 Apr 2021 07:34:03 GMT",
|
1979
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.29",
|
1980
|
+
"version": "9.0.0-alpha.29",
|
1981
|
+
"comments": {
|
1982
|
+
"prerelease": [
|
1983
|
+
{
|
1984
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.5",
|
1985
|
+
"author": "bsunderhus@microsoft.com",
|
1986
|
+
"commit": "fdb1af09ba60238bb1c3913af6a6a6fe98f49034",
|
1987
|
+
"package": "@fluentui/react-button"
|
1988
|
+
}
|
1989
|
+
]
|
1990
|
+
}
|
1991
|
+
},
|
1992
|
+
{
|
1993
|
+
"date": "Mon, 26 Apr 2021 07:34:31 GMT",
|
1994
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.28",
|
1995
|
+
"version": "9.0.0-alpha.28",
|
1996
|
+
"comments": {
|
1997
|
+
"prerelease": [
|
1998
|
+
{
|
1999
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.4",
|
2000
|
+
"author": "bsunderhus@microsoft.com",
|
2001
|
+
"commit": "76e2027d772bc9d19d3d217c449c5965262f73c4",
|
2002
|
+
"package": "@fluentui/react-button"
|
2003
|
+
}
|
2004
|
+
]
|
2005
|
+
}
|
2006
|
+
},
|
2007
|
+
{
|
2008
|
+
"date": "Fri, 23 Apr 2021 07:37:10 GMT",
|
2009
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.27",
|
2010
|
+
"version": "9.0.0-alpha.27",
|
2011
|
+
"comments": {
|
2012
|
+
"patch": [
|
2013
|
+
{
|
2014
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.1.1",
|
2015
|
+
"author": "olfedias@microsoft.com",
|
2016
|
+
"commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
|
2017
|
+
"package": "@fluentui/react-button"
|
2018
|
+
},
|
2019
|
+
{
|
2020
|
+
"comment": "Bump @fluentui/a11y-testing to v0.1.0",
|
2021
|
+
"author": "olfedias@microsoft.com",
|
2022
|
+
"commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
|
2023
|
+
"package": "@fluentui/react-button"
|
2024
|
+
},
|
2025
|
+
{
|
2026
|
+
"comment": "Bump @fluentui/keyboard-key to v0.2.17",
|
2027
|
+
"author": "olfedias@microsoft.com",
|
2028
|
+
"commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
|
2029
|
+
"package": "@fluentui/react-button"
|
2030
|
+
},
|
2031
|
+
{
|
2032
|
+
"comment": "Bump @fluentui/react-conformance to v0.2.6",
|
2033
|
+
"author": "olfedias@microsoft.com",
|
2034
|
+
"commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
|
2035
|
+
"package": "@fluentui/react-button"
|
2036
|
+
},
|
2037
|
+
{
|
2038
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
2039
|
+
"author": "olfedias@microsoft.com",
|
2040
|
+
"commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
|
2041
|
+
"package": "@fluentui/react-button"
|
2042
|
+
}
|
2043
|
+
]
|
2044
|
+
}
|
2045
|
+
},
|
2046
|
+
{
|
2047
|
+
"date": "Thu, 22 Apr 2021 07:33:28 GMT",
|
2048
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.26",
|
2049
|
+
"version": "9.0.0-alpha.26",
|
2050
|
+
"comments": {
|
2051
|
+
"none": [
|
2052
|
+
{
|
2053
|
+
"comment": "Adds serializer to converged components",
|
2054
|
+
"author": "bsunderhus@microsoft.com",
|
2055
|
+
"commit": "bf7ee8d466296bd5974bd5abf9aaa20868aa9add",
|
2056
|
+
"package": "@fluentui/react-button"
|
2057
|
+
}
|
2058
|
+
],
|
2059
|
+
"prerelease": [
|
2060
|
+
{
|
2061
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.2",
|
2062
|
+
"author": "bsunderhus@microsoft.com",
|
2063
|
+
"commit": "bf7ee8d466296bd5974bd5abf9aaa20868aa9add",
|
2064
|
+
"package": "@fluentui/react-button"
|
2065
|
+
}
|
2066
|
+
]
|
2067
|
+
}
|
2068
|
+
},
|
2069
|
+
{
|
2070
|
+
"date": "Wed, 21 Apr 2021 07:31:50 GMT",
|
2071
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.25",
|
2072
|
+
"version": "9.0.0-alpha.25",
|
2073
|
+
"comments": {
|
2074
|
+
"prerelease": [
|
2075
|
+
{
|
2076
|
+
"comment": "Rename ax() to mergeClasses()",
|
2077
|
+
"author": "miroslav.stastny@microsoft.com",
|
2078
|
+
"commit": "64da065944467537d8f23a97ef4c19c3d60a529b",
|
2079
|
+
"package": "@fluentui/react-button"
|
2080
|
+
}
|
2081
|
+
],
|
2082
|
+
"none": [
|
2083
|
+
{
|
2084
|
+
"comment": "Bump @fluentui/react-conformance to v0.2.5",
|
2085
|
+
"author": "martinhochel@microsoft.com",
|
2086
|
+
"commit": "c12557d08ab5673ec3d3ba9747cfec64f39309eb",
|
2087
|
+
"package": "@fluentui/react-button"
|
2088
|
+
}
|
2089
|
+
]
|
2090
|
+
}
|
2091
|
+
},
|
2092
|
+
{
|
2093
|
+
"date": "Tue, 20 Apr 2021 07:31:35 GMT",
|
2094
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.24",
|
2095
|
+
"version": "9.0.0-alpha.24",
|
2096
|
+
"comments": {
|
2097
|
+
"prerelease": [
|
2098
|
+
{
|
2099
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.23",
|
2100
|
+
"author": "lingfan.gao@microsoft.com",
|
2101
|
+
"commit": "c1e049dbcbf869f0a6e04d00f84dcfa7217eb808",
|
2102
|
+
"package": "@fluentui/react-button"
|
2103
|
+
}
|
2104
|
+
]
|
2105
|
+
}
|
2106
|
+
},
|
2107
|
+
{
|
2108
|
+
"date": "Mon, 19 Apr 2021 07:33:33 GMT",
|
2109
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.23",
|
2110
|
+
"version": "9.0.0-alpha.23",
|
2111
|
+
"comments": {
|
2112
|
+
"none": [
|
2113
|
+
{
|
2114
|
+
"comment": "Remove unneeded react-app-polyfill devDependency",
|
2115
|
+
"author": "elcraig@microsoft.com",
|
2116
|
+
"commit": "fdc32557d49e5d70ea7e4af8957102d415b44547",
|
2117
|
+
"package": "@fluentui/react-button"
|
2118
|
+
}
|
2119
|
+
]
|
2120
|
+
}
|
2121
|
+
},
|
2122
|
+
{
|
2123
|
+
"date": "Fri, 16 Apr 2021 18:08:21 GMT",
|
2124
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.23",
|
2125
|
+
"version": "9.0.0-alpha.23",
|
2126
|
+
"comments": {
|
2127
|
+
"prerelease": [
|
2128
|
+
{
|
2129
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.22",
|
2130
|
+
"author": "bsunderhus@microsoft.com",
|
2131
|
+
"commit": "e158c65f9712556cfcca1e80c7156889885c95b0",
|
2132
|
+
"package": "@fluentui/react-button"
|
2133
|
+
}
|
2134
|
+
]
|
2135
|
+
}
|
2136
|
+
},
|
2137
|
+
{
|
2138
|
+
"date": "Wed, 14 Apr 2021 07:34:12 GMT",
|
2139
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.22",
|
2140
|
+
"version": "9.0.0-alpha.22",
|
2141
|
+
"comments": {
|
2142
|
+
"prerelease": [
|
2143
|
+
{
|
2144
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.21",
|
2145
|
+
"author": "bsunderhus@microsoft.com",
|
2146
|
+
"commit": "1b2e9185653032fed3dce7d3a919f8d6e95550c7",
|
2147
|
+
"package": "@fluentui/react-button"
|
2148
|
+
}
|
2149
|
+
]
|
2150
|
+
}
|
2151
|
+
},
|
2152
|
+
{
|
2153
|
+
"date": "Fri, 09 Apr 2021 23:42:49 GMT",
|
2154
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.21",
|
2155
|
+
"version": "9.0.0-alpha.21",
|
2156
|
+
"comments": {
|
2157
|
+
"none": [
|
2158
|
+
{
|
2159
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.20",
|
2160
|
+
"author": "olfedias@microsoft.com",
|
2161
|
+
"commit": "3febbf40a59f1acb8e37516559fed1dd6f5b62fb",
|
2162
|
+
"package": "@fluentui/react-button"
|
2163
|
+
}
|
2164
|
+
]
|
2165
|
+
}
|
2166
|
+
},
|
2167
|
+
{
|
2168
|
+
"date": "Fri, 09 Apr 2021 07:31:06 GMT",
|
2169
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.21",
|
2170
|
+
"version": "9.0.0-alpha.21",
|
2171
|
+
"comments": {
|
2172
|
+
"prerelease": [
|
2173
|
+
{
|
2174
|
+
"comment": "Button: Re-introducing transparent variant using latest version of makeStyles.",
|
2175
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
2176
|
+
"commit": "76944f590eb63fa92eb835e0b771b6c529deb5c6",
|
2177
|
+
"package": "@fluentui/react-button"
|
2178
|
+
}
|
2179
|
+
]
|
2180
|
+
}
|
2181
|
+
},
|
2182
|
+
{
|
2183
|
+
"date": "Thu, 08 Apr 2021 07:33:06 GMT",
|
2184
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.20",
|
2185
|
+
"version": "9.0.0-alpha.20",
|
2186
|
+
"comments": {
|
2187
|
+
"prerelease": [
|
2188
|
+
{
|
2189
|
+
"comment": "Button: Re-introducing subtle variant using latest version of makeStyles.",
|
2190
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
2191
|
+
"commit": "25e841e469f1a7b33278f8a5dccd2f7865b3a557",
|
2192
|
+
"package": "@fluentui/react-button"
|
2193
|
+
}
|
2194
|
+
]
|
2195
|
+
}
|
2196
|
+
},
|
2197
|
+
{
|
2198
|
+
"date": "Thu, 01 Apr 2021 20:13:37 GMT",
|
2199
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.19",
|
2200
|
+
"version": "9.0.0-alpha.19",
|
2201
|
+
"comments": {
|
2202
|
+
"prerelease": [
|
2203
|
+
{
|
2204
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.18",
|
2205
|
+
"author": "bsunderhus@microsoft.com",
|
2206
|
+
"commit": "dec60bc3ea87901ff8c2c52989301ae8f4229721",
|
2207
|
+
"package": "@fluentui/react-button"
|
2208
|
+
}
|
2209
|
+
]
|
2210
|
+
}
|
2211
|
+
},
|
2212
|
+
{
|
2213
|
+
"date": "Wed, 31 Mar 2021 00:53:43 GMT",
|
2214
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.18",
|
2215
|
+
"version": "9.0.0-alpha.18",
|
2216
|
+
"comments": {
|
2217
|
+
"prerelease": [
|
2218
|
+
{
|
2219
|
+
"comment": "mergeProps was updated to improve type checking; use compat layer until type errors can be fixed",
|
2220
|
+
"author": "behowell@microsoft.com",
|
2221
|
+
"commit": "e45eeaba8deb93e825a9d3f72e87a9c4c9225ea1",
|
2222
|
+
"package": "@fluentui/react-button"
|
2223
|
+
}
|
2224
|
+
],
|
2225
|
+
"patch": [
|
2226
|
+
{
|
2227
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.1.0",
|
2228
|
+
"author": "elcraig@microsoft.com",
|
2229
|
+
"commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
|
2230
|
+
"package": "@fluentui/react-button"
|
2231
|
+
},
|
2232
|
+
{
|
2233
|
+
"comment": "Bump @fluentui/a11y-testing to v0.1.0",
|
2234
|
+
"author": "elcraig@microsoft.com",
|
2235
|
+
"commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
|
2236
|
+
"package": "@fluentui/react-button"
|
2237
|
+
},
|
2238
|
+
{
|
2239
|
+
"comment": "Bump @fluentui/keyboard-key to v0.2.16",
|
2240
|
+
"author": "elcraig@microsoft.com",
|
2241
|
+
"commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
|
2242
|
+
"package": "@fluentui/react-button"
|
2243
|
+
},
|
2244
|
+
{
|
2245
|
+
"comment": "Bump @fluentui/react-conformance to v0.2.5",
|
2246
|
+
"author": "elcraig@microsoft.com",
|
2247
|
+
"commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
|
2248
|
+
"package": "@fluentui/react-button"
|
2249
|
+
},
|
2250
|
+
{
|
2251
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
2252
|
+
"author": "elcraig@microsoft.com",
|
2253
|
+
"commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
|
2254
|
+
"package": "@fluentui/react-button"
|
2255
|
+
}
|
2256
|
+
]
|
2257
|
+
}
|
2258
|
+
},
|
2259
|
+
{
|
2260
|
+
"date": "Tue, 30 Mar 2021 07:34:45 GMT",
|
2261
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.17",
|
2262
|
+
"version": "9.0.0-alpha.17",
|
2263
|
+
"comments": {
|
2264
|
+
"prerelease": [
|
2265
|
+
{
|
2266
|
+
"comment": "chore: restore \"sideEffects\" to enable treeshaking",
|
2267
|
+
"author": "olfedias@microsoft.com",
|
2268
|
+
"commit": "8d6eb6f174660017e96d2c539a08e1d64ccdf4a3",
|
2269
|
+
"package": "@fluentui/react-button"
|
2270
|
+
}
|
2271
|
+
],
|
2272
|
+
"patch": [
|
2273
|
+
{
|
2274
|
+
"comment": "Bump @fluentui/keyboard-key to v0.2.15",
|
2275
|
+
"author": "olfedias@microsoft.com",
|
2276
|
+
"commit": "8d6eb6f174660017e96d2c539a08e1d64ccdf4a3",
|
2277
|
+
"package": "@fluentui/react-button"
|
2278
|
+
}
|
2279
|
+
]
|
2280
|
+
}
|
2281
|
+
},
|
2282
|
+
{
|
2283
|
+
"date": "Fri, 26 Mar 2021 07:32:34 GMT",
|
2284
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.16",
|
2285
|
+
"version": "9.0.0-alpha.16",
|
2286
|
+
"comments": {
|
2287
|
+
"prerelease": [
|
2288
|
+
{
|
2289
|
+
"comment": "ToggleButton: Re-introducing ToggleButton using the latest version of makeStyles.",
|
2290
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
2291
|
+
"commit": "bf3f1e319baaf830102bb5dfa480dbb7b5539506",
|
2292
|
+
"package": "@fluentui/react-button"
|
2293
|
+
},
|
2294
|
+
{
|
2295
|
+
"comment": "Button: Beefing up accessibility tests and cleaning up state management.",
|
2296
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
2297
|
+
"commit": "ce4d441da2c63284a2c1c519a59875c22cd3552f",
|
2298
|
+
"package": "@fluentui/react-button"
|
2299
|
+
}
|
2300
|
+
]
|
2301
|
+
}
|
2302
|
+
},
|
2303
|
+
{
|
2304
|
+
"date": "Thu, 25 Mar 2021 07:33:24 GMT",
|
2305
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.15",
|
2306
|
+
"version": "9.0.0-alpha.15",
|
2307
|
+
"comments": {
|
2308
|
+
"prerelease": [
|
2309
|
+
{
|
2310
|
+
"comment": "Button: Adding SPEC.md and MIGRATION.md and updating README.md",
|
2311
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
2312
|
+
"commit": "f9819c97079f87f98e064821e43abed8f2ef31e5",
|
2313
|
+
"package": "@fluentui/react-button"
|
2314
|
+
},
|
2315
|
+
{
|
2316
|
+
"comment": "CompoundButton: Re-introducing CompoundButton using latest version of makeStyles.",
|
2317
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
2318
|
+
"commit": "28d34d2a88ba8db9a38aa7c9816f3be2dd44f998",
|
2319
|
+
"package": "@fluentui/react-button"
|
2320
|
+
}
|
2321
|
+
]
|
2322
|
+
}
|
2323
|
+
},
|
2324
|
+
{
|
2325
|
+
"date": "Tue, 23 Mar 2021 07:31:43 GMT",
|
2326
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.14",
|
2327
|
+
"version": "9.0.0-alpha.14",
|
2328
|
+
"comments": {
|
2329
|
+
"prerelease": [
|
2330
|
+
{
|
2331
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.10",
|
2332
|
+
"author": "lingfan.gao@microsoft.com",
|
2333
|
+
"commit": "fc0d87258337229e59ec1c1fec87dc91193858f1",
|
2334
|
+
"package": "@fluentui/react-button"
|
2335
|
+
}
|
2336
|
+
]
|
2337
|
+
}
|
2338
|
+
},
|
2339
|
+
{
|
2340
|
+
"date": "Mon, 22 Mar 2021 07:34:09 GMT",
|
2341
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.13",
|
2342
|
+
"version": "9.0.0-alpha.13",
|
2343
|
+
"comments": {
|
2344
|
+
"none": [
|
2345
|
+
{
|
2346
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.12",
|
2347
|
+
"author": "martinhochel@microsoft.com",
|
2348
|
+
"commit": "25c4ce7c54a2a65d3db4e5f2b13785468b669329",
|
2349
|
+
"package": "@fluentui/react-button"
|
2350
|
+
}
|
2351
|
+
]
|
2352
|
+
}
|
2353
|
+
},
|
2354
|
+
{
|
2355
|
+
"date": "Thu, 18 Mar 2021 20:15:34 GMT",
|
2356
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.13",
|
2357
|
+
"version": "9.0.0-alpha.13",
|
2358
|
+
"comments": {
|
2359
|
+
"prerelease": [
|
2360
|
+
{
|
2361
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.9",
|
2362
|
+
"author": "lingfan.gao@microsoft.com",
|
2363
|
+
"commit": "165259181dd79866dc7ae5fa57c10a0f209d668f",
|
2364
|
+
"package": "@fluentui/react-button"
|
2365
|
+
}
|
2366
|
+
]
|
2367
|
+
}
|
2368
|
+
},
|
2369
|
+
{
|
2370
|
+
"date": "Wed, 17 Mar 2021 07:35:44 GMT",
|
2371
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.12",
|
2372
|
+
"version": "9.0.0-alpha.12",
|
2373
|
+
"comments": {
|
2374
|
+
"prerelease": [
|
2375
|
+
{
|
2376
|
+
"comment": "Button: Updates styles from makeStylesCompat to makeStyles.",
|
2377
|
+
"author": "bsunderhus@microsoft.com",
|
2378
|
+
"commit": "8f38c18b9a52bef97c797d284b2d81b727d930ce",
|
2379
|
+
"package": "@fluentui/react-button"
|
2380
|
+
}
|
2381
|
+
],
|
2382
|
+
"none": [
|
2383
|
+
{
|
2384
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.8",
|
2385
|
+
"author": "olfedias@microsoft.com",
|
2386
|
+
"commit": "51902da6d01f0e9a790ca686e32eb94b31ecf733",
|
2387
|
+
"package": "@fluentui/react-button"
|
2388
|
+
},
|
2389
|
+
{
|
2390
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.11",
|
2391
|
+
"author": "olfedias@microsoft.com",
|
2392
|
+
"commit": "51902da6d01f0e9a790ca686e32eb94b31ecf733",
|
2393
|
+
"package": "@fluentui/react-button"
|
2394
|
+
}
|
2395
|
+
]
|
2396
|
+
}
|
2397
|
+
},
|
2398
|
+
{
|
2399
|
+
"date": "Tue, 16 Mar 2021 07:32:44 GMT",
|
2400
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.11",
|
2401
|
+
"version": "9.0.0-alpha.11",
|
2402
|
+
"comments": {
|
2403
|
+
"none": [
|
2404
|
+
{
|
2405
|
+
"comment": "Fix which packages depend on common-styles",
|
2406
|
+
"author": "elcraig@microsoft.com",
|
2407
|
+
"commit": "8c51f4b3b2ca22e4c166bbbd0e98d367c5ba33be",
|
2408
|
+
"package": "@fluentui/react-button"
|
2409
|
+
}
|
2410
|
+
],
|
2411
|
+
"patch": [
|
2412
|
+
{
|
2413
|
+
"comment": "Bump @fluentui/react-conformance to v0.2.4",
|
2414
|
+
"author": "elcraig@microsoft.com",
|
2415
|
+
"commit": "8bbe3d16c5c00716dfcbafa6d693437b8d090da3",
|
2416
|
+
"package": "@fluentui/react-button"
|
2417
|
+
}
|
2418
|
+
]
|
2419
|
+
}
|
2420
|
+
},
|
2421
|
+
{
|
2422
|
+
"date": "Mon, 15 Mar 2021 07:36:20 GMT",
|
2423
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.10",
|
2424
|
+
"version": "9.0.0-alpha.10",
|
2425
|
+
"comments": {
|
2426
|
+
"prerelease": [
|
2427
|
+
{
|
2428
|
+
"comment": "Remove set-version references",
|
2429
|
+
"author": "elcraig@microsoft.com",
|
2430
|
+
"commit": "b0bef818ea07833d9b9797ef26a4b24200ed0307",
|
2431
|
+
"package": "@fluentui/react-button"
|
2432
|
+
}
|
2433
|
+
],
|
2434
|
+
"none": [
|
2435
|
+
{
|
2436
|
+
"comment": "Remove unneeded scripts",
|
2437
|
+
"author": "elcraig@microsoft.com",
|
2438
|
+
"commit": "3b4dd6b9e941da11297cea43c5218a4da2d277d5",
|
2439
|
+
"package": "@fluentui/react-button"
|
2440
|
+
},
|
2441
|
+
{
|
2442
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.10",
|
2443
|
+
"author": "elcraig@microsoft.com",
|
2444
|
+
"commit": "3b4dd6b9e941da11297cea43c5218a4da2d277d5",
|
2445
|
+
"package": "@fluentui/react-button"
|
2446
|
+
},
|
2447
|
+
{
|
2448
|
+
"comment": "Bump @fluentui/react-theme to v9.0.0-alpha.6",
|
2449
|
+
"author": "elcraig@microsoft.com",
|
2450
|
+
"commit": "b0bef818ea07833d9b9797ef26a4b24200ed0307",
|
2451
|
+
"package": "@fluentui/react-button"
|
2452
|
+
},
|
2453
|
+
{
|
2454
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.8",
|
2455
|
+
"author": "elcraig@microsoft.com",
|
2456
|
+
"commit": "b0bef818ea07833d9b9797ef26a4b24200ed0307",
|
2457
|
+
"package": "@fluentui/react-button"
|
2458
|
+
},
|
2459
|
+
{
|
2460
|
+
"comment": "Bump @fluentui/common-styles to v1.0.2",
|
2461
|
+
"author": "elcraig@microsoft.com",
|
2462
|
+
"commit": "3b4dd6b9e941da11297cea43c5218a4da2d277d5",
|
2463
|
+
"package": "@fluentui/react-button"
|
2464
|
+
}
|
2465
|
+
]
|
2466
|
+
}
|
2467
|
+
},
|
2468
|
+
{
|
2469
|
+
"date": "Fri, 12 Mar 2021 20:04:27 GMT",
|
2470
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.9",
|
2471
|
+
"version": "9.0.0-alpha.9",
|
2472
|
+
"comments": {
|
2473
|
+
"none": [
|
2474
|
+
{
|
2475
|
+
"comment": "Move `@types/node` and `@types/webpack-env` devDependencies to root, and remove unneeded references",
|
2476
|
+
"author": "elcraig@microsoft.com",
|
2477
|
+
"commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
|
2478
|
+
"package": "@fluentui/react-button"
|
2479
|
+
},
|
2480
|
+
{
|
2481
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.9",
|
2482
|
+
"author": "elcraig@microsoft.com",
|
2483
|
+
"commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
|
2484
|
+
"package": "@fluentui/react-button"
|
2485
|
+
},
|
2486
|
+
{
|
2487
|
+
"comment": "Bump @fluentui/react-theme to v9.0.0-alpha.5",
|
2488
|
+
"author": "elcraig@microsoft.com",
|
2489
|
+
"commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
|
2490
|
+
"package": "@fluentui/react-button"
|
2491
|
+
},
|
2492
|
+
{
|
2493
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.7",
|
2494
|
+
"author": "elcraig@microsoft.com",
|
2495
|
+
"commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
|
2496
|
+
"package": "@fluentui/react-button"
|
2497
|
+
},
|
2498
|
+
{
|
2499
|
+
"comment": "Bump @fluentui/common-styles to v1.0.2",
|
2500
|
+
"author": "elcraig@microsoft.com",
|
2501
|
+
"commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
|
2502
|
+
"package": "@fluentui/react-button"
|
2503
|
+
}
|
2504
|
+
],
|
2505
|
+
"prerelease": [
|
2506
|
+
{
|
2507
|
+
"comment": "Change makeStyles to makeStylesCompat",
|
2508
|
+
"author": "bsunderhus@microsoft.com",
|
2509
|
+
"commit": "47ed02fa4d7f1ce693bf18a9463c6527e69d2417",
|
2510
|
+
"package": "@fluentui/react-button"
|
2511
|
+
}
|
2512
|
+
],
|
2513
|
+
"patch": [
|
2514
|
+
{
|
2515
|
+
"comment": "Bump @fluentui/react-conformance to v0.2.3",
|
2516
|
+
"author": "martinhochel@microsoft.com",
|
2517
|
+
"commit": "860bb829b416a8ee63fb25d11da7ad9c67d9312c",
|
2518
|
+
"package": "@fluentui/react-button"
|
2519
|
+
}
|
2520
|
+
]
|
2521
|
+
}
|
2522
|
+
},
|
2523
|
+
{
|
2524
|
+
"date": "Wed, 10 Mar 2021 07:34:39 GMT",
|
2525
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.8",
|
2526
|
+
"version": "9.0.0-alpha.8",
|
2527
|
+
"comments": {
|
2528
|
+
"prerelease": [
|
2529
|
+
{
|
2530
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.7",
|
2531
|
+
"author": "lingfan.gao@microsoft.com",
|
2532
|
+
"commit": "458d1a05b3288c5d36da578f954df06f227066bf",
|
2533
|
+
"package": "@fluentui/react-button"
|
2534
|
+
}
|
2535
|
+
]
|
2536
|
+
}
|
2537
|
+
},
|
2538
|
+
{
|
2539
|
+
"date": "Fri, 05 Mar 2021 20:30:59 GMT",
|
2540
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.7",
|
2541
|
+
"version": "9.0.0-alpha.7",
|
2542
|
+
"comments": {
|
2543
|
+
"prerelease": [
|
2544
|
+
{
|
2545
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.6",
|
2546
|
+
"author": "lingfan.gao@microsoft.com",
|
2547
|
+
"commit": "f7b97e9dc1cf0fec0201533042db4befb800cbd0",
|
2548
|
+
"package": "@fluentui/react-button"
|
2549
|
+
}
|
2550
|
+
]
|
2551
|
+
}
|
2552
|
+
},
|
2553
|
+
{
|
2554
|
+
"date": "Wed, 03 Mar 2021 00:10:09 GMT",
|
2555
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.6",
|
2556
|
+
"version": "9.0.0-alpha.6",
|
2557
|
+
"comments": {
|
2558
|
+
"prerelease": [
|
2559
|
+
{
|
2560
|
+
"comment": "Remove set-version dependency from converged components",
|
2561
|
+
"author": "miroslav.stastny@microsoft.com",
|
2562
|
+
"commit": "712ca04cd82ad2b3426762a409cdce05a7cc80fc",
|
2563
|
+
"package": "@fluentui/react-button"
|
2564
|
+
}
|
2565
|
+
],
|
2566
|
+
"patch": [
|
2567
|
+
{
|
2568
|
+
"comment": "Bump @fluentui/common-styles to v1.0.2",
|
2569
|
+
"author": "elcraig@microsoft.com",
|
2570
|
+
"commit": "9fa8d85af3c60daab15f5a91ec876c8648b018f2",
|
2571
|
+
"package": "@fluentui/react-button"
|
2572
|
+
}
|
2573
|
+
]
|
2574
|
+
}
|
2575
|
+
},
|
2576
|
+
{
|
2577
|
+
"date": "Tue, 02 Mar 2021 07:24:27 GMT",
|
2578
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.5",
|
2579
|
+
"version": "9.0.0-alpha.5",
|
2580
|
+
"comments": {
|
2581
|
+
"prerelease": [
|
2582
|
+
{
|
2583
|
+
"comment": "remove unused dependencies",
|
2584
|
+
"author": "olfedias@microsoft.com",
|
2585
|
+
"commit": "529d34473f30680fa35928e0d977434ab2ed2173",
|
2586
|
+
"package": "@fluentui/react-button"
|
2587
|
+
}
|
2588
|
+
]
|
2589
|
+
}
|
2590
|
+
},
|
2591
|
+
{
|
2592
|
+
"date": "Fri, 26 Feb 2021 01:16:27 GMT",
|
2593
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.4",
|
2594
|
+
"version": "9.0.0-alpha.4",
|
2595
|
+
"comments": {
|
2596
|
+
"prerelease": [
|
2597
|
+
{
|
2598
|
+
"comment": "Update references to major-bumped packages",
|
2599
|
+
"author": "elcraig@microsoft.com",
|
2600
|
+
"commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
|
2601
|
+
"package": "@fluentui/react-button"
|
2602
|
+
}
|
2603
|
+
],
|
2604
|
+
"patch": [
|
2605
|
+
{
|
2606
|
+
"comment": "Bump @fluentui/common-styles to v1.0.1",
|
2607
|
+
"author": "elcraig@microsoft.com",
|
2608
|
+
"commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
|
2609
|
+
"package": "@fluentui/react-button"
|
2610
|
+
},
|
2611
|
+
{
|
2612
|
+
"comment": "Bump @fluentui/eslint-plugin to v1.0.1",
|
2613
|
+
"author": "elcraig@microsoft.com",
|
2614
|
+
"commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
|
2615
|
+
"package": "@fluentui/react-button"
|
2616
|
+
},
|
2617
|
+
{
|
2618
|
+
"comment": "Bump @fluentui/a11y-testing to v0.1.0",
|
2619
|
+
"author": "elcraig@microsoft.com",
|
2620
|
+
"commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
|
2621
|
+
"package": "@fluentui/react-button"
|
2622
|
+
},
|
2623
|
+
{
|
2624
|
+
"comment": "Bump @fluentui/keyboard-key to v0.2.14",
|
2625
|
+
"author": "elcraig@microsoft.com",
|
2626
|
+
"commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
|
2627
|
+
"package": "@fluentui/react-button"
|
2628
|
+
},
|
2629
|
+
{
|
2630
|
+
"comment": "Bump @fluentui/react-conformance to v0.2.2",
|
2631
|
+
"author": "elcraig@microsoft.com",
|
2632
|
+
"commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
|
2633
|
+
"package": "@fluentui/react-button"
|
2634
|
+
},
|
2635
|
+
{
|
2636
|
+
"comment": "Bump @fluentui/scripts to v1.0.0",
|
2637
|
+
"author": "elcraig@microsoft.com",
|
2638
|
+
"commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
|
2639
|
+
"package": "@fluentui/react-button"
|
2640
|
+
},
|
2641
|
+
{
|
2642
|
+
"comment": "Bump @fluentui/react-icons-mdl2 to v1.0.1",
|
2643
|
+
"author": "elcraig@microsoft.com",
|
2644
|
+
"commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
|
2645
|
+
"package": "@fluentui/react-button"
|
2646
|
+
},
|
2647
|
+
{
|
2648
|
+
"comment": "Bump @fluentui/set-version to v8.0.1",
|
2649
|
+
"author": "elcraig@microsoft.com",
|
2650
|
+
"commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
|
2651
|
+
"package": "@fluentui/react-button"
|
2652
|
+
}
|
2653
|
+
]
|
2654
|
+
}
|
2655
|
+
},
|
2656
|
+
{
|
2657
|
+
"date": "Thu, 25 Feb 2021 20:16:39 GMT",
|
2658
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.3",
|
2659
|
+
"version": "9.0.0-alpha.3",
|
2660
|
+
"comments": {
|
2661
|
+
"none": [
|
2662
|
+
{
|
2663
|
+
"comment": "remove old demo app",
|
2664
|
+
"author": "olfedias@microsoft.com",
|
2665
|
+
"commit": "9f99ccbf4bbfea823581b0f74a0b5f3f0640176c",
|
2666
|
+
"package": "@fluentui/react-button"
|
2667
|
+
}
|
2668
|
+
],
|
2669
|
+
"prerelease": [
|
2670
|
+
{
|
2671
|
+
"comment": "Trim react-button down to converged styles and api",
|
2672
|
+
"author": "me@levithomason.com",
|
2673
|
+
"commit": "81b5766184a14b880727da7ae6ff2aea92b0ff83",
|
2674
|
+
"package": "@fluentui/react-button"
|
2675
|
+
}
|
2676
|
+
]
|
2677
|
+
}
|
2678
|
+
},
|
2679
|
+
{
|
2680
|
+
"date": "Thu, 25 Feb 2021 01:15:27 GMT",
|
2681
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.2",
|
2682
|
+
"version": "9.0.0-alpha.2",
|
2683
|
+
"comments": {
|
2684
|
+
"none": [
|
2685
|
+
{
|
2686
|
+
"comment": "make @fluentui/react-conformance public",
|
2687
|
+
"author": "altinokd@microsoft.com",
|
2688
|
+
"commit": "9de2c9938c00408da7746d4b3f6fe7f80b37e37f",
|
2689
|
+
"package": "@fluentui/react-button"
|
2690
|
+
}
|
2691
|
+
],
|
2692
|
+
"patch": [
|
2693
|
+
{
|
2694
|
+
"comment": "Bump @fluentui/react-conformance to v0.2.1",
|
2695
|
+
"author": "altinokd@microsoft.com",
|
2696
|
+
"commit": "9de2c9938c00408da7746d4b3f6fe7f80b37e37f",
|
2697
|
+
"package": "@fluentui/react-button"
|
2698
|
+
}
|
2699
|
+
]
|
2700
|
+
}
|
2701
|
+
},
|
2702
|
+
{
|
2703
|
+
"date": "Wed, 24 Feb 2021 00:05:29 GMT",
|
2704
|
+
"tag": "@fluentui/react-button_v9.0.0-alpha.1",
|
2705
|
+
"version": "9.0.0-alpha.1",
|
2706
|
+
"comments": {
|
2707
|
+
"prerelease": [
|
2708
|
+
{
|
2709
|
+
"comment": "bump version to v9",
|
2710
|
+
"author": "olfedias@microsoft.com",
|
2711
|
+
"commit": "74da15f2f1fb10fe089fcaef24a47ac5dba89ad2",
|
2712
|
+
"package": "@fluentui/react-button"
|
2713
|
+
}
|
2714
|
+
]
|
2715
|
+
}
|
2716
|
+
},
|
2717
|
+
{
|
2718
|
+
"date": "Mon, 22 Feb 2021 12:26:22 GMT",
|
2719
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.35",
|
2720
|
+
"version": "1.0.0-beta.35",
|
2721
|
+
"comments": {
|
2722
|
+
"prerelease": [
|
2723
|
+
{
|
2724
|
+
"comment": "Breaks dependency on react-hooks for convergence",
|
2725
|
+
"author": "lingfan.gao@microsoft.com",
|
2726
|
+
"commit": "68bc4c7d68b5c01022658fcc485342670d56df39",
|
2727
|
+
"package": "@fluentui/react-button"
|
2728
|
+
}
|
2729
|
+
],
|
2730
|
+
"none": [
|
2731
|
+
{
|
2732
|
+
"comment": "Bump @fluentui/react-utilities to v0.4.0",
|
2733
|
+
"author": "elcraig@microsoft.com",
|
2734
|
+
"commit": "a37bab178f676de967b937a8bad1a309e3e67fd8",
|
2735
|
+
"package": "@fluentui/react-button"
|
2736
|
+
},
|
2737
|
+
{
|
2738
|
+
"comment": "Bump @fluentui/react-theme-provider to v1.0.0-beta.27",
|
2739
|
+
"author": "elcraig@microsoft.com",
|
2740
|
+
"commit": "a37bab178f676de967b937a8bad1a309e3e67fd8",
|
2741
|
+
"package": "@fluentui/react-button"
|
2742
|
+
},
|
2743
|
+
{
|
2744
|
+
"comment": "Bump @fluentui/react-icons-mdl2 to v1.0.0-beta.17",
|
2745
|
+
"author": "elcraig@microsoft.com",
|
2746
|
+
"commit": "6fb020ab622a0fd18c47173d1a38eb046c7ebeaa",
|
2747
|
+
"package": "@fluentui/react-button"
|
2748
|
+
}
|
2749
|
+
]
|
2750
|
+
}
|
2751
|
+
},
|
2752
|
+
{
|
2753
|
+
"date": "Thu, 18 Feb 2021 19:38:50 GMT",
|
2754
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.34",
|
2755
|
+
"version": "1.0.0-beta.34",
|
2756
|
+
"comments": {
|
2757
|
+
"prerelease": [
|
2758
|
+
{
|
2759
|
+
"comment": "Allow React 17 in peerDependencies",
|
2760
|
+
"author": "elcraig@microsoft.com",
|
2761
|
+
"commit": "3b7379fde2d54e677a1d65ae86468bb5fdaf9fa4",
|
2762
|
+
"package": "@fluentui/react-button"
|
2763
|
+
},
|
2764
|
+
{
|
2765
|
+
"comment": "Button: Renaming ghost prop to subtle.",
|
2766
|
+
"author": "humbertomakotomorimoto@gmail.com",
|
2767
|
+
"commit": "5c0512ff8e6c7721df14ef19cc312eb8cec8c4c5",
|
2768
|
+
"package": "@fluentui/react-button"
|
2769
|
+
}
|
2770
|
+
],
|
2771
|
+
"none": [
|
2772
|
+
{
|
2773
|
+
"comment": "Bump @fluentui/react-icons-mdl2 to v1.0.0-beta.16",
|
2774
|
+
"author": "elcraig@microsoft.com",
|
2775
|
+
"commit": "3b7379fde2d54e677a1d65ae86468bb5fdaf9fa4",
|
2776
|
+
"package": "@fluentui/react-button"
|
2777
|
+
},
|
2778
|
+
{
|
2779
|
+
"comment": "Bump @fluentui/react-theme-provider to v1.0.0-beta.26",
|
2780
|
+
"author": "elcraig@microsoft.com",
|
2781
|
+
"commit": "3b7379fde2d54e677a1d65ae86468bb5fdaf9fa4",
|
2782
|
+
"package": "@fluentui/react-button"
|
2783
|
+
}
|
2784
|
+
],
|
2785
|
+
"patch": [
|
2786
|
+
{
|
2787
|
+
"comment": "Bump @fluentui/react-utilities to v0.3.1",
|
2788
|
+
"author": "elcraig@microsoft.com",
|
2789
|
+
"commit": "3b7379fde2d54e677a1d65ae86468bb5fdaf9fa4",
|
2790
|
+
"package": "@fluentui/react-button"
|
2791
|
+
}
|
2792
|
+
]
|
2793
|
+
}
|
2794
|
+
},
|
2795
|
+
{
|
2796
|
+
"date": "Thu, 18 Feb 2021 12:27:34 GMT",
|
2797
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.33",
|
2798
|
+
"version": "1.0.0-beta.33",
|
2799
|
+
"comments": {
|
2800
|
+
"prerelease": [
|
2801
|
+
{
|
2802
|
+
"comment": "use @fluentui/react-utilities instead of @fluentui/react-utils",
|
2803
|
+
"author": "olfedias@microsoft.com",
|
2804
|
+
"commit": "e0d4772fbaff0afd7ae0a2f85b53c4ca3831a701",
|
2805
|
+
"package": "@fluentui/react-button"
|
2806
|
+
},
|
2807
|
+
{
|
2808
|
+
"comment": "Cleaning up state function.",
|
2809
|
+
"author": "humbertomakotomorimoto@gmail.com",
|
2810
|
+
"commit": "28cd71a2a8ce9cf2398b45335a49621507b8c55d",
|
2811
|
+
"package": "@fluentui/react-button"
|
2812
|
+
},
|
2813
|
+
{
|
2814
|
+
"comment": "SplitButton: Adding the ability to open the menu while focusing on the primary action button by pressing Alt+Down.",
|
2815
|
+
"author": "humbertomakotomorimoto@gmail.com",
|
2816
|
+
"commit": "028440c2b7b472cd336d26301e30ecd8f99f7adc",
|
2817
|
+
"package": "@fluentui/react-button"
|
2818
|
+
}
|
2819
|
+
],
|
2820
|
+
"none": [
|
2821
|
+
{
|
2822
|
+
"comment": "Bump @fluentui/react-icons-mdl2 to v1.0.0-beta.15",
|
2823
|
+
"author": "elcraig@microsoft.com",
|
2824
|
+
"commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0",
|
2825
|
+
"package": "@fluentui/react-button"
|
2826
|
+
},
|
2827
|
+
{
|
2828
|
+
"comment": "Bump @fluentui/react-theme-provider to v1.0.0-beta.25",
|
2829
|
+
"author": "olfedias@microsoft.com",
|
2830
|
+
"commit": "e0d4772fbaff0afd7ae0a2f85b53c4ca3831a701",
|
2831
|
+
"package": "@fluentui/react-button"
|
2832
|
+
},
|
2833
|
+
{
|
2834
|
+
"comment": "Bump @fluentui/react-utilities to v0.3.0",
|
2835
|
+
"author": "olfedias@microsoft.com",
|
2836
|
+
"commit": "e0d4772fbaff0afd7ae0a2f85b53c4ca3831a701",
|
2837
|
+
"package": "@fluentui/react-button"
|
2838
|
+
},
|
2839
|
+
{
|
2840
|
+
"comment": "Bump @fluentui/keyboard-key to v0.2.13",
|
2841
|
+
"author": "elcraig@microsoft.com",
|
2842
|
+
"commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0",
|
2843
|
+
"package": "@fluentui/react-button"
|
2844
|
+
}
|
2845
|
+
]
|
2846
|
+
}
|
2847
|
+
},
|
2848
|
+
{
|
2849
|
+
"date": "Wed, 17 Feb 2021 12:21:39 GMT",
|
2850
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.32",
|
2851
|
+
"version": "1.0.0-beta.32",
|
2852
|
+
"comments": {
|
2853
|
+
"none": [
|
2854
|
+
{
|
2855
|
+
"comment": "chore: apply single version policy on jest",
|
2856
|
+
"author": "martinhochel@microsoft.com",
|
2857
|
+
"commit": "0de01d003589b5e2f166bc070729dca20125a091",
|
2858
|
+
"package": "@fluentui/react-button"
|
2859
|
+
}
|
2860
|
+
]
|
2861
|
+
}
|
2862
|
+
},
|
2863
|
+
{
|
2864
|
+
"date": "Mon, 15 Feb 2021 12:22:00 GMT",
|
2865
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.32",
|
2866
|
+
"version": "1.0.0-beta.32",
|
2867
|
+
"comments": {
|
2868
|
+
"prerelease": [
|
2869
|
+
{
|
2870
|
+
"comment": "remove unused temporary types",
|
2871
|
+
"author": "olfedias@microsoft.com",
|
2872
|
+
"commit": "52f6bb844c5dece1af576da1a34f9230c50432d6",
|
2873
|
+
"package": "@fluentui/react-button"
|
2874
|
+
}
|
2875
|
+
],
|
2876
|
+
"none": [
|
2877
|
+
{
|
2878
|
+
"comment": "Bump @fluentui/react-theme-provider to v1.0.0-beta.24",
|
2879
|
+
"author": "xgao@microsoft.com",
|
2880
|
+
"commit": "d5a5a4f26ce900b3e1b3c0f6c46a17c2e3430439",
|
2881
|
+
"package": "@fluentui/react-button"
|
2882
|
+
},
|
2883
|
+
{
|
2884
|
+
"comment": "Bump @fluentui/react-icons-mdl2 to v1.0.0-beta.14",
|
2885
|
+
"author": "xgao@microsoft.com",
|
2886
|
+
"commit": "d5a5a4f26ce900b3e1b3c0f6c46a17c2e3430439",
|
2887
|
+
"package": "@fluentui/react-button"
|
2888
|
+
}
|
2889
|
+
]
|
2890
|
+
}
|
2891
|
+
},
|
2892
|
+
{
|
2893
|
+
"date": "Fri, 12 Feb 2021 12:26:20 GMT",
|
2894
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.31",
|
2895
|
+
"version": "1.0.0-beta.31",
|
2896
|
+
"comments": {
|
2897
|
+
"prerelease": [
|
2898
|
+
{
|
2899
|
+
"comment": "Updated typings",
|
2900
|
+
"author": "lingfan.gao@microsoft.com",
|
2901
|
+
"commit": "1a358e08d1a3a767e5018b671d5509d82642179d",
|
2902
|
+
"package": "@fluentui/react-button"
|
2903
|
+
},
|
2904
|
+
{
|
2905
|
+
"comment": "Remove theming logic/interface which are unrelated to v8 release from @fluentui/theme package..",
|
2906
|
+
"author": "xgao@microsoft.com",
|
2907
|
+
"commit": "84f36ddd24db3546e4ccb129a60f7f7f98ceefef",
|
2908
|
+
"package": "@fluentui/react-button"
|
2909
|
+
}
|
2910
|
+
],
|
2911
|
+
"patch": [
|
2912
|
+
{
|
2913
|
+
"comment": "Bump @fluentui/react-utils to v0.3.1",
|
2914
|
+
"author": "lingfan.gao@microsoft.com",
|
2915
|
+
"commit": "8ee2abdf839b14a45598ded245e0d0865618f4bb",
|
2916
|
+
"package": "@fluentui/react-button"
|
2917
|
+
}
|
2918
|
+
],
|
2919
|
+
"none": [
|
2920
|
+
{
|
2921
|
+
"comment": "Bump @fluentui/react-icons-mdl2 to v1.0.0-beta.13",
|
2922
|
+
"author": "xgao@microsoft.com",
|
2923
|
+
"commit": "84f36ddd24db3546e4ccb129a60f7f7f98ceefef",
|
2924
|
+
"package": "@fluentui/react-button"
|
2925
|
+
}
|
2926
|
+
]
|
2927
|
+
}
|
2928
|
+
},
|
2929
|
+
{
|
2930
|
+
"date": "Thu, 11 Feb 2021 12:18:41 GMT",
|
2931
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.30",
|
2932
|
+
"version": "1.0.0-beta.30",
|
2933
|
+
"comments": {
|
2934
|
+
"none": [
|
2935
|
+
{
|
2936
|
+
"comment": "Bump @fluentui/a11y-testing to v0.1.0",
|
2937
|
+
"author": "martinhochel@microsoft.com",
|
2938
|
+
"commit": "7566015a7edd355b4fcd3796bc8f44f732ef0877",
|
2939
|
+
"package": "@fluentui/react-button"
|
2940
|
+
}
|
2941
|
+
]
|
2942
|
+
}
|
2943
|
+
},
|
2944
|
+
{
|
2945
|
+
"date": "Thu, 11 Feb 2021 00:58:10 GMT",
|
2946
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.30",
|
2947
|
+
"version": "1.0.0-beta.30",
|
2948
|
+
"comments": {
|
2949
|
+
"prerelease": [
|
2950
|
+
{
|
2951
|
+
"comment": "Bump @fluentui/react-icons-mdl2 to v1.0.0-beta.13",
|
2952
|
+
"author": "xgao@microsoft.com",
|
2953
|
+
"commit": "69357e7a30d4c282ad82d2ecf4da6fc4b942ab99",
|
2954
|
+
"package": "@fluentui/react-button"
|
2955
|
+
}
|
2956
|
+
],
|
2957
|
+
"none": [
|
2958
|
+
{
|
2959
|
+
"comment": "Bump @fluentui/react-theme-provider to v1.0.0-beta.22",
|
2960
|
+
"author": "xgao@microsoft.com",
|
2961
|
+
"commit": "69357e7a30d4c282ad82d2ecf4da6fc4b942ab99",
|
2962
|
+
"package": "@fluentui/react-button"
|
2963
|
+
}
|
2964
|
+
]
|
2965
|
+
}
|
2966
|
+
},
|
2967
|
+
{
|
2968
|
+
"date": "Tue, 09 Feb 2021 00:56:52 GMT",
|
2969
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.29",
|
2970
|
+
"version": "1.0.0-beta.29",
|
2971
|
+
"comments": {
|
2972
|
+
"prerelease": [
|
2973
|
+
{
|
2974
|
+
"comment": "MenuButton: Adding persistMenu prop to allow for constant rendering of the Menu.",
|
2975
|
+
"author": "humbertomakotomorimoto@gmail.com",
|
2976
|
+
"commit": "0f46d91d5de073dc025dc8a137a8caa2eda21a08",
|
2977
|
+
"package": "@fluentui/react-button"
|
2978
|
+
}
|
2979
|
+
],
|
2980
|
+
"patch": [
|
2981
|
+
{
|
2982
|
+
"comment": "Bump @fluentui/react-utils to v0.3.0",
|
2983
|
+
"author": "lingfan.gao@microsoft.com",
|
2984
|
+
"commit": "fe4959d22fec3382fa743b396f671b1b63a26b9e",
|
2985
|
+
"package": "@fluentui/react-button"
|
2986
|
+
}
|
2987
|
+
]
|
2988
|
+
}
|
2989
|
+
},
|
2990
|
+
{
|
2991
|
+
"date": "Mon, 08 Feb 2021 12:23:08 GMT",
|
2992
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.28",
|
2993
|
+
"version": "1.0.0-beta.28",
|
2994
|
+
"comments": {
|
2995
|
+
"prerelease": [
|
2996
|
+
{
|
2997
|
+
"comment": "Bump @fluentui/react-theme-provider to v1.0.0-beta.20",
|
2998
|
+
"author": "miroslav.stastny@microsoft.com",
|
2999
|
+
"commit": "bca3d0d79accb3675bf3dfd49c0297e646b91d2c",
|
3000
|
+
"package": "@fluentui/react-button"
|
3001
|
+
}
|
3002
|
+
]
|
3003
|
+
}
|
3004
|
+
},
|
3005
|
+
{
|
3006
|
+
"date": "Wed, 03 Feb 2021 05:51:40 GMT",
|
3007
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.27",
|
3008
|
+
"version": "1.0.0-beta.27",
|
3009
|
+
"comments": {
|
3010
|
+
"prerelease": [
|
3011
|
+
{
|
3012
|
+
"comment": "SplitButton: Using menuButtonRef prop correctly when handling state.",
|
3013
|
+
"author": "humbertomakotomorimoto@gmail.com",
|
3014
|
+
"commit": "a9b240637a681a899f996547919e6b63a5a4f32a",
|
3015
|
+
"package": "@fluentui/react-button"
|
3016
|
+
}
|
3017
|
+
],
|
3018
|
+
"none": [
|
3019
|
+
{
|
3020
|
+
"comment": "refactor: remove unused .npmrc in packages",
|
3021
|
+
"author": "hantatsang@gmail.com",
|
3022
|
+
"commit": "c688ee2ea6f192c4874974ebf11598523ccf6db9",
|
3023
|
+
"package": "@fluentui/react-button"
|
3024
|
+
}
|
3025
|
+
]
|
3026
|
+
}
|
3027
|
+
},
|
3028
|
+
{
|
3029
|
+
"date": "Tue, 02 Feb 2021 12:21:54 GMT",
|
3030
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.26",
|
3031
|
+
"version": "1.0.0-beta.26",
|
3032
|
+
"comments": {
|
3033
|
+
"prerelease": [
|
3034
|
+
{
|
3035
|
+
"comment": "adding accessibility related tests into react-button package",
|
3036
|
+
"author": "milanturon@centrum.cz",
|
3037
|
+
"commit": "983940e05d287b0affc0c2ccbeef89415843ef35",
|
3038
|
+
"package": "@fluentui/react-button"
|
3039
|
+
},
|
3040
|
+
{
|
3041
|
+
"comment": "use a compat version of ThemeProvider",
|
3042
|
+
"author": "olfedias@microsoft.com",
|
3043
|
+
"commit": "27074a29ffdf4d437dc4d6fcb347effe9fcb195f",
|
3044
|
+
"package": "@fluentui/react-button"
|
3045
|
+
}
|
3046
|
+
]
|
3047
|
+
}
|
3048
|
+
},
|
3049
|
+
{
|
3050
|
+
"date": "Mon, 01 Feb 2021 12:23:48 GMT",
|
3051
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.25",
|
3052
|
+
"version": "1.0.0-beta.25",
|
3053
|
+
"comments": {
|
3054
|
+
"prerelease": [
|
3055
|
+
{
|
3056
|
+
"comment": "Extract compose/next to react-utils",
|
3057
|
+
"author": "lingfan.gao@microsoft.com",
|
3058
|
+
"commit": "f4917ffe3172175eaa332448032d27c64319b679",
|
3059
|
+
"package": "@fluentui/react-button"
|
3060
|
+
}
|
3061
|
+
]
|
3062
|
+
}
|
3063
|
+
},
|
3064
|
+
{
|
3065
|
+
"date": "Thu, 28 Jan 2021 12:25:56 GMT",
|
3066
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.24",
|
3067
|
+
"version": "1.0.0-beta.24",
|
3068
|
+
"comments": {
|
3069
|
+
"none": [
|
3070
|
+
{
|
3071
|
+
"comment": "Delete update-api script which is no longer needed",
|
3072
|
+
"author": "elcraig@microsoft.com",
|
3073
|
+
"commit": "943a9ef5768a9cd77ade84217d142f93b1be6127",
|
3074
|
+
"package": "@fluentui/react-button"
|
3075
|
+
},
|
3076
|
+
{
|
3077
|
+
"comment": "Remove incorrect mock of requestAnimationFrame",
|
3078
|
+
"author": "elcraig@microsoft.com",
|
3079
|
+
"commit": "6bd0ce75decd9f62c40967bd7a59bfff960a0105",
|
3080
|
+
"package": "@fluentui/react-button"
|
3081
|
+
}
|
3082
|
+
],
|
3083
|
+
"prerelease": [
|
3084
|
+
{
|
3085
|
+
"comment": "Updating to webpack 5, latest typings, latest loaders and plugins.",
|
3086
|
+
"author": "dzearing@microsoft.com",
|
3087
|
+
"commit": "9c2c4a61c7d9eb8d153945ff57962118b569ea5b",
|
3088
|
+
"package": "@fluentui/react-button"
|
3089
|
+
},
|
3090
|
+
{
|
3091
|
+
"comment": "ToggleButton: Replacing use of pressed semanticColors with checked semanticColors for checked states.",
|
3092
|
+
"author": "humbertomakotomorimoto@gmail.com",
|
3093
|
+
"commit": "94b0ffe03b908aeeb1d318a8c8c05018a2f94790",
|
3094
|
+
"package": "@fluentui/react-button"
|
3095
|
+
}
|
3096
|
+
]
|
3097
|
+
}
|
3098
|
+
},
|
3099
|
+
{
|
3100
|
+
"date": "Sat, 23 Jan 2021 05:20:07 GMT",
|
3101
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.23",
|
3102
|
+
"version": "1.0.0-beta.23",
|
3103
|
+
"comments": {
|
3104
|
+
"prerelease": [
|
3105
|
+
{
|
3106
|
+
"comment": "Button: Adding missing css variables for opacity in Button and borderColor in checked state of ToggleButton.",
|
3107
|
+
"author": "humbertomakotomorimoto@gmail.com",
|
3108
|
+
"commit": "a3a5f5331ea6691af6ef0197742247a9bc2e7859",
|
3109
|
+
"package": "@fluentui/react-button"
|
3110
|
+
}
|
3111
|
+
]
|
3112
|
+
}
|
3113
|
+
},
|
3114
|
+
{
|
3115
|
+
"date": "Fri, 22 Jan 2021 12:24:49 GMT",
|
3116
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.22",
|
3117
|
+
"version": "1.0.0-beta.22",
|
3118
|
+
"comments": {
|
3119
|
+
"prerelease": [
|
3120
|
+
{
|
3121
|
+
"comment": "Button: Re-exporting MenuContext from react-button to avoid fragility in package versions usage.",
|
3122
|
+
"author": "humbertomakotomorimoto@gmail.com",
|
3123
|
+
"commit": "58b29c4a4448e7c7228a0138ccfe8ee683729c27",
|
3124
|
+
"package": "@fluentui/react-button"
|
3125
|
+
}
|
3126
|
+
]
|
3127
|
+
}
|
3128
|
+
},
|
3129
|
+
{
|
3130
|
+
"date": "Thu, 21 Jan 2021 12:36:12 GMT",
|
3131
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.21",
|
3132
|
+
"version": "1.0.0-beta.21",
|
3133
|
+
"comments": {
|
3134
|
+
"prerelease": [
|
3135
|
+
{
|
3136
|
+
"comment": "Button: Enable pointer-events so that tooltip can be attached to disabledFocusable Button.",
|
3137
|
+
"author": "jukapsia@microsoft.com",
|
3138
|
+
"commit": "08271834459c58e5beafc5e7b005591ee901aeb9",
|
3139
|
+
"package": "@fluentui/react-button"
|
3140
|
+
},
|
3141
|
+
{
|
3142
|
+
"comment": " Updating dev dependencies.",
|
3143
|
+
"author": "dzearing@microsoft.com",
|
3144
|
+
"commit": "f7813725750ecc893ca37792bbb004e554591279",
|
3145
|
+
"package": "@fluentui/react-button"
|
3146
|
+
}
|
3147
|
+
]
|
3148
|
+
}
|
3149
|
+
},
|
3150
|
+
{
|
3151
|
+
"date": "Thu, 14 Jan 2021 12:31:15 GMT",
|
3152
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.19",
|
3153
|
+
"version": "1.0.0-beta.19",
|
3154
|
+
"comments": {
|
3155
|
+
"prerelease": [
|
3156
|
+
{
|
3157
|
+
"comment": "Button: Adding disabledFocusable prop to allow for scenarios where Button has disabled styling but is focusable.",
|
3158
|
+
"author": "humbertomakotomorimoto@gmail.com",
|
3159
|
+
"commit": "48d30d84067583480c05c690d842c79a4ee9f87d",
|
3160
|
+
"package": "@fluentui/react-button"
|
3161
|
+
}
|
3162
|
+
]
|
3163
|
+
}
|
3164
|
+
},
|
3165
|
+
{
|
3166
|
+
"date": "Fri, 11 Dec 2020 12:28:01 GMT",
|
3167
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.17",
|
3168
|
+
"version": "1.0.0-beta.17",
|
3169
|
+
"comments": {
|
3170
|
+
"prerelease": [
|
3171
|
+
{
|
3172
|
+
"comment": "Update react-button readme to not say it's officially releasing with v8",
|
3173
|
+
"author": "elcraig@microsoft.com",
|
3174
|
+
"commit": "45719f18d7088d02eecf4a17c61718b15cf60ee0",
|
3175
|
+
"package": "@fluentui/react-button"
|
3176
|
+
}
|
3177
|
+
]
|
3178
|
+
}
|
3179
|
+
},
|
3180
|
+
{
|
3181
|
+
"date": "Tue, 01 Dec 2020 12:38:05 GMT",
|
3182
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.14",
|
3183
|
+
"version": "1.0.0-beta.14",
|
3184
|
+
"comments": {
|
3185
|
+
"prerelease": [
|
3186
|
+
{
|
3187
|
+
"comment": "Moving comment to correct place.",
|
3188
|
+
"author": "humbertomakotomorimoto@gmail.com",
|
3189
|
+
"commit": "73da5f7dff44cd57a23c12f91c5210399a9f054e",
|
3190
|
+
"package": "@fluentui/react-button"
|
3191
|
+
}
|
3192
|
+
]
|
3193
|
+
}
|
3194
|
+
},
|
3195
|
+
{
|
3196
|
+
"date": "Mon, 23 Nov 2020 12:31:40 GMT",
|
3197
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.13",
|
3198
|
+
"version": "1.0.0-beta.13",
|
3199
|
+
"comments": {
|
3200
|
+
"prerelease": [
|
3201
|
+
{
|
3202
|
+
"comment": "Update variants to not use css variables for global tokens so button is themed without ThemeProvider",
|
3203
|
+
"author": "xgao@microsoft.com",
|
3204
|
+
"commit": "8f026356eb3228e0a156aa7a54aa35f06f55b7f2",
|
3205
|
+
"package": "@fluentui/react-button"
|
3206
|
+
}
|
3207
|
+
]
|
3208
|
+
}
|
3209
|
+
},
|
3210
|
+
{
|
3211
|
+
"date": "Wed, 18 Nov 2020 12:30:07 GMT",
|
3212
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.12",
|
3213
|
+
"version": "1.0.0-beta.12",
|
3214
|
+
"comments": {
|
3215
|
+
"prerelease": [
|
3216
|
+
{
|
3217
|
+
"comment": "Updating button hooks to return state only; render function should be imported separately.",
|
3218
|
+
"author": "dzearing@hotmail.com",
|
3219
|
+
"commit": "16bb581c41bc50a285f39791e21da71d1e6c0441",
|
3220
|
+
"package": "@fluentui/react-button"
|
3221
|
+
}
|
3222
|
+
]
|
3223
|
+
}
|
3224
|
+
},
|
3225
|
+
{
|
3226
|
+
"date": "Tue, 17 Nov 2020 12:36:24 GMT",
|
3227
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.11",
|
3228
|
+
"version": "1.0.0-beta.11",
|
3229
|
+
"comments": {
|
3230
|
+
"prerelease": [
|
3231
|
+
{
|
3232
|
+
"comment": "Updating arguments of style hook. ",
|
3233
|
+
"author": "dzearing@hotmail.com",
|
3234
|
+
"commit": "c170c8c0891fd77ea5572f5e922a15efcfeeccab",
|
3235
|
+
"package": "@fluentui/react-button"
|
3236
|
+
},
|
3237
|
+
{
|
3238
|
+
"comment": "Updating classes hooks derived from Button to actually derive from Button.",
|
3239
|
+
"author": "xgao@microsoft.com",
|
3240
|
+
"commit": "79ff394998a9917d69f6d3262ffcc931e189e648",
|
3241
|
+
"package": "@fluentui/react-button"
|
3242
|
+
}
|
3243
|
+
]
|
3244
|
+
}
|
3245
|
+
},
|
3246
|
+
{
|
3247
|
+
"date": "Fri, 06 Nov 2020 12:34:34 GMT",
|
3248
|
+
"tag": "@fluentui/react-button_v1.0.0-beta.9",
|
3249
|
+
"version": "1.0.0-beta.9",
|
3250
|
+
"comments": {
|
3251
|
+
"prerelease": [
|
3252
|
+
{
|
3253
|
+
"comment": "Moving MenuContext outside of @fluentui/react-button and into @fluentui/react-shared-contexts.",
|
3254
|
+
"author": "humbertomakotomorimoto@gmail.com",
|
3255
|
+
"commit": "beb55393551e4e06a3864a6e2351c7cad7777dd6",
|
3256
|
+
"package": "@fluentui/react-button"
|
3257
|
+
}
|
3258
|
+
]
|
3259
|
+
}
|
3260
|
+
},
|
3261
|
+
{
|
3262
|
+
"date": "Thu, 05 Nov 2020 12:29:43 GMT",
|
6
3263
|
"tag": "@fluentui/react-button_v1.0.0-beta.8",
|
7
3264
|
"version": "1.0.0-beta.8",
|
8
3265
|
"comments": {
|