@iobroker/adapter-react-v5 4.11.3 → 4.11.5
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/Components/IconPicker.d.ts +9 -3
- package/Components/IconSelector.d.ts +1 -1
- package/Components/Loaders/MV.js +1 -1
- package/Components/SimpleCron/cron2text.d.ts +4 -6
- package/Components/SimpleCron/cron2text.js +463 -481
- package/Components/SimpleCron/cronText.d.ts +1 -1
- package/Components/SimpleCron/cronText.js +46 -48
- package/Components/SimpleCron/index.d.ts +38 -7
- package/Components/SimpleCron/index.js +579 -729
- package/Components/SimpleCron/jquery.cron.locale.d.ts +28 -1
- package/Components/SimpleCron/jquery.cron.locale.js +530 -336
- package/Dialogs/ComplexCron.d.ts +13 -12
- package/Dialogs/ComplexCron.js +59 -130
- package/Dialogs/Cron.d.ts +17 -14
- package/Dialogs/Cron.js +92 -183
- package/Dialogs/SimpleCron.d.ts +11 -11
- package/Dialogs/SimpleCron.js +49 -119
- package/GenericApp.d.ts +7 -2
- package/GenericApp.js +3 -25
- package/README.md +6 -0
- package/i18n/de.json +2 -1
- package/i18n/en.json +2 -1
- package/i18n/es.json +2 -1
- package/i18n/fr.json +2 -1
- package/i18n/it.json +2 -1
- package/i18n/nl.json +2 -1
- package/i18n/pl.json +2 -1
- package/i18n/pt.json +2 -1
- package/i18n/ru.json +2 -1
- package/i18n/uk.json +2 -1
- package/i18n/zh-cn.json +2 -1
- package/package.json +1 -1
- package/Components/SimpleCron/cron2text.js.map +0 -1
- package/Components/SimpleCron/cronText.js.map +0 -1
- package/Components/SimpleCron/index.js.map +0 -1
- package/Components/SimpleCron/jquery.cron.locale.js.map +0 -1
- package/Dialogs/ComplexCron.js.map +0 -1
- package/Dialogs/Cron.js.map +0 -1
- package/Dialogs/SimpleCron.js.map +0 -1
|
@@ -1,2 +1,29 @@
|
|
|
1
|
+
export type CRON_LOCALE = {
|
|
2
|
+
ORDINALS: {
|
|
3
|
+
th: string;
|
|
4
|
+
st: string;
|
|
5
|
+
nd: string;
|
|
6
|
+
rd: string;
|
|
7
|
+
};
|
|
8
|
+
MONTH: string[];
|
|
9
|
+
DOW: string[];
|
|
10
|
+
Every: string;
|
|
11
|
+
and: string;
|
|
12
|
+
'every day': string;
|
|
13
|
+
'minute past the': string;
|
|
14
|
+
hour: string;
|
|
15
|
+
minute: string;
|
|
16
|
+
'minute of': string;
|
|
17
|
+
second: string;
|
|
18
|
+
'second in minute': string;
|
|
19
|
+
'second of every': string;
|
|
20
|
+
'minute every hour': string;
|
|
21
|
+
'on the': string;
|
|
22
|
+
'of every month': string;
|
|
23
|
+
'and every': string;
|
|
24
|
+
At: string;
|
|
25
|
+
on: string;
|
|
26
|
+
in: string;
|
|
27
|
+
};
|
|
28
|
+
declare const JQUERY_CRON_LOCALE: Record<ioBroker.Languages, CRON_LOCALE>;
|
|
1
29
|
export default JQUERY_CRON_LOCALE;
|
|
2
|
-
declare const JQUERY_CRON_LOCALE: typeof JQUERY_CRON_LOCALE;
|