x-ui-design 0.7.67 → 0.7.69
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/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/lib/components/DatePicker/DatePicker.tsx +15 -15
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -2040,6 +2040,7 @@ const INPUT_SIZE$1 = 12;
|
|
|
2040
2040
|
const NUMBER_SIX = 6;
|
|
2041
2041
|
const MONTH_LENGTH = 11;
|
|
2042
2042
|
const NEXT_DAYS_COUNT_AS_CURRENT_MUNTH = 35;
|
|
2043
|
+
const monthNames = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
|
|
2043
2044
|
const DatePicker = ({
|
|
2044
2045
|
value,
|
|
2045
2046
|
onChange,
|
|
@@ -2086,7 +2087,6 @@ const DatePicker = ({
|
|
|
2086
2087
|
month: 'short'
|
|
2087
2088
|
}));
|
|
2088
2089
|
const localeWeekdays = locale?.shortWeekDays || ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'];
|
|
2089
|
-
const monthNames = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
|
|
2090
2090
|
const {
|
|
2091
2091
|
dropdownPosition
|
|
2092
2092
|
} = usePossition({
|