dce-reactkit 4.1.5 → 4.1.7
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/dist/cjs/index.js +7 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/types/LogAction.d.ts +2 -0
- package/dist/esm/index.js +7 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/types/LogAction.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/components/SimpleDateChooser.tsx +2 -2
- package/src/components/SimpleTimeChooser.tsx +1 -1
- package/src/types/LogAction.ts +4 -0
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -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}
|
package/src/types/LogAction.ts
CHANGED