react-cron-generator 2.0.15 → 2.0.17
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/README.md +6 -0
- package/build/cron-tab/monthly.d.ts +1 -1
- package/build/cron.d.ts +1 -1
- package/build/day-select/index.d.ts +14 -0
- package/build/index.d.ts +4 -2
- package/build/index.js +209 -145
- package/build/index.js.map +1 -1
- package/build/meta/index.d.ts +2 -2
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -85,6 +85,12 @@ const options = {
|
|
|
85
85
|
|
|
86
86
|
```
|
|
87
87
|
|
|
88
|
+
## Importables
|
|
89
|
+
|
|
90
|
+
Cron - The react Cron component. - Default
|
|
91
|
+
CronProp - Cron component types.
|
|
92
|
+
cronsture - Cronsture/i18 - [cronstrue](https://www.npmjs.com/package/cronstrue)
|
|
93
|
+
|
|
88
94
|
|
|
89
95
|
## Release notes 2.x.x
|
|
90
96
|
1. Build Procedure updated
|
package/build/cron.d.ts
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
type DaySelectProp = {
|
|
3
|
+
disabled?: boolean;
|
|
4
|
+
onChange(value: null | string): void;
|
|
5
|
+
value: string;
|
|
6
|
+
multi?: false;
|
|
7
|
+
} | {
|
|
8
|
+
multi: true;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
onChange(value: string[]): void;
|
|
11
|
+
value: string[];
|
|
12
|
+
};
|
|
13
|
+
declare const DaySelect: React.FunctionComponent<DaySelectProp>;
|
|
14
|
+
export default DaySelect;
|
package/build/index.d.ts
CHANGED