@modul/mbui 0.0.62-beta-pv-54366-e81246c5 → 0.0.63-beta-iconfile-4fe7df38
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/IconFile/IconFile.d.ts +8 -0
- package/dist/IconFile/index.d.ts +1 -0
- package/dist/IconFile/index.js +1 -0
- package/dist/Select/SelectBase.d.ts +1 -3
- package/dist/Select/components/index.js +1 -1
- package/dist/Select/index.d.ts +0 -1
- package/dist/Select/index.js +2 -2
- package/dist/Textarea/Textarea.d.ts +1 -0
- package/dist/Textarea/index.js +1 -1
- package/dist/assets/images/icon-file/sprite.svg +1 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.js +3 -3
- package/package.json +9 -10
- package/dist/Select/Autocomplete.d.ts +0 -21
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@modul/mbui",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.63-beta-iconfile-4fe7df38",
|
4
4
|
"packageManager": "yarn@3.5.1",
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"types": "./dist/index.d.ts",
|
@@ -63,15 +63,14 @@
|
|
63
63
|
"@babel/preset-react": "^7.9.4",
|
64
64
|
"@babel/preset-typescript": "^7.21.5",
|
65
65
|
"@chromatic-com/storybook": "^3.2.6",
|
66
|
-
"@storybook/addon-essentials": "^8.6.
|
67
|
-
"@storybook/addon-interactions": "^8.6.
|
68
|
-
"@storybook/addon-links": "^8.6.
|
69
|
-
"@storybook/addon-mdx-gfm": "^8.6.14",
|
66
|
+
"@storybook/addon-essentials": "^8.6.12",
|
67
|
+
"@storybook/addon-interactions": "^8.6.12",
|
68
|
+
"@storybook/addon-links": "^8.6.12",
|
70
69
|
"@storybook/addon-webpack5-compiler-babel": "^3.0.6",
|
71
|
-
"@storybook/blocks": "^8.6.
|
72
|
-
"@storybook/react": "^8.6.
|
73
|
-
"@storybook/react-webpack5": "^8.6.
|
74
|
-
"@storybook/test": "^8.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",
|
75
74
|
"@svgr/cli": "8.1.0",
|
76
75
|
"@tailwindcss/forms": "^0.5.7",
|
77
76
|
"@testing-library/dom": "^10.4.0",
|
@@ -120,7 +119,7 @@
|
|
120
119
|
"prettier": "2.7.1",
|
121
120
|
"react": "18.2.0",
|
122
121
|
"react-dom": "^18.2.0",
|
123
|
-
"storybook": "^8.6.
|
122
|
+
"storybook": "^8.6.12",
|
124
123
|
"style-loader": "^3.3.3",
|
125
124
|
"terser-webpack-plugin": "^5.3.10",
|
126
125
|
"ts-jest": "^29.2.6",
|
@@ -1,21 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { Props as SelectProps } from 'react-select';
|
3
|
-
interface Option {
|
4
|
-
value: any;
|
5
|
-
label: string;
|
6
|
-
[key: string]: any;
|
7
|
-
}
|
8
|
-
interface GroupedOption {
|
9
|
-
label: string;
|
10
|
-
options: Option[];
|
11
|
-
}
|
12
|
-
declare type AutocompleteProps = SelectProps<Option, false, GroupedOption> & {
|
13
|
-
onSearch?: (value: string) => void;
|
14
|
-
emptyText?: (value: string) => string;
|
15
|
-
components?: {
|
16
|
-
Input?: React.ComponentType<any>;
|
17
|
-
Option?: React.ComponentType<any>;
|
18
|
-
};
|
19
|
-
};
|
20
|
-
declare const Autocomplete: React.FC<AutocompleteProps>;
|
21
|
-
export { Autocomplete };
|