@etsoo/materialui 1.3.64 → 1.3.66
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/custom/CustomFieldUtils.js +8 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/package.json +7 -7
- package/src/custom/CustomFieldUtils.tsx +8 -0
- package/src/index.ts +2 -0
|
@@ -10,6 +10,10 @@ import { FieldInput } from "./FieldInput";
|
|
|
10
10
|
import { FieldLabel } from "./FieldLabel";
|
|
11
11
|
import { FieldNumberInput } from "./FieldNumberInput";
|
|
12
12
|
import { FieldTexarea } from "./FieldTexarea";
|
|
13
|
+
import { FieldJson } from "./FieldJson";
|
|
14
|
+
import { FieldRadio } from "./FieldRadio";
|
|
15
|
+
import { FieldSelect } from "./FieldSelect";
|
|
16
|
+
import { FieldSwitch } from "./FieldSwitch";
|
|
13
17
|
/**
|
|
14
18
|
* Custom field utilities
|
|
15
19
|
*/
|
|
@@ -25,8 +29,12 @@ export var CustomFieldUtils;
|
|
|
25
29
|
date: FieldDateInput,
|
|
26
30
|
divider: FieldDivider,
|
|
27
31
|
input: FieldInput,
|
|
32
|
+
json: FieldJson,
|
|
28
33
|
label: FieldLabel,
|
|
29
34
|
number: FieldNumberInput,
|
|
35
|
+
radio: FieldRadio,
|
|
36
|
+
select: FieldSelect,
|
|
37
|
+
switch: FieldSwitch,
|
|
30
38
|
textarea: FieldTexarea
|
|
31
39
|
};
|
|
32
40
|
/**
|
package/lib/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export * from "./app/ISmartERPUser";
|
|
|
8
8
|
export * from "./app/Labels";
|
|
9
9
|
export * from "./app/ReactApp";
|
|
10
10
|
export * from "./app/ServiceApp";
|
|
11
|
+
export * from "./custom/CustomFieldUtils";
|
|
11
12
|
export * from "./messages/MessageUtils";
|
|
12
13
|
export * from "./messages/OperationMessageContainer";
|
|
13
14
|
export * from "./messages/OperationMessageDto";
|
package/lib/index.js
CHANGED
|
@@ -8,6 +8,7 @@ export * from "./app/ISmartERPUser";
|
|
|
8
8
|
export * from "./app/Labels";
|
|
9
9
|
export * from "./app/ReactApp";
|
|
10
10
|
export * from "./app/ServiceApp";
|
|
11
|
+
export * from "./custom/CustomFieldUtils";
|
|
11
12
|
export * from "./messages/MessageUtils";
|
|
12
13
|
export * from "./messages/OperationMessageContainer";
|
|
13
14
|
export * from "./messages/OperationMessageDto";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/materialui",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.66",
|
|
4
4
|
"description": "TypeScript Material-UI Implementation",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
"@emotion/css": "^11.11.2",
|
|
51
51
|
"@emotion/react": "^11.11.4",
|
|
52
52
|
"@emotion/styled": "^11.11.5",
|
|
53
|
-
"@etsoo/appscript": "^1.4.
|
|
53
|
+
"@etsoo/appscript": "^1.4.96",
|
|
54
54
|
"@etsoo/notificationbase": "^1.1.42",
|
|
55
|
-
"@etsoo/react": "^1.7.
|
|
56
|
-
"@etsoo/shared": "^1.2.
|
|
55
|
+
"@etsoo/react": "^1.7.53",
|
|
56
|
+
"@etsoo/shared": "^1.2.41",
|
|
57
57
|
"@mui/icons-material": "^5.15.18",
|
|
58
58
|
"@mui/material": "^5.15.18",
|
|
59
|
-
"@mui/x-data-grid": "^7.5.
|
|
59
|
+
"@mui/x-data-grid": "^7.5.1",
|
|
60
60
|
"chart.js": "^4.4.3",
|
|
61
61
|
"chartjs-plugin-datalabels": "^2.2.0",
|
|
62
62
|
"eventemitter3": "^5.0.1",
|
|
@@ -87,8 +87,8 @@
|
|
|
87
87
|
"@types/react-dom": "^18.3.0",
|
|
88
88
|
"@types/react-input-mask": "^3.0.5",
|
|
89
89
|
"@types/react-window": "^1.8.8",
|
|
90
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
91
|
-
"@typescript-eslint/parser": "^7.
|
|
90
|
+
"@typescript-eslint/eslint-plugin": "^7.11.0",
|
|
91
|
+
"@typescript-eslint/parser": "^7.11.0",
|
|
92
92
|
"jest": "^29.7.0",
|
|
93
93
|
"jest-environment-jsdom": "^29.7.0",
|
|
94
94
|
"typescript": "^5.4.5"
|
|
@@ -17,6 +17,10 @@ import { FieldInput } from "./FieldInput";
|
|
|
17
17
|
import { FieldLabel } from "./FieldLabel";
|
|
18
18
|
import { FieldNumberInput } from "./FieldNumberInput";
|
|
19
19
|
import { FieldTexarea } from "./FieldTexarea";
|
|
20
|
+
import { FieldJson } from "./FieldJson";
|
|
21
|
+
import { FieldRadio } from "./FieldRadio";
|
|
22
|
+
import { FieldSelect } from "./FieldSelect";
|
|
23
|
+
import { FieldSwitch } from "./FieldSwitch";
|
|
20
24
|
|
|
21
25
|
/**
|
|
22
26
|
* Custom field utilities
|
|
@@ -35,8 +39,12 @@ export namespace CustomFieldUtils {
|
|
|
35
39
|
date: FieldDateInput,
|
|
36
40
|
divider: FieldDivider,
|
|
37
41
|
input: FieldInput,
|
|
42
|
+
json: FieldJson,
|
|
38
43
|
label: FieldLabel,
|
|
39
44
|
number: FieldNumberInput,
|
|
45
|
+
radio: FieldRadio,
|
|
46
|
+
select: FieldSelect,
|
|
47
|
+
switch: FieldSwitch,
|
|
40
48
|
textarea: FieldTexarea
|
|
41
49
|
};
|
|
42
50
|
|
package/src/index.ts
CHANGED
|
@@ -9,6 +9,8 @@ export * from "./app/Labels";
|
|
|
9
9
|
export * from "./app/ReactApp";
|
|
10
10
|
export * from "./app/ServiceApp";
|
|
11
11
|
|
|
12
|
+
export * from "./custom/CustomFieldUtils";
|
|
13
|
+
|
|
12
14
|
export * from "./messages/MessageUtils";
|
|
13
15
|
export * from "./messages/OperationMessageContainer";
|
|
14
16
|
export * from "./messages/OperationMessageDto";
|