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.
Files changed (45) hide show
  1. package/components/Dummy.d.ts +9 -5
  2. package/components/Dummy.tsx +11 -6
  3. package/components/FileInput.d.ts +3 -2
  4. package/components/FileInput.js +1 -1
  5. package/components/FileInput.module.css +12 -24
  6. package/components/FileInput.styles.css +3 -3
  7. package/components/FileInput.tsx +235 -203
  8. package/components/GenericAnimate.d.ts +3 -0
  9. package/components/GenericAnimate.module.css +0 -1
  10. package/components/GenericAnimate.tsx +17 -10
  11. package/components/GenericInput.d.ts +26 -2
  12. package/components/GenericInput.js +1 -1
  13. package/components/GenericInput.module.css +32 -45
  14. package/components/GenericInput.styles.css +1 -1
  15. package/components/GenericInput.tsx +471 -348
  16. package/components/Inputs.d.ts +3 -3
  17. package/components/Inputs.js +1 -1
  18. package/components/Inputs.module.css +10 -9
  19. package/components/Inputs.styles.css +2 -2
  20. package/components/Inputs.tsx +20 -21
  21. package/components/Interval.d.ts +4 -6
  22. package/components/Interval.js +1 -1
  23. package/components/Interval.module.css +16 -15
  24. package/components/Interval.styles.css +2 -2
  25. package/components/Interval.tsx +7 -13
  26. package/components/RequireableCheckbox.d.ts +10 -3
  27. package/components/RequireableCheckbox.js +1 -1
  28. package/components/RequireableCheckbox.module.css +4 -4
  29. package/components/RequireableCheckbox.styles.css +1 -1
  30. package/components/RequireableCheckbox.tsx +66 -51
  31. package/components/WrapConfigurations.d.ts +13 -0
  32. package/components/WrapConfigurations.tsx +17 -5
  33. package/components/WrapStrict.d.ts +6 -0
  34. package/components/WrapStrict.tsx +7 -0
  35. package/components/WrapThemeProvider.d.ts +7 -5
  36. package/components/WrapThemeProvider.tsx +8 -5
  37. package/components/WrapTooltip.d.ts +4 -2
  38. package/components/WrapTooltip.tsx +14 -6
  39. package/helper.d.ts +39 -9
  40. package/helper.js +1 -1
  41. package/index.js +1 -1
  42. package/index.styles.css +10 -10
  43. package/package.json +32 -16
  44. package/readme.md +38 -2
  45. 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 '@rmwc/button/styles'
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 '@rmwc/circular-progress/styles'
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 '@material/button/dist/mdc.button.css';
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 './GenericInput.module';
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, .file-input__text-representation {
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;