@elliemae/ds-date-time-recurrence-picker 2.0.0-alpha.1 → 2.0.0-alpha.13

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 (38) hide show
  1. package/cjs/DSDateTimeRecurrenceSelector.js +91 -88
  2. package/cjs/__test__/DSDateTimeRecurrenceSelector.test.js +1 -1
  3. package/cjs/components/AlertModal/DateTimeRangeModal.js +53 -50
  4. package/cjs/components/CustomOptionRender/CustomOptionRender.js +28 -27
  5. package/cjs/components/DateTimeRangeModal/DateTimeRangeModal.js +17 -15
  6. package/cjs/components/DateTimeRangeModalImpl/DateTimeRangeModalImpl.js +26 -21
  7. package/cjs/components/DateTimeRecurenceSelectorImpl.js +37 -30
  8. package/cjs/components/DayOfMonthPicker/DayOfMonthPicker.js +20 -16
  9. package/cjs/components/DayOfYearPicker/DayOfYearPicker.js +19 -15
  10. package/cjs/components/DaysOfWeekPicker/DaysOfWeekPicker.js +33 -31
  11. package/cjs/components/EndDate/EndDate.js +30 -28
  12. package/cjs/components/FieldWrapper/FieldWrapper.js +6 -5
  13. package/cjs/components/LabelWrapper/LabelWrapper.js +6 -5
  14. package/cjs/components/RepeatPickerInput/RepeatPickerInput.js +22 -18
  15. package/cjs/components/StartDateTime/StartDateTime.js +22 -19
  16. package/cjs/components/TimeZonePicker/TimeZonePicker.js +24 -22
  17. package/cjs/components/ValidationMessage/ValidationMessage.js +8 -5
  18. package/cjs/index.js +1 -1
  19. package/esm/DSDateTimeRecurrenceSelector.js +90 -87
  20. package/esm/components/AlertModal/DateTimeRangeModal.js +53 -50
  21. package/esm/components/CustomOptionRender/CustomOptionRender.js +27 -26
  22. package/esm/components/DateTimeRangeModal/DateTimeRangeModal.js +14 -11
  23. package/esm/components/DateTimeRangeModalImpl/DateTimeRangeModalImpl.js +12 -7
  24. package/esm/components/DateTimeRecurenceSelectorImpl.js +29 -21
  25. package/esm/components/DayOfMonthPicker/DayOfMonthPicker.js +19 -14
  26. package/esm/components/DayOfYearPicker/DayOfYearPicker.js +18 -13
  27. package/esm/components/DaysOfWeekPicker/DaysOfWeekPicker.js +31 -25
  28. package/esm/components/EndDate/EndDate.js +30 -27
  29. package/esm/components/FieldWrapper/FieldWrapper.js +5 -4
  30. package/esm/components/LabelWrapper/LabelWrapper.js +5 -4
  31. package/esm/components/RepeatPickerInput/RepeatPickerInput.js +17 -11
  32. package/esm/components/StartDateTime/StartDateTime.js +22 -19
  33. package/esm/components/TimeZonePicker/TimeZonePicker.js +24 -21
  34. package/esm/components/ValidationMessage/ValidationMessage.js +8 -5
  35. package/package.json +12 -7
  36. package/types/DSDateTimeRecurrenceSelector.d.ts +276 -40
  37. package/cjs/package.json +0 -7
  38. package/esm/package.json +0 -7
@@ -1,11 +1,19 @@
1
- import _jsx from '@babel/runtime/helpers/esm/jsx';
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.filter.js';
3
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
4
+ import 'core-js/modules/esnext.iterator.for-each.js';
2
5
  import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
6
+ import _jsx from '@babel/runtime/helpers/esm/jsx';
7
+ import 'core-js/modules/esnext.async-iterator.find.js';
8
+ import 'core-js/modules/esnext.iterator.constructor.js';
9
+ import 'core-js/modules/esnext.iterator.find.js';
10
+ import 'core-js/modules/web.dom-collections.iterator.js';
3
11
  import { Component } from 'react';
4
12
  import { isEqual } from 'lodash';
5
13
  import 'react-dates/initialize';
6
14
  import { components } from 'react-select';
7
15
  import { convertPropToCssClassName } from '@elliemae/ds-classnames';
8
- import DSComboBox from '@elliemae/ds-basic/form/ComboBox';
16
+ import { DSComboBox } from '@elliemae/ds-form';
9
17
  import DateTimeRangeModal from './DateTimeRangeModal/DateTimeRangeModal.js';
10
18
  import { jsxs, jsx } from 'react/jsx-runtime';
11
19
 
@@ -22,7 +30,7 @@ class DateTimeRecurenceSelectorImpl extends Component {
22
30
  constructor(props) {
23
31
  super(props);
24
32
 
25
- _defineProperty(this, "onChange", () => {
33
+ this.onChange = () => {
26
34
  const {
27
35
  onChange
28
36
  } = this.props;
@@ -31,15 +39,15 @@ class DateTimeRecurenceSelectorImpl extends Component {
31
39
  selected
32
40
  } = this.state;
33
41
  onChange(selected, customRange);
34
- });
42
+ };
35
43
 
36
- _defineProperty(this, "onCustomDateTimeRange", customRange => {
44
+ this.onCustomDateTimeRange = customRange => {
37
45
  this.setState({
38
46
  customRange
39
47
  });
40
- });
48
+ };
41
49
 
42
- _defineProperty(this, "onChangeDropdown", value => {
50
+ this.onChangeDropdown = value => {
43
51
  const {
44
52
  dropdownPreselectedOptions
45
53
  } = this.props;
@@ -61,9 +69,9 @@ class DateTimeRecurenceSelectorImpl extends Component {
61
69
  openModal: false
62
70
  });
63
71
  }
64
- });
72
+ };
65
73
 
66
- _defineProperty(this, "handleConfirm", () => {
74
+ this.handleConfirm = () => {
67
75
  const {
68
76
  onConfirmField,
69
77
  customOptionRender: CustomOptionRender,
@@ -87,33 +95,33 @@ class DateTimeRecurenceSelectorImpl extends Component {
87
95
  this.onChange();
88
96
  this.handleCloseModal();
89
97
  onConfirmField();
90
- });
98
+ };
91
99
 
92
- _defineProperty(this, "handleReject", () => {
100
+ this.handleReject = () => {
93
101
  const {
94
102
  onRejectField
95
103
  } = this.props;
96
104
  this.handleActionClose();
97
105
  onRejectField();
98
- });
106
+ };
99
107
 
100
- _defineProperty(this, "handleActionClose", () => {
108
+ this.handleActionClose = () => {
101
109
  this.setState(previousState => ({
102
110
  selected: previousState.previousSelection
103
111
  }));
104
112
  this.handleCloseModal();
105
- });
113
+ };
106
114
 
107
- _defineProperty(this, "handleOpenModal", () => this.setState({
115
+ this.handleOpenModal = () => this.setState({
108
116
  openModal: true
109
- }));
117
+ });
110
118
 
111
- _defineProperty(this, "handleCloseModal", () => {
119
+ this.handleCloseModal = () => {
112
120
  this.setState({
113
121
  openModal: false
114
122
  });
115
123
  setTimeout(() => document.activeElement.blur(), 0); // https://github.com/reactjs/react-modal/issues/680
116
- });
124
+ };
117
125
 
118
126
  this.initCustomRange = props.customRange;
119
127
  this.state = {
@@ -204,11 +212,11 @@ class DateTimeRecurenceSelectorImpl extends Component {
204
212
  } = this.state;
205
213
  const options = [...dropdownPreselectedOptions, advanceOption];
206
214
  return /*#__PURE__*/jsxs("div", _objectSpread(_objectSpread({}, containerProps), {}, {
207
- className: `${cssClassName} ${className}`,
215
+ className: "".concat(cssClassName, " ").concat(className),
208
216
  children: [/*#__PURE__*/_jsx("div", {
209
- className: `${classNameBlock('container-selector')}`
217
+ className: "".concat(classNameBlock('container-selector'))
210
218
  }, void 0, /*#__PURE__*/_jsx(DSComboBox, {
211
- className: `${classNameElement('dropdown-field-selector')}`,
219
+ className: "".concat(classNameElement('dropdown-field-selector')),
212
220
  components: {
213
221
  Option: props => /*#__PURE__*/jsx(components.Option, _objectSpread(_objectSpread({}, props), {}, {
214
222
  allowMultipleDaysOfWeek: allowMultipleDaysOfWeek,
@@ -1,27 +1,32 @@
1
1
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
+ import 'core-js/modules/web.dom-collections.iterator.js';
3
+ import 'core-js/modules/esnext.async-iterator.find.js';
4
+ import 'core-js/modules/esnext.iterator.constructor.js';
5
+ import 'core-js/modules/esnext.iterator.find.js';
2
6
  import 'react';
3
- import DSComboBox from '@elliemae/ds-basic/form/ComboBox';
7
+ import { DSComboBox } from '@elliemae/ds-form';
4
8
  import { nthDay } from '../helpers/nthday.js';
5
9
  import { dropdownDayOfMonthOptions } from '../../options/dropdownDayOfMonthOptions.js';
6
10
  import FormLabel from '../Forms/FormLabel.js';
7
11
  import FormFieldGroup from '../Forms/FormFieldGroup.js';
8
12
  import FormGroup from '../Forms/FormGroup.js';
9
13
 
10
- const DaysOfMonthPicker = ({
11
- onDayChange = () => null,
12
- dayOfMonthValue = dropdownDayOfMonthOptions[0].value,
13
- dayOfMonthOptions = dropdownDayOfMonthOptions,
14
- displayOptionsAsCurrentDate = true,
15
- currentDate = null,
16
- inputLabel = 'On',
17
- dayOfMonthAsCurrentDateOptions,
18
- displayMonthCustomOption
19
- }) => {
14
+ const DaysOfMonthPicker = _ref => {
15
+ let {
16
+ onDayChange = () => null,
17
+ dayOfMonthValue = dropdownDayOfMonthOptions[0].value,
18
+ dayOfMonthOptions = dropdownDayOfMonthOptions,
19
+ displayOptionsAsCurrentDate = true,
20
+ currentDate = null,
21
+ inputLabel = 'On',
22
+ dayOfMonthAsCurrentDateOptions,
23
+ displayMonthCustomOption
24
+ } = _ref;
20
25
  let options = dayOfMonthOptions;
21
26
 
22
27
  if (displayOptionsAsCurrentDate) {
23
- const numberoption = `on the ${currentDate.format('Do')} of the month`;
24
- const nthoption = `on the ${nthDay(currentDate.toDate())} ${currentDate.format('dddd')} of the month`;
28
+ const numberoption = "on the ".concat(currentDate.format('Do'), " of the month");
29
+ const nthoption = "on the ".concat(nthDay(currentDate.toDate()), " ").concat(currentDate.format('dddd'), " of the month");
25
30
  options = [];
26
31
 
27
32
  if (dayOfMonthAsCurrentDateOptions.indexOf('numberOfMonth') > -1) {
@@ -35,7 +40,7 @@ const DaysOfMonthPicker = ({
35
40
 
36
41
  if (dayOfMonthAsCurrentDateOptions.indexOf('dayOfTheWeekOfMonth') > -1) {
37
42
  options.push({
38
- numberLabel: `${nthDay(currentDate.toDate())} ${currentDate.format('dddd')}`,
43
+ numberLabel: "".concat(nthDay(currentDate.toDate()), " ").concat(currentDate.format('dddd')),
39
44
  label: nthoption,
40
45
  value: nthoption,
41
46
  dayOfMonthRepeatPickerKey: 'dayOfTheWeekOfMonth'
@@ -1,27 +1,32 @@
1
1
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
+ import 'core-js/modules/web.dom-collections.iterator.js';
3
+ import 'core-js/modules/esnext.async-iterator.find.js';
4
+ import 'core-js/modules/esnext.iterator.constructor.js';
5
+ import 'core-js/modules/esnext.iterator.find.js';
2
6
  import 'react';
3
- import DSComboBox from '@elliemae/ds-basic/form/ComboBox';
7
+ import { DSComboBox } from '@elliemae/ds-form';
4
8
  import { nthDay } from '../helpers/nthday.js';
5
9
  import { dropdownDayOfMonthOptions } from '../../options/dropdownDayOfMonthOptions.js';
6
10
  import FormGroup from '../Forms/FormGroup.js';
7
11
  import FormLabel from '../Forms/FormLabel.js';
8
12
  import FormFieldGroup from '../Forms/FormFieldGroup.js';
9
13
 
10
- const DaysOfMonthPicker = ({
11
- onDayChange = () => null,
12
- dayOfMonthValue = dropdownDayOfMonthOptions[0].value,
13
- dayOfMonthOptions = dropdownDayOfMonthOptions,
14
- displayOptionsAsCurrentDate = true,
15
- currentDate = null,
16
- inputLabel = 'On',
17
- dayOfYearAsCurrentDateOptions,
18
- displayYearCustomOption
19
- }) => {
14
+ const DaysOfMonthPicker = _ref => {
15
+ let {
16
+ onDayChange = () => null,
17
+ dayOfMonthValue = dropdownDayOfMonthOptions[0].value,
18
+ dayOfMonthOptions = dropdownDayOfMonthOptions,
19
+ displayOptionsAsCurrentDate = true,
20
+ currentDate = null,
21
+ inputLabel = 'On',
22
+ dayOfYearAsCurrentDateOptions,
23
+ displayYearCustomOption
24
+ } = _ref;
20
25
  let options = dayOfMonthOptions;
21
26
 
22
27
  if (displayOptionsAsCurrentDate) {
23
- const numberoption = `on the ${currentDate.format('Do')} of ${currentDate.format('MMMM')}`;
24
- const nthoption = `on the ${nthDay(currentDate.toDate())} ${currentDate.format('dddd')} of ${currentDate.format('MMMM')}`;
28
+ const numberoption = "on the ".concat(currentDate.format('Do'), " of ").concat(currentDate.format('MMMM'));
29
+ const nthoption = "on the ".concat(nthDay(currentDate.toDate()), " ").concat(currentDate.format('dddd'), " of ").concat(currentDate.format('MMMM'));
25
30
  options = [];
26
31
 
27
32
  if (dayOfYearAsCurrentDateOptions.indexOf('numberOfYear') > -1) {
@@ -1,10 +1,9 @@
1
1
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
+ import 'core-js/modules/esnext.async-iterator.map.js';
3
+ import 'core-js/modules/esnext.iterator.map.js';
2
4
  import 'react';
3
5
  import { convertPropToCssClassName } from '@elliemae/ds-classnames';
4
- import DSRadioGroup from '@elliemae/ds-basic/form/RadioGroup';
5
- import DSRadio from '@elliemae/ds-basic/form/Radio';
6
- import DSCheckboxGroup from '@elliemae/ds-basic/form/CheckboxGroup';
7
- import DSCheckbox from '@elliemae/ds-basic/form/Checkbox';
6
+ import { DSRadioGroup, DSRadio, DSCheckboxGroup, DSCheckbox } from '@elliemae/ds-form';
8
7
  import { dropdownDayOfWeekOptions } from '../../options/dropdownDayOfWeekOptions.js';
9
8
  import FormGroup from '../Forms/FormGroup.js';
10
9
  import FormFieldGroup from '../Forms/FormFieldGroup.js';
@@ -20,13 +19,14 @@ const getActive = (allowMultipleDaysOfWeek, active) => {
20
19
  return [active];
21
20
  };
22
21
 
23
- const DaysOfWeekPicker = ({
24
- allowMultipleDaysOfWeek = false,
25
- onDayChange = () => null,
26
- active = dropdownDayOfWeekOptions[0].value,
27
- options = dropdownDayOfWeekOptions,
28
- inputLabel = 'On'
29
- }) => {
22
+ const DaysOfWeekPicker = _ref => {
23
+ let {
24
+ allowMultipleDaysOfWeek = false,
25
+ onDayChange = () => null,
26
+ active = dropdownDayOfWeekOptions[0].value,
27
+ options = dropdownDayOfWeekOptions,
28
+ inputLabel = 'On'
29
+ } = _ref;
30
30
  const safeActive = getActive(allowMultipleDaysOfWeek, active);
31
31
  return /*#__PURE__*/_jsx(FormGroup, {
32
32
  className: cssClassName
@@ -34,23 +34,29 @@ const DaysOfWeekPicker = ({
34
34
  activeValue: safeActive,
35
35
  onChange: onDayChange,
36
36
  orientation: "horizontal"
37
- }, void 0, options.map(({
38
- label,
39
- value
40
- }, index) => /*#__PURE__*/_jsx(DSRadio, {
41
- labelText: label,
42
- value: value
43
- }, index))), allowMultipleDaysOfWeek && /*#__PURE__*/_jsx(DSCheckboxGroup, {
37
+ }, void 0, options.map((_ref2, index) => {
38
+ let {
39
+ label,
40
+ value
41
+ } = _ref2;
42
+ return /*#__PURE__*/_jsx(DSRadio, {
43
+ labelText: label,
44
+ value: value
45
+ }, index);
46
+ })), allowMultipleDaysOfWeek && /*#__PURE__*/_jsx(DSCheckboxGroup, {
44
47
  activeValue: safeActive,
45
48
  onChange: onDayChange,
46
49
  orientation: "horizontal"
47
- }, void 0, options.map(({
48
- label,
49
- value
50
- }, index) => /*#__PURE__*/_jsx(DSCheckbox, {
51
- labelText: label,
52
- value: value
53
- }, index)))));
50
+ }, void 0, options.map((_ref3, index) => {
51
+ let {
52
+ label,
53
+ value
54
+ } = _ref3;
55
+ return /*#__PURE__*/_jsx(DSCheckbox, {
56
+ labelText: label,
57
+ value: value
58
+ }, index);
59
+ }))));
54
60
  };
55
61
 
56
62
  export { DaysOfWeekPicker as default };
@@ -1,7 +1,7 @@
1
1
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
2
  import 'react';
3
3
  import DSDatePicker from '@elliemae/ds-date-picker';
4
- import DSComboBox from '@elliemae/ds-basic/form/ComboBox';
4
+ import { DSComboBox } from '@elliemae/ds-form';
5
5
  import { endTypes } from '../../options/endTypesOptions.js';
6
6
  import FormField from '../Forms/FormField.js';
7
7
  import FormLabel from '../Forms/FormLabel.js';
@@ -10,31 +10,34 @@ import FormFieldGroup from '../Forms/FormFieldGroup.js';
10
10
 
11
11
  var _FormLabel, _FormField;
12
12
 
13
- const EndDate = ({
14
- onEndDateChange = () => null,
15
- onEndTypeChange = () => null,
16
- onEndTimesChange = () => null,
17
- endDateValue = null,
18
- endTypeValue = null,
19
- endTypesOptions = [],
20
- endTimesOptions = [],
21
- endTimesValue = null,
22
- endDayBlocked
23
- }) => /*#__PURE__*/_jsx(FormGroup, {}, void 0, _FormLabel || (_FormLabel = /*#__PURE__*/_jsx(FormLabel, {}, void 0, "Ends")), /*#__PURE__*/_jsx(FormFieldGroup, {}, void 0, /*#__PURE__*/_jsx(FormField, {}, void 0, /*#__PURE__*/_jsx(DSComboBox, {
24
- onChange: onEndTypeChange,
25
- options: endTypesOptions,
26
- value: endTypeValue
27
- })), endTypeValue === endTypes.NEVER && (_FormField || (_FormField = /*#__PURE__*/_jsx(FormField, {}, void 0, /*#__PURE__*/_jsx("div", {})))), endTypeValue === endTypes.ON && /*#__PURE__*/_jsx(FormField, {}, void 0, /*#__PURE__*/_jsx(DSDatePicker, {
28
- appendToBody: true,
29
- date: endDateValue,
30
- isDayBlocked: endDayBlocked,
31
- onDateChange: onEndDateChange,
32
- openDirection: "up",
33
- zIndex: 10
34
- })), endTypeValue === endTypes.AFTER && /*#__PURE__*/_jsx(FormField, {}, void 0, /*#__PURE__*/_jsx(DSComboBox, {
35
- onChange: onEndTimesChange,
36
- options: endTimesOptions,
37
- value: endTimesValue
38
- }))));
13
+ const EndDate = _ref => {
14
+ let {
15
+ onEndDateChange = () => null,
16
+ onEndTypeChange = () => null,
17
+ onEndTimesChange = () => null,
18
+ endDateValue = null,
19
+ endTypeValue = null,
20
+ endTypesOptions = [],
21
+ endTimesOptions = [],
22
+ endTimesValue = null,
23
+ endDayBlocked
24
+ } = _ref;
25
+ return /*#__PURE__*/_jsx(FormGroup, {}, void 0, _FormLabel || (_FormLabel = /*#__PURE__*/_jsx(FormLabel, {}, void 0, "Ends")), /*#__PURE__*/_jsx(FormFieldGroup, {}, void 0, /*#__PURE__*/_jsx(FormField, {}, void 0, /*#__PURE__*/_jsx(DSComboBox, {
26
+ onChange: onEndTypeChange,
27
+ options: endTypesOptions,
28
+ value: endTypeValue
29
+ })), endTypeValue === endTypes.NEVER && (_FormField || (_FormField = /*#__PURE__*/_jsx(FormField, {}, void 0, /*#__PURE__*/_jsx("div", {})))), endTypeValue === endTypes.ON && /*#__PURE__*/_jsx(FormField, {}, void 0, /*#__PURE__*/_jsx(DSDatePicker, {
30
+ appendToBody: true,
31
+ date: endDateValue,
32
+ isDayBlocked: endDayBlocked,
33
+ onDateChange: onEndDateChange,
34
+ openDirection: "up",
35
+ zIndex: 10
36
+ })), endTypeValue === endTypes.AFTER && /*#__PURE__*/_jsx(FormField, {}, void 0, /*#__PURE__*/_jsx(DSComboBox, {
37
+ onChange: onEndTimesChange,
38
+ options: endTimesOptions,
39
+ value: endTimesValue
40
+ }))));
41
+ };
39
42
 
40
43
  export { EndDate as default };
@@ -6,11 +6,12 @@ const {
6
6
  cssClassName
7
7
  } = convertPropToCssClassName('field-wrapper');
8
8
 
9
- function FieldWrapper({
10
- children
11
- }) {
9
+ function FieldWrapper(_ref) {
10
+ let {
11
+ children
12
+ } = _ref;
12
13
  return /*#__PURE__*/_jsx("div", {
13
- className: `${cssClassName}`
14
+ className: "".concat(cssClassName)
14
15
  }, void 0, children);
15
16
  }
16
17
 
@@ -6,11 +6,12 @@ const {
6
6
  cssClassName
7
7
  } = convertPropToCssClassName('label-wrapper');
8
8
 
9
- function LabelWrapper({
10
- children
11
- }) {
9
+ function LabelWrapper(_ref) {
10
+ let {
11
+ children
12
+ } = _ref;
12
13
  return /*#__PURE__*/_jsx("div", {
13
- className: `${cssClassName}`
14
+ className: "".concat(cssClassName)
14
15
  }, void 0, children);
15
16
  }
16
17
 
@@ -1,10 +1,15 @@
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.constructor.js';
3
+ import 'core-js/modules/esnext.iterator.filter.js';
4
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
5
+ import 'core-js/modules/esnext.iterator.for-each.js';
1
6
  import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
2
7
  import _jsx from '@babel/runtime/helpers/esm/jsx';
3
8
  import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
9
+ import 'core-js/modules/web.dom-collections.iterator.js';
4
10
  import { useState } from 'react';
5
11
  import { convertPropToCssClassName } from '@elliemae/ds-classnames';
6
- import DSComboBox from '@elliemae/ds-basic/form/ComboBox';
7
- import DSTextBox from '@elliemae/ds-basic/form/TextBox';
12
+ import { DSTextBox, DSComboBox } from '@elliemae/ds-form';
8
13
  import FormGroup from '../Forms/FormGroup.js';
9
14
  import FormLabel from '../Forms/FormLabel.js';
10
15
  import FormFieldGroup from '../Forms/FormFieldGroup.js';
@@ -20,15 +25,16 @@ const {
20
25
  cssClassName
21
26
  } = convertPropToCssClassName('repeat-picker-input-range-selector');
22
27
 
23
- const RepeatPickerInput = ({
24
- onQtyChange = () => null,
25
- onTypeChange = () => null,
26
- qtyValue = 1,
27
- repeatOptions = [],
28
- repeatOptionsValue = null,
29
- repeatInputLabel = 'Repeats every',
30
- repeatFrecuencyCustomProps = {}
31
- }) => {
28
+ const RepeatPickerInput = _ref => {
29
+ let {
30
+ onQtyChange = () => null,
31
+ onTypeChange = () => null,
32
+ qtyValue = 1,
33
+ repeatOptions = [],
34
+ repeatOptionsValue = null,
35
+ repeatInputLabel = 'Repeats every',
36
+ repeatFrecuencyCustomProps = {}
37
+ } = _ref;
32
38
  const [last, setLast] = useState('');
33
39
 
34
40
  const rest = _objectWithoutProperties(repeatFrecuencyCustomProps, _excluded);
@@ -1,7 +1,7 @@
1
1
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
2
  import 'react';
3
3
  import DSDatePicker from '@elliemae/ds-date-picker';
4
- import DSTimePicker from '@elliemae/ds-basic/TimePicker';
4
+ import DSTimePicker from '@elliemae/ds-time-picker';
5
5
  import FormLabel from '../Forms/FormLabel.js';
6
6
  import FormFieldGroup from '../Forms/FormFieldGroup.js';
7
7
  import FormGroup from '../Forms/FormGroup.js';
@@ -9,23 +9,26 @@ import FormField from '../Forms/FormField.js';
9
9
 
10
10
  var _FormLabel;
11
11
 
12
- const StartDateTime = ({
13
- onStartDateChange = () => null,
14
- onStartTimeChange = () => null,
15
- startDateValue = null,
16
- startTimeValue = null,
17
- startDayBlocked
18
- }) => /*#__PURE__*/_jsx(FormGroup, {}, void 0, _FormLabel || (_FormLabel = /*#__PURE__*/_jsx(FormLabel, {}, void 0, "Starts")), /*#__PURE__*/_jsx(FormFieldGroup, {}, void 0, /*#__PURE__*/_jsx(FormField, {}, void 0, /*#__PURE__*/_jsx(DSDatePicker, {
19
- appendToBody: true,
20
- date: startDateValue,
21
- isDayBlocked: startDayBlocked,
22
- keepOpenOnDateSelect: false,
23
- onDateChange: onStartDateChange,
24
- zIndex: 10
25
- })), /*#__PURE__*/_jsx(FormField, {}, void 0, /*#__PURE__*/_jsx(DSTimePicker, {
26
- onChange: onStartTimeChange,
27
- value: startTimeValue,
28
- zIndex: 10
29
- }))));
12
+ const StartDateTime = _ref => {
13
+ let {
14
+ onStartDateChange = () => null,
15
+ onStartTimeChange = () => null,
16
+ startDateValue = null,
17
+ startTimeValue = null,
18
+ startDayBlocked
19
+ } = _ref;
20
+ return /*#__PURE__*/_jsx(FormGroup, {}, void 0, _FormLabel || (_FormLabel = /*#__PURE__*/_jsx(FormLabel, {}, void 0, "Starts")), /*#__PURE__*/_jsx(FormFieldGroup, {}, void 0, /*#__PURE__*/_jsx(FormField, {}, void 0, /*#__PURE__*/_jsx(DSDatePicker, {
21
+ appendToBody: true,
22
+ date: startDateValue,
23
+ isDayBlocked: startDayBlocked,
24
+ keepOpenOnDateSelect: false,
25
+ onDateChange: onStartDateChange,
26
+ zIndex: 10
27
+ })), /*#__PURE__*/_jsx(FormField, {}, void 0, /*#__PURE__*/_jsx(DSTimePicker, {
28
+ onChange: onStartTimeChange,
29
+ value: startTimeValue,
30
+ zIndex: 10
31
+ }))));
32
+ };
30
33
 
31
34
  export { StartDateTime as default };
@@ -1,7 +1,7 @@
1
1
  import _jsx from '@babel/runtime/helpers/esm/jsx';
2
2
  import 'react';
3
3
  import { convertPropToCssClassName } from '@elliemae/ds-classnames';
4
- import DSComboBox from '@elliemae/ds-basic/form/ComboBox';
4
+ import { DSComboBox } from '@elliemae/ds-form';
5
5
  import { dropdownTimeZoneOptions } from '../../options/dropdownTimeZoneOptions.js';
6
6
  import FieldWrapper from '../FieldWrapper/FieldWrapper.js';
7
7
  import LabelWrapper from '../LabelWrapper/LabelWrapper.js';
@@ -11,25 +11,28 @@ const {
11
11
  classNameElement
12
12
  } = convertPropToCssClassName('timezone-picker-input-range-selector');
13
13
 
14
- const TimeZonePicker = ({
15
- onTimezoneChange = () => null,
16
- timezoneValue = dropdownTimeZoneOptions[0].value,
17
- timezoneOptions = dropdownTimeZoneOptions,
18
- inputLabel = 'Time Zone'
19
- }) => /*#__PURE__*/_jsx("div", {
20
- className: `${cssClassName}`
21
- }, void 0, /*#__PURE__*/_jsx("div", {
22
- className: "grid-x"
23
- }, void 0, /*#__PURE__*/_jsx("div", {
24
- className: "cell medium-4 large-3"
25
- }, void 0, /*#__PURE__*/_jsx(LabelWrapper, {}, void 0, /*#__PURE__*/_jsx("div", {
26
- className: `${classNameElement('label')}`
27
- }, void 0, inputLabel))), /*#__PURE__*/_jsx("div", {
28
- className: "cell medium-8 large-9"
29
- }, void 0, /*#__PURE__*/_jsx(FieldWrapper, {}, void 0, /*#__PURE__*/_jsx(DSComboBox, {
30
- onChange: onTimezoneChange,
31
- options: timezoneOptions,
32
- value: timezoneValue
33
- })))));
14
+ const TimeZonePicker = _ref => {
15
+ let {
16
+ onTimezoneChange = () => null,
17
+ timezoneValue = dropdownTimeZoneOptions[0].value,
18
+ timezoneOptions = dropdownTimeZoneOptions,
19
+ inputLabel = 'Time Zone'
20
+ } = _ref;
21
+ return /*#__PURE__*/_jsx("div", {
22
+ className: "".concat(cssClassName)
23
+ }, void 0, /*#__PURE__*/_jsx("div", {
24
+ className: "grid-x"
25
+ }, void 0, /*#__PURE__*/_jsx("div", {
26
+ className: "cell medium-4 large-3"
27
+ }, void 0, /*#__PURE__*/_jsx(LabelWrapper, {}, void 0, /*#__PURE__*/_jsx("div", {
28
+ className: "".concat(classNameElement('label'))
29
+ }, void 0, inputLabel))), /*#__PURE__*/_jsx("div", {
30
+ className: "cell medium-8 large-9"
31
+ }, void 0, /*#__PURE__*/_jsx(FieldWrapper, {}, void 0, /*#__PURE__*/_jsx(DSComboBox, {
32
+ onChange: onTimezoneChange,
33
+ options: timezoneOptions,
34
+ value: timezoneValue
35
+ })))));
36
+ };
34
37
 
35
38
  export { TimeZonePicker as default };
@@ -6,10 +6,13 @@ const {
6
6
  cssClassName
7
7
  } = convertPropToCssClassName('recurrence-selector-validation-message');
8
8
 
9
- const ValidationMessage = ({
10
- validationMessage = ''
11
- }) => /*#__PURE__*/_jsx("div", {
12
- className: cssClassName
13
- }, void 0, validationMessage);
9
+ const ValidationMessage = _ref => {
10
+ let {
11
+ validationMessage = ''
12
+ } = _ref;
13
+ return /*#__PURE__*/_jsx("div", {
14
+ className: cssClassName
15
+ }, void 0, validationMessage);
16
+ };
14
17
 
15
18
  export { ValidationMessage as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-date-time-recurrence-picker",
3
- "version": "2.0.0-alpha.1",
3
+ "version": "2.0.0-alpha.13",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Date Time Recurrence Picker",
6
6
  "module": "./esm/index.js",
@@ -144,14 +144,19 @@
144
144
  "build": "node ../../scripts/build/build.js"
145
145
  },
146
146
  "dependencies": {
147
- "@elliemae/ds-basic": "2.0.0-alpha.1",
148
- "@elliemae/ds-classnames": "2.0.0-alpha.1",
149
- "@elliemae/ds-date-picker": "2.0.0-alpha.1",
150
- "@elliemae/ds-modal": "2.0.0-alpha.1",
147
+ "@elliemae/ds-classnames": "2.0.0-alpha.13",
148
+ "@elliemae/ds-date-picker": "2.0.0-alpha.13",
149
+ "@elliemae/ds-form": "2.0.0-alpha.13",
150
+ "@elliemae/ds-modal": "2.0.0-alpha.13",
151
+ "@elliemae/ds-time-picker": "2.0.0-alpha.13",
151
152
  "moment": "~2.29.1",
152
153
  "react-dates": "~21.8.0",
153
- "react-select": "4.3.1",
154
- "react-text-mask": "~5.4.3"
154
+ "react-desc": "~4.1.3",
155
+ "react-select": "4.3.1"
156
+ },
157
+ "devDependencies": {
158
+ "@testing-library/jest-dom": "~5.15.0",
159
+ "@testing-library/react": "~12.1.2"
155
160
  },
156
161
  "peerDependencies": {
157
162
  "lodash": "^4.17.21",