react-input-material 0.0.352 → 0.0.356

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 +239 -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 +36 -28
  44. package/readme.md +38 -2
  45. package/type.d.ts +42 -42
@@ -10,13 +10,13 @@ This library written by Torben Sickert stand under a creative commons naming
10
10
  3.0 unported license. See https://creativecommons.org/licenses/by/3.0/deed.de
11
11
  endregion */
12
12
  /* region imports */
13
- /*import '@rmwc/icon/styles'*/
14
- @import '@rmwc/icon/icon.css';
15
- /*import '@rmwc/theme/styles'*/
16
- @import '@material/theme/dist/mdc.theme.css';
17
- @import '@rmwc/theme/theme.css';
18
- /*import '@rmwc/tooltip/styles'*/
19
- @import '@rmwc/tooltip/tooltip.css';
13
+ /* import "@rmwc/icon/styles" */
14
+ @import "@rmwc/icon/icon.css";
15
+ /* import "@rmwc/theme/styles" */
16
+ @import "@material/theme/dist/mdc.theme.css";
17
+ @import "@rmwc/theme/theme.css";
18
+ /* import "@rmwc/tooltip/styles" */
19
+ @import "@rmwc/tooltip/tooltip.css";
20
20
  /* endregion */
21
21
  .interval {
22
22
  display: flex;
@@ -24,19 +24,20 @@ endregion */
24
24
  justify-content: space-between;
25
25
  }
26
26
 
27
- .interval--disabled .interval__icon {
28
- opacity: .5;
29
- }
30
-
31
- .interval__end, .interval__start {
32
- width: 100%;
33
- }
34
-
35
27
  .interval__icon {
36
28
  box-sizing: border-box;
37
29
  margin: 16px;
38
30
  text-align: center;
39
31
  }
32
+
33
+ .interval--disabled .interval__icon {
34
+ opacity: 0.5;
35
+ }
36
+
37
+ .interval__end,
38
+ .interval__start {
39
+ width: 100%;
40
+ }
40
41
  /* region vim modline
41
42
  vim: set tabstop=4 shiftwidth=4 expandtab:
42
43
  vim: foldmethod=marker foldmarker=region,endregion: