@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
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@modul/mbui",
|
3
|
-
"version": "0.0.60-beta-pv-
|
3
|
+
"version": "0.0.60-beta-pv-54289-5c2f1983",
|
4
4
|
"packageManager": "yarn@3.5.1",
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"types": "./dist/index.d.ts",
|
@@ -47,6 +47,7 @@
|
|
47
47
|
"react-day-picker": "^9.0.8",
|
48
48
|
"react-hook-form": "7.53.0",
|
49
49
|
"react-imask": "7.6.1",
|
50
|
+
"react-number-format": "^5.4.4",
|
50
51
|
"react-select": "5.8.0",
|
51
52
|
"react-swipeable": "7.0.1",
|
52
53
|
"sonner": "^1.5.0",
|
@@ -62,14 +63,14 @@
|
|
62
63
|
"@babel/preset-react": "^7.9.4",
|
63
64
|
"@babel/preset-typescript": "^7.21.5",
|
64
65
|
"@chromatic-com/storybook": "^3.2.6",
|
65
|
-
"@storybook/addon-essentials": "^8.6.
|
66
|
-
"@storybook/addon-interactions": "^8.6.
|
67
|
-
"@storybook/addon-links": "^8.6.
|
68
|
-
"@storybook/addon-webpack5-compiler-babel": "^3.0.
|
69
|
-
"@storybook/blocks": "^8.6.
|
70
|
-
"@storybook/react": "^8.6.
|
71
|
-
"@storybook/react-webpack5": "^8.6.
|
72
|
-
"@storybook/test": "^8.6.
|
66
|
+
"@storybook/addon-essentials": "^8.6.12",
|
67
|
+
"@storybook/addon-interactions": "^8.6.12",
|
68
|
+
"@storybook/addon-links": "^8.6.12",
|
69
|
+
"@storybook/addon-webpack5-compiler-babel": "^3.0.6",
|
70
|
+
"@storybook/blocks": "^8.6.12",
|
71
|
+
"@storybook/react": "^8.6.12",
|
72
|
+
"@storybook/react-webpack5": "^8.6.12",
|
73
|
+
"@storybook/test": "^8.6.12",
|
73
74
|
"@svgr/cli": "8.1.0",
|
74
75
|
"@tailwindcss/forms": "^0.5.7",
|
75
76
|
"@testing-library/dom": "^10.4.0",
|
@@ -101,7 +102,7 @@
|
|
101
102
|
"eslint-plugin-prettier": "4.2.1",
|
102
103
|
"eslint-plugin-react": "7.31.10",
|
103
104
|
"eslint-plugin-react-hooks": "4.6.0",
|
104
|
-
"eslint-plugin-storybook": "^0.
|
105
|
+
"eslint-plugin-storybook": "^0.12.0",
|
105
106
|
"glob": "^10.2.4",
|
106
107
|
"html-webpack-plugin": "5.5.1",
|
107
108
|
"image-minimizer-webpack-plugin": "^4.0.2",
|
@@ -118,7 +119,7 @@
|
|
118
119
|
"prettier": "2.7.1",
|
119
120
|
"react": "18.2.0",
|
120
121
|
"react-dom": "^18.2.0",
|
121
|
-
"storybook": "^8.6.
|
122
|
+
"storybook": "^8.6.12",
|
122
123
|
"style-loader": "^3.3.3",
|
123
124
|
"terser-webpack-plugin": "^5.3.10",
|
124
125
|
"ts-jest": "^29.2.6",
|
@@ -1,4 +0,0 @@
|
|
1
|
-
export declare const isFirstMonthVisible: (visibleMonths: Date[], allMonths: Date[]) => boolean;
|
2
|
-
export declare const isLastMonthVisible: (visibleMonths: Date[], allMonths: Date[]) => boolean;
|
3
|
-
export declare const loadPreviousMonths: (visibleMonths: Date[], allMonths: Date[]) => Date[];
|
4
|
-
export declare const loadNextMonths: (visibleMonths: Date[], allMonths: Date[]) => Date[];
|
@@ -1,13 +0,0 @@
|
|
1
|
-
interface UseMonthLoaderProps {
|
2
|
-
centerDate: Date;
|
3
|
-
disableFutureDates: boolean;
|
4
|
-
disablePastDates: boolean;
|
5
|
-
resetTrigger: boolean;
|
6
|
-
}
|
7
|
-
interface UseMonthLoaderResult {
|
8
|
-
allMonths: Date[];
|
9
|
-
visibleMonths: Date[];
|
10
|
-
loadMoreMonths: (direction: 'up' | 'down') => void;
|
11
|
-
}
|
12
|
-
export declare const useMonthLoader: ({ centerDate, disableFutureDates, disablePastDates, resetTrigger, }: UseMonthLoaderProps) => UseMonthLoaderResult;
|
13
|
-
export {};
|