@elliemae/ds-date-time-recurrence-picker 3.1.0-next.4 → 3.1.0-next.7
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.
|
@@ -147,11 +147,7 @@ const dateTimeRecurrenceSelectorProps = {
|
|
|
147
147
|
})).description("repeat options"),
|
|
148
148
|
endTypesOptions: import_ds_utilities.PropTypes.arrayOf(import_ds_utilities.PropTypes.shape({
|
|
149
149
|
label: import_ds_utilities.PropTypes.string,
|
|
150
|
-
value: import_ds_utilities.PropTypes.oneOf([
|
|
151
|
-
import_endTypesOptions.endTypesOptions.NEVER,
|
|
152
|
-
import_endTypesOptions.endTypesOptions.ON,
|
|
153
|
-
import_endTypesOptions.endTypesOptions.AFTER
|
|
154
|
-
])
|
|
150
|
+
value: import_ds_utilities.PropTypes.oneOf([import_endTypesOptions.endTypesOptions.NEVER, import_endTypesOptions.endTypesOptions.ON, import_endTypesOptions.endTypesOptions.AFTER])
|
|
155
151
|
})).description("end types options"),
|
|
156
152
|
endTimesOptions: import_ds_utilities.PropTypes.arrayOf(import_ds_utilities.PropTypes.shape({
|
|
157
153
|
label: import_ds_utilities.PropTypes.string,
|
|
@@ -174,14 +170,8 @@ const dateTimeRecurrenceSelectorProps = {
|
|
|
174
170
|
dayOfYearOptionsEnable: import_ds_utilities.PropTypes.bool.description("whether to enable day of month options or not").defaultValue(true),
|
|
175
171
|
displayMonthCustomOption: import_ds_utilities.PropTypes.bool.description("whether to display month custom options or not").defaultValue(false),
|
|
176
172
|
displayYearCustomOption: import_ds_utilities.PropTypes.bool.description("whether to display year custom options or not").defaultValue(false),
|
|
177
|
-
dayOfMonthAsCurrentDateOptions: import_ds_utilities.PropTypes.oneOf([
|
|
178
|
-
|
|
179
|
-
"dayOfTheWeekOfMonth"
|
|
180
|
-
]).description("day of month as current date options").defaultValue(["numberOfMonth", "dayOfTheWeekOfMonth"]),
|
|
181
|
-
dayOfYearAsCurrentDateOptions: import_ds_utilities.PropTypes.oneOf([
|
|
182
|
-
"numberOfYear",
|
|
183
|
-
"dayOfTheMonthOfYear"
|
|
184
|
-
]).description("day of year as current date options").defaultValue(["numberOfYear", "dayOfTheMonthOfYear"]),
|
|
173
|
+
dayOfMonthAsCurrentDateOptions: import_ds_utilities.PropTypes.oneOf(["numberOfMonth", "dayOfTheWeekOfMonth"]).description("day of month as current date options").defaultValue(["numberOfMonth", "dayOfTheWeekOfMonth"]),
|
|
174
|
+
dayOfYearAsCurrentDateOptions: import_ds_utilities.PropTypes.oneOf(["numberOfYear", "dayOfTheMonthOfYear"]).description("day of year as current date options").defaultValue(["numberOfYear", "dayOfTheMonthOfYear"]),
|
|
185
175
|
onChange: import_ds_utilities.PropTypes.func.description("function called on change"),
|
|
186
176
|
placeholder: import_ds_utilities.PropTypes.string.description("placeholder value").defaultValue("Select Range"),
|
|
187
177
|
modalSize: import_ds_utilities.PropTypes.oneOf(["medium", "small", "large"]).description("Size of the modal").defaultValue("medium"),
|
|
@@ -206,13 +196,10 @@ const dateTimeRecurrenceSelectorProps = {
|
|
|
206
196
|
advanceOption: import_ds_utilities.PropTypes.shape({
|
|
207
197
|
label: import_ds_utilities.PropTypes.string,
|
|
208
198
|
value: import_ds_utilities.PropTypes.string,
|
|
209
|
-
isAdvance: true
|
|
199
|
+
isAdvance: import_ds_utilities.PropTypes.oneOf([true])
|
|
210
200
|
}).description("advanced options"),
|
|
211
201
|
isValidRecurrence: import_ds_utilities.PropTypes.func.description("is valid recurrence range or nor"),
|
|
212
|
-
validationMessage: import_ds_utilities.PropTypes.oneOfType([
|
|
213
|
-
import_ds_utilities.PropTypes.element,
|
|
214
|
-
import_ds_utilities.PropTypes.string
|
|
215
|
-
]).description("validation messagge"),
|
|
202
|
+
validationMessage: import_ds_utilities.PropTypes.oneOfType([import_ds_utilities.PropTypes.element, import_ds_utilities.PropTypes.string]).description("validation messagge"),
|
|
216
203
|
endDayBlocked: import_ds_utilities.PropTypes.func.description("block end date"),
|
|
217
204
|
startDayBlocked: import_ds_utilities.PropTypes.func.description("block start date"),
|
|
218
205
|
repeatFrecuencyCustomProps: import_ds_utilities.PropTypes.shape({}).description("repeat frecuency custom props")
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/DSDateTimeRecurrenceSelector.tsx", "../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["/* eslint-disable max-lines */\nimport React from 'react';\nimport { PropTypes, describe } from '@elliemae/ds-utilities';\nimport DateTimeRecurrenceSelectorImpl from './components/DateTimeRecurenceSelectorImpl';\nimport { dropdownPreselectedOptions } from './options/dropdownPreselectedOptions';\nimport {\n DropdownRepeatOptionsTypes,\n dropdownRepeatOptions,\n} from './options/dropdownRepeatOptions';\nimport { dropdownDayOfWeekOptions } from './options/dropdownDayOfWeekOptions';\nimport { dropdownDayOfMonthOptions } from './options/dropdownDayOfMonthOptions';\nimport { dropdownDayOfYearOptions } from './options/dropdownDayOfYearOptions';\nimport {\n endTypesOptions as _endTypesOptions,\n endTimesOptions as _endTimesOptions,\n} from './options/endTypesOptions';\nimport CustomOptionRender from './components/CustomOptionRender/CustomOptionRender';\nimport {\n DropdownTimeZoneTypes,\n dropdownTimeZoneOptions,\n} from './options/dropdownTimeZoneOptions';\n\nconst DSDateTimeRecurrenceSelector = ({\n containerProps = {},\n className = '',\n preselectedOptions = dropdownPreselectedOptions,\n repeatOptions = dropdownRepeatOptions,\n endTypesOptions = _endTypesOptions,\n endTimesOptions = _endTimesOptions,\n dayOfWeekOptions = dropdownDayOfWeekOptions,\n dayOfWeekOptionsEnable = true,\n dayOfMonthOptions = dropdownDayOfMonthOptions,\n dayOfMonthOptionsEnable = true,\n dayOfYearOptions = dropdownDayOfYearOptions,\n dayOfYearOptionsEnable = true,\n displayMonthCustomOption = false,\n displayYearCustomOption = false,\n dayOfMonthAsCurrentDateOptions = ['numberOfMonth', 'dayOfTheWeekOfMonth'],\n dayOfYearAsCurrentDateOptions = ['numberOfYear', 'dayOfTheMonthOfYear'],\n onChange = () => null,\n placeholder = 'Select Range',\n modalSize = 'medium',\n modalTitle = 'Report Scheduling',\n confirmLabel = 'Apply',\n rejectLabel = 'Cancel',\n modalType = 'confirm',\n onConfirmField = () => null,\n onRejectField = () => null,\n openModal = false,\n appElement = '#root',\n value = null,\n customRange = null,\n customOptionRender = CustomOptionRender,\n displayCurrentMonthYear = true,\n timeZoneOptions = dropdownTimeZoneOptions,\n useTimezoneSelector = false,\n allowMultipleDaysOfWeek = false,\n advanceOption = {\n label: 'Custom',\n value: 'custom-range',\n isAdvance: true,\n },\n isValidRecurrence = () => true,\n validationMessage = '',\n endDayBlocked = () => false,\n startDayBlocked = () => false,\n repeatFrecuencyCustomProps = {},\n}) => (\n <DateTimeRecurrenceSelectorImpl\n advanceOption={advanceOption}\n allowMultipleDaysOfWeek={allowMultipleDaysOfWeek}\n appElement={appElement}\n className={className}\n confirmLabel={confirmLabel}\n containerProps={containerProps}\n customOptionRender={customOptionRender}\n customRange={customRange}\n dayOfMonthAsCurrentDateOptions={dayOfMonthAsCurrentDateOptions}\n dayOfMonthOptionsEnable={dayOfMonthOptionsEnable}\n dayOfWeekOptionsEnable={dayOfWeekOptionsEnable}\n dayOfYearAsCurrentDateOptions={dayOfYearAsCurrentDateOptions}\n dayOfYearOptionsEnable={dayOfYearOptionsEnable}\n displayCurrentMonthYear={displayCurrentMonthYear}\n displayMonthCustomOption={displayMonthCustomOption}\n displayYearCustomOption={displayYearCustomOption}\n dropdownDayOfMonthOptions={dayOfMonthOptions}\n dropdownDayOfWeekOptions={dayOfWeekOptions}\n dropdownDayOfYearOptions={dayOfYearOptions}\n dropdownPreselectedOptions={preselectedOptions}\n dropdownRepeatOptions={repeatOptions}\n endDayBlocked={endDayBlocked}\n endTimesOptions={endTimesOptions}\n endTypesOptions={endTypesOptions}\n isValidRecurrence={isValidRecurrence}\n modalSize={modalSize}\n modalTitle={modalTitle}\n modalType={modalType}\n onChange={onChange}\n onConfirmField={onConfirmField}\n onRejectField={onRejectField}\n openModal={openModal}\n placeholder={placeholder}\n rejectLabel={rejectLabel}\n repeatFrecuencyCustomProps={repeatFrecuencyCustomProps}\n startDayBlocked={startDayBlocked}\n timeZoneOptions={timeZoneOptions}\n useTimezoneSelector={useTimezoneSelector}\n validationMessage={validationMessage}\n value={value}\n />\n);\n\nexport * from './options/endTypesOptions';\n\nexport {\n DSDateTimeRecurrenceSelector,\n DropdownRepeatOptionsTypes,\n dropdownRepeatOptions,\n dropdownPreselectedOptions,\n dropdownDayOfWeekOptions,\n dropdownDayOfMonthOptions,\n dropdownDayOfYearOptions,\n DropdownTimeZoneTypes,\n dropdownTimeZoneOptions,\n};\n\nconst dateTimeRecurrenceSelectorProps = {\n containerProps: PropTypes.shape({}).description(\n 'Set of Properties attached to the main container',\n ),\n className: PropTypes.string.description('html class attribute'),\n preselectedOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('pre selected options'),\n repeatOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('repeat options'),\n endTypesOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.oneOf([\n _endTypesOptions.NEVER,\n _endTypesOptions.ON,\n _endTypesOptions.AFTER,\n ]),\n }),\n ).description('end types options'),\n endTimesOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('end time options'),\n dayOfWeekOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).defaultValue('day of week options'),\n dayOfWeekOptionsEnable: PropTypes.bool\n .description('whether to enable day of week options or not')\n .defaultValue(true),\n dayOfMonthOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('day of month options'),\n dayOfMonthOptionsEnable: PropTypes.bool\n .description('whether to enable day of month options or not')\n .defaultValue(true),\n dayOfYearOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('day of year options'),\n dayOfYearOptionsEnable: PropTypes.bool\n .description('whether to enable day of month options or not')\n .defaultValue(true),\n displayMonthCustomOption: PropTypes.bool\n .description('whether to display month custom options or not')\n .defaultValue(false),\n displayYearCustomOption: PropTypes.bool\n .description('whether to display year custom options or not')\n .defaultValue(false),\n dayOfMonthAsCurrentDateOptions: PropTypes.oneOf([\n 'numberOfMonth',\n 'dayOfTheWeekOfMonth',\n ])\n .description('day of month as current date options')\n .defaultValue(['numberOfMonth', 'dayOfTheWeekOfMonth']),\n dayOfYearAsCurrentDateOptions: PropTypes.oneOf([\n 'numberOfYear',\n 'dayOfTheMonthOfYear',\n ])\n .description('day of year as current date options')\n .defaultValue(['numberOfYear', 'dayOfTheMonthOfYear']),\n onChange: PropTypes.func.description('function called on change'),\n placeholder: PropTypes.string\n .description('placeholder value')\n .defaultValue('Select Range'),\n modalSize: PropTypes.oneOf(['medium', 'small', 'large'])\n .description('Size of the modal')\n .defaultValue('medium'),\n modalTitle: PropTypes.string\n .description('title of the modal')\n .defaultValue('Report Scheduling'),\n confirmLabel: PropTypes.string\n .description('label of confirm button')\n .defaultValue('Apply'),\n rejectLabel: PropTypes.string\n .description('Label of reject button')\n .defaultValue('Cancel'),\n modalType: PropTypes.oneOf(['confirm', 'alert'])\n .description('type of modal')\n .defaultValue('confirm'),\n onConfirmField: PropTypes.func.description('function called on confirm'),\n onRejectField: PropTypes.func.description('function called on reject'),\n openModal: PropTypes.bool.description('modal open or closed'),\n appElement: PropTypes.string.description('app element'),\n value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).description(\n 'value',\n ),\n customRange: PropTypes.object.description('custom range'),\n customOptionRender: PropTypes.element\n .description('custom renderer of options')\n .defaultValue(CustomOptionRender),\n displayCurrentMonthYear: PropTypes.bool\n .description('display current month year or not')\n .defaultValue(true),\n timeZoneOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('time zone dropdown options'),\n useTimezoneSelector: PropTypes.bool\n .description('use time zone selector or not')\n .defaultValue(false),\n allowMultipleDaysOfWeek: PropTypes.bool\n .description('allow multiple days of week or not')\n .defaultValue(false),\n advanceOption: PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n isAdvance: true, // true is required\n }).description('advanced options'),\n isValidRecurrence: PropTypes.func.description(\n 'is valid recurrence range or nor',\n ),\n validationMessage: PropTypes.oneOfType([\n PropTypes.element,\n PropTypes.string,\n ]).description('validation messagge'),\n endDayBlocked: PropTypes.func.description('block end date'),\n startDayBlocked: PropTypes.func.description('block start date'),\n repeatFrecuencyCustomProps: PropTypes.shape({}).description(\n 'repeat frecuency custom props',\n ),\n};\n\nDSDateTimeRecurrenceSelector.propTypes = dateTimeRecurrenceSelectorProps;\nDSDateTimeRecurrenceSelector.displayName = 'DSDateTimeRecurrenceSelector';\nconst DateTimeRecurenceSelectorWithSchema = describe(\n DSDateTimeRecurrenceSelector,\n);\nDateTimeRecurenceSelectorWithSchema.propTypes = dateTimeRecurrenceSelectorProps;\n\nexport { DateTimeRecurenceSelectorWithSchema };\nexport default DSDateTimeRecurrenceSelector;\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADCvB,mBAAkB;AAClB,0BAAoC;AACpC,2CAA2C;AAC3C,wCAA2C;AAC3C,
|
|
4
|
+
"sourcesContent": ["/* eslint-disable max-lines */\nimport React from 'react';\nimport { PropTypes, describe } from '@elliemae/ds-utilities';\nimport DateTimeRecurrenceSelectorImpl from './components/DateTimeRecurenceSelectorImpl';\nimport { dropdownPreselectedOptions } from './options/dropdownPreselectedOptions';\nimport { DropdownRepeatOptionsTypes, dropdownRepeatOptions } from './options/dropdownRepeatOptions';\nimport { dropdownDayOfWeekOptions } from './options/dropdownDayOfWeekOptions';\nimport { dropdownDayOfMonthOptions } from './options/dropdownDayOfMonthOptions';\nimport { dropdownDayOfYearOptions } from './options/dropdownDayOfYearOptions';\nimport { endTypesOptions as _endTypesOptions, endTimesOptions as _endTimesOptions } from './options/endTypesOptions';\nimport CustomOptionRender from './components/CustomOptionRender/CustomOptionRender';\nimport { DropdownTimeZoneTypes, dropdownTimeZoneOptions } from './options/dropdownTimeZoneOptions';\n\nconst DSDateTimeRecurrenceSelector = ({\n containerProps = {},\n className = '',\n preselectedOptions = dropdownPreselectedOptions,\n repeatOptions = dropdownRepeatOptions,\n endTypesOptions = _endTypesOptions,\n endTimesOptions = _endTimesOptions,\n dayOfWeekOptions = dropdownDayOfWeekOptions,\n dayOfWeekOptionsEnable = true,\n dayOfMonthOptions = dropdownDayOfMonthOptions,\n dayOfMonthOptionsEnable = true,\n dayOfYearOptions = dropdownDayOfYearOptions,\n dayOfYearOptionsEnable = true,\n displayMonthCustomOption = false,\n displayYearCustomOption = false,\n dayOfMonthAsCurrentDateOptions = ['numberOfMonth', 'dayOfTheWeekOfMonth'],\n dayOfYearAsCurrentDateOptions = ['numberOfYear', 'dayOfTheMonthOfYear'],\n onChange = () => null,\n placeholder = 'Select Range',\n modalSize = 'medium',\n modalTitle = 'Report Scheduling',\n confirmLabel = 'Apply',\n rejectLabel = 'Cancel',\n modalType = 'confirm',\n onConfirmField = () => null,\n onRejectField = () => null,\n openModal = false,\n appElement = '#root',\n value = null,\n customRange = null,\n customOptionRender = CustomOptionRender,\n displayCurrentMonthYear = true,\n timeZoneOptions = dropdownTimeZoneOptions,\n useTimezoneSelector = false,\n allowMultipleDaysOfWeek = false,\n advanceOption = {\n label: 'Custom',\n value: 'custom-range',\n isAdvance: true,\n },\n isValidRecurrence = () => true,\n validationMessage = '',\n endDayBlocked = () => false,\n startDayBlocked = () => false,\n repeatFrecuencyCustomProps = {},\n}) => (\n <DateTimeRecurrenceSelectorImpl\n advanceOption={advanceOption}\n allowMultipleDaysOfWeek={allowMultipleDaysOfWeek}\n appElement={appElement}\n className={className}\n confirmLabel={confirmLabel}\n containerProps={containerProps}\n customOptionRender={customOptionRender}\n customRange={customRange}\n dayOfMonthAsCurrentDateOptions={dayOfMonthAsCurrentDateOptions}\n dayOfMonthOptionsEnable={dayOfMonthOptionsEnable}\n dayOfWeekOptionsEnable={dayOfWeekOptionsEnable}\n dayOfYearAsCurrentDateOptions={dayOfYearAsCurrentDateOptions}\n dayOfYearOptionsEnable={dayOfYearOptionsEnable}\n displayCurrentMonthYear={displayCurrentMonthYear}\n displayMonthCustomOption={displayMonthCustomOption}\n displayYearCustomOption={displayYearCustomOption}\n dropdownDayOfMonthOptions={dayOfMonthOptions}\n dropdownDayOfWeekOptions={dayOfWeekOptions}\n dropdownDayOfYearOptions={dayOfYearOptions}\n dropdownPreselectedOptions={preselectedOptions}\n dropdownRepeatOptions={repeatOptions}\n endDayBlocked={endDayBlocked}\n endTimesOptions={endTimesOptions}\n endTypesOptions={endTypesOptions}\n isValidRecurrence={isValidRecurrence}\n modalSize={modalSize}\n modalTitle={modalTitle}\n modalType={modalType}\n onChange={onChange}\n onConfirmField={onConfirmField}\n onRejectField={onRejectField}\n openModal={openModal}\n placeholder={placeholder}\n rejectLabel={rejectLabel}\n repeatFrecuencyCustomProps={repeatFrecuencyCustomProps}\n startDayBlocked={startDayBlocked}\n timeZoneOptions={timeZoneOptions}\n useTimezoneSelector={useTimezoneSelector}\n validationMessage={validationMessage}\n value={value}\n />\n);\n\nexport * from './options/endTypesOptions';\n\nexport {\n DSDateTimeRecurrenceSelector,\n DropdownRepeatOptionsTypes,\n dropdownRepeatOptions,\n dropdownPreselectedOptions,\n dropdownDayOfWeekOptions,\n dropdownDayOfMonthOptions,\n dropdownDayOfYearOptions,\n DropdownTimeZoneTypes,\n dropdownTimeZoneOptions,\n};\n\nconst dateTimeRecurrenceSelectorProps = {\n containerProps: PropTypes.shape({}).description('Set of Properties attached to the main container'),\n className: PropTypes.string.description('html class attribute'),\n preselectedOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('pre selected options'),\n repeatOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('repeat options'),\n endTypesOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.oneOf([_endTypesOptions.NEVER, _endTypesOptions.ON, _endTypesOptions.AFTER]),\n }),\n ).description('end types options'),\n endTimesOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('end time options'),\n dayOfWeekOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).defaultValue('day of week options'),\n dayOfWeekOptionsEnable: PropTypes.bool.description('whether to enable day of week options or not').defaultValue(true),\n dayOfMonthOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('day of month options'),\n dayOfMonthOptionsEnable: PropTypes.bool\n .description('whether to enable day of month options or not')\n .defaultValue(true),\n dayOfYearOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('day of year options'),\n dayOfYearOptionsEnable: PropTypes.bool\n .description('whether to enable day of month options or not')\n .defaultValue(true),\n displayMonthCustomOption: PropTypes.bool\n .description('whether to display month custom options or not')\n .defaultValue(false),\n displayYearCustomOption: PropTypes.bool\n .description('whether to display year custom options or not')\n .defaultValue(false),\n dayOfMonthAsCurrentDateOptions: PropTypes.oneOf(['numberOfMonth', 'dayOfTheWeekOfMonth'])\n .description('day of month as current date options')\n .defaultValue(['numberOfMonth', 'dayOfTheWeekOfMonth']),\n dayOfYearAsCurrentDateOptions: PropTypes.oneOf(['numberOfYear', 'dayOfTheMonthOfYear'])\n .description('day of year as current date options')\n .defaultValue(['numberOfYear', 'dayOfTheMonthOfYear']),\n onChange: PropTypes.func.description('function called on change'),\n placeholder: PropTypes.string.description('placeholder value').defaultValue('Select Range'),\n modalSize: PropTypes.oneOf(['medium', 'small', 'large']).description('Size of the modal').defaultValue('medium'),\n modalTitle: PropTypes.string.description('title of the modal').defaultValue('Report Scheduling'),\n confirmLabel: PropTypes.string.description('label of confirm button').defaultValue('Apply'),\n rejectLabel: PropTypes.string.description('Label of reject button').defaultValue('Cancel'),\n modalType: PropTypes.oneOf(['confirm', 'alert']).description('type of modal').defaultValue('confirm'),\n onConfirmField: PropTypes.func.description('function called on confirm'),\n onRejectField: PropTypes.func.description('function called on reject'),\n openModal: PropTypes.bool.description('modal open or closed'),\n appElement: PropTypes.string.description('app element'),\n value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).description('value'),\n customRange: PropTypes.object.description('custom range'),\n customOptionRender: PropTypes.element.description('custom renderer of options').defaultValue(CustomOptionRender),\n displayCurrentMonthYear: PropTypes.bool.description('display current month year or not').defaultValue(true),\n timeZoneOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('time zone dropdown options'),\n useTimezoneSelector: PropTypes.bool.description('use time zone selector or not').defaultValue(false),\n allowMultipleDaysOfWeek: PropTypes.bool.description('allow multiple days of week or not').defaultValue(false),\n advanceOption: PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n isAdvance: PropTypes.oneOf([true]), // true is required\n }).description('advanced options'),\n isValidRecurrence: PropTypes.func.description('is valid recurrence range or nor'),\n validationMessage: PropTypes.oneOfType([PropTypes.element, PropTypes.string]).description('validation messagge'),\n endDayBlocked: PropTypes.func.description('block end date'),\n startDayBlocked: PropTypes.func.description('block start date'),\n repeatFrecuencyCustomProps: PropTypes.shape({}).description('repeat frecuency custom props'),\n};\n\nDSDateTimeRecurrenceSelector.propTypes = dateTimeRecurrenceSelectorProps;\nDSDateTimeRecurrenceSelector.displayName = 'DSDateTimeRecurrenceSelector';\nconst DateTimeRecurenceSelectorWithSchema = describe(DSDateTimeRecurrenceSelector);\nDateTimeRecurenceSelectorWithSchema.propTypes = dateTimeRecurrenceSelectorProps;\n\nexport { DateTimeRecurenceSelectorWithSchema };\nexport default DSDateTimeRecurrenceSelector;\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -3,22 +3,13 @@ import React2 from "react";
|
|
|
3
3
|
import { PropTypes, describe } from "@elliemae/ds-utilities";
|
|
4
4
|
import DateTimeRecurrenceSelectorImpl from "./components/DateTimeRecurenceSelectorImpl";
|
|
5
5
|
import { dropdownPreselectedOptions } from "./options/dropdownPreselectedOptions";
|
|
6
|
-
import {
|
|
7
|
-
DropdownRepeatOptionsTypes,
|
|
8
|
-
dropdownRepeatOptions
|
|
9
|
-
} from "./options/dropdownRepeatOptions";
|
|
6
|
+
import { DropdownRepeatOptionsTypes, dropdownRepeatOptions } from "./options/dropdownRepeatOptions";
|
|
10
7
|
import { dropdownDayOfWeekOptions } from "./options/dropdownDayOfWeekOptions";
|
|
11
8
|
import { dropdownDayOfMonthOptions } from "./options/dropdownDayOfMonthOptions";
|
|
12
9
|
import { dropdownDayOfYearOptions } from "./options/dropdownDayOfYearOptions";
|
|
13
|
-
import {
|
|
14
|
-
endTypesOptions as _endTypesOptions,
|
|
15
|
-
endTimesOptions as _endTimesOptions
|
|
16
|
-
} from "./options/endTypesOptions";
|
|
10
|
+
import { endTypesOptions as _endTypesOptions, endTimesOptions as _endTimesOptions } from "./options/endTypesOptions";
|
|
17
11
|
import CustomOptionRender from "./components/CustomOptionRender/CustomOptionRender";
|
|
18
|
-
import {
|
|
19
|
-
DropdownTimeZoneTypes,
|
|
20
|
-
dropdownTimeZoneOptions
|
|
21
|
-
} from "./options/dropdownTimeZoneOptions";
|
|
12
|
+
import { DropdownTimeZoneTypes, dropdownTimeZoneOptions } from "./options/dropdownTimeZoneOptions";
|
|
22
13
|
const DSDateTimeRecurrenceSelector = ({
|
|
23
14
|
containerProps = {},
|
|
24
15
|
className = "",
|
|
@@ -120,11 +111,7 @@ const dateTimeRecurrenceSelectorProps = {
|
|
|
120
111
|
})).description("repeat options"),
|
|
121
112
|
endTypesOptions: PropTypes.arrayOf(PropTypes.shape({
|
|
122
113
|
label: PropTypes.string,
|
|
123
|
-
value: PropTypes.oneOf([
|
|
124
|
-
_endTypesOptions.NEVER,
|
|
125
|
-
_endTypesOptions.ON,
|
|
126
|
-
_endTypesOptions.AFTER
|
|
127
|
-
])
|
|
114
|
+
value: PropTypes.oneOf([_endTypesOptions.NEVER, _endTypesOptions.ON, _endTypesOptions.AFTER])
|
|
128
115
|
})).description("end types options"),
|
|
129
116
|
endTimesOptions: PropTypes.arrayOf(PropTypes.shape({
|
|
130
117
|
label: PropTypes.string,
|
|
@@ -147,14 +134,8 @@ const dateTimeRecurrenceSelectorProps = {
|
|
|
147
134
|
dayOfYearOptionsEnable: PropTypes.bool.description("whether to enable day of month options or not").defaultValue(true),
|
|
148
135
|
displayMonthCustomOption: PropTypes.bool.description("whether to display month custom options or not").defaultValue(false),
|
|
149
136
|
displayYearCustomOption: PropTypes.bool.description("whether to display year custom options or not").defaultValue(false),
|
|
150
|
-
dayOfMonthAsCurrentDateOptions: PropTypes.oneOf([
|
|
151
|
-
|
|
152
|
-
"dayOfTheWeekOfMonth"
|
|
153
|
-
]).description("day of month as current date options").defaultValue(["numberOfMonth", "dayOfTheWeekOfMonth"]),
|
|
154
|
-
dayOfYearAsCurrentDateOptions: PropTypes.oneOf([
|
|
155
|
-
"numberOfYear",
|
|
156
|
-
"dayOfTheMonthOfYear"
|
|
157
|
-
]).description("day of year as current date options").defaultValue(["numberOfYear", "dayOfTheMonthOfYear"]),
|
|
137
|
+
dayOfMonthAsCurrentDateOptions: PropTypes.oneOf(["numberOfMonth", "dayOfTheWeekOfMonth"]).description("day of month as current date options").defaultValue(["numberOfMonth", "dayOfTheWeekOfMonth"]),
|
|
138
|
+
dayOfYearAsCurrentDateOptions: PropTypes.oneOf(["numberOfYear", "dayOfTheMonthOfYear"]).description("day of year as current date options").defaultValue(["numberOfYear", "dayOfTheMonthOfYear"]),
|
|
158
139
|
onChange: PropTypes.func.description("function called on change"),
|
|
159
140
|
placeholder: PropTypes.string.description("placeholder value").defaultValue("Select Range"),
|
|
160
141
|
modalSize: PropTypes.oneOf(["medium", "small", "large"]).description("Size of the modal").defaultValue("medium"),
|
|
@@ -179,13 +160,10 @@ const dateTimeRecurrenceSelectorProps = {
|
|
|
179
160
|
advanceOption: PropTypes.shape({
|
|
180
161
|
label: PropTypes.string,
|
|
181
162
|
value: PropTypes.string,
|
|
182
|
-
isAdvance: true
|
|
163
|
+
isAdvance: PropTypes.oneOf([true])
|
|
183
164
|
}).description("advanced options"),
|
|
184
165
|
isValidRecurrence: PropTypes.func.description("is valid recurrence range or nor"),
|
|
185
|
-
validationMessage: PropTypes.oneOfType([
|
|
186
|
-
PropTypes.element,
|
|
187
|
-
PropTypes.string
|
|
188
|
-
]).description("validation messagge"),
|
|
166
|
+
validationMessage: PropTypes.oneOfType([PropTypes.element, PropTypes.string]).description("validation messagge"),
|
|
189
167
|
endDayBlocked: PropTypes.func.description("block end date"),
|
|
190
168
|
startDayBlocked: PropTypes.func.description("block start date"),
|
|
191
169
|
repeatFrecuencyCustomProps: PropTypes.shape({}).description("repeat frecuency custom props")
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../scripts/build/transpile/react-shim.js", "../../src/DSDateTimeRecurrenceSelector.tsx"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable max-lines */\nimport React from 'react';\nimport { PropTypes, describe } from '@elliemae/ds-utilities';\nimport DateTimeRecurrenceSelectorImpl from './components/DateTimeRecurenceSelectorImpl';\nimport { dropdownPreselectedOptions } from './options/dropdownPreselectedOptions';\nimport {\n DropdownRepeatOptionsTypes,\n dropdownRepeatOptions,\n} from './options/dropdownRepeatOptions';\nimport { dropdownDayOfWeekOptions } from './options/dropdownDayOfWeekOptions';\nimport { dropdownDayOfMonthOptions } from './options/dropdownDayOfMonthOptions';\nimport { dropdownDayOfYearOptions } from './options/dropdownDayOfYearOptions';\nimport {\n endTypesOptions as _endTypesOptions,\n endTimesOptions as _endTimesOptions,\n} from './options/endTypesOptions';\nimport CustomOptionRender from './components/CustomOptionRender/CustomOptionRender';\nimport {\n DropdownTimeZoneTypes,\n dropdownTimeZoneOptions,\n} from './options/dropdownTimeZoneOptions';\n\nconst DSDateTimeRecurrenceSelector = ({\n containerProps = {},\n className = '',\n preselectedOptions = dropdownPreselectedOptions,\n repeatOptions = dropdownRepeatOptions,\n endTypesOptions = _endTypesOptions,\n endTimesOptions = _endTimesOptions,\n dayOfWeekOptions = dropdownDayOfWeekOptions,\n dayOfWeekOptionsEnable = true,\n dayOfMonthOptions = dropdownDayOfMonthOptions,\n dayOfMonthOptionsEnable = true,\n dayOfYearOptions = dropdownDayOfYearOptions,\n dayOfYearOptionsEnable = true,\n displayMonthCustomOption = false,\n displayYearCustomOption = false,\n dayOfMonthAsCurrentDateOptions = ['numberOfMonth', 'dayOfTheWeekOfMonth'],\n dayOfYearAsCurrentDateOptions = ['numberOfYear', 'dayOfTheMonthOfYear'],\n onChange = () => null,\n placeholder = 'Select Range',\n modalSize = 'medium',\n modalTitle = 'Report Scheduling',\n confirmLabel = 'Apply',\n rejectLabel = 'Cancel',\n modalType = 'confirm',\n onConfirmField = () => null,\n onRejectField = () => null,\n openModal = false,\n appElement = '#root',\n value = null,\n customRange = null,\n customOptionRender = CustomOptionRender,\n displayCurrentMonthYear = true,\n timeZoneOptions = dropdownTimeZoneOptions,\n useTimezoneSelector = false,\n allowMultipleDaysOfWeek = false,\n advanceOption = {\n label: 'Custom',\n value: 'custom-range',\n isAdvance: true,\n },\n isValidRecurrence = () => true,\n validationMessage = '',\n endDayBlocked = () => false,\n startDayBlocked = () => false,\n repeatFrecuencyCustomProps = {},\n}) => (\n <DateTimeRecurrenceSelectorImpl\n advanceOption={advanceOption}\n allowMultipleDaysOfWeek={allowMultipleDaysOfWeek}\n appElement={appElement}\n className={className}\n confirmLabel={confirmLabel}\n containerProps={containerProps}\n customOptionRender={customOptionRender}\n customRange={customRange}\n dayOfMonthAsCurrentDateOptions={dayOfMonthAsCurrentDateOptions}\n dayOfMonthOptionsEnable={dayOfMonthOptionsEnable}\n dayOfWeekOptionsEnable={dayOfWeekOptionsEnable}\n dayOfYearAsCurrentDateOptions={dayOfYearAsCurrentDateOptions}\n dayOfYearOptionsEnable={dayOfYearOptionsEnable}\n displayCurrentMonthYear={displayCurrentMonthYear}\n displayMonthCustomOption={displayMonthCustomOption}\n displayYearCustomOption={displayYearCustomOption}\n dropdownDayOfMonthOptions={dayOfMonthOptions}\n dropdownDayOfWeekOptions={dayOfWeekOptions}\n dropdownDayOfYearOptions={dayOfYearOptions}\n dropdownPreselectedOptions={preselectedOptions}\n dropdownRepeatOptions={repeatOptions}\n endDayBlocked={endDayBlocked}\n endTimesOptions={endTimesOptions}\n endTypesOptions={endTypesOptions}\n isValidRecurrence={isValidRecurrence}\n modalSize={modalSize}\n modalTitle={modalTitle}\n modalType={modalType}\n onChange={onChange}\n onConfirmField={onConfirmField}\n onRejectField={onRejectField}\n openModal={openModal}\n placeholder={placeholder}\n rejectLabel={rejectLabel}\n repeatFrecuencyCustomProps={repeatFrecuencyCustomProps}\n startDayBlocked={startDayBlocked}\n timeZoneOptions={timeZoneOptions}\n useTimezoneSelector={useTimezoneSelector}\n validationMessage={validationMessage}\n value={value}\n />\n);\n\nexport * from './options/endTypesOptions';\n\nexport {\n DSDateTimeRecurrenceSelector,\n DropdownRepeatOptionsTypes,\n dropdownRepeatOptions,\n dropdownPreselectedOptions,\n dropdownDayOfWeekOptions,\n dropdownDayOfMonthOptions,\n dropdownDayOfYearOptions,\n DropdownTimeZoneTypes,\n dropdownTimeZoneOptions,\n};\n\nconst dateTimeRecurrenceSelectorProps = {\n containerProps: PropTypes.shape({}).description(\n 'Set of Properties attached to the main container',\n ),\n className: PropTypes.string.description('html class attribute'),\n preselectedOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('pre selected options'),\n repeatOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('repeat options'),\n endTypesOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.oneOf([\n _endTypesOptions.NEVER,\n _endTypesOptions.ON,\n _endTypesOptions.AFTER,\n ]),\n }),\n ).description('end types options'),\n endTimesOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('end time options'),\n dayOfWeekOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).defaultValue('day of week options'),\n dayOfWeekOptionsEnable: PropTypes.bool\n .description('whether to enable day of week options or not')\n .defaultValue(true),\n dayOfMonthOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('day of month options'),\n dayOfMonthOptionsEnable: PropTypes.bool\n .description('whether to enable day of month options or not')\n .defaultValue(true),\n dayOfYearOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('day of year options'),\n dayOfYearOptionsEnable: PropTypes.bool\n .description('whether to enable day of month options or not')\n .defaultValue(true),\n displayMonthCustomOption: PropTypes.bool\n .description('whether to display month custom options or not')\n .defaultValue(false),\n displayYearCustomOption: PropTypes.bool\n .description('whether to display year custom options or not')\n .defaultValue(false),\n dayOfMonthAsCurrentDateOptions: PropTypes.oneOf([\n 'numberOfMonth',\n 'dayOfTheWeekOfMonth',\n ])\n .description('day of month as current date options')\n .defaultValue(['numberOfMonth', 'dayOfTheWeekOfMonth']),\n dayOfYearAsCurrentDateOptions: PropTypes.oneOf([\n 'numberOfYear',\n 'dayOfTheMonthOfYear',\n ])\n .description('day of year as current date options')\n .defaultValue(['numberOfYear', 'dayOfTheMonthOfYear']),\n onChange: PropTypes.func.description('function called on change'),\n placeholder: PropTypes.string\n .description('placeholder value')\n .defaultValue('Select Range'),\n modalSize: PropTypes.oneOf(['medium', 'small', 'large'])\n .description('Size of the modal')\n .defaultValue('medium'),\n modalTitle: PropTypes.string\n .description('title of the modal')\n .defaultValue('Report Scheduling'),\n confirmLabel: PropTypes.string\n .description('label of confirm button')\n .defaultValue('Apply'),\n rejectLabel: PropTypes.string\n .description('Label of reject button')\n .defaultValue('Cancel'),\n modalType: PropTypes.oneOf(['confirm', 'alert'])\n .description('type of modal')\n .defaultValue('confirm'),\n onConfirmField: PropTypes.func.description('function called on confirm'),\n onRejectField: PropTypes.func.description('function called on reject'),\n openModal: PropTypes.bool.description('modal open or closed'),\n appElement: PropTypes.string.description('app element'),\n value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).description(\n 'value',\n ),\n customRange: PropTypes.object.description('custom range'),\n customOptionRender: PropTypes.element\n .description('custom renderer of options')\n .defaultValue(CustomOptionRender),\n displayCurrentMonthYear: PropTypes.bool\n .description('display current month year or not')\n .defaultValue(true),\n timeZoneOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('time zone dropdown options'),\n useTimezoneSelector: PropTypes.bool\n .description('use time zone selector or not')\n .defaultValue(false),\n allowMultipleDaysOfWeek: PropTypes.bool\n .description('allow multiple days of week or not')\n .defaultValue(false),\n advanceOption: PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n isAdvance: true, // true is required\n }).description('advanced options'),\n isValidRecurrence: PropTypes.func.description(\n 'is valid recurrence range or nor',\n ),\n validationMessage: PropTypes.oneOfType([\n PropTypes.element,\n PropTypes.string,\n ]).description('validation messagge'),\n endDayBlocked: PropTypes.func.description('block end date'),\n startDayBlocked: PropTypes.func.description('block start date'),\n repeatFrecuencyCustomProps: PropTypes.shape({}).description(\n 'repeat frecuency custom props',\n ),\n};\n\nDSDateTimeRecurrenceSelector.propTypes = dateTimeRecurrenceSelectorProps;\nDSDateTimeRecurrenceSelector.displayName = 'DSDateTimeRecurrenceSelector';\nconst DateTimeRecurenceSelectorWithSchema = describe(\n DSDateTimeRecurrenceSelector,\n);\nDateTimeRecurenceSelectorWithSchema.propTypes = dateTimeRecurrenceSelectorProps;\n\nexport { DateTimeRecurenceSelectorWithSchema };\nexport default DSDateTimeRecurrenceSelector;\n"],
|
|
5
|
-
"mappings": "AAAA;ACCA;AACA;AACA;AACA;AACA;
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable max-lines */\nimport React from 'react';\nimport { PropTypes, describe } from '@elliemae/ds-utilities';\nimport DateTimeRecurrenceSelectorImpl from './components/DateTimeRecurenceSelectorImpl';\nimport { dropdownPreselectedOptions } from './options/dropdownPreselectedOptions';\nimport { DropdownRepeatOptionsTypes, dropdownRepeatOptions } from './options/dropdownRepeatOptions';\nimport { dropdownDayOfWeekOptions } from './options/dropdownDayOfWeekOptions';\nimport { dropdownDayOfMonthOptions } from './options/dropdownDayOfMonthOptions';\nimport { dropdownDayOfYearOptions } from './options/dropdownDayOfYearOptions';\nimport { endTypesOptions as _endTypesOptions, endTimesOptions as _endTimesOptions } from './options/endTypesOptions';\nimport CustomOptionRender from './components/CustomOptionRender/CustomOptionRender';\nimport { DropdownTimeZoneTypes, dropdownTimeZoneOptions } from './options/dropdownTimeZoneOptions';\n\nconst DSDateTimeRecurrenceSelector = ({\n containerProps = {},\n className = '',\n preselectedOptions = dropdownPreselectedOptions,\n repeatOptions = dropdownRepeatOptions,\n endTypesOptions = _endTypesOptions,\n endTimesOptions = _endTimesOptions,\n dayOfWeekOptions = dropdownDayOfWeekOptions,\n dayOfWeekOptionsEnable = true,\n dayOfMonthOptions = dropdownDayOfMonthOptions,\n dayOfMonthOptionsEnable = true,\n dayOfYearOptions = dropdownDayOfYearOptions,\n dayOfYearOptionsEnable = true,\n displayMonthCustomOption = false,\n displayYearCustomOption = false,\n dayOfMonthAsCurrentDateOptions = ['numberOfMonth', 'dayOfTheWeekOfMonth'],\n dayOfYearAsCurrentDateOptions = ['numberOfYear', 'dayOfTheMonthOfYear'],\n onChange = () => null,\n placeholder = 'Select Range',\n modalSize = 'medium',\n modalTitle = 'Report Scheduling',\n confirmLabel = 'Apply',\n rejectLabel = 'Cancel',\n modalType = 'confirm',\n onConfirmField = () => null,\n onRejectField = () => null,\n openModal = false,\n appElement = '#root',\n value = null,\n customRange = null,\n customOptionRender = CustomOptionRender,\n displayCurrentMonthYear = true,\n timeZoneOptions = dropdownTimeZoneOptions,\n useTimezoneSelector = false,\n allowMultipleDaysOfWeek = false,\n advanceOption = {\n label: 'Custom',\n value: 'custom-range',\n isAdvance: true,\n },\n isValidRecurrence = () => true,\n validationMessage = '',\n endDayBlocked = () => false,\n startDayBlocked = () => false,\n repeatFrecuencyCustomProps = {},\n}) => (\n <DateTimeRecurrenceSelectorImpl\n advanceOption={advanceOption}\n allowMultipleDaysOfWeek={allowMultipleDaysOfWeek}\n appElement={appElement}\n className={className}\n confirmLabel={confirmLabel}\n containerProps={containerProps}\n customOptionRender={customOptionRender}\n customRange={customRange}\n dayOfMonthAsCurrentDateOptions={dayOfMonthAsCurrentDateOptions}\n dayOfMonthOptionsEnable={dayOfMonthOptionsEnable}\n dayOfWeekOptionsEnable={dayOfWeekOptionsEnable}\n dayOfYearAsCurrentDateOptions={dayOfYearAsCurrentDateOptions}\n dayOfYearOptionsEnable={dayOfYearOptionsEnable}\n displayCurrentMonthYear={displayCurrentMonthYear}\n displayMonthCustomOption={displayMonthCustomOption}\n displayYearCustomOption={displayYearCustomOption}\n dropdownDayOfMonthOptions={dayOfMonthOptions}\n dropdownDayOfWeekOptions={dayOfWeekOptions}\n dropdownDayOfYearOptions={dayOfYearOptions}\n dropdownPreselectedOptions={preselectedOptions}\n dropdownRepeatOptions={repeatOptions}\n endDayBlocked={endDayBlocked}\n endTimesOptions={endTimesOptions}\n endTypesOptions={endTypesOptions}\n isValidRecurrence={isValidRecurrence}\n modalSize={modalSize}\n modalTitle={modalTitle}\n modalType={modalType}\n onChange={onChange}\n onConfirmField={onConfirmField}\n onRejectField={onRejectField}\n openModal={openModal}\n placeholder={placeholder}\n rejectLabel={rejectLabel}\n repeatFrecuencyCustomProps={repeatFrecuencyCustomProps}\n startDayBlocked={startDayBlocked}\n timeZoneOptions={timeZoneOptions}\n useTimezoneSelector={useTimezoneSelector}\n validationMessage={validationMessage}\n value={value}\n />\n);\n\nexport * from './options/endTypesOptions';\n\nexport {\n DSDateTimeRecurrenceSelector,\n DropdownRepeatOptionsTypes,\n dropdownRepeatOptions,\n dropdownPreselectedOptions,\n dropdownDayOfWeekOptions,\n dropdownDayOfMonthOptions,\n dropdownDayOfYearOptions,\n DropdownTimeZoneTypes,\n dropdownTimeZoneOptions,\n};\n\nconst dateTimeRecurrenceSelectorProps = {\n containerProps: PropTypes.shape({}).description('Set of Properties attached to the main container'),\n className: PropTypes.string.description('html class attribute'),\n preselectedOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('pre selected options'),\n repeatOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('repeat options'),\n endTypesOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.oneOf([_endTypesOptions.NEVER, _endTypesOptions.ON, _endTypesOptions.AFTER]),\n }),\n ).description('end types options'),\n endTimesOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('end time options'),\n dayOfWeekOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).defaultValue('day of week options'),\n dayOfWeekOptionsEnable: PropTypes.bool.description('whether to enable day of week options or not').defaultValue(true),\n dayOfMonthOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('day of month options'),\n dayOfMonthOptionsEnable: PropTypes.bool\n .description('whether to enable day of month options or not')\n .defaultValue(true),\n dayOfYearOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('day of year options'),\n dayOfYearOptionsEnable: PropTypes.bool\n .description('whether to enable day of month options or not')\n .defaultValue(true),\n displayMonthCustomOption: PropTypes.bool\n .description('whether to display month custom options or not')\n .defaultValue(false),\n displayYearCustomOption: PropTypes.bool\n .description('whether to display year custom options or not')\n .defaultValue(false),\n dayOfMonthAsCurrentDateOptions: PropTypes.oneOf(['numberOfMonth', 'dayOfTheWeekOfMonth'])\n .description('day of month as current date options')\n .defaultValue(['numberOfMonth', 'dayOfTheWeekOfMonth']),\n dayOfYearAsCurrentDateOptions: PropTypes.oneOf(['numberOfYear', 'dayOfTheMonthOfYear'])\n .description('day of year as current date options')\n .defaultValue(['numberOfYear', 'dayOfTheMonthOfYear']),\n onChange: PropTypes.func.description('function called on change'),\n placeholder: PropTypes.string.description('placeholder value').defaultValue('Select Range'),\n modalSize: PropTypes.oneOf(['medium', 'small', 'large']).description('Size of the modal').defaultValue('medium'),\n modalTitle: PropTypes.string.description('title of the modal').defaultValue('Report Scheduling'),\n confirmLabel: PropTypes.string.description('label of confirm button').defaultValue('Apply'),\n rejectLabel: PropTypes.string.description('Label of reject button').defaultValue('Cancel'),\n modalType: PropTypes.oneOf(['confirm', 'alert']).description('type of modal').defaultValue('confirm'),\n onConfirmField: PropTypes.func.description('function called on confirm'),\n onRejectField: PropTypes.func.description('function called on reject'),\n openModal: PropTypes.bool.description('modal open or closed'),\n appElement: PropTypes.string.description('app element'),\n value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).description('value'),\n customRange: PropTypes.object.description('custom range'),\n customOptionRender: PropTypes.element.description('custom renderer of options').defaultValue(CustomOptionRender),\n displayCurrentMonthYear: PropTypes.bool.description('display current month year or not').defaultValue(true),\n timeZoneOptions: PropTypes.arrayOf(\n PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n }),\n ).description('time zone dropdown options'),\n useTimezoneSelector: PropTypes.bool.description('use time zone selector or not').defaultValue(false),\n allowMultipleDaysOfWeek: PropTypes.bool.description('allow multiple days of week or not').defaultValue(false),\n advanceOption: PropTypes.shape({\n label: PropTypes.string,\n value: PropTypes.string,\n isAdvance: PropTypes.oneOf([true]), // true is required\n }).description('advanced options'),\n isValidRecurrence: PropTypes.func.description('is valid recurrence range or nor'),\n validationMessage: PropTypes.oneOfType([PropTypes.element, PropTypes.string]).description('validation messagge'),\n endDayBlocked: PropTypes.func.description('block end date'),\n startDayBlocked: PropTypes.func.description('block start date'),\n repeatFrecuencyCustomProps: PropTypes.shape({}).description('repeat frecuency custom props'),\n};\n\nDSDateTimeRecurrenceSelector.propTypes = dateTimeRecurrenceSelectorProps;\nDSDateTimeRecurrenceSelector.displayName = 'DSDateTimeRecurrenceSelector';\nconst DateTimeRecurenceSelectorWithSchema = describe(DSDateTimeRecurrenceSelector);\nDateTimeRecurenceSelectorWithSchema.propTypes = dateTimeRecurrenceSelectorProps;\n\nexport { DateTimeRecurenceSelectorWithSchema };\nexport default DSDateTimeRecurrenceSelector;\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-date-time-recurrence-picker",
|
|
3
|
-
"version": "3.1.0-next.
|
|
3
|
+
"version": "3.1.0-next.7",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Date Time Recurrence Picker",
|
|
6
6
|
"files": [
|
|
@@ -147,12 +147,12 @@
|
|
|
147
147
|
"indent": 4
|
|
148
148
|
},
|
|
149
149
|
"dependencies": {
|
|
150
|
-
"@elliemae/ds-classnames": "3.1.0-next.
|
|
151
|
-
"@elliemae/ds-date-picker": "3.1.0-next.
|
|
152
|
-
"@elliemae/ds-form": "3.1.0-next.
|
|
153
|
-
"@elliemae/ds-modal": "3.1.0-next.
|
|
154
|
-
"@elliemae/ds-time-picker": "3.1.0-next.
|
|
155
|
-
"@elliemae/ds-utilities": "3.1.0-next.
|
|
150
|
+
"@elliemae/ds-classnames": "3.1.0-next.7",
|
|
151
|
+
"@elliemae/ds-date-picker": "3.1.0-next.7",
|
|
152
|
+
"@elliemae/ds-form": "3.1.0-next.7",
|
|
153
|
+
"@elliemae/ds-modal": "3.1.0-next.7",
|
|
154
|
+
"@elliemae/ds-time-picker": "3.1.0-next.7",
|
|
155
|
+
"@elliemae/ds-utilities": "3.1.0-next.7",
|
|
156
156
|
"moment": "~2.29.1",
|
|
157
157
|
"react-dates": "~21.8.0",
|
|
158
158
|
"react-select": "4.3.1"
|