dce-reactkit 3.10.0 → 3.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dce-reactkit",
3
- "version": "3.10.0",
3
+ "version": "3.10.1",
4
4
  "description": "Shared components for Harvard DCE apps",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -101,11 +101,14 @@ const RadioButton: React.FC<Props> = (props) => {
101
101
  }
102
102
  }}
103
103
  >
104
- <FontAwesomeIcon
105
- icon={selected ? faDotCircle : faCircle}
106
- className="me-1"
107
- />
108
- {
104
+ <div className="d-flex">
105
+ <div className="align-items-center">
106
+ <FontAwesomeIcon
107
+ icon={selected ? faDotCircle : faCircle}
108
+ className="me-1"
109
+ />
110
+ </div>
111
+ {
109
112
  useComplexFormatting
110
113
  ? (
111
114
  <pre
@@ -123,6 +126,7 @@ const RadioButton: React.FC<Props> = (props) => {
123
126
  </div>
124
127
  )
125
128
  }
129
+ </div>
126
130
  </button>
127
131
  );
128
132
  };