@etsoo/materialui 1.5.83 → 1.5.84
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/lib/cjs/PhoneInput.d.ts
CHANGED
|
@@ -7,4 +7,4 @@ export type PhoneInputProps = Omit<TextFieldProps, "type"> & {};
|
|
|
7
7
|
* Phone input
|
|
8
8
|
* @param props Props
|
|
9
9
|
*/
|
|
10
|
-
export declare function
|
|
10
|
+
export declare function PhoneInput(props: PhoneInputProps): import("react/jsx-runtime").JSX.Element;
|
package/lib/cjs/PhoneInput.js
CHANGED
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
6
|
+
exports.PhoneInput = PhoneInput;
|
|
7
7
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
8
8
|
const TextField_1 = __importDefault(require("@mui/material/TextField"));
|
|
9
9
|
const ReactApp_1 = require("./app/ReactApp");
|
|
@@ -12,7 +12,7 @@ const MUGlobal_1 = require("./MUGlobal");
|
|
|
12
12
|
* Phone input
|
|
13
13
|
* @param props Props
|
|
14
14
|
*/
|
|
15
|
-
function
|
|
15
|
+
function PhoneInput(props) {
|
|
16
16
|
// Global app
|
|
17
17
|
const app = (0, ReactApp_1.useAppContext)();
|
|
18
18
|
// Destruct
|
package/lib/mjs/PhoneInput.d.ts
CHANGED
|
@@ -7,4 +7,4 @@ export type PhoneInputProps = Omit<TextFieldProps, "type"> & {};
|
|
|
7
7
|
* Phone input
|
|
8
8
|
* @param props Props
|
|
9
9
|
*/
|
|
10
|
-
export declare function
|
|
10
|
+
export declare function PhoneInput(props: PhoneInputProps): import("react/jsx-runtime").JSX.Element;
|
package/lib/mjs/PhoneInput.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/materialui",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.84",
|
|
4
4
|
"description": "TypeScript Material-UI Implementation",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -83,6 +83,6 @@
|
|
|
83
83
|
"@vitejs/plugin-react": "^5.1.0",
|
|
84
84
|
"jsdom": "^27.1.0",
|
|
85
85
|
"typescript": "^5.9.3",
|
|
86
|
-
"vitest": "^4.0.
|
|
86
|
+
"vitest": "^4.0.8"
|
|
87
87
|
}
|
|
88
88
|
}
|
package/src/PhoneInput.tsx
CHANGED
|
@@ -11,7 +11,7 @@ export type PhoneInputProps = Omit<TextFieldProps, "type"> & {};
|
|
|
11
11
|
* Phone input
|
|
12
12
|
* @param props Props
|
|
13
13
|
*/
|
|
14
|
-
export function
|
|
14
|
+
export function PhoneInput(props: PhoneInputProps) {
|
|
15
15
|
// Global app
|
|
16
16
|
const app = useAppContext();
|
|
17
17
|
|