File tree Expand file tree Collapse file tree 4 files changed +15
-7
lines changed
Expand file tree Collapse file tree 4 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 55 branches :
66 - next
77 - release-*
8+
9+ permissions :
10+ contents : read # for checkout
11+
812jobs :
913 release :
1014 name : Release
1115 runs-on : ubuntu-latest
16+ permissions :
17+ contents : write # to be able to publish a GitHub release
18+ issues : write # to be able to comment on released issues
19+ pull-requests : write # to be able to comment on released pull requests
20+ id-token : write # to enable use of OIDC for trusted publishing and npm provenance
1221 steps :
1322 - name : Checkout
1423 uses : actions/checkout@v5
3544 - name : Release
3645 env :
3746 GITHUB_TOKEN : ${{ secrets.OPENEDX_SEMANTIC_RELEASE_GITHUB_TOKEN }}
38- NPM_TOKEN : ${{ secrets.OPENEDX_SEMANTIC_RELEASE_NPM_TOKEN }}
39- run : npx semantic-release@22
47+ run : npx semantic-release@25
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { OverlayTrigger } from '../Overlay';
55import Tooltip from '../Tooltip' ;
66import Icon from '../Icon' ;
77
8- interface Props extends React . HTMLAttributes < HTMLButtonElement > {
8+ interface Props extends React . ButtonHTMLAttributes < HTMLButtonElement > {
99 /** Component that renders the icon, currently defaults to `Icon` */
1010 iconAs ?: React . ComponentType < any > ,
1111 /** Additional CSS class[es] to apply to this button */
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import PropTypes from 'prop-types';
44/**
55 *
66 * @param {object } args arguments
7- * @param {boolean } args.activeValue the current value of the active/selected iconButton.
7+ * @param {string } args.activeValue the current value of the active/selected iconButton.
88 * if not provided, none of the iconButtons will initially be active
99 * @param {Function } args.onChange callback to call when toggle value changes.
1010 * Receives value of the selected toggle button.
You can’t perform that action at this time.
0 commit comments