@modul/mbui 0.0.60-beta-pv-54250-6dba152e → 0.0.60-beta-pv-54289-5c2f1983
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/Chip/Chip.d.ts +1 -1
- package/dist/DrawerDatePicker/DrawerDatePicker.d.ts +1 -3
- package/dist/DrawerDatePicker/MonthView.d.ts +2 -6
- package/dist/DrawerDatePicker/YearView.d.ts +2 -3
- package/dist/DrawerDatePicker/index.js +1 -1
- package/dist/DrawerDatePicker/utils.d.ts +1 -1
- package/dist/Input/Input.d.ts +3 -1
- package/dist/Input/InputMask.d.ts +6 -2
- package/dist/Input/InputNumericFormat.d.ts +6 -0
- package/dist/Input/index.d.ts +1 -0
- package/dist/Input/index.js +1 -1
- package/dist/assets/css/global.css +24 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/package.json +12 -11
- package/dist/DrawerDatePicker/MonthCaption.d.ts +0 -9
- package/dist/DrawerDatePicker/helpers/helpers.d.ts +0 -4
- package/dist/DrawerDatePicker/hooks/useInfiniteScroll.d.ts +0 -8
- package/dist/DrawerDatePicker/hooks/useMonthLoader.d.ts +0 -13
- package/dist/DrawerDatePicker/hooks/useScrollToMonth.d.ts +0 -7
@@ -1,3 +1,3 @@
|
|
1
1
|
import { DateRange } from 'react-day-picker';
|
2
2
|
export declare const getFirstMonthOfCurrentYear: (selected?: Date | DateRange, fallback?: Date) => Date;
|
3
|
-
export declare const generateYearsArray: (
|
3
|
+
export declare const generateYearsArray: (startYear?: number) => number[];
|
package/dist/Input/Input.d.ts
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
import * as React from 'react';
|
2
2
|
declare const InputLabel: React.ForwardRefExoticComponent<React.LabelHTMLAttributes<HTMLLabelElement> & React.RefAttributes<HTMLLabelElement>>;
|
3
|
-
declare const InputField: React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> &
|
3
|
+
declare const InputField: React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & {
|
4
|
+
invalid?: boolean;
|
5
|
+
} & React.RefAttributes<HTMLInputElement>>;
|
4
6
|
export { InputField, InputLabel };
|
@@ -1,3 +1,7 @@
|
|
1
|
-
import
|
2
|
-
|
1
|
+
import React from 'react';
|
2
|
+
import { IMaskInputProps } from 'react-imask';
|
3
|
+
declare type TInputMask = IMaskInputProps<HTMLInputElement> & React.InputHTMLAttributes<HTMLInputElement> & {
|
4
|
+
invalid?: boolean;
|
5
|
+
};
|
6
|
+
declare const InputMask: React.FC<TInputMask>;
|
3
7
|
export { InputMask };
|
package/dist/Input/index.d.ts
CHANGED