@docsvision/material-ui-pickers 3.2.0-beta.25 → 3.2.0-beta.26

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 (232) hide show
  1. package/.size-snapshot.json +26 -0
  2. package/9db1cba1a61cb58db53f38425bbd1f95.7z +0 -0
  3. package/{DatePicker → build/DatePicker}/DatePicker.d.ts +2 -2
  4. package/{DatePicker → build/DatePicker}/DatePicker.js +1 -1
  5. package/{DateTimePicker → build/DateTimePicker}/DateTimePicker.js +1 -1
  6. package/{Picker → build/Picker}/Picker.js +1 -1
  7. package/{TimePicker → build/TimePicker}/TimePicker.js +1 -1
  8. package/{_helpers → build/_helpers}/text-field-helper.d.ts +1 -1
  9. package/{_shared → build/_shared}/KeyboardDateInput.js +1 -1
  10. package/{_shared → build/_shared}/ModalDialog.d.ts +2 -2
  11. package/{_shared → build/_shared}/PureDateInput.js +1 -1
  12. package/{_shared → build/_shared}/ToolbarButton.d.ts +2 -2
  13. package/{_shared → build/_shared}/hooks/useKeyboardPickerState.js +2 -2
  14. package/{constants → build/constants}/prop-types.js +2 -2
  15. package/{dist → build/dist}/material-ui-pickers.esm.js +12 -12
  16. package/build/dist/material-ui-pickers.esm.js.map +1 -0
  17. package/{dist → build/dist}/material-ui-pickers.js +62 -62
  18. package/build/dist/material-ui-pickers.js.map +1 -0
  19. package/{dist → build/dist}/material-ui-pickers.umd.js +5790 -4511
  20. package/build/dist/material-ui-pickers.umd.min.js +1 -0
  21. package/build/package.json +62 -0
  22. package/{views → build/views}/Calendar/Calendar.js +2 -2
  23. package/{views → build/views}/Clock/Clock.d.ts +1 -1
  24. package/{views → build/views}/Clock/ClockPointer.d.ts +1 -1
  25. package/copy.js +58 -0
  26. package/package.json +135 -62
  27. package/remove-prop-types.js +37 -0
  28. package/rollup.config.js +145 -0
  29. package/src/DatePicker/DatePicker.tsx +91 -0
  30. package/src/DatePicker/DatePickerToolbar.tsx +75 -0
  31. package/src/DatePicker/index.ts +7 -0
  32. package/src/DateTimePicker/DateTimePicker.tsx +72 -0
  33. package/src/DateTimePicker/DateTimePickerTabs.tsx +86 -0
  34. package/src/DateTimePicker/DateTimePickerToolbar.tsx +123 -0
  35. package/src/DateTimePicker/index.ts +7 -0
  36. package/src/MuiPickersUtilsProvider.tsx +39 -0
  37. package/src/Picker/Picker.tsx +275 -0
  38. package/src/Picker/WrappedKeyboardPicker.tsx +136 -0
  39. package/src/Picker/WrappedPurePicker.tsx +128 -0
  40. package/src/Rifm/Rifm.ts +213 -0
  41. package/src/TimePicker/TimePicker.tsx +67 -0
  42. package/src/TimePicker/TimePickerToolbar.tsx +180 -0
  43. package/src/TimePicker/index.tsx +7 -0
  44. package/src/__tests__/DatePicker/Calendar.test.tsx +51 -0
  45. package/src/__tests__/DatePicker/Month.test.tsx +36 -0
  46. package/src/__tests__/DatePicker/MonthSelection.test.tsx +37 -0
  47. package/src/__tests__/MuiPickersUtilsProvider.test.tsx +21 -0
  48. package/src/__tests__/TimePicker/Clock.test.tsx +68 -0
  49. package/src/__tests__/_helpers/date-utils.test.tsx +197 -0
  50. package/src/__tests__/_helpers/text-field-helper.test.tsx +34 -0
  51. package/src/__tests__/_shared/ModalDialog.test.tsx +109 -0
  52. package/src/__tests__/e2e/DatePicker.test.tsx +233 -0
  53. package/src/__tests__/e2e/DatePickerProps.test.tsx +18 -0
  54. package/src/__tests__/e2e/DatePickerRoot.test.tsx +154 -0
  55. package/src/__tests__/e2e/DateTimePicker.test.tsx +86 -0
  56. package/src/__tests__/e2e/DateTimePickerRoot.test.tsx +72 -0
  57. package/src/__tests__/e2e/KeyboardDatePicker.test.tsx +140 -0
  58. package/src/__tests__/e2e/KeyboardDateTimePicker.test.tsx +48 -0
  59. package/src/__tests__/e2e/Theme.test.tsx +30 -0
  60. package/src/__tests__/e2e/TimePicker.test.tsx +121 -0
  61. package/src/__tests__/e2e/commands.tsx +8 -0
  62. package/src/__tests__/setup.js +26 -0
  63. package/src/__tests__/test-utils.tsx +45 -0
  64. package/src/__tests__/tsconfig.json +5 -0
  65. package/src/_helpers/date-utils.ts +92 -0
  66. package/src/_helpers/text-field-helper.ts +239 -0
  67. package/src/_helpers/time-utils.ts +83 -0
  68. package/src/_helpers/utils.ts +8 -0
  69. package/src/_shared/KeyboardDateInput.tsx +161 -0
  70. package/src/_shared/ModalDialog.tsx +114 -0
  71. package/src/_shared/PickerToolbar.tsx +52 -0
  72. package/src/_shared/PureDateInput.tsx +45 -0
  73. package/src/_shared/ToolbarButton.tsx +63 -0
  74. package/src/_shared/ToolbarText.tsx +49 -0
  75. package/src/_shared/WithUtils.tsx +19 -0
  76. package/src/_shared/hooks/useIsLandscape.tsx +27 -0
  77. package/src/_shared/hooks/useKeyDown.ts +34 -0
  78. package/src/_shared/hooks/useKeyboardPickerState.ts +72 -0
  79. package/src/_shared/hooks/useOpenState.ts +22 -0
  80. package/src/_shared/hooks/usePickerState.ts +134 -0
  81. package/src/_shared/hooks/useUtils.ts +20 -0
  82. package/src/_shared/hooks/useViews.tsx +31 -0
  83. package/src/_shared/icons/ArrowLeftIcon.tsx +11 -0
  84. package/src/_shared/icons/ArrowRightIcon.tsx +11 -0
  85. package/src/_shared/icons/DateRangeIcon.tsx +11 -0
  86. package/src/_shared/icons/KeyboardIcon.tsx +11 -0
  87. package/src/_shared/icons/TimeIcon.tsx +12 -0
  88. package/src/constants/ClockType.ts +11 -0
  89. package/src/constants/dimensions.ts +5 -0
  90. package/src/constants/prop-types.ts +37 -0
  91. package/src/index.ts +48 -0
  92. package/src/typings/BasePicker.tsx +60 -0
  93. package/src/typings/date.ts +3 -0
  94. package/src/typings/extendMui.ts +10 -0
  95. package/src/typings/overrides.ts +44 -0
  96. package/src/views/Calendar/Calendar.tsx +361 -0
  97. package/src/views/Calendar/CalendarHeader.tsx +141 -0
  98. package/src/views/Calendar/Day.tsx +97 -0
  99. package/src/views/Calendar/DayWrapper.tsx +33 -0
  100. package/src/views/Calendar/SlideTransition.tsx +100 -0
  101. package/src/views/Clock/Clock.tsx +172 -0
  102. package/src/views/Clock/ClockNumber.tsx +91 -0
  103. package/src/views/Clock/ClockNumbers.tsx +76 -0
  104. package/src/views/Clock/ClockPointer.tsx +104 -0
  105. package/src/views/Clock/ClockView.tsx +105 -0
  106. package/src/views/Month/Month.tsx +76 -0
  107. package/src/views/Month/MonthView.tsx +94 -0
  108. package/src/views/Year/Year.tsx +77 -0
  109. package/src/views/Year/YearView.tsx +91 -0
  110. package/src/wrappers/InlineWrapper.tsx +80 -0
  111. package/src/wrappers/ModalWrapper.tsx +113 -0
  112. package/src/wrappers/StaticWrapper.tsx +22 -0
  113. package/src/wrappers/Wrapper.tsx +75 -0
  114. package/tsconfig.json +21 -0
  115. package/typings.d.ts +6 -0
  116. package/dist/material-ui-pickers.esm.js.map +0 -1
  117. package/dist/material-ui-pickers.js.map +0 -1
  118. package/dist/material-ui-pickers.umd.min.js +0 -1
  119. /package/{DatePicker → build/DatePicker}/DatePickerToolbar.d.ts +0 -0
  120. /package/{DatePicker → build/DatePicker}/DatePickerToolbar.js +0 -0
  121. /package/{DatePicker → build/DatePicker}/index.d.ts +0 -0
  122. /package/{DatePicker → build/DatePicker}/index.js +0 -0
  123. /package/{DateTimePicker → build/DateTimePicker}/DateTimePicker.d.ts +0 -0
  124. /package/{DateTimePicker → build/DateTimePicker}/DateTimePickerTabs.d.ts +0 -0
  125. /package/{DateTimePicker → build/DateTimePicker}/DateTimePickerTabs.js +0 -0
  126. /package/{DateTimePicker → build/DateTimePicker}/DateTimePickerToolbar.d.ts +0 -0
  127. /package/{DateTimePicker → build/DateTimePicker}/DateTimePickerToolbar.js +0 -0
  128. /package/{DateTimePicker → build/DateTimePicker}/index.d.ts +0 -0
  129. /package/{DateTimePicker → build/DateTimePicker}/index.js +0 -0
  130. /package/{MuiPickersUtilsProvider.d.ts → build/MuiPickersUtilsProvider.d.ts} +0 -0
  131. /package/{MuiPickersUtilsProvider.js → build/MuiPickersUtilsProvider.js} +0 -0
  132. /package/{Picker → build/Picker}/Picker.d.ts +0 -0
  133. /package/{Picker → build/Picker}/WrappedKeyboardPicker.d.ts +0 -0
  134. /package/{Picker → build/Picker}/WrappedKeyboardPicker.js +0 -0
  135. /package/{Picker → build/Picker}/WrappedPurePicker.d.ts +0 -0
  136. /package/{Picker → build/Picker}/WrappedPurePicker.js +0 -0
  137. /package/{README.md → build/README.md} +0 -0
  138. /package/{Rifm → build/Rifm}/Rifm.d.ts +0 -0
  139. /package/{Rifm → build/Rifm}/Rifm.js +0 -0
  140. /package/{TimePicker → build/TimePicker}/TimePicker.d.ts +0 -0
  141. /package/{TimePicker → build/TimePicker}/TimePickerToolbar.d.ts +0 -0
  142. /package/{TimePicker → build/TimePicker}/TimePickerToolbar.js +0 -0
  143. /package/{TimePicker → build/TimePicker}/index.d.ts +0 -0
  144. /package/{TimePicker → build/TimePicker}/index.js +0 -0
  145. /package/{_helpers → build/_helpers}/date-utils.d.ts +0 -0
  146. /package/{_helpers → build/_helpers}/date-utils.js +0 -0
  147. /package/{_helpers → build/_helpers}/text-field-helper.js +0 -0
  148. /package/{_helpers → build/_helpers}/time-utils.d.ts +0 -0
  149. /package/{_helpers → build/_helpers}/time-utils.js +0 -0
  150. /package/{_helpers → build/_helpers}/utils.d.ts +0 -0
  151. /package/{_helpers → build/_helpers}/utils.js +0 -0
  152. /package/{_shared → build/_shared}/KeyboardDateInput.d.ts +0 -0
  153. /package/{_shared → build/_shared}/ModalDialog.js +0 -0
  154. /package/{_shared → build/_shared}/PickerToolbar.d.ts +0 -0
  155. /package/{_shared → build/_shared}/PickerToolbar.js +0 -0
  156. /package/{_shared → build/_shared}/PureDateInput.d.ts +0 -0
  157. /package/{_shared → build/_shared}/ToolbarButton.js +0 -0
  158. /package/{_shared → build/_shared}/ToolbarText.d.ts +0 -0
  159. /package/{_shared → build/_shared}/ToolbarText.js +0 -0
  160. /package/{_shared → build/_shared}/WithUtils.d.ts +0 -0
  161. /package/{_shared → build/_shared}/WithUtils.js +0 -0
  162. /package/{_shared → build/_shared}/hooks/useIsLandscape.d.ts +0 -0
  163. /package/{_shared → build/_shared}/hooks/useIsLandscape.js +0 -0
  164. /package/{_shared → build/_shared}/hooks/useKeyDown.d.ts +0 -0
  165. /package/{_shared → build/_shared}/hooks/useKeyDown.js +0 -0
  166. /package/{_shared → build/_shared}/hooks/useKeyboardPickerState.d.ts +0 -0
  167. /package/{_shared → build/_shared}/hooks/useOpenState.d.ts +0 -0
  168. /package/{_shared → build/_shared}/hooks/useOpenState.js +0 -0
  169. /package/{_shared → build/_shared}/hooks/usePickerState.d.ts +0 -0
  170. /package/{_shared → build/_shared}/hooks/usePickerState.js +0 -0
  171. /package/{_shared → build/_shared}/hooks/useUtils.d.ts +0 -0
  172. /package/{_shared → build/_shared}/hooks/useUtils.js +0 -0
  173. /package/{_shared → build/_shared}/hooks/useViews.d.ts +0 -0
  174. /package/{_shared → build/_shared}/hooks/useViews.js +0 -0
  175. /package/{_shared → build/_shared}/icons/ArrowLeftIcon.d.ts +0 -0
  176. /package/{_shared → build/_shared}/icons/ArrowLeftIcon.js +0 -0
  177. /package/{_shared → build/_shared}/icons/ArrowRightIcon.d.ts +0 -0
  178. /package/{_shared → build/_shared}/icons/ArrowRightIcon.js +0 -0
  179. /package/{_shared → build/_shared}/icons/DateRangeIcon.d.ts +0 -0
  180. /package/{_shared → build/_shared}/icons/DateRangeIcon.js +0 -0
  181. /package/{_shared → build/_shared}/icons/KeyboardIcon.d.ts +0 -0
  182. /package/{_shared → build/_shared}/icons/KeyboardIcon.js +0 -0
  183. /package/{_shared → build/_shared}/icons/TimeIcon.d.ts +0 -0
  184. /package/{_shared → build/_shared}/icons/TimeIcon.js +0 -0
  185. /package/{constants → build/constants}/ClockType.d.ts +0 -0
  186. /package/{constants → build/constants}/ClockType.js +0 -0
  187. /package/{constants → build/constants}/dimensions.d.ts +0 -0
  188. /package/{constants → build/constants}/dimensions.js +0 -0
  189. /package/{constants → build/constants}/prop-types.d.ts +0 -0
  190. /package/{index.d.ts → build/index.d.ts} +0 -0
  191. /package/{index.js → build/index.js} +0 -0
  192. /package/{typings → build/typings}/BasePicker.d.ts +0 -0
  193. /package/{typings → build/typings}/BasePicker.js +0 -0
  194. /package/{typings → build/typings}/date.d.ts +0 -0
  195. /package/{typings → build/typings}/date.js +0 -0
  196. /package/{typings → build/typings}/extendMui.d.ts +0 -0
  197. /package/{typings → build/typings}/extendMui.js +0 -0
  198. /package/{typings → build/typings}/overrides.d.ts +0 -0
  199. /package/{typings → build/typings}/overrides.js +0 -0
  200. /package/{views → build/views}/Calendar/Calendar.d.ts +0 -0
  201. /package/{views → build/views}/Calendar/CalendarHeader.d.ts +0 -0
  202. /package/{views → build/views}/Calendar/CalendarHeader.js +0 -0
  203. /package/{views → build/views}/Calendar/Day.d.ts +0 -0
  204. /package/{views → build/views}/Calendar/Day.js +0 -0
  205. /package/{views → build/views}/Calendar/DayWrapper.d.ts +0 -0
  206. /package/{views → build/views}/Calendar/DayWrapper.js +0 -0
  207. /package/{views → build/views}/Calendar/SlideTransition.d.ts +0 -0
  208. /package/{views → build/views}/Calendar/SlideTransition.js +0 -0
  209. /package/{views → build/views}/Clock/Clock.js +0 -0
  210. /package/{views → build/views}/Clock/ClockNumber.d.ts +0 -0
  211. /package/{views → build/views}/Clock/ClockNumber.js +0 -0
  212. /package/{views → build/views}/Clock/ClockNumbers.d.ts +0 -0
  213. /package/{views → build/views}/Clock/ClockNumbers.js +0 -0
  214. /package/{views → build/views}/Clock/ClockPointer.js +0 -0
  215. /package/{views → build/views}/Clock/ClockView.d.ts +0 -0
  216. /package/{views → build/views}/Clock/ClockView.js +0 -0
  217. /package/{views → build/views}/Month/Month.d.ts +0 -0
  218. /package/{views → build/views}/Month/Month.js +0 -0
  219. /package/{views → build/views}/Month/MonthView.d.ts +0 -0
  220. /package/{views → build/views}/Month/MonthView.js +0 -0
  221. /package/{views → build/views}/Year/Year.d.ts +0 -0
  222. /package/{views → build/views}/Year/Year.js +0 -0
  223. /package/{views → build/views}/Year/YearView.d.ts +0 -0
  224. /package/{views → build/views}/Year/YearView.js +0 -0
  225. /package/{wrappers → build/wrappers}/InlineWrapper.d.ts +0 -0
  226. /package/{wrappers → build/wrappers}/InlineWrapper.js +0 -0
  227. /package/{wrappers → build/wrappers}/ModalWrapper.d.ts +0 -0
  228. /package/{wrappers → build/wrappers}/ModalWrapper.js +0 -0
  229. /package/{wrappers → build/wrappers}/StaticWrapper.d.ts +0 -0
  230. /package/{wrappers → build/wrappers}/StaticWrapper.js +0 -0
  231. /package/{wrappers → build/wrappers}/Wrapper.d.ts +0 -0
  232. /package/{wrappers → build/wrappers}/Wrapper.js +0 -0
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@docsvision/material-ui-pickers",
3
+ "version": "3.2.0-beta.26",
4
+ "description": "Fork @material-ui/pickers that implements advanced features required for DocsVision WebClient. Original repository https://github.com/mui-org/material-ui-pickers",
5
+ "keywords": [
6
+ "material-ui",
7
+ "pickers",
8
+ "@material-ui/pickers",
9
+ "datepicker",
10
+ "timepicker",
11
+ "date-picker",
12
+ "time-picker",
13
+ "react",
14
+ "react-component",
15
+ "material design",
16
+ "Docsvision",
17
+ "WebClient"
18
+ ],
19
+ "sideEffects": false,
20
+ "license": "MIT",
21
+ "author": {
22
+ "name": "Docsvision"
23
+ },
24
+ "peerDependencies": {
25
+ "@date-io/core": "^1.3.6",
26
+ "@material-ui/core": "^4.0.0",
27
+ "prop-types": "^15.6.0",
28
+ "react": "^16.8.6",
29
+ "react-dom": "^16.8.6"
30
+ },
31
+ "dependencies": {
32
+ "@types/styled-jsx": "^2.2.8",
33
+ "clsx": "^1.0.2",
34
+ "react-transition-group": "^4.0.0",
35
+ "tslib": "^1.9.3"
36
+ },
37
+ "size-limit": [
38
+ {
39
+ "path": "build/dist/@material-ui/pickers.esm.js",
40
+ "limit": "30 KB"
41
+ }
42
+ ],
43
+ "scripts": {
44
+ "test": "jest",
45
+ "test:date-fns": "UTILS=date-fns npm run test",
46
+ "test:luxon": "UTILS=luxon npm run test",
47
+ "test:moment": "UTILS=moment npm run test",
48
+ "start": "rollup --config rollup.config.dev.js --watch & npx tsc --watch",
49
+ "prebuild": "rimraf build",
50
+ "build:copy": "node copy.js",
51
+ "build:bundle": "rollup --config",
52
+ "build:typescript": "tsc --project tsconfig.json",
53
+ "build": "npm run build:typescript && npm run build:bundle && npm run build:copy",
54
+ "build:analyze": "npm run build",
55
+ "release": "yarn test && yarn version && yarn build && yarn publish --non-interactive build",
56
+ "publish": "npm publish build"
57
+ },
58
+ "private": false,
59
+ "main": "./dist/material-ui-pickers.js",
60
+ "module": "./dist/material-ui-pickers.esm.js",
61
+ "typings": "./index.d.ts"
62
+ }
@@ -79,7 +79,7 @@ var Calendar = /** @class */ (function (_super) {
79
79
  var now = utils.date();
80
80
  var moment = utils.moment;
81
81
  return Boolean((disableFuture && utils.isAfterDay(day, now)) ||
82
- (disablePast && moment(day).isBefore(now, "second")) ||
82
+ (disablePast && moment(day).isBefore(now, 'second')) ||
83
83
  (minDate && utils.isBeforeDay(day, utils.date(minDate))) ||
84
84
  (maxDate && utils.isAfterDay(day, utils.date(maxDate))));
85
85
  };
@@ -195,7 +195,7 @@ var Calendar = /** @class */ (function (_super) {
195
195
  };
196
196
  Calendar.defaultProps = {
197
197
  minDate: new Date('1900-01-01'),
198
- maxDate: new Date('2100-01-01'),
198
+ maxDate: new Date('2200-01-01'),
199
199
  disablePast: false,
200
200
  disableFuture: false,
201
201
  allowKeyboardControl: true,
@@ -24,6 +24,6 @@ export declare class Clock extends React.Component<ClockProps> {
24
24
  hasSelected: () => boolean;
25
25
  render(): JSX.Element;
26
26
  }
27
- export declare const styles: (theme: Theme) => Record<"container" | "clock" | "squareMask" | "pin", import("@material-ui/core/styles/withStyles").CSSProperties>;
27
+ export declare const styles: (theme: Theme) => Record<"container" | "clock" | "squareMask" | "pin", import("@material-ui/styles").CSSProperties | (() => import("@material-ui/styles").CSSProperties)>;
28
28
  declare const _default: React.ComponentType<(Pick<ClockProps, "children" | "onChange" | "type" | "value" | "ampm" | "minutesStep"> & import("@material-ui/core/styles").StyledComponentProps<"container" | "clock" | "squareMask" | "pin">) | (Pick<React.PropsWithChildren<ClockProps>, "children" | "onChange" | "type" | "value" | "ampm" | "minutesStep"> & import("@material-ui/core/styles").StyledComponentProps<"container" | "clock" | "squareMask" | "pin">)>;
29
29
  export default _default;
@@ -26,6 +26,6 @@ export declare class ClockPointer extends React.Component<ClockPointerProps> {
26
26
  };
27
27
  render(): JSX.Element;
28
28
  }
29
- export declare const styles: (theme: Theme) => Record<"animateTransform" | "pointer" | "thumb" | "noPoint", import("@material-ui/core/styles/withStyles").CSSProperties>;
29
+ export declare const styles: (theme: Theme) => Record<"animateTransform" | "pointer" | "thumb" | "noPoint", import("@material-ui/styles").CSSProperties | (() => import("@material-ui/styles").CSSProperties)>;
30
30
  declare const _default: React.ComponentType<(Pick<ClockPointerProps, "type" | "value" | "hasSelected" | "isInner"> & import("@material-ui/core").StyledComponentProps<"animateTransform" | "pointer" | "thumb" | "noPoint">) | (Pick<React.PropsWithChildren<ClockPointerProps>, "children" | "type" | "value" | "hasSelected" | "isInner"> & import("@material-ui/core").StyledComponentProps<"animateTransform" | "pointer" | "thumb" | "noPoint">)>;
31
31
  export default _default;
package/copy.js ADDED
@@ -0,0 +1,58 @@
1
+ const path = require('path');
2
+ const fse = require('fs-extra');
3
+
4
+ function copyReadme() {
5
+ return fse
6
+ .copyFile(
7
+ path.resolve(__dirname, '..', 'README.md'),
8
+ path.resolve(__dirname, 'build', 'README.md')
9
+ )
10
+ .then(() => console.log('Copied README.md'));
11
+ }
12
+
13
+ function createPackageFile() {
14
+ return new Promise(resolve => {
15
+ fse.readFile(path.resolve(__dirname, 'package.json'), 'utf8', (err, data) => {
16
+ if (err) {
17
+ throw err;
18
+ }
19
+
20
+ resolve(data);
21
+ });
22
+ })
23
+ .then(data => JSON.parse(data))
24
+ .then(packageData => {
25
+ // cleanup produced package
26
+ const {
27
+ devDependencies,
28
+ jest,
29
+ husky,
30
+ main,
31
+ module,
32
+ 'lint-staged': ls,
33
+ ...other
34
+ } = packageData;
35
+
36
+ const newPackage = {
37
+ ...other,
38
+ private: false,
39
+ main: './dist/material-ui-pickers.js',
40
+ module: './dist/material-ui-pickers.esm.js',
41
+ typings: './index.d.ts',
42
+ };
43
+
44
+ return new Promise(resolve => {
45
+ const buildPath = path.resolve(__dirname, 'build', 'package.json');
46
+ const data = JSON.stringify(newPackage, null, 2);
47
+ fse.writeFile(buildPath, data, err => {
48
+ if (err) throw err;
49
+ console.log(`Created package.json in ${buildPath}`);
50
+ resolve();
51
+ });
52
+ });
53
+ });
54
+ }
55
+
56
+ createPackageFile()
57
+ .then(() => copyReadme())
58
+ .then(console.error);
package/package.json CHANGED
@@ -1,62 +1,135 @@
1
- {
2
- "name": "@docsvision/material-ui-pickers",
3
- "version": "3.2.0-beta.25",
4
- "description": "Fork @material-ui/pickers that implements advanced features required for DocsVision WebClient. Original repository https://github.com/mui-org/material-ui-pickers",
5
- "keywords": [
6
- "material-ui",
7
- "pickers",
8
- "@material-ui/pickers",
9
- "datepicker",
10
- "timepicker",
11
- "date-picker",
12
- "time-picker",
13
- "react",
14
- "react-component",
15
- "material design",
16
- "Docsvision",
17
- "WebClient"
18
- ],
19
- "sideEffects": false,
20
- "license": "MIT",
21
- "author": {
22
- "name": "Docsvision"
23
- },
24
- "peerDependencies": {
25
- "@date-io/core": "^1.3.6",
26
- "@material-ui/core": "^4.0.0",
27
- "prop-types": "^15.6.0",
28
- "react": "^16.8.6",
29
- "react-dom": "^16.8.6"
30
- },
31
- "dependencies": {
32
- "@types/styled-jsx": "^2.2.8",
33
- "clsx": "^1.0.2",
34
- "react-transition-group": "^4.0.0",
35
- "tslib": "^1.9.3"
36
- },
37
- "size-limit": [
38
- {
39
- "path": "build/dist/@material-ui/pickers.esm.js",
40
- "limit": "30 KB"
41
- }
42
- ],
43
- "scripts": {
44
- "test": "jest",
45
- "test:date-fns": "UTILS=date-fns npm run test",
46
- "test:luxon": "UTILS=luxon npm run test",
47
- "test:moment": "UTILS=moment npm run test",
48
- "start": "rollup --config rollup.config.dev.js --watch & npx tsc --watch",
49
- "prebuild": "rimraf build",
50
- "build:copy": "node copy.js",
51
- "build:bundle": "rollup --config",
52
- "build:typescript": "tsc --project tsconfig.json",
53
- "build": "npm run build:typescript && npm run build:bundle && npm run build:copy",
54
- "build:analyze": "npm run build",
55
- "release": "yarn test && yarn version && yarn build && yarn publish --non-interactive build",
56
- "publish": "npm publish build"
57
- },
58
- "private": false,
59
- "main": "./dist/material-ui-pickers.js",
60
- "module": "./dist/material-ui-pickers.esm.js",
61
- "typings": "./index.d.ts"
62
- }
1
+ {
2
+ "name": "@docsvision/material-ui-pickers",
3
+ "version": "3.2.0-beta.26",
4
+ "description": "Fork @material-ui/pickers that implements advanced features required for DocsVision WebClient. Original repository https://github.com/mui-org/material-ui-pickers",
5
+ "main": "./src/index.ts",
6
+ "module": "./src/index.ts",
7
+ "keywords": [
8
+ "material-ui",
9
+ "pickers",
10
+ "@material-ui/pickers",
11
+ "datepicker",
12
+ "timepicker",
13
+ "date-picker",
14
+ "time-picker",
15
+ "react",
16
+ "react-component",
17
+ "material design",
18
+ "Docsvision",
19
+ "WebClient"
20
+ ],
21
+ "sideEffects": false,
22
+ "license": "MIT",
23
+ "author": {
24
+ "name": "Docsvision"
25
+ },
26
+ "peerDependencies": {
27
+ "@date-io/core": "^1.3.6",
28
+ "@material-ui/core": "^4.0.0",
29
+ "prop-types": "^15.6.0",
30
+ "react": "^16.8.6",
31
+ "react-dom": "^16.8.6"
32
+ },
33
+ "dependencies": {
34
+ "@types/styled-jsx": "^2.2.8",
35
+ "clsx": "^1.0.2",
36
+ "react-transition-group": "^4.0.0",
37
+ "tslib": "^1.9.3"
38
+ },
39
+ "size-limit": [
40
+ {
41
+ "path": "build/dist/@material-ui/pickers.esm.js",
42
+ "limit": "30 KB"
43
+ }
44
+ ],
45
+ "scripts": {
46
+ "test": "jest",
47
+ "test:date-fns": "UTILS=date-fns npm run test",
48
+ "test:luxon": "UTILS=luxon npm run test",
49
+ "test:moment": "UTILS=moment npm run test",
50
+ "start": "rollup --config rollup.config.dev.js --watch & npx tsc --watch",
51
+ "prebuild": "rimraf build",
52
+ "build:copy": "node copy.js",
53
+ "build:bundle": "rollup --config",
54
+ "build:typescript": "tsc --project tsconfig.json",
55
+ "build": "npm run build:typescript && npm run build:bundle && npm run build:copy",
56
+ "build:analyze": "npm run build",
57
+ "release": "yarn test && yarn version && yarn build && yarn publish --non-interactive build",
58
+ "publish": "npm publish build"
59
+ },
60
+ "devDependencies": {
61
+ "@babel/core": "^7.2.2",
62
+ "@date-io/core": "^1.2.0",
63
+ "@date-io/date-fns": "^1.3.0",
64
+ "@date-io/luxon": "^1.3.0",
65
+ "@date-io/moment": "^1.3.0",
66
+ "@material-ui/core": "^4.0.0",
67
+ "@material-ui/icons": "^3.0.2",
68
+ "@material-ui/styles": "^4.0.0",
69
+ "@types/enzyme": "^3.1.17",
70
+ "@types/enzyme-adapter-react-16": "^1.0.3",
71
+ "@types/fs-extra": "^5.0.4",
72
+ "@types/glob": "^7.1.1",
73
+ "@types/jest": "^23.3.14",
74
+ "@types/jss": "^9.5.7",
75
+ "@types/luxon": "^1.11.0",
76
+ "@types/prettier": "^1.16.0",
77
+ "@types/prop-types": "^15.5.8",
78
+ "@types/react": "^16.8.2",
79
+ "@types/react-dom": "^16.8.0",
80
+ "@types/react-transition-group": "^2.0.15",
81
+ "codecov": "^3.1.0",
82
+ "cross-env": "^5.2.0",
83
+ "date-fns": "^2.0.0-alpha.27",
84
+ "enzyme": "^3.8.0",
85
+ "enzyme-adapter-react-16": "^1.9.1",
86
+ "fs-extra": "^7.0.1",
87
+ "full-icu": "^1.2.1",
88
+ "glob": "^7.1.3",
89
+ "jest": "^24.1.0",
90
+ "luxon": "^1.11.1",
91
+ "moment": "2.22.2",
92
+ "prop-types": "^15.6.2",
93
+ "react": "^16.8.6",
94
+ "react-dom": "^16.8.6",
95
+ "rollup": "^1.1.2",
96
+ "rollup-plugin-babel": "^4.3.2",
97
+ "rollup-plugin-commonjs": "^9.2.0",
98
+ "rollup-plugin-node-resolve": "^4.0.1",
99
+ "rollup-plugin-size-snapshot": "^0.8.0",
100
+ "rollup-plugin-terser": "^4.0.4",
101
+ "rollup-plugin-typescript": "^1.0.0",
102
+ "size-limit": "^0.21.1",
103
+ "ts-jest": "^24.0.1",
104
+ "ts-lib": "0.0.5",
105
+ "tslint-config-prettier": "^1.18.0",
106
+ "typescript": "^3.3.3"
107
+ },
108
+ "jest": {
109
+ "setupFilesAfterEnv": [
110
+ "<rootDir>/src/__tests__/setup.js"
111
+ ],
112
+ "testRegex": "./src/__tests__/.*\\.test\\.(js|tsx)$",
113
+ "testURL": "http://localhost/",
114
+ "collectCoverage": true,
115
+ "transform": {
116
+ "^.+\\.tsx?$": "ts-jest"
117
+ },
118
+ "moduleFileExtensions": [
119
+ "ts",
120
+ "tsx",
121
+ "js",
122
+ "jsx",
123
+ "json",
124
+ "node"
125
+ ],
126
+ "coveragePathIgnorePatterns": [
127
+ "<rootDir>/src/__tests__/"
128
+ ],
129
+ "globals": {
130
+ "ts-jest": {
131
+ "tsConfig": "./src/__tests__/tsconfig.json"
132
+ }
133
+ }
134
+ }
135
+ }
@@ -0,0 +1,37 @@
1
+ const removePropTypes = api => {
2
+ const { types, template } = api;
3
+ const visitedKey = `remove-prop-types-${Date.now()}`;
4
+ return {
5
+ visitor: {
6
+ AssignmentExpression(path) {
7
+ if (
8
+ types.isMemberExpression(path.node.left) &&
9
+ types.isIdentifier(path.node.left.property) &&
10
+ path.node.left.property.name === 'propTypes'
11
+ ) {
12
+ // Prevent infinity loop.
13
+ if (path.node[visitedKey]) {
14
+ return;
15
+ }
16
+ path.node[visitedKey] = true;
17
+
18
+ const unsafeWrapTemplate = template(
19
+ `
20
+ if (process.env.NODE_ENV !== "production") {
21
+ NODE;
22
+ }
23
+ `,
24
+ { placeholderPattern: /^NODE$/ }
25
+ );
26
+ path.replaceWith(
27
+ unsafeWrapTemplate({
28
+ NODE: path.node,
29
+ })
30
+ );
31
+ }
32
+ },
33
+ },
34
+ };
35
+ };
36
+
37
+ module.exports = removePropTypes;
@@ -0,0 +1,145 @@
1
+ /* eslint-disable @typescript-eslint/no-unused-vars */
2
+ import path from 'path';
3
+ // @ts-ignore
4
+ import pkg from './package.json';
5
+ import typescript from 'typescript';
6
+ import babel from 'rollup-plugin-babel';
7
+ import replace from 'rollup-plugin-replace';
8
+ import commonjs from 'rollup-plugin-commonjs';
9
+ import nodeResolve from 'rollup-plugin-node-resolve';
10
+ import typescriptPlugin from 'rollup-plugin-typescript';
11
+ import { terser } from 'rollup-plugin-terser';
12
+ import { sizeSnapshot } from 'rollup-plugin-size-snapshot';
13
+
14
+ const tsconfig = path.join(__dirname, 'tsconfig.json');
15
+ console.info(`Using tsconfig: ${tsconfig}`);
16
+
17
+ const currentSourceFolder = path.join(__dirname, 'src\\');
18
+
19
+ // treat as externals not relative and not absolute paths
20
+ const external = id => {
21
+ // console.log(id);
22
+ return !id.startsWith('.') && !id.startsWith('/') && !id.includes(currentSourceFolder);
23
+ };
24
+
25
+ const input = './src/index.ts';
26
+ const globals = {
27
+ react: 'React',
28
+ 'react-dom': 'ReactDOM',
29
+ 'prop-types': 'PropTypes',
30
+ '@material-ui/core/Icon': 'material-ui.Icon',
31
+ '@material-ui/core/Button/': 'material-ui/Button.',
32
+ '@material-ui/core/IconButton': 'material-ui.IconButton',
33
+ '@material-ui/core/InputAdornment': 'material-ui.InputAdornment',
34
+ '@material-ui/core/TextField': 'material-ui.TextField',
35
+ '@material-ui/core/Button': 'material-ui.Button',
36
+ '@material-ui/core/Dialog': 'material-ui.Dialog',
37
+ '@material-ui/core/DialogActions': 'material-ui.DialogActions',
38
+ '@material-ui/core/DialogContent': 'material-ui.DialogContent',
39
+ '@material-ui/styles/withStyles': 'material-ui.withStyles',
40
+ '@material-ui/styles/createStyles': 'material-ui.createStyles',
41
+ '@material-ui/core/Toolbar': 'material-ui.Toolbar',
42
+ '@material-ui/core/Typography': 'material-ui.Typography',
43
+ '@material-ui/core/Popover': 'material-ui.Popover',
44
+ '@material-ui/core/Paper': 'material-ui.Paper',
45
+ '@material-ui/styles/withTheme': 'material-ui.withTheme',
46
+ '@material-ui/core/Tab': 'material-ui.Tab',
47
+ '@material-ui/core/Tabs': 'material-ui.Tabs',
48
+ '@material-ui/styles': 'material-ui.styles',
49
+ '@material-ui/core/SvgIcon': 'material-ui.SvgIcon',
50
+ '@material-ui/core/styles/colorManipulator': 'material-ui.styles.colorManipulator',
51
+ };
52
+
53
+ const extensions = ['.ts', '.tsx'];
54
+
55
+ const babelOptions = {
56
+ babelrc: false,
57
+ extensions,
58
+ plugins: ['./remove-prop-types.js'],
59
+ };
60
+
61
+ const commonjsOptions = {
62
+ include: /node_modules/,
63
+ namedExports: {
64
+ 'react-is': ['ForwardRef'],
65
+ },
66
+ };
67
+
68
+ export default [
69
+ {
70
+ input,
71
+ external,
72
+ output: {
73
+ file: 'build/dist/material-ui-pickers.js',
74
+ format: 'cjs',
75
+ sourcemap: true,
76
+ },
77
+ plugins: [
78
+ nodeResolve({ extensions }),
79
+ typescriptPlugin({ typescript, tsconfig }),
80
+ babel(babelOptions),
81
+ ],
82
+ },
83
+
84
+ {
85
+ input,
86
+ external,
87
+ output: {
88
+ file: 'build/dist/material-ui-pickers.esm.js',
89
+ format: 'esm',
90
+ sourcemap: true,
91
+ },
92
+ plugins: [
93
+ nodeResolve({ extensions }),
94
+ typescriptPlugin({ typescript, tsconfig }),
95
+ babel(babelOptions),
96
+ replace({
97
+ delimiters: ['', ''],
98
+ values: { '/** @class */': '/*@__PURE__*/' },
99
+ }),
100
+ sizeSnapshot(),
101
+ ],
102
+ },
103
+
104
+ {
105
+ input,
106
+ external: Object.keys(globals),
107
+ output: {
108
+ globals,
109
+ format: 'umd',
110
+ name: pkg.name,
111
+ file: 'build/dist/material-ui-pickers.umd.js',
112
+ },
113
+
114
+ plugins: [
115
+ nodeResolve({ extensions }),
116
+ typescriptPlugin({ typescript, tsconfig }),
117
+ babel(babelOptions),
118
+ commonjs(commonjsOptions),
119
+ replace({ 'process.env.NODE_ENV': JSON.stringify('development') }),
120
+ sizeSnapshot(),
121
+ ],
122
+ },
123
+
124
+ {
125
+ input,
126
+ external: Object.keys(globals),
127
+ output: {
128
+ globals,
129
+ format: 'umd',
130
+ name: pkg.name,
131
+ file: 'build/dist/material-ui-pickers.umd.min.js',
132
+ },
133
+ plugins: [
134
+ nodeResolve({ extensions }),
135
+ typescriptPlugin({ typescript, tsconfig }),
136
+ babel(babelOptions),
137
+ commonjs(commonjsOptions),
138
+ replace({ 'process.env.NODE_ENV': JSON.stringify('production') }),
139
+ sizeSnapshot(),
140
+ terser({
141
+ mangle: false,
142
+ }),
143
+ ],
144
+ },
145
+ ];
@@ -0,0 +1,91 @@
1
+ import { useUtils } from '../_shared/hooks/useUtils';
2
+ import { DatePickerToolbar } from './DatePickerToolbar';
3
+ import { MaterialUiPickersDate } from '../typings/date';
4
+ import { getFormatByViews } from '../_helpers/date-utils';
5
+ import { OutterCalendarProps } from '../views/Calendar/Calendar';
6
+ import { datePickerDefaultProps, ParsableDate } from '../constants/prop-types';
7
+ import { WrappedPurePickerProps, makePurePicker } from '../Picker/WrappedPurePicker';
8
+ import { makeKeyboardPicker, WrappedKeyboardPickerProps } from '../Picker/WrappedKeyboardPicker';
9
+
10
+ export type DatePickerView = 'year' | 'date' | 'month';
11
+
12
+ export interface BaseDatePickerProps extends OutterCalendarProps {
13
+ /**
14
+ * Min selectable date
15
+ * @default Date(1900-01-01)
16
+ */
17
+ minDate?: ParsableDate;
18
+ /**
19
+ * Max selectable date
20
+ * @default Date(2200-01-01)
21
+ */
22
+ maxDate?: ParsableDate;
23
+
24
+ /**
25
+ * Compare dates by the exact timestamp, instead of start/end of date
26
+ * @default false
27
+ */
28
+ strictCompareDates?: boolean;
29
+
30
+ /**
31
+ * Disable past dates
32
+ * @default false
33
+ */
34
+ disablePast?: boolean;
35
+ /**
36
+ * Disable future dates
37
+ * @default false
38
+ */
39
+ disableFuture?: boolean;
40
+ /**
41
+ * To animate scrolling to current year (using scrollIntoView)
42
+ * @default false
43
+ */
44
+ animateYearScrolling?: boolean;
45
+ /** Callback firing on year change */
46
+ onYearChange?: (date: MaterialUiPickersDate) => void;
47
+ }
48
+
49
+ export interface DatePickerViewsProps extends BaseDatePickerProps {
50
+ /**
51
+ * Array of views to show
52
+ * @type {Array<"year" | "date" | "month">}
53
+ */
54
+ views?: DatePickerView[];
55
+ /** Open to DatePicker */
56
+ openTo?: DatePickerView;
57
+ }
58
+
59
+ export type DatePickerProps = WrappedPurePickerProps & DatePickerViewsProps;
60
+
61
+ export type KeyboardDatePickerProps = WrappedKeyboardPickerProps & DatePickerViewsProps;
62
+
63
+ const defaultProps = {
64
+ ...datePickerDefaultProps,
65
+ openTo: 'date' as DatePickerView,
66
+ views: ['year', 'date'] as DatePickerView[],
67
+ showActionsBar: false,
68
+ todayLabel: 'TODAY',
69
+ };
70
+
71
+ function useOptions(props: DatePickerViewsProps) {
72
+ const utils = useUtils();
73
+
74
+ return {
75
+ getDefaultFormat: () => getFormatByViews(props.views!, utils),
76
+ };
77
+ }
78
+
79
+ export const DatePicker = makePurePicker<DatePickerViewsProps>({
80
+ useOptions,
81
+ DefaultToolbarComponent: DatePickerToolbar,
82
+ });
83
+
84
+ export const KeyboardDatePicker = makeKeyboardPicker<DatePickerViewsProps>({
85
+ useOptions,
86
+ DefaultToolbarComponent: DatePickerToolbar,
87
+ });
88
+
89
+ DatePicker.defaultProps = defaultProps;
90
+
91
+ KeyboardDatePicker.defaultProps = defaultProps;