@mindly/ui-components 5.33.0 → 5.33.1
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/cjs/index.js +4 -4
- package/dist/cjs/lib2/shared/ui/InputSearch/types.d.ts +2 -2
- package/dist/cjs/lib2/shared/ui/ScreenInput/ScreenInput.d.ts +1 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/lib2/shared/ui/InputSearch/types.d.ts +2 -2
- package/dist/esm/lib2/shared/ui/ScreenInput/ScreenInput.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +2 -2
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { SearchbarChangeEventDetail } from '@ionic/core';
|
|
2
|
-
import { IonSearchbarCustomEvent } from '@ionic/core/dist/types/components';
|
|
1
|
+
import { SearchbarChangeEventDetail, IonSearchbarCustomEvent } from '@ionic/core';
|
|
3
2
|
export type FieldSearchType = {
|
|
4
3
|
className?: string;
|
|
5
4
|
onCancelClick: () => void;
|
|
@@ -7,4 +6,5 @@ export type FieldSearchType = {
|
|
|
7
6
|
value: string;
|
|
8
7
|
debounce?: number;
|
|
9
8
|
placeholder?: string;
|
|
9
|
+
hideButton?: boolean;
|
|
10
10
|
};
|
|
@@ -4,6 +4,7 @@ interface ScreenInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
4
4
|
type?: 'text' | 'email' | 'password' | 'number';
|
|
5
5
|
showPasswordButton?: boolean;
|
|
6
6
|
className?: string;
|
|
7
|
+
label?: string;
|
|
7
8
|
}
|
|
8
9
|
declare const ScreenInput: React.ForwardRefExoticComponent<ScreenInputProps & React.RefAttributes<HTMLInputElement>>;
|
|
9
10
|
export default ScreenInput;
|
package/dist/index.d.ts
CHANGED
|
@@ -1702,6 +1702,7 @@ interface ScreenInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
1702
1702
|
type?: 'text' | 'email' | 'password' | 'number';
|
|
1703
1703
|
showPasswordButton?: boolean;
|
|
1704
1704
|
className?: string;
|
|
1705
|
+
label?: string;
|
|
1705
1706
|
}
|
|
1706
1707
|
declare const ScreenInput: React__default.ForwardRefExoticComponent<ScreenInputProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
1707
1708
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindly/ui-components",
|
|
3
|
-
"version": "5.33.
|
|
3
|
+
"version": "5.33.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rimraf dist",
|
|
@@ -40,13 +40,13 @@
|
|
|
40
40
|
"tailwind-variants": "^0.1.14"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
+
"react": "^17.0.2",
|
|
43
44
|
"@babel/polyfill": "^7.12.1",
|
|
44
45
|
"@fontsource/inter": "^5.0.8",
|
|
45
46
|
"@fontsource/inter-tight": "^5.0.12",
|
|
46
47
|
"@ionic/react": "^6.1.11",
|
|
47
48
|
"@ionic/react-router": "^6.1.11",
|
|
48
49
|
"luxon": "^2.4.0",
|
|
49
|
-
"react": "^17.0.2",
|
|
50
50
|
"react-dom": "^17.0.2",
|
|
51
51
|
"styled-components": "^5.3.1"
|
|
52
52
|
},
|