@elliemae/ds-date-time-recurrence-picker 2.2.0-beta.0 → 2.2.0-next.4
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-date-time-recurrence-picker",
|
|
3
|
-
"version": "2.2.0-
|
|
3
|
+
"version": "2.2.0-next.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Date Time Recurrence Picker",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -144,11 +144,11 @@
|
|
|
144
144
|
"build": "node ../../scripts/build/build.js"
|
|
145
145
|
},
|
|
146
146
|
"dependencies": {
|
|
147
|
-
"@elliemae/ds-classnames": "2.2.0-
|
|
148
|
-
"@elliemae/ds-date-picker": "2.2.0-
|
|
149
|
-
"@elliemae/ds-form": "2.2.0-
|
|
150
|
-
"@elliemae/ds-modal": "2.2.0-
|
|
151
|
-
"@elliemae/ds-time-picker": "2.2.0-
|
|
147
|
+
"@elliemae/ds-classnames": "2.2.0-next.4",
|
|
148
|
+
"@elliemae/ds-date-picker": "2.2.0-next.4",
|
|
149
|
+
"@elliemae/ds-form": "2.2.0-next.4",
|
|
150
|
+
"@elliemae/ds-modal": "2.2.0-next.4",
|
|
151
|
+
"@elliemae/ds-time-picker": "2.2.0-next.4",
|
|
152
152
|
"moment": "~2.29.1",
|
|
153
153
|
"react-dates": "~21.8.0",
|
|
154
154
|
"react-desc": "~4.1.3",
|
|
@@ -285,7 +285,94 @@ declare const DSDateTimeRecurrenceSelector: {
|
|
|
285
285
|
export * from './options/endTypesOptions';
|
|
286
286
|
export { DSDateTimeRecurrenceSelector, DropdownRepeatOptionsTypes, dropdownRepeatOptions, dropdownPreselectedOptions, dropdownDayOfWeekOptions, dropdownDayOfMonthOptions, dropdownDayOfYearOptions, DropdownTimeZoneTypes, dropdownTimeZoneOptions, };
|
|
287
287
|
declare const DateTimeRecurenceSelectorWithSchema: {
|
|
288
|
-
(props?:
|
|
288
|
+
(props?: {
|
|
289
|
+
containerProps?: {} | undefined;
|
|
290
|
+
className?: string | undefined;
|
|
291
|
+
preselectedOptions?: {
|
|
292
|
+
label: string;
|
|
293
|
+
value: string;
|
|
294
|
+
}[] | undefined;
|
|
295
|
+
repeatOptions?: {
|
|
296
|
+
label: string;
|
|
297
|
+
value: string;
|
|
298
|
+
}[] | undefined;
|
|
299
|
+
endTypesOptions?: {
|
|
300
|
+
label: string;
|
|
301
|
+
value: string;
|
|
302
|
+
}[] | undefined;
|
|
303
|
+
endTimesOptions?: {
|
|
304
|
+
label: string;
|
|
305
|
+
value: number;
|
|
306
|
+
}[] | undefined;
|
|
307
|
+
dayOfWeekOptions?: {
|
|
308
|
+
label: string;
|
|
309
|
+
value: string;
|
|
310
|
+
}[] | undefined;
|
|
311
|
+
dayOfWeekOptionsEnable?: boolean | undefined;
|
|
312
|
+
dayOfMonthOptions?: {
|
|
313
|
+
label: string;
|
|
314
|
+
value: string;
|
|
315
|
+
}[] | undefined;
|
|
316
|
+
dayOfMonthOptionsEnable?: boolean | undefined;
|
|
317
|
+
dayOfYearOptions?: {
|
|
318
|
+
label: string;
|
|
319
|
+
value: string;
|
|
320
|
+
}[] | undefined;
|
|
321
|
+
dayOfYearOptionsEnable?: boolean | undefined;
|
|
322
|
+
displayMonthCustomOption?: boolean | undefined;
|
|
323
|
+
displayYearCustomOption?: boolean | undefined;
|
|
324
|
+
dayOfMonthAsCurrentDateOptions?: string[] | undefined;
|
|
325
|
+
dayOfYearAsCurrentDateOptions?: string[] | undefined;
|
|
326
|
+
onChange?: (() => null) | undefined;
|
|
327
|
+
placeholder?: string | undefined;
|
|
328
|
+
modalSize?: string | undefined;
|
|
329
|
+
modalTitle?: string | undefined;
|
|
330
|
+
confirmLabel?: string | undefined;
|
|
331
|
+
rejectLabel?: string | undefined;
|
|
332
|
+
modalType?: string | undefined;
|
|
333
|
+
onConfirmField?: (() => null) | undefined;
|
|
334
|
+
onRejectField?: (() => null) | undefined;
|
|
335
|
+
openModal?: boolean | undefined;
|
|
336
|
+
appElement?: string | undefined;
|
|
337
|
+
value?: null | undefined;
|
|
338
|
+
customRange?: null | undefined;
|
|
339
|
+
customOptionRender?: (({ customRange: { startDateInput, startTimeInput, qtyRepeatPickerInput, typeRepeatPickerInput, dayWeekRepeatPickerInput, endDateInput, endTypeInput, endTimesInput, dayOfMonthRepeatPickerInput, dayOfYearRepeatPickerInput, timezonePickerInput, }, dayOfMonthOptionsEnable, dayOfWeekOptionsEnable, dayOfYearOptionsEnable, useTimezoneSelector, }: {
|
|
340
|
+
customRange: {
|
|
341
|
+
startDateInput: any;
|
|
342
|
+
startTimeInput: any;
|
|
343
|
+
qtyRepeatPickerInput: any;
|
|
344
|
+
typeRepeatPickerInput: any;
|
|
345
|
+
dayWeekRepeatPickerInput: any;
|
|
346
|
+
endDateInput: any;
|
|
347
|
+
endTypeInput: any;
|
|
348
|
+
endTimesInput: any;
|
|
349
|
+
dayOfMonthRepeatPickerInput: any;
|
|
350
|
+
dayOfYearRepeatPickerInput: any;
|
|
351
|
+
timezonePickerInput: any;
|
|
352
|
+
};
|
|
353
|
+
dayOfMonthOptionsEnable: any;
|
|
354
|
+
dayOfWeekOptionsEnable: any;
|
|
355
|
+
dayOfYearOptionsEnable: any;
|
|
356
|
+
useTimezoneSelector: any;
|
|
357
|
+
}) => JSX.Element) | undefined;
|
|
358
|
+
displayCurrentMonthYear?: boolean | undefined;
|
|
359
|
+
timeZoneOptions?: {
|
|
360
|
+
label: string;
|
|
361
|
+
value: string;
|
|
362
|
+
}[] | undefined;
|
|
363
|
+
useTimezoneSelector?: boolean | undefined;
|
|
364
|
+
allowMultipleDaysOfWeek?: boolean | undefined;
|
|
365
|
+
advanceOption?: {
|
|
366
|
+
label: string;
|
|
367
|
+
value: string;
|
|
368
|
+
isAdvance: boolean;
|
|
369
|
+
} | undefined;
|
|
370
|
+
isValidRecurrence?: (() => boolean) | undefined;
|
|
371
|
+
validationMessage?: string | undefined;
|
|
372
|
+
endDayBlocked?: (() => boolean) | undefined;
|
|
373
|
+
startDayBlocked?: (() => boolean) | undefined;
|
|
374
|
+
repeatFrecuencyCustomProps?: {} | undefined;
|
|
375
|
+
} | undefined): JSX.Element;
|
|
289
376
|
propTypes: unknown;
|
|
290
377
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
291
378
|
};
|