@modul/mbui 1.0.0-beta-dev-7f128c29 → 1.0.0
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/Input/index.d.ts +0 -1
- package/dist/Input/index.js +3 -15
- package/dist/Input-OTP/Input.d.ts +4 -4
- package/dist/assets/css/global.css +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -15
- package/package.json +3 -5
- package/dist/Input/InputMaskWidget.d.ts +0 -13
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@modul/mbui",
|
3
|
-
"version": "1.0.0
|
3
|
+
"version": "1.0.0",
|
4
4
|
"packageManager": "yarn@3.5.1",
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"types": "./dist/index.d.ts",
|
@@ -12,8 +12,8 @@
|
|
12
12
|
"build:demo": "webpack --config ./demo/webpack.config.js",
|
13
13
|
"dev:demo": "webpack serve --config ./demo/webpack.config.js --open",
|
14
14
|
"demo": "yarn dlx http-server demo/dist -so -c-1",
|
15
|
-
"storybook": "
|
16
|
-
"build:storybook": "
|
15
|
+
"storybook": "storybook dev -p 6006",
|
16
|
+
"build:storybook": "storybook build",
|
17
17
|
"test": "jest"
|
18
18
|
},
|
19
19
|
"lintConfig": "./.eslintrc.json",
|
@@ -44,7 +44,6 @@
|
|
44
44
|
"embla-carousel-react": "^8.3.1",
|
45
45
|
"input-otp": "1.2.4",
|
46
46
|
"lodash": "4.17.5",
|
47
|
-
"pdfjs-dist": "4.8.69",
|
48
47
|
"react-day-picker": "^9.0.8",
|
49
48
|
"react-hook-form": "7.53.0",
|
50
49
|
"react-imask": "7.6.1",
|
@@ -94,7 +93,6 @@
|
|
94
93
|
"clean-webpack-plugin": "^4.0.0",
|
95
94
|
"config": "3.3.9",
|
96
95
|
"copy-webpack-plugin": "^12.0.2",
|
97
|
-
"cross-env": "^7.0.3",
|
98
96
|
"css-loader": "^6.8.1",
|
99
97
|
"css-minimizer-webpack-plugin": "^7.0.0",
|
100
98
|
"date-fns": "^2.30.0",
|
@@ -1,13 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { IMaskInputProps } from 'react-imask';
|
3
|
-
declare type InputWidgetProps = IMaskInputProps<HTMLInputElement> & React.InputHTMLAttributes<HTMLInputElement> & {
|
4
|
-
label: string;
|
5
|
-
error?: React.ReactNode;
|
6
|
-
leftElement?: React.ReactNode;
|
7
|
-
rightElement?: React.ReactNode;
|
8
|
-
bottomElement?: React.ReactNode;
|
9
|
-
wrapperClassName?: string;
|
10
|
-
invalid?: boolean;
|
11
|
-
};
|
12
|
-
export declare const InputMaskWidget: React.ForwardRefExoticComponent<InputWidgetProps & React.RefAttributes<HTMLInputElement>>;
|
13
|
-
export {};
|