dce-reactkit 4.1.5 → 4.1.6

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": "4.1.5",
3
+ "version": "4.1.6",
4
4
  "description": "Shared components for Harvard DCE apps",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -421,7 +421,7 @@ const SimpleDateChooser: React.FC<Props> = (props) => {
421
421
  {/* Month Chooser */}
422
422
  <select
423
423
  aria-label={`month for ${ariaLabel}`}
424
- className="custom-select d-inline-block mr-1"
424
+ className="custom-select form-select d-inline-block mr-1"
425
425
  style={{ width: 'auto' }}
426
426
  id={`SimpleDateChooser-${name}-month`}
427
427
  value={`${month}-${year}`}
@@ -442,7 +442,7 @@ const SimpleDateChooser: React.FC<Props> = (props) => {
442
442
  {/* Day Chooser */}
443
443
  <select
444
444
  aria-label={`day for ${ariaLabel}`}
445
- className="custom-select d-inline-block"
445
+ className="custom-select form-select d-inline-block"
446
446
  style={{ width: 'auto' }}
447
447
  id={`SimpleDateChooser-${name}-day`}
448
448
  value={day}
@@ -167,7 +167,7 @@ const SimpleTimeChooser: React.FC<Props> = (props) => {
167
167
  {/* Time Chooser */}
168
168
  <select
169
169
  aria-label={`time for ${ariaLabel}`}
170
- className="custom-select d-inline-block"
170
+ className="custom-select form-select d-inline-block"
171
171
  style={{ width: 'auto' }}
172
172
  id={`SimpleTimeChooser-${name}-time`}
173
173
  value={selectedTimeMin}