@ctlyst.id/internal-ui 1.0.2 → 1.0.3
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/components/datepicker/components/datepicker.stories.d.ts +2 -0
- package/dist/internal-ui.cjs.development.js +5 -0
- package/dist/internal-ui.cjs.development.js.map +1 -1
- package/dist/internal-ui.cjs.production.min.js +1 -1
- package/dist/internal-ui.cjs.production.min.js.map +1 -1
- package/dist/internal-ui.esm.js +5 -0
- package/dist/internal-ui.esm.js.map +1 -1
- package/package.json +2 -2
@@ -8,6 +8,8 @@ declare const _default: {
|
|
8
8
|
};
|
9
9
|
export default _default;
|
10
10
|
export declare const DatePickerDefault: () => JSX.Element;
|
11
|
+
export declare const DatePickerMonth: () => JSX.Element;
|
12
|
+
export declare const DatePickerWithYearMonthDropdown: () => JSX.Element;
|
11
13
|
export declare const DatePickerWithTime: () => JSX.Element;
|
12
14
|
export declare const DatePickerWithDateRange: () => JSX.Element;
|
13
15
|
export declare const DatePickerWithNumberOfMonthRange: () => JSX.Element;
|
@@ -448,6 +448,11 @@ const Styles = () => {
|
|
448
448
|
display: inline-block;
|
449
449
|
margin: 0 2px;
|
450
450
|
}
|
451
|
+
.react-datepicker__header__dropdown.react-datepicker__header__dropdown--select {
|
452
|
+
font-weight: 600;
|
453
|
+
line-height: 22px;
|
454
|
+
color: #111111;
|
455
|
+
}
|
451
456
|
|
452
457
|
.react-datepicker__current-month,
|
453
458
|
.react-datepicker-time__header,
|