react-input-material 0.0.351 → 0.0.355
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/components/Dummy.d.ts +9 -5
- package/components/Dummy.tsx +11 -6
- package/components/FileInput.d.ts +3 -2
- package/components/FileInput.js +1 -1
- package/components/FileInput.module.css +12 -24
- package/components/FileInput.styles.css +3 -3
- package/components/FileInput.tsx +235 -203
- package/components/GenericAnimate.d.ts +3 -0
- package/components/GenericAnimate.module.css +0 -1
- package/components/GenericAnimate.tsx +17 -10
- package/components/GenericInput.d.ts +26 -2
- package/components/GenericInput.js +1 -1
- package/components/GenericInput.module.css +32 -45
- package/components/GenericInput.styles.css +1 -1
- package/components/GenericInput.tsx +471 -348
- package/components/Inputs.d.ts +3 -3
- package/components/Inputs.js +1 -1
- package/components/Inputs.module.css +10 -9
- package/components/Inputs.styles.css +2 -2
- package/components/Inputs.tsx +20 -21
- package/components/Interval.d.ts +4 -6
- package/components/Interval.js +1 -1
- package/components/Interval.module.css +16 -15
- package/components/Interval.styles.css +2 -2
- package/components/Interval.tsx +7 -13
- package/components/RequireableCheckbox.d.ts +10 -3
- package/components/RequireableCheckbox.js +1 -1
- package/components/RequireableCheckbox.module.css +4 -4
- package/components/RequireableCheckbox.styles.css +1 -1
- package/components/RequireableCheckbox.tsx +66 -51
- package/components/WrapConfigurations.d.ts +13 -0
- package/components/WrapConfigurations.tsx +17 -5
- package/components/WrapStrict.d.ts +6 -0
- package/components/WrapStrict.tsx +7 -0
- package/components/WrapThemeProvider.d.ts +7 -5
- package/components/WrapThemeProvider.tsx +8 -5
- package/components/WrapTooltip.d.ts +4 -2
- package/components/WrapTooltip.tsx +14 -6
- package/helper.d.ts +39 -9
- package/helper.js +1 -1
- package/index.js +1 -1
- package/index.styles.css +10 -10
- package/package.json +32 -16
- package/readme.md +38 -2
- package/type.d.ts +42 -42
|
@@ -11,37 +11,26 @@ This library written by Torben Sickert stand under a creative commons naming
|
|
|
11
11
|
endregion */
|
|
12
12
|
/* region imports */
|
|
13
13
|
/*
|
|
14
|
-
|
|
15
14
|
CSS Modules:
|
|
16
15
|
|
|
17
|
-
@import
|
|
18
|
-
|
|
19
|
-
@import '@rmwc/card/styles'
|
|
16
|
+
@import "@rmwc/button/styles";
|
|
20
17
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
/*
|
|
18
|
+
@import "@rmwc/card/styles";
|
|
24
19
|
|
|
25
20
|
Imported by GenericInput
|
|
26
21
|
|
|
27
|
-
@import
|
|
28
|
-
|
|
29
|
-
@import '@rmwc/circular-progress/circular-progress.css';
|
|
30
|
-
@import '@material/icon-button/dist/mdc.icon-button.css';
|
|
31
|
-
|
|
32
|
-
*/
|
|
22
|
+
@import "@rmwc/circular-progress/styles";
|
|
33
23
|
|
|
34
|
-
|
|
24
|
+
@import "@rmwc/circular-progress/circular-progress.css";
|
|
25
|
+
@import "@material/icon-button/dist/mdc.icon-button.css";
|
|
35
26
|
|
|
36
27
|
Plain CSS:
|
|
37
28
|
|
|
38
29
|
*/
|
|
39
|
-
@import
|
|
40
|
-
|
|
41
|
-
@import '@material/card/dist/mdc.card.css';
|
|
42
|
-
|
|
30
|
+
@import "@material/button/dist/mdc.button.css";
|
|
31
|
+
@import "@material/card/dist/mdc.card.css";
|
|
43
32
|
|
|
44
|
-
@import
|
|
33
|
+
@import "./GenericInput.module";
|
|
45
34
|
/* endregion */
|
|
46
35
|
.file-input {
|
|
47
36
|
/*
|
|
@@ -60,15 +49,16 @@ Plain CSS:
|
|
|
60
49
|
text-decoration: none;
|
|
61
50
|
}
|
|
62
51
|
|
|
63
|
-
.file-input__iframe-wrapper,
|
|
52
|
+
.file-input__iframe-wrapper,
|
|
53
|
+
.file-input__text-representation {
|
|
64
54
|
border-left: 1px dashed black;
|
|
65
55
|
box-sizing: content-box;
|
|
66
|
-
opacity: .5;
|
|
56
|
+
opacity: 0.5;
|
|
67
57
|
|
|
68
58
|
margin-bottom: -55px;
|
|
69
59
|
|
|
70
60
|
height: 200px;
|
|
71
|
-
transform: scale(.75);
|
|
61
|
+
transform: scale(0.75);
|
|
72
62
|
transform-origin: 0 0;
|
|
73
63
|
}
|
|
74
64
|
|
|
@@ -98,13 +88,11 @@ Plain CSS:
|
|
|
98
88
|
|
|
99
89
|
overflow-x: hidden;
|
|
100
90
|
overflow-y: scroll;
|
|
101
|
-
|
|
102
91
|
/* Hide scrollbar for IE and Edge */
|
|
103
92
|
-ms-overflow-style: none;
|
|
104
93
|
/* Hide scrollbar for Firefox */
|
|
105
94
|
scrollbar-width: none;
|
|
106
95
|
}
|
|
107
|
-
|
|
108
96
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
109
97
|
.file-input__text-representation::-webkit-scrollbar {
|
|
110
98
|
display: none;
|