@etsoo/materialui 1.5.63 → 1.5.64
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/DataLoadField.d.ts +17 -0
- package/lib/cjs/DataLoadField.js +25 -0
- package/lib/cjs/index.d.ts +1 -0
- package/lib/cjs/index.js +1 -0
- package/lib/mjs/DataLoadField.d.ts +17 -0
- package/lib/mjs/DataLoadField.js +19 -0
- package/lib/mjs/index.d.ts +1 -0
- package/lib/mjs/index.js +1 -0
- package/package.json +3 -3
- package/src/DataLoadField.tsx +40 -0
- package/src/index.ts +1 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { InputFieldProps } from "./InputField";
|
|
2
|
+
/**
|
|
3
|
+
* Data load field properties
|
|
4
|
+
*/
|
|
5
|
+
export type DataLoadFieldProps = InputFieldProps & {
|
|
6
|
+
/**
|
|
7
|
+
*
|
|
8
|
+
* Load data handler
|
|
9
|
+
*/
|
|
10
|
+
loadData: () => Promise<string | undefined>;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* Data load field component
|
|
14
|
+
* @param props Properties
|
|
15
|
+
* @returns Component
|
|
16
|
+
*/
|
|
17
|
+
export declare function DataLoadField(props: DataLoadFieldProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.DataLoadField = DataLoadField;
|
|
7
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
8
|
+
const react_1 = __importDefault(require("react"));
|
|
9
|
+
const InputField_1 = require("./InputField");
|
|
10
|
+
/**
|
|
11
|
+
* Data load field component
|
|
12
|
+
* @param props Properties
|
|
13
|
+
* @returns Component
|
|
14
|
+
*/
|
|
15
|
+
function DataLoadField(props) {
|
|
16
|
+
// Destruct
|
|
17
|
+
const { disabled = true, fullWidth = true, loadData, ...rest } = props;
|
|
18
|
+
// Ref
|
|
19
|
+
const inputRef = react_1.default.useRef(null);
|
|
20
|
+
react_1.default.useEffect(() => {
|
|
21
|
+
loadData().then((data) => (inputRef.current.value = data ?? ""));
|
|
22
|
+
}, [loadData]);
|
|
23
|
+
// Layout
|
|
24
|
+
return ((0, jsx_runtime_1.jsx)(InputField_1.InputField, { disabled: disabled, fullWidth: fullWidth, inputRef: inputRef, ...rest }));
|
|
25
|
+
}
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -50,6 +50,7 @@ export * from "./CultureDataTable";
|
|
|
50
50
|
export * from "./CustomFabProps";
|
|
51
51
|
export * from "./DataGridEx";
|
|
52
52
|
export * from "./DataGridRenderers";
|
|
53
|
+
export * from "./DataLoadField";
|
|
53
54
|
export * from "./DataSteps";
|
|
54
55
|
export * from "./DataTable";
|
|
55
56
|
export * from "./DialogButton";
|
package/lib/cjs/index.js
CHANGED
|
@@ -66,6 +66,7 @@ __exportStar(require("./CultureDataTable"), exports);
|
|
|
66
66
|
__exportStar(require("./CustomFabProps"), exports);
|
|
67
67
|
__exportStar(require("./DataGridEx"), exports);
|
|
68
68
|
__exportStar(require("./DataGridRenderers"), exports);
|
|
69
|
+
__exportStar(require("./DataLoadField"), exports);
|
|
69
70
|
__exportStar(require("./DataSteps"), exports);
|
|
70
71
|
__exportStar(require("./DataTable"), exports);
|
|
71
72
|
__exportStar(require("./DialogButton"), exports);
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { InputFieldProps } from "./InputField";
|
|
2
|
+
/**
|
|
3
|
+
* Data load field properties
|
|
4
|
+
*/
|
|
5
|
+
export type DataLoadFieldProps = InputFieldProps & {
|
|
6
|
+
/**
|
|
7
|
+
*
|
|
8
|
+
* Load data handler
|
|
9
|
+
*/
|
|
10
|
+
loadData: () => Promise<string | undefined>;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* Data load field component
|
|
14
|
+
* @param props Properties
|
|
15
|
+
* @returns Component
|
|
16
|
+
*/
|
|
17
|
+
export declare function DataLoadField(props: DataLoadFieldProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { InputField } from "./InputField";
|
|
4
|
+
/**
|
|
5
|
+
* Data load field component
|
|
6
|
+
* @param props Properties
|
|
7
|
+
* @returns Component
|
|
8
|
+
*/
|
|
9
|
+
export function DataLoadField(props) {
|
|
10
|
+
// Destruct
|
|
11
|
+
const { disabled = true, fullWidth = true, loadData, ...rest } = props;
|
|
12
|
+
// Ref
|
|
13
|
+
const inputRef = React.useRef(null);
|
|
14
|
+
React.useEffect(() => {
|
|
15
|
+
loadData().then((data) => (inputRef.current.value = data ?? ""));
|
|
16
|
+
}, [loadData]);
|
|
17
|
+
// Layout
|
|
18
|
+
return (_jsx(InputField, { disabled: disabled, fullWidth: fullWidth, inputRef: inputRef, ...rest }));
|
|
19
|
+
}
|
package/lib/mjs/index.d.ts
CHANGED
|
@@ -50,6 +50,7 @@ export * from "./CultureDataTable";
|
|
|
50
50
|
export * from "./CustomFabProps";
|
|
51
51
|
export * from "./DataGridEx";
|
|
52
52
|
export * from "./DataGridRenderers";
|
|
53
|
+
export * from "./DataLoadField";
|
|
53
54
|
export * from "./DataSteps";
|
|
54
55
|
export * from "./DataTable";
|
|
55
56
|
export * from "./DialogButton";
|
package/lib/mjs/index.js
CHANGED
|
@@ -50,6 +50,7 @@ export * from "./CultureDataTable";
|
|
|
50
50
|
export * from "./CustomFabProps";
|
|
51
51
|
export * from "./DataGridEx";
|
|
52
52
|
export * from "./DataGridRenderers";
|
|
53
|
+
export * from "./DataLoadField";
|
|
53
54
|
export * from "./DataSteps";
|
|
54
55
|
export * from "./DataTable";
|
|
55
56
|
export * from "./DialogButton";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/materialui",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.64",
|
|
4
4
|
"description": "TypeScript Material-UI Implementation",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"react-avatar-editor": "^13.0.2",
|
|
58
58
|
"react-chartjs-2": "^5.3.0",
|
|
59
59
|
"react-dom": "^18.3.1",
|
|
60
|
-
"react-draggable": "^4.
|
|
60
|
+
"react-draggable": "^4.5.0",
|
|
61
61
|
"react-imask": "7.6.1"
|
|
62
62
|
},
|
|
63
63
|
"overrides": {
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"@types/react-dom": "^18.3.7",
|
|
82
82
|
"@types/react-input-mask": "^3.0.6",
|
|
83
83
|
"@types/react-window": "^1.8.8",
|
|
84
|
-
"@vitejs/plugin-react": "^4.
|
|
84
|
+
"@vitejs/plugin-react": "^4.6.0",
|
|
85
85
|
"jsdom": "^26.1.0",
|
|
86
86
|
"typescript": "^5.8.3",
|
|
87
87
|
"vitest": "^3.2.4"
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { InputField, InputFieldProps } from "./InputField";
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Data load field properties
|
|
6
|
+
*/
|
|
7
|
+
export type DataLoadFieldProps = InputFieldProps & {
|
|
8
|
+
/**
|
|
9
|
+
*
|
|
10
|
+
* Load data handler
|
|
11
|
+
*/
|
|
12
|
+
loadData: () => Promise<string | undefined>;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Data load field component
|
|
17
|
+
* @param props Properties
|
|
18
|
+
* @returns Component
|
|
19
|
+
*/
|
|
20
|
+
export function DataLoadField(props: DataLoadFieldProps) {
|
|
21
|
+
// Destruct
|
|
22
|
+
const { disabled = true, fullWidth = true, loadData, ...rest } = props;
|
|
23
|
+
|
|
24
|
+
// Ref
|
|
25
|
+
const inputRef = React.useRef<HTMLInputElement>(null);
|
|
26
|
+
|
|
27
|
+
React.useEffect(() => {
|
|
28
|
+
loadData().then((data) => (inputRef.current!.value = data ?? ""));
|
|
29
|
+
}, [loadData]);
|
|
30
|
+
|
|
31
|
+
// Layout
|
|
32
|
+
return (
|
|
33
|
+
<InputField
|
|
34
|
+
disabled={disabled}
|
|
35
|
+
fullWidth={fullWidth}
|
|
36
|
+
inputRef={inputRef}
|
|
37
|
+
{...rest}
|
|
38
|
+
/>
|
|
39
|
+
);
|
|
40
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -56,6 +56,7 @@ export * from "./CultureDataTable";
|
|
|
56
56
|
export * from "./CustomFabProps";
|
|
57
57
|
export * from "./DataGridEx";
|
|
58
58
|
export * from "./DataGridRenderers";
|
|
59
|
+
export * from "./DataLoadField";
|
|
59
60
|
export * from "./DataSteps";
|
|
60
61
|
export * from "./DataTable";
|
|
61
62
|
export * from "./DialogButton";
|