iobroker.flowers 0.2.8 → 0.3.2

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.
@@ -1,1203 +1,1296 @@
1
- {
2
- "i18n": true,
3
- "type": "tabs",
4
- "items": {
5
- "settings": {
6
- "type": "panel",
7
- "label": "Settings",
8
- "items": {
9
- "_telegramHeader": {
10
- "type": "header",
11
- "text": "Telegram Notifications",
12
- "size": 3
13
- },
14
- "telegramInstance": {
15
- "type": "instance",
16
- "label": "Telegram Instance",
17
- "adapter": "telegram",
18
- "default": "0",
19
- "xs": 12,
20
- "sm": 4,
21
- "md": 4,
22
- "lg": 4,
23
- "xl": 4
24
- },
25
- "telegramUsers": {
26
- "type": "text",
27
- "label": "Telegram Users",
28
- "help": "Comma-separated usernames or leave empty for all users",
29
- "placeholder": "user1,user2",
30
- "default": "",
31
- "xs": 12,
32
- "sm": 8,
33
- "md": 8,
34
- "lg": 8,
35
- "xl": 8
36
- },
37
- "_monitorHeader": {
38
- "type": "header",
39
- "text": "Monitoring",
40
- "size": 3
41
- },
42
- "checkInterval": {
43
- "type": "select",
44
- "label": "Check Interval",
45
- "options": [
46
- {
47
- "label": "5 minutes",
48
- "value": "5"
49
- },
50
- {
51
- "label": "15 minutes",
52
- "value": "15"
53
- },
54
- {
55
- "label": "30 minutes",
56
- "value": "30"
57
- },
58
- {
59
- "label": "1 hour",
60
- "value": "60"
61
- },
62
- {
63
- "label": "2 hours",
64
- "value": "120"
65
- },
66
- {
67
- "label": "6 hours",
68
- "value": "360"
69
- },
70
- {
71
- "label": "24 hours",
72
- "value": "1440"
73
- }
74
- ],
75
- "default": "60",
76
- "xs": 12,
77
- "sm": 6,
78
- "md": 4,
79
- "lg": 3,
80
- "xl": 3
81
- },
82
- "maxMessagesPerDay": {
83
- "type": "number",
84
- "label": "Max Messages per Day",
85
- "min": 1,
86
- "max": 100,
87
- "default": 10,
88
- "xs": 12,
89
- "sm": 6,
90
- "md": 4,
91
- "lg": 3,
92
- "xl": 3
93
- },
94
- "repeatInterval": {
95
- "type": "number",
96
- "label": "Repeat Interval (min)",
97
- "help": "Repeat alert interval in minutes if threshold is still exceeded (0 = no repeat)",
98
- "min": 0,
99
- "max": 1440,
100
- "default": 60,
101
- "xs": 12,
102
- "sm": 6,
103
- "md": 4,
104
- "lg": 3,
105
- "xl": 3
106
- },
107
- "offlineThreshold": {
108
- "type": "number",
109
- "label": "Offline Threshold (hours)",
110
- "min": 1,
111
- "max": 48,
112
- "default": 3,
113
- "xs": 12,
114
- "sm": 6,
115
- "md": 4,
116
- "lg": 3,
117
- "xl": 3
118
- },
119
- "_nightHeader": {
120
- "type": "header",
121
- "text": "Night Mode",
122
- "size": 3
123
- },
124
- "nightModeEnabled": {
125
- "type": "checkbox",
126
- "label": "Enable Night Mode",
127
- "default": false,
128
- "xs": 12,
129
- "sm": 4,
130
- "md": 4,
131
- "lg": 4,
132
- "xl": 4
133
- },
134
- "nightModeStart": {
135
- "type": "text",
136
- "label": "Night Mode Start",
137
- "default": "22:00",
138
- "disabled": "!data.nightModeEnabled",
139
- "xs": 12,
140
- "sm": 4,
141
- "md": 4,
142
- "lg": 4,
143
- "xl": 4
144
- },
145
- "nightModeEnd": {
146
- "type": "text",
147
- "label": "Night Mode End",
148
- "default": "08:00",
149
- "disabled": "!data.nightModeEnabled",
150
- "xs": 12,
151
- "sm": 4,
152
- "md": 4,
153
- "lg": 4,
154
- "xl": 4
155
- },
156
- "_reportHeader": {
157
- "type": "header",
158
- "text": "Periodic Reports",
159
- "size": 3
160
- },
161
- "dailyReportEnabled": {
162
- "type": "checkbox",
163
- "label": "Daily Report",
164
- "default": false,
165
- "xs": 12,
166
- "sm": 4,
167
- "md": 3,
168
- "lg": 3,
169
- "xl": 3
170
- },
171
- "dailyReportTime": {
172
- "type": "text",
173
- "label": "Daily Report Time",
174
- "default": "20:00",
175
- "disabled": "!data.dailyReportEnabled",
176
- "xs": 12,
177
- "sm": 4,
178
- "md": 3,
179
- "lg": 3,
180
- "xl": 3
181
- },
182
- "weeklyReportEnabled": {
183
- "type": "checkbox",
184
- "label": "Weekly Report",
185
- "default": false,
186
- "xs": 12,
187
- "sm": 4,
188
- "md": 3,
189
- "lg": 3,
190
- "xl": 3
191
- },
192
- "weeklyReportDay": {
193
- "type": "select",
194
- "label": "Weekly Report Day",
195
- "options": [
196
- {
197
- "label": "Monday",
198
- "value": "1"
199
- },
200
- {
201
- "label": "Tuesday",
202
- "value": "2"
203
- },
204
- {
205
- "label": "Wednesday",
206
- "value": "3"
207
- },
208
- {
209
- "label": "Thursday",
210
- "value": "4"
211
- },
212
- {
213
- "label": "Friday",
214
- "value": "5"
215
- },
216
- {
217
- "label": "Saturday",
218
- "value": "6"
219
- },
220
- {
221
- "label": "Sunday",
222
- "value": "0"
223
- }
224
- ],
225
- "default": "1",
226
- "disabled": "!data.weeklyReportEnabled",
227
- "xs": 12,
228
- "sm": 4,
229
- "md": 3,
230
- "lg": 3,
231
- "xl": 3
232
- },
233
- "weeklyReportTime": {
234
- "type": "text",
235
- "label": "Weekly Report Time",
236
- "default": "10:00",
237
- "disabled": "!data.weeklyReportEnabled",
238
- "xs": 12,
239
- "sm": 4,
240
- "md": 3,
241
- "lg": 3,
242
- "xl": 3
243
- }
244
- }
245
- },
246
- "plants": {
247
- "type": "panel",
248
- "label": "Plants",
249
- "items": {
250
- "_plantsInfo": {
251
- "type": "staticText",
252
- "text": "Add your plants here. Select the ioBroker state IDs for each sensor. Thresholds override the selected profile values.",
253
- "xs": 12,
254
- "sm": 12,
255
- "md": 12,
256
- "lg": 12,
257
- "xl": 12
258
- },
259
- "plants": {
260
- "type": "table",
261
- "label": "Plants",
262
- "xs": 12,
263
- "sm": 12,
264
- "md": 12,
265
- "lg": 12,
266
- "xl": 12,
267
- "items": [
268
- {
269
- "type": "text",
270
- "title": "Name",
271
- "attr": "name",
272
- "width": "13%"
273
- },
274
- {
275
- "type": "text",
276
- "title": "Location",
277
- "attr": "location",
278
- "width": "9%"
279
- },
280
- {
281
- "type": "select",
282
- "title": "Profile",
283
- "attr": "profile",
284
- "width": "10%",
285
- "options": [
286
- {
287
- "label": "Ficus",
288
- "value": "Ficus"
289
- },
290
- {
291
- "label": "Orchid",
292
- "value": "Orchid"
293
- },
294
- {
295
- "label": "Cactus",
296
- "value": "Cactus"
297
- },
298
- {
299
- "label": "Monstera",
300
- "value": "Monstera"
301
- },
302
- {
303
- "label": "Fern",
304
- "value": "Fern"
305
- },
306
- {
307
- "label": "Succulent",
308
- "value": "Succulent"
309
- },
310
- {
311
- "label": "Palm",
312
- "value": "Palm"
313
- },
314
- {
315
- "label": "Pothos",
316
- "value": "Pothos"
317
- },
318
- {
319
- "label": "Aloe Vera",
320
- "value": "AloeVera"
321
- },
322
- {
323
- "label": "Peace Lily",
324
- "value": "PeaceLily"
325
- },
326
- {
327
- "label": "Coffea arabica",
328
- "value": "CoffeaArabica"
329
- },
330
- {
331
- "label": "Rhapis excelsa",
332
- "value": "RhapisExcelsa"
333
- },
334
- {
335
- "label": "Calathea zebrina",
336
- "value": "Calathea"
337
- },
338
- {
339
- "label": "Sansevieria Laurentii",
340
- "value": "Sansevieria"
341
- },
342
- {
343
- "label": "Custom",
344
- "value": "Custom"
345
- }
346
- ]
347
- },
348
- {
349
- "type": "objectId",
350
- "title": "Humidity Sensor",
351
- "attr": "sensorHumidity",
352
- "width": "14%"
353
- },
354
- {
355
- "type": "objectId",
356
- "title": "Temperature Sensor",
357
- "attr": "sensorTemperature",
358
- "width": "14%"
359
- },
360
- {
361
- "type": "objectId",
362
- "title": "Battery Sensor",
363
- "attr": "sensorBattery",
364
- "width": "9%"
365
- },
366
- {
367
- "type": "text",
368
- "title": "Hum Min %",
369
- "attr": "humidityMin",
370
- "width": "5%",
371
- "placeholder": "—"
372
- },
373
- {
374
- "type": "text",
375
- "title": "Hum Max %",
376
- "attr": "humidityMax",
377
- "width": "5%",
378
- "placeholder": ""
379
- },
380
- {
381
- "type": "text",
382
- "title": "Temp Min",
383
- "attr": "temperatureMin",
384
- "width": "5%",
385
- "placeholder": ""
386
- },
387
- {
388
- "type": "text",
389
- "title": "Temp Max",
390
- "attr": "temperatureMax",
391
- "width": "5%",
392
- "placeholder": ""
393
- },
394
- {
395
- "type": "text",
396
- "title": "Bat Min %",
397
- "attr": "batteryMin",
398
- "width": "7%",
399
- "placeholder": ""
400
- },
401
- {
402
- "type": "checkbox",
403
- "title": "Enabled",
404
- "attr": "enabled",
405
- "width": "4%"
406
- }
407
- ]
408
- }
409
- }
410
- },
411
- "profiles": {
412
- "type": "panel",
413
- "label": "Profiles",
414
- "items": {
415
- "_profilesInfo": {
416
- "type": "staticText",
417
- "text": "Built-in plant profiles with recommended thresholds. Select a profile in the Plants tab — thresholds will be applied automatically. You can override individual values per plant.",
418
- "xs": 12,
419
- "sm": 12,
420
- "md": 12,
421
- "lg": 12,
422
- "xl": 12
423
- },
424
- "_r0c0": {
425
- "type": "staticText",
426
- "text": "Profile",
427
- "xs": 12,
428
- "sm": 3,
429
- "md": 3,
430
- "lg": 3,
431
- "xl": 3,
432
- "style": {
433
- "fontWeight": "bold",
434
- "borderBottom": "1px solid #555",
435
- "paddingBottom": "4px"
436
- }
437
- },
438
- "_r0c1": {
439
- "type": "staticText",
440
- "text": "Humidity %",
441
- "xs": 12,
442
- "sm": 3,
443
- "md": 3,
444
- "lg": 3,
445
- "xl": 3,
446
- "style": {
447
- "fontWeight": "bold",
448
- "borderBottom": "1px solid #555",
449
- "paddingBottom": "4px"
450
- }
451
- },
452
- "_r0c2": {
453
- "type": "staticText",
454
- "text": "Temperature",
455
- "xs": 12,
456
- "sm": 3,
457
- "md": 3,
458
- "lg": 3,
459
- "xl": 3,
460
- "style": {
461
- "fontWeight": "bold",
462
- "borderBottom": "1px solid #555",
463
- "paddingBottom": "4px"
464
- }
465
- },
466
- "_r0c3": {
467
- "type": "staticText",
468
- "text": "Watering",
469
- "xs": 12,
470
- "sm": 3,
471
- "md": 3,
472
- "lg": 3,
473
- "xl": 3,
474
- "style": {
475
- "fontWeight": "bold",
476
- "borderBottom": "1px solid #555",
477
- "paddingBottom": "4px"
478
- }
479
- },
480
- "_r1c0": {
481
- "type": "staticText",
482
- "text": "Ficus",
483
- "xs": 12,
484
- "sm": 3,
485
- "md": 3,
486
- "lg": 3,
487
- "xl": 3,
488
- "style": {}
489
- },
490
- "_r1c1": {
491
- "type": "staticText",
492
- "text": "40-70%",
493
- "xs": 12,
494
- "sm": 3,
495
- "md": 3,
496
- "lg": 3,
497
- "xl": 3,
498
- "style": {}
499
- },
500
- "_r1c2": {
501
- "type": "staticText",
502
- "text": "18-25°C",
503
- "xs": 12,
504
- "sm": 3,
505
- "md": 3,
506
- "lg": 3,
507
- "xl": 3,
508
- "style": {}
509
- },
510
- "_r1c3": {
511
- "type": "staticText",
512
- "text": "7 days",
513
- "xs": 12,
514
- "sm": 3,
515
- "md": 3,
516
- "lg": 3,
517
- "xl": 3,
518
- "style": {}
519
- },
520
- "_div1": {
521
- "type": "divider",
522
- "xs": 12,
523
- "sm": 12,
524
- "md": 12,
525
- "lg": 12,
526
- "xl": 12
527
- },
528
- "_r2c0": {
529
- "type": "staticText",
530
- "text": "Orchid",
531
- "xs": 12,
532
- "sm": 3,
533
- "md": 3,
534
- "lg": 3,
535
- "xl": 3,
536
- "style": {}
537
- },
538
- "_r2c1": {
539
- "type": "staticText",
540
- "text": "50-70%",
541
- "xs": 12,
542
- "sm": 3,
543
- "md": 3,
544
- "lg": 3,
545
- "xl": 3,
546
- "style": {}
547
- },
548
- "_r2c2": {
549
- "type": "staticText",
550
- "text": "18-25°C",
551
- "xs": 12,
552
- "sm": 3,
553
- "md": 3,
554
- "lg": 3,
555
- "xl": 3,
556
- "style": {}
557
- },
558
- "_r2c3": {
559
- "type": "staticText",
560
- "text": "10 days",
561
- "xs": 12,
562
- "sm": 3,
563
- "md": 3,
564
- "lg": 3,
565
- "xl": 3,
566
- "style": {}
567
- },
568
- "_div2": {
569
- "type": "divider",
570
- "xs": 12,
571
- "sm": 12,
572
- "md": 12,
573
- "lg": 12,
574
- "xl": 12
575
- },
576
- "_r3c0": {
577
- "type": "staticText",
578
- "text": "Cactus",
579
- "xs": 12,
580
- "sm": 3,
581
- "md": 3,
582
- "lg": 3,
583
- "xl": 3,
584
- "style": {}
585
- },
586
- "_r3c1": {
587
- "type": "staticText",
588
- "text": "10-30%",
589
- "xs": 12,
590
- "sm": 3,
591
- "md": 3,
592
- "lg": 3,
593
- "xl": 3,
594
- "style": {}
595
- },
596
- "_r3c2": {
597
- "type": "staticText",
598
- "text": "15-35°C",
599
- "xs": 12,
600
- "sm": 3,
601
- "md": 3,
602
- "lg": 3,
603
- "xl": 3,
604
- "style": {}
605
- },
606
- "_r3c3": {
607
- "type": "staticText",
608
- "text": "21 days",
609
- "xs": 12,
610
- "sm": 3,
611
- "md": 3,
612
- "lg": 3,
613
- "xl": 3,
614
- "style": {}
615
- },
616
- "_div3": {
617
- "type": "divider",
618
- "xs": 12,
619
- "sm": 12,
620
- "md": 12,
621
- "lg": 12,
622
- "xl": 12
623
- },
624
- "_r4c0": {
625
- "type": "staticText",
626
- "text": "Monstera",
627
- "xs": 12,
628
- "sm": 3,
629
- "md": 3,
630
- "lg": 3,
631
- "xl": 3,
632
- "style": {}
633
- },
634
- "_r4c1": {
635
- "type": "staticText",
636
- "text": "40-60%",
637
- "xs": 12,
638
- "sm": 3,
639
- "md": 3,
640
- "lg": 3,
641
- "xl": 3,
642
- "style": {}
643
- },
644
- "_r4c2": {
645
- "type": "staticText",
646
- "text": "18-27°C",
647
- "xs": 12,
648
- "sm": 3,
649
- "md": 3,
650
- "lg": 3,
651
- "xl": 3,
652
- "style": {}
653
- },
654
- "_r4c3": {
655
- "type": "staticText",
656
- "text": "7 days",
657
- "xs": 12,
658
- "sm": 3,
659
- "md": 3,
660
- "lg": 3,
661
- "xl": 3,
662
- "style": {}
663
- },
664
- "_div4": {
665
- "type": "divider",
666
- "xs": 12,
667
- "sm": 12,
668
- "md": 12,
669
- "lg": 12,
670
- "xl": 12
671
- },
672
- "_r5c0": {
673
- "type": "staticText",
674
- "text": "Fern",
675
- "xs": 12,
676
- "sm": 3,
677
- "md": 3,
678
- "lg": 3,
679
- "xl": 3,
680
- "style": {}
681
- },
682
- "_r5c1": {
683
- "type": "staticText",
684
- "text": "60-80%",
685
- "xs": 12,
686
- "sm": 3,
687
- "md": 3,
688
- "lg": 3,
689
- "xl": 3,
690
- "style": {}
691
- },
692
- "_r5c2": {
693
- "type": "staticText",
694
- "text": "15-22°C",
695
- "xs": 12,
696
- "sm": 3,
697
- "md": 3,
698
- "lg": 3,
699
- "xl": 3,
700
- "style": {}
701
- },
702
- "_r5c3": {
703
- "type": "staticText",
704
- "text": "3 days",
705
- "xs": 12,
706
- "sm": 3,
707
- "md": 3,
708
- "lg": 3,
709
- "xl": 3,
710
- "style": {}
711
- },
712
- "_div5": {
713
- "type": "divider",
714
- "xs": 12,
715
- "sm": 12,
716
- "md": 12,
717
- "lg": 12,
718
- "xl": 12
719
- },
720
- "_r6c0": {
721
- "type": "staticText",
722
- "text": "Succulent",
723
- "xs": 12,
724
- "sm": 3,
725
- "md": 3,
726
- "lg": 3,
727
- "xl": 3,
728
- "style": {}
729
- },
730
- "_r6c1": {
731
- "type": "staticText",
732
- "text": "10-30%",
733
- "xs": 12,
734
- "sm": 3,
735
- "md": 3,
736
- "lg": 3,
737
- "xl": 3,
738
- "style": {}
739
- },
740
- "_r6c2": {
741
- "type": "staticText",
742
- "text": "15-30°C",
743
- "xs": 12,
744
- "sm": 3,
745
- "md": 3,
746
- "lg": 3,
747
- "xl": 3,
748
- "style": {}
749
- },
750
- "_r6c3": {
751
- "type": "staticText",
752
- "text": "14 days",
753
- "xs": 12,
754
- "sm": 3,
755
- "md": 3,
756
- "lg": 3,
757
- "xl": 3,
758
- "style": {}
759
- },
760
- "_div6": {
761
- "type": "divider",
762
- "xs": 12,
763
- "sm": 12,
764
- "md": 12,
765
- "lg": 12,
766
- "xl": 12
767
- },
768
- "_r7c0": {
769
- "type": "staticText",
770
- "text": "Palm",
771
- "xs": 12,
772
- "sm": 3,
773
- "md": 3,
774
- "lg": 3,
775
- "xl": 3,
776
- "style": {}
777
- },
778
- "_r7c1": {
779
- "type": "staticText",
780
- "text": "40-60%",
781
- "xs": 12,
782
- "sm": 3,
783
- "md": 3,
784
- "lg": 3,
785
- "xl": 3,
786
- "style": {}
787
- },
788
- "_r7c2": {
789
- "type": "staticText",
790
- "text": "18-27°C",
791
- "xs": 12,
792
- "sm": 3,
793
- "md": 3,
794
- "lg": 3,
795
- "xl": 3,
796
- "style": {}
797
- },
798
- "_r7c3": {
799
- "type": "staticText",
800
- "text": "7 days",
801
- "xs": 12,
802
- "sm": 3,
803
- "md": 3,
804
- "lg": 3,
805
- "xl": 3,
806
- "style": {}
807
- },
808
- "_div7": {
809
- "type": "divider",
810
- "xs": 12,
811
- "sm": 12,
812
- "md": 12,
813
- "lg": 12,
814
- "xl": 12
815
- },
816
- "_r8c0": {
817
- "type": "staticText",
818
- "text": "Pothos",
819
- "xs": 12,
820
- "sm": 3,
821
- "md": 3,
822
- "lg": 3,
823
- "xl": 3,
824
- "style": {}
825
- },
826
- "_r8c1": {
827
- "type": "staticText",
828
- "text": "40-60%",
829
- "xs": 12,
830
- "sm": 3,
831
- "md": 3,
832
- "lg": 3,
833
- "xl": 3,
834
- "style": {}
835
- },
836
- "_r8c2": {
837
- "type": "staticText",
838
- "text": "15-27°C",
839
- "xs": 12,
840
- "sm": 3,
841
- "md": 3,
842
- "lg": 3,
843
- "xl": 3,
844
- "style": {}
845
- },
846
- "_r8c3": {
847
- "type": "staticText",
848
- "text": "7 days",
849
- "xs": 12,
850
- "sm": 3,
851
- "md": 3,
852
- "lg": 3,
853
- "xl": 3,
854
- "style": {}
855
- },
856
- "_div8": {
857
- "type": "divider",
858
- "xs": 12,
859
- "sm": 12,
860
- "md": 12,
861
- "lg": 12,
862
- "xl": 12
863
- },
864
- "_r9c0": {
865
- "type": "staticText",
866
- "text": "Aloe Vera",
867
- "xs": 12,
868
- "sm": 3,
869
- "md": 3,
870
- "lg": 3,
871
- "xl": 3,
872
- "style": {}
873
- },
874
- "_r9c1": {
875
- "type": "staticText",
876
- "text": "10-30%",
877
- "xs": 12,
878
- "sm": 3,
879
- "md": 3,
880
- "lg": 3,
881
- "xl": 3,
882
- "style": {}
883
- },
884
- "_r9c2": {
885
- "type": "staticText",
886
- "text": "15-30°C",
887
- "xs": 12,
888
- "sm": 3,
889
- "md": 3,
890
- "lg": 3,
891
- "xl": 3,
892
- "style": {}
893
- },
894
- "_r9c3": {
895
- "type": "staticText",
896
- "text": "14 days",
897
- "xs": 12,
898
- "sm": 3,
899
- "md": 3,
900
- "lg": 3,
901
- "xl": 3,
902
- "style": {}
903
- },
904
- "_div9": {
905
- "type": "divider",
906
- "xs": 12,
907
- "sm": 12,
908
- "md": 12,
909
- "lg": 12,
910
- "xl": 12
911
- },
912
- "_r10c0": {
913
- "type": "staticText",
914
- "text": "Peace Lily",
915
- "xs": 12,
916
- "sm": 3,
917
- "md": 3,
918
- "lg": 3,
919
- "xl": 3,
920
- "style": {}
921
- },
922
- "_r10c1": {
923
- "type": "staticText",
924
- "text": "50-70%",
925
- "xs": 12,
926
- "sm": 3,
927
- "md": 3,
928
- "lg": 3,
929
- "xl": 3,
930
- "style": {}
931
- },
932
- "_r10c2": {
933
- "type": "staticText",
934
- "text": "18-27°C",
935
- "xs": 12,
936
- "sm": 3,
937
- "md": 3,
938
- "lg": 3,
939
- "xl": 3,
940
- "style": {}
941
- },
942
- "_r10c3": {
943
- "type": "staticText",
944
- "text": "5 days",
945
- "xs": 12,
946
- "sm": 3,
947
- "md": 3,
948
- "lg": 3,
949
- "xl": 3,
950
- "style": {}
951
- },
952
- "_div10": {
953
- "type": "divider",
954
- "xs": 12,
955
- "sm": 12,
956
- "md": 12,
957
- "lg": 12,
958
- "xl": 12
959
- },
960
- "_r11c0": {
961
- "type": "staticText",
962
- "text": "Coffea arabica",
963
- "xs": 12,
964
- "sm": 3,
965
- "md": 3,
966
- "lg": 3,
967
- "xl": 3,
968
- "style": {}
969
- },
970
- "_r11c1": {
971
- "type": "staticText",
972
- "text": "60-80%",
973
- "xs": 12,
974
- "sm": 3,
975
- "md": 3,
976
- "lg": 3,
977
- "xl": 3,
978
- "style": {}
979
- },
980
- "_r11c2": {
981
- "type": "staticText",
982
- "text": "18-27°C",
983
- "xs": 12,
984
- "sm": 3,
985
- "md": 3,
986
- "lg": 3,
987
- "xl": 3,
988
- "style": {}
989
- },
990
- "_r11c3": {
991
- "type": "staticText",
992
- "text": "7 days",
993
- "xs": 12,
994
- "sm": 3,
995
- "md": 3,
996
- "lg": 3,
997
- "xl": 3,
998
- "style": {}
999
- },
1000
- "_div11": {
1001
- "type": "divider",
1002
- "xs": 12,
1003
- "sm": 12,
1004
- "md": 12,
1005
- "lg": 12,
1006
- "xl": 12
1007
- },
1008
- "_r12c0": {
1009
- "type": "staticText",
1010
- "text": "Rhapis excelsa",
1011
- "xs": 12,
1012
- "sm": 3,
1013
- "md": 3,
1014
- "lg": 3,
1015
- "xl": 3,
1016
- "style": {}
1017
- },
1018
- "_r12c1": {
1019
- "type": "staticText",
1020
- "text": "40-60%",
1021
- "xs": 12,
1022
- "sm": 3,
1023
- "md": 3,
1024
- "lg": 3,
1025
- "xl": 3,
1026
- "style": {}
1027
- },
1028
- "_r12c2": {
1029
- "type": "staticText",
1030
- "text": "15-25°C",
1031
- "xs": 12,
1032
- "sm": 3,
1033
- "md": 3,
1034
- "lg": 3,
1035
- "xl": 3,
1036
- "style": {}
1037
- },
1038
- "_r12c3": {
1039
- "type": "staticText",
1040
- "text": "10 days",
1041
- "xs": 12,
1042
- "sm": 3,
1043
- "md": 3,
1044
- "lg": 3,
1045
- "xl": 3,
1046
- "style": {}
1047
- },
1048
- "_div12": {
1049
- "type": "divider",
1050
- "xs": 12,
1051
- "sm": 12,
1052
- "md": 12,
1053
- "lg": 12,
1054
- "xl": 12
1055
- },
1056
- "_r13c0": {
1057
- "type": "staticText",
1058
- "text": "Calathea zebrina",
1059
- "xs": 12,
1060
- "sm": 3,
1061
- "md": 3,
1062
- "lg": 3,
1063
- "xl": 3,
1064
- "style": {}
1065
- },
1066
- "_r13c1": {
1067
- "type": "staticText",
1068
- "text": "60-80%",
1069
- "xs": 12,
1070
- "sm": 3,
1071
- "md": 3,
1072
- "lg": 3,
1073
- "xl": 3,
1074
- "style": {}
1075
- },
1076
- "_r13c2": {
1077
- "type": "staticText",
1078
- "text": "18-29°C",
1079
- "xs": 12,
1080
- "sm": 3,
1081
- "md": 3,
1082
- "lg": 3,
1083
- "xl": 3,
1084
- "style": {}
1085
- },
1086
- "_r13c3": {
1087
- "type": "staticText",
1088
- "text": "5 days",
1089
- "xs": 12,
1090
- "sm": 3,
1091
- "md": 3,
1092
- "lg": 3,
1093
- "xl": 3,
1094
- "style": {}
1095
- },
1096
- "_div13": {
1097
- "type": "divider",
1098
- "xs": 12,
1099
- "sm": 12,
1100
- "md": 12,
1101
- "lg": 12,
1102
- "xl": 12
1103
- },
1104
- "_r14c0": {
1105
- "type": "staticText",
1106
- "text": "Sansevieria Laurentii",
1107
- "xs": 12,
1108
- "sm": 3,
1109
- "md": 3,
1110
- "lg": 3,
1111
- "xl": 3,
1112
- "style": {}
1113
- },
1114
- "_r14c1": {
1115
- "type": "staticText",
1116
- "text": "10-40%",
1117
- "xs": 12,
1118
- "sm": 3,
1119
- "md": 3,
1120
- "lg": 3,
1121
- "xl": 3,
1122
- "style": {}
1123
- },
1124
- "_r14c2": {
1125
- "type": "staticText",
1126
- "text": "16-27°C",
1127
- "xs": 12,
1128
- "sm": 3,
1129
- "md": 3,
1130
- "lg": 3,
1131
- "xl": 3,
1132
- "style": {}
1133
- },
1134
- "_r14c3": {
1135
- "type": "staticText",
1136
- "text": "21 days",
1137
- "xs": 12,
1138
- "sm": 3,
1139
- "md": 3,
1140
- "lg": 3,
1141
- "xl": 3,
1142
- "style": {}
1143
- },
1144
- "_div14": {
1145
- "type": "divider",
1146
- "xs": 12,
1147
- "sm": 12,
1148
- "md": 12,
1149
- "lg": 12,
1150
- "xl": 12
1151
- },
1152
- "_r15c0": {
1153
- "type": "staticText",
1154
- "text": "Custom",
1155
- "xs": 12,
1156
- "sm": 3,
1157
- "md": 3,
1158
- "lg": 3,
1159
- "xl": 3,
1160
- "style": {}
1161
- },
1162
- "_r15c1": {
1163
- "type": "staticText",
1164
- "text": "—",
1165
- "xs": 12,
1166
- "sm": 3,
1167
- "md": 3,
1168
- "lg": 3,
1169
- "xl": 3,
1170
- "style": {}
1171
- },
1172
- "_r15c2": {
1173
- "type": "staticText",
1174
- "text": "—",
1175
- "xs": 12,
1176
- "sm": 3,
1177
- "md": 3,
1178
- "lg": 3,
1179
- "xl": 3,
1180
- "style": {}
1181
- },
1182
- "_r15c3": {
1183
- "type": "staticText",
1184
- "text": "—",
1185
- "xs": 12,
1186
- "sm": 3,
1187
- "md": 3,
1188
- "lg": 3,
1189
- "xl": 3,
1190
- "style": {}
1191
- },
1192
- "_div15": {
1193
- "type": "divider",
1194
- "xs": 12,
1195
- "sm": 12,
1196
- "md": 12,
1197
- "lg": 12,
1198
- "xl": 12
1199
- }
1200
- }
1201
- }
1202
- }
1
+ {
2
+ "i18n": true,
3
+ "type": "tabs",
4
+ "items": {
5
+ "settings": {
6
+ "type": "panel",
7
+ "label": "Settings",
8
+ "items": {
9
+ "_telegramHeader": {
10
+ "type": "header",
11
+ "text": "Telegram Notifications",
12
+ "size": 3
13
+ },
14
+ "telegramInstance": {
15
+ "type": "instance",
16
+ "label": "Telegram Instance",
17
+ "adapter": "telegram",
18
+ "default": "0",
19
+ "xs": 12,
20
+ "sm": 4,
21
+ "md": 4,
22
+ "lg": 4,
23
+ "xl": 4
24
+ },
25
+ "telegramUsers": {
26
+ "type": "text",
27
+ "label": "Telegram Users",
28
+ "help": "Comma-separated usernames or leave empty for all users",
29
+ "placeholder": "user1,user2",
30
+ "default": "",
31
+ "xs": 12,
32
+ "sm": 8,
33
+ "md": 8,
34
+ "lg": 8,
35
+ "xl": 8
36
+ },
37
+ "_monitorHeader": {
38
+ "type": "header",
39
+ "text": "Monitoring",
40
+ "size": 3
41
+ },
42
+ "checkInterval": {
43
+ "type": "select",
44
+ "label": "Check Interval",
45
+ "options": [
46
+ {
47
+ "label": "5 minutes",
48
+ "value": "5"
49
+ },
50
+ {
51
+ "label": "15 minutes",
52
+ "value": "15"
53
+ },
54
+ {
55
+ "label": "30 minutes",
56
+ "value": "30"
57
+ },
58
+ {
59
+ "label": "1 hour",
60
+ "value": "60"
61
+ },
62
+ {
63
+ "label": "2 hours",
64
+ "value": "120"
65
+ },
66
+ {
67
+ "label": "6 hours",
68
+ "value": "360"
69
+ },
70
+ {
71
+ "label": "24 hours",
72
+ "value": "1440"
73
+ }
74
+ ],
75
+ "default": "60",
76
+ "xs": 12,
77
+ "sm": 6,
78
+ "md": 4,
79
+ "lg": 3,
80
+ "xl": 3
81
+ },
82
+ "maxMessagesPerDay": {
83
+ "type": "number",
84
+ "label": "Max Messages per Day",
85
+ "min": 1,
86
+ "max": 100,
87
+ "default": 10,
88
+ "xs": 12,
89
+ "sm": 6,
90
+ "md": 4,
91
+ "lg": 3,
92
+ "xl": 3
93
+ },
94
+ "repeatInterval": {
95
+ "type": "number",
96
+ "label": "Repeat Interval (min)",
97
+ "help": "Repeat alert interval in minutes if threshold is still exceeded (0 = no repeat)",
98
+ "min": 0,
99
+ "max": 1440,
100
+ "default": 60,
101
+ "xs": 12,
102
+ "sm": 6,
103
+ "md": 4,
104
+ "lg": 3,
105
+ "xl": 3
106
+ },
107
+ "offlineThreshold": {
108
+ "type": "number",
109
+ "label": "Offline Threshold (hours)",
110
+ "min": 1,
111
+ "max": 48,
112
+ "default": 3,
113
+ "xs": 12,
114
+ "sm": 6,
115
+ "md": 4,
116
+ "lg": 3,
117
+ "xl": 3
118
+ },
119
+ "_wateringHeader": {
120
+ "type": "header",
121
+ "text": "Automatic Watering",
122
+ "size": 3
123
+ },
124
+ "wateringDuration": {
125
+ "type": "number",
126
+ "label": "Watering Duration (min)",
127
+ "min": 1,
128
+ "max": 60,
129
+ "default": 3,
130
+ "xs": 12,
131
+ "sm": 6,
132
+ "md": 4,
133
+ "lg": 3,
134
+ "xl": 3
135
+ },
136
+ "_nightHeader": {
137
+ "type": "header",
138
+ "text": "Night Mode",
139
+ "size": 3
140
+ },
141
+ "nightModeEnabled": {
142
+ "type": "checkbox",
143
+ "label": "Enable Night Mode",
144
+ "default": false,
145
+ "xs": 12,
146
+ "sm": 4,
147
+ "md": 4,
148
+ "lg": 4,
149
+ "xl": 4
150
+ },
151
+ "nightModeStart": {
152
+ "type": "text",
153
+ "label": "Night Mode Start",
154
+ "default": "22:00",
155
+ "disabled": "!data.nightModeEnabled",
156
+ "xs": 12,
157
+ "sm": 4,
158
+ "md": 4,
159
+ "lg": 4,
160
+ "xl": 4
161
+ },
162
+ "nightModeEnd": {
163
+ "type": "text",
164
+ "label": "Night Mode End",
165
+ "default": "08:00",
166
+ "disabled": "!data.nightModeEnabled",
167
+ "xs": 12,
168
+ "sm": 4,
169
+ "md": 4,
170
+ "lg": 4,
171
+ "xl": 4
172
+ },
173
+ "_reportHeader": {
174
+ "type": "header",
175
+ "text": "Periodic Reports",
176
+ "size": 3
177
+ },
178
+ "dailyReportEnabled": {
179
+ "type": "checkbox",
180
+ "label": "Daily Report",
181
+ "default": false,
182
+ "xs": 12,
183
+ "sm": 4,
184
+ "md": 3,
185
+ "lg": 3,
186
+ "xl": 3
187
+ },
188
+ "dailyReportTime": {
189
+ "type": "text",
190
+ "label": "Daily Report Time",
191
+ "default": "20:00",
192
+ "disabled": "!data.dailyReportEnabled",
193
+ "xs": 12,
194
+ "sm": 4,
195
+ "md": 3,
196
+ "lg": 3,
197
+ "xl": 3
198
+ },
199
+ "weeklyReportEnabled": {
200
+ "type": "checkbox",
201
+ "label": "Weekly Report",
202
+ "default": false,
203
+ "xs": 12,
204
+ "sm": 4,
205
+ "md": 3,
206
+ "lg": 3,
207
+ "xl": 3
208
+ },
209
+ "weeklyReportDay": {
210
+ "type": "select",
211
+ "label": "Weekly Report Day",
212
+ "options": [
213
+ {
214
+ "label": "Monday",
215
+ "value": "1"
216
+ },
217
+ {
218
+ "label": "Tuesday",
219
+ "value": "2"
220
+ },
221
+ {
222
+ "label": "Wednesday",
223
+ "value": "3"
224
+ },
225
+ {
226
+ "label": "Thursday",
227
+ "value": "4"
228
+ },
229
+ {
230
+ "label": "Friday",
231
+ "value": "5"
232
+ },
233
+ {
234
+ "label": "Saturday",
235
+ "value": "6"
236
+ },
237
+ {
238
+ "label": "Sunday",
239
+ "value": "0"
240
+ }
241
+ ],
242
+ "default": "1",
243
+ "disabled": "!data.weeklyReportEnabled",
244
+ "xs": 12,
245
+ "sm": 4,
246
+ "md": 3,
247
+ "lg": 3,
248
+ "xl": 3
249
+ },
250
+ "weeklyReportTime": {
251
+ "type": "text",
252
+ "label": "Weekly Report Time",
253
+ "default": "10:00",
254
+ "disabled": "!data.weeklyReportEnabled",
255
+ "xs": 12,
256
+ "sm": 4,
257
+ "md": 3,
258
+ "lg": 3,
259
+ "xl": 3
260
+ }
261
+ }
262
+ },
263
+ "plants": {
264
+ "type": "panel",
265
+ "label": "Plants",
266
+ "items": {
267
+ "_plantsInfo": {
268
+ "type": "staticText",
269
+ "text": "Add your plants here. Select the ioBroker state IDs for each sensor. Thresholds override the selected profile values.",
270
+ "xs": 12,
271
+ "sm": 12,
272
+ "md": 12,
273
+ "lg": 12,
274
+ "xl": 12
275
+ },
276
+ "plants": {
277
+ "type": "table",
278
+ "label": "Plants",
279
+ "xs": 12,
280
+ "sm": 12,
281
+ "md": 12,
282
+ "lg": 12,
283
+ "xl": 12,
284
+ "items": [
285
+ {
286
+ "type": "checkbox",
287
+ "title": "",
288
+ "attr": "enabled",
289
+ "width": "3%"
290
+ },
291
+ {
292
+ "type": "text",
293
+ "title": "Name",
294
+ "attr": "name",
295
+ "width": "10%"
296
+ },
297
+ {
298
+ "type": "text",
299
+ "title": "Location",
300
+ "attr": "location",
301
+ "width": "8%"
302
+ },
303
+ {
304
+ "type": "select",
305
+ "title": "Profile",
306
+ "attr": "profile",
307
+ "width": "9%",
308
+ "options": [
309
+ {
310
+ "label": "Ficus",
311
+ "value": "Ficus"
312
+ },
313
+ {
314
+ "label": "Orchid",
315
+ "value": "Orchid"
316
+ },
317
+ {
318
+ "label": "Cactus",
319
+ "value": "Cactus"
320
+ },
321
+ {
322
+ "label": "Monstera",
323
+ "value": "Monstera"
324
+ },
325
+ {
326
+ "label": "Fern",
327
+ "value": "Fern"
328
+ },
329
+ {
330
+ "label": "Succulent",
331
+ "value": "Succulent"
332
+ },
333
+ {
334
+ "label": "Palm",
335
+ "value": "Palm"
336
+ },
337
+ {
338
+ "label": "Pothos",
339
+ "value": "Pothos"
340
+ },
341
+ {
342
+ "label": "Aloe Vera",
343
+ "value": "AloeVera"
344
+ },
345
+ {
346
+ "label": "Peace Lily",
347
+ "value": "PeaceLily"
348
+ },
349
+ {
350
+ "label": "Coffea arabica",
351
+ "value": "CoffeaArabica"
352
+ },
353
+ {
354
+ "label": "Rhapis excelsa",
355
+ "value": "RhapisExcelsa"
356
+ },
357
+ {
358
+ "label": "Calathea zebrina",
359
+ "value": "Calathea"
360
+ },
361
+ {
362
+ "label": "Sansevieria Laurentii",
363
+ "value": "Sansevieria"
364
+ },
365
+ {
366
+ "label": "Custom",
367
+ "value": "Custom"
368
+ }
369
+ ]
370
+ },
371
+ {
372
+ "type": "objectId",
373
+ "title": "Humidity Sensor",
374
+ "attr": "sensorHumidity",
375
+ "width": "13%"
376
+ },
377
+ {
378
+ "type": "objectId",
379
+ "title": "Temperature Sensor",
380
+ "attr": "sensorTemperature",
381
+ "width": "13%"
382
+ },
383
+ {
384
+ "type": "objectId",
385
+ "title": "Battery Sensor",
386
+ "attr": "sensorBattery",
387
+ "width": "13%"
388
+ },
389
+ {
390
+ "type": "objectId",
391
+ "title": "Watering",
392
+ "attr": "sensorWatering",
393
+ "width": "9%"
394
+ },
395
+ {
396
+ "type": "text",
397
+ "title": "Hum Min %",
398
+ "attr": "humidityMin",
399
+ "width": "5%",
400
+ "placeholder": "—"
401
+ },
402
+ {
403
+ "type": "text",
404
+ "title": "Hum Max %",
405
+ "attr": "humidityMax",
406
+ "width": "5%",
407
+ "placeholder": "—"
408
+ },
409
+ {
410
+ "type": "text",
411
+ "title": "Temp Min",
412
+ "attr": "temperatureMin",
413
+ "width": "5%",
414
+ "placeholder": "—"
415
+ },
416
+ {
417
+ "type": "text",
418
+ "title": "Temp Max",
419
+ "attr": "temperatureMax",
420
+ "width": "5%",
421
+ "placeholder": "—"
422
+ },
423
+ {
424
+ "type": "text",
425
+ "title": "Battery Min %",
426
+ "attr": "batteryMin",
427
+ "width": "8%",
428
+ "placeholder": "—"
429
+ },
430
+ {
431
+ "type": "text",
432
+ "title": "Custom Profile",
433
+ "attr": "customProfile",
434
+ "width": "10%",
435
+ "placeholder": "name or leave empty"
436
+ }
437
+ ]
438
+ }
439
+ }
440
+ },
441
+ "profiles": {
442
+ "type": "panel",
443
+ "label": "Profiles",
444
+ "items": {
445
+ "_profilesInfo": {
446
+ "type": "staticText",
447
+ "text": "Built-in plant profiles with recommended thresholds. You can also create your own custom profiles below — they will appear in the Plants tab profile selector.",
448
+ "xs": 12,
449
+ "sm": 12,
450
+ "md": 12,
451
+ "lg": 12,
452
+ "xl": 12
453
+ },
454
+ "_customProfilesHeader": {
455
+ "type": "header",
456
+ "text": "Custom Profiles",
457
+ "size": 3
458
+ },
459
+ "customProfiles": {
460
+ "type": "table",
461
+ "label": "Custom Profiles",
462
+ "xs": 12,
463
+ "sm": 12,
464
+ "md": 12,
465
+ "lg": 12,
466
+ "xl": 12,
467
+ "items": [
468
+ {
469
+ "type": "text",
470
+ "title": "Profile Name",
471
+ "attr": "name",
472
+ "width": "20%"
473
+ },
474
+ {
475
+ "type": "number",
476
+ "title": "Hum Min %",
477
+ "attr": "humidityMin",
478
+ "width": "10%"
479
+ },
480
+ {
481
+ "type": "number",
482
+ "title": "Hum Max %",
483
+ "attr": "humidityMax",
484
+ "width": "10%"
485
+ },
486
+ {
487
+ "type": "number",
488
+ "title": "Temp Min °C",
489
+ "attr": "temperatureMin",
490
+ "width": "10%"
491
+ },
492
+ {
493
+ "type": "number",
494
+ "title": "Temp Max °C",
495
+ "attr": "temperatureMax",
496
+ "width": "10%"
497
+ },
498
+ {
499
+ "type": "number",
500
+ "title": "Battery Min %",
501
+ "attr": "batteryMin",
502
+ "width": "10%"
503
+ },
504
+ {
505
+ "type": "number",
506
+ "title": "Watering (days)",
507
+ "attr": "wateringIntervalDays",
508
+ "width": "10%"
509
+ }
510
+ ]
511
+ },
512
+ "_builtinHeader": {
513
+ "type": "header",
514
+ "text": "Built-in Profiles (read-only)",
515
+ "size": 3
516
+ },
517
+ "_r0c0": {
518
+ "type": "staticText",
519
+ "text": "Profile",
520
+ "xs": 12,
521
+ "sm": 3,
522
+ "md": 3,
523
+ "lg": 3,
524
+ "xl": 3,
525
+ "style": {
526
+ "fontWeight": "bold",
527
+ "borderBottom": "1px solid #555",
528
+ "paddingBottom": "4px"
529
+ }
530
+ },
531
+ "_r0c1": {
532
+ "type": "staticText",
533
+ "text": "Humidity %",
534
+ "xs": 12,
535
+ "sm": 3,
536
+ "md": 3,
537
+ "lg": 3,
538
+ "xl": 3,
539
+ "style": {
540
+ "fontWeight": "bold",
541
+ "borderBottom": "1px solid #555",
542
+ "paddingBottom": "4px"
543
+ }
544
+ },
545
+ "_r0c2": {
546
+ "type": "staticText",
547
+ "text": "Temperature",
548
+ "xs": 12,
549
+ "sm": 3,
550
+ "md": 3,
551
+ "lg": 3,
552
+ "xl": 3,
553
+ "style": {
554
+ "fontWeight": "bold",
555
+ "borderBottom": "1px solid #555",
556
+ "paddingBottom": "4px"
557
+ }
558
+ },
559
+ "_r0c3": {
560
+ "type": "staticText",
561
+ "text": "Watering",
562
+ "xs": 12,
563
+ "sm": 3,
564
+ "md": 3,
565
+ "lg": 3,
566
+ "xl": 3,
567
+ "style": {
568
+ "fontWeight": "bold",
569
+ "borderBottom": "1px solid #555",
570
+ "paddingBottom": "4px"
571
+ }
572
+ },
573
+ "_r1c0": {
574
+ "type": "staticText",
575
+ "text": "Ficus",
576
+ "xs": 12,
577
+ "sm": 3,
578
+ "md": 3,
579
+ "lg": 3,
580
+ "xl": 3,
581
+ "style": {}
582
+ },
583
+ "_r1c1": {
584
+ "type": "staticText",
585
+ "text": "40-70%",
586
+ "xs": 12,
587
+ "sm": 3,
588
+ "md": 3,
589
+ "lg": 3,
590
+ "xl": 3,
591
+ "style": {}
592
+ },
593
+ "_r1c2": {
594
+ "type": "staticText",
595
+ "text": "18-25°C",
596
+ "xs": 12,
597
+ "sm": 3,
598
+ "md": 3,
599
+ "lg": 3,
600
+ "xl": 3,
601
+ "style": {}
602
+ },
603
+ "_r1c3": {
604
+ "type": "staticText",
605
+ "text": "7 days",
606
+ "xs": 12,
607
+ "sm": 3,
608
+ "md": 3,
609
+ "lg": 3,
610
+ "xl": 3,
611
+ "style": {}
612
+ },
613
+ "_div1": {
614
+ "type": "divider",
615
+ "xs": 12,
616
+ "sm": 12,
617
+ "md": 12,
618
+ "lg": 12,
619
+ "xl": 12
620
+ },
621
+ "_r2c0": {
622
+ "type": "staticText",
623
+ "text": "Orchid",
624
+ "xs": 12,
625
+ "sm": 3,
626
+ "md": 3,
627
+ "lg": 3,
628
+ "xl": 3,
629
+ "style": {}
630
+ },
631
+ "_r2c1": {
632
+ "type": "staticText",
633
+ "text": "50-70%",
634
+ "xs": 12,
635
+ "sm": 3,
636
+ "md": 3,
637
+ "lg": 3,
638
+ "xl": 3,
639
+ "style": {}
640
+ },
641
+ "_r2c2": {
642
+ "type": "staticText",
643
+ "text": "18-25°C",
644
+ "xs": 12,
645
+ "sm": 3,
646
+ "md": 3,
647
+ "lg": 3,
648
+ "xl": 3,
649
+ "style": {}
650
+ },
651
+ "_r2c3": {
652
+ "type": "staticText",
653
+ "text": "10 days",
654
+ "xs": 12,
655
+ "sm": 3,
656
+ "md": 3,
657
+ "lg": 3,
658
+ "xl": 3,
659
+ "style": {}
660
+ },
661
+ "_div2": {
662
+ "type": "divider",
663
+ "xs": 12,
664
+ "sm": 12,
665
+ "md": 12,
666
+ "lg": 12,
667
+ "xl": 12
668
+ },
669
+ "_r3c0": {
670
+ "type": "staticText",
671
+ "text": "Cactus",
672
+ "xs": 12,
673
+ "sm": 3,
674
+ "md": 3,
675
+ "lg": 3,
676
+ "xl": 3,
677
+ "style": {}
678
+ },
679
+ "_r3c1": {
680
+ "type": "staticText",
681
+ "text": "10-30%",
682
+ "xs": 12,
683
+ "sm": 3,
684
+ "md": 3,
685
+ "lg": 3,
686
+ "xl": 3,
687
+ "style": {}
688
+ },
689
+ "_r3c2": {
690
+ "type": "staticText",
691
+ "text": "15-35°C",
692
+ "xs": 12,
693
+ "sm": 3,
694
+ "md": 3,
695
+ "lg": 3,
696
+ "xl": 3,
697
+ "style": {}
698
+ },
699
+ "_r3c3": {
700
+ "type": "staticText",
701
+ "text": "21 days",
702
+ "xs": 12,
703
+ "sm": 3,
704
+ "md": 3,
705
+ "lg": 3,
706
+ "xl": 3,
707
+ "style": {}
708
+ },
709
+ "_div3": {
710
+ "type": "divider",
711
+ "xs": 12,
712
+ "sm": 12,
713
+ "md": 12,
714
+ "lg": 12,
715
+ "xl": 12
716
+ },
717
+ "_r4c0": {
718
+ "type": "staticText",
719
+ "text": "Monstera",
720
+ "xs": 12,
721
+ "sm": 3,
722
+ "md": 3,
723
+ "lg": 3,
724
+ "xl": 3,
725
+ "style": {}
726
+ },
727
+ "_r4c1": {
728
+ "type": "staticText",
729
+ "text": "40-60%",
730
+ "xs": 12,
731
+ "sm": 3,
732
+ "md": 3,
733
+ "lg": 3,
734
+ "xl": 3,
735
+ "style": {}
736
+ },
737
+ "_r4c2": {
738
+ "type": "staticText",
739
+ "text": "18-27°C",
740
+ "xs": 12,
741
+ "sm": 3,
742
+ "md": 3,
743
+ "lg": 3,
744
+ "xl": 3,
745
+ "style": {}
746
+ },
747
+ "_r4c3": {
748
+ "type": "staticText",
749
+ "text": "7 days",
750
+ "xs": 12,
751
+ "sm": 3,
752
+ "md": 3,
753
+ "lg": 3,
754
+ "xl": 3,
755
+ "style": {}
756
+ },
757
+ "_div4": {
758
+ "type": "divider",
759
+ "xs": 12,
760
+ "sm": 12,
761
+ "md": 12,
762
+ "lg": 12,
763
+ "xl": 12
764
+ },
765
+ "_r5c0": {
766
+ "type": "staticText",
767
+ "text": "Fern",
768
+ "xs": 12,
769
+ "sm": 3,
770
+ "md": 3,
771
+ "lg": 3,
772
+ "xl": 3,
773
+ "style": {}
774
+ },
775
+ "_r5c1": {
776
+ "type": "staticText",
777
+ "text": "60-80%",
778
+ "xs": 12,
779
+ "sm": 3,
780
+ "md": 3,
781
+ "lg": 3,
782
+ "xl": 3,
783
+ "style": {}
784
+ },
785
+ "_r5c2": {
786
+ "type": "staticText",
787
+ "text": "15-22°C",
788
+ "xs": 12,
789
+ "sm": 3,
790
+ "md": 3,
791
+ "lg": 3,
792
+ "xl": 3,
793
+ "style": {}
794
+ },
795
+ "_r5c3": {
796
+ "type": "staticText",
797
+ "text": "3 days",
798
+ "xs": 12,
799
+ "sm": 3,
800
+ "md": 3,
801
+ "lg": 3,
802
+ "xl": 3,
803
+ "style": {}
804
+ },
805
+ "_div5": {
806
+ "type": "divider",
807
+ "xs": 12,
808
+ "sm": 12,
809
+ "md": 12,
810
+ "lg": 12,
811
+ "xl": 12
812
+ },
813
+ "_r6c0": {
814
+ "type": "staticText",
815
+ "text": "Succulent",
816
+ "xs": 12,
817
+ "sm": 3,
818
+ "md": 3,
819
+ "lg": 3,
820
+ "xl": 3,
821
+ "style": {}
822
+ },
823
+ "_r6c1": {
824
+ "type": "staticText",
825
+ "text": "10-30%",
826
+ "xs": 12,
827
+ "sm": 3,
828
+ "md": 3,
829
+ "lg": 3,
830
+ "xl": 3,
831
+ "style": {}
832
+ },
833
+ "_r6c2": {
834
+ "type": "staticText",
835
+ "text": "15-30°C",
836
+ "xs": 12,
837
+ "sm": 3,
838
+ "md": 3,
839
+ "lg": 3,
840
+ "xl": 3,
841
+ "style": {}
842
+ },
843
+ "_r6c3": {
844
+ "type": "staticText",
845
+ "text": "14 days",
846
+ "xs": 12,
847
+ "sm": 3,
848
+ "md": 3,
849
+ "lg": 3,
850
+ "xl": 3,
851
+ "style": {}
852
+ },
853
+ "_div6": {
854
+ "type": "divider",
855
+ "xs": 12,
856
+ "sm": 12,
857
+ "md": 12,
858
+ "lg": 12,
859
+ "xl": 12
860
+ },
861
+ "_r7c0": {
862
+ "type": "staticText",
863
+ "text": "Palm",
864
+ "xs": 12,
865
+ "sm": 3,
866
+ "md": 3,
867
+ "lg": 3,
868
+ "xl": 3,
869
+ "style": {}
870
+ },
871
+ "_r7c1": {
872
+ "type": "staticText",
873
+ "text": "40-60%",
874
+ "xs": 12,
875
+ "sm": 3,
876
+ "md": 3,
877
+ "lg": 3,
878
+ "xl": 3,
879
+ "style": {}
880
+ },
881
+ "_r7c2": {
882
+ "type": "staticText",
883
+ "text": "18-27°C",
884
+ "xs": 12,
885
+ "sm": 3,
886
+ "md": 3,
887
+ "lg": 3,
888
+ "xl": 3,
889
+ "style": {}
890
+ },
891
+ "_r7c3": {
892
+ "type": "staticText",
893
+ "text": "7 days",
894
+ "xs": 12,
895
+ "sm": 3,
896
+ "md": 3,
897
+ "lg": 3,
898
+ "xl": 3,
899
+ "style": {}
900
+ },
901
+ "_div7": {
902
+ "type": "divider",
903
+ "xs": 12,
904
+ "sm": 12,
905
+ "md": 12,
906
+ "lg": 12,
907
+ "xl": 12
908
+ },
909
+ "_r8c0": {
910
+ "type": "staticText",
911
+ "text": "Pothos",
912
+ "xs": 12,
913
+ "sm": 3,
914
+ "md": 3,
915
+ "lg": 3,
916
+ "xl": 3,
917
+ "style": {}
918
+ },
919
+ "_r8c1": {
920
+ "type": "staticText",
921
+ "text": "40-60%",
922
+ "xs": 12,
923
+ "sm": 3,
924
+ "md": 3,
925
+ "lg": 3,
926
+ "xl": 3,
927
+ "style": {}
928
+ },
929
+ "_r8c2": {
930
+ "type": "staticText",
931
+ "text": "15-27°C",
932
+ "xs": 12,
933
+ "sm": 3,
934
+ "md": 3,
935
+ "lg": 3,
936
+ "xl": 3,
937
+ "style": {}
938
+ },
939
+ "_r8c3": {
940
+ "type": "staticText",
941
+ "text": "7 days",
942
+ "xs": 12,
943
+ "sm": 3,
944
+ "md": 3,
945
+ "lg": 3,
946
+ "xl": 3,
947
+ "style": {}
948
+ },
949
+ "_div8": {
950
+ "type": "divider",
951
+ "xs": 12,
952
+ "sm": 12,
953
+ "md": 12,
954
+ "lg": 12,
955
+ "xl": 12
956
+ },
957
+ "_r9c0": {
958
+ "type": "staticText",
959
+ "text": "Aloe Vera",
960
+ "xs": 12,
961
+ "sm": 3,
962
+ "md": 3,
963
+ "lg": 3,
964
+ "xl": 3,
965
+ "style": {}
966
+ },
967
+ "_r9c1": {
968
+ "type": "staticText",
969
+ "text": "10-30%",
970
+ "xs": 12,
971
+ "sm": 3,
972
+ "md": 3,
973
+ "lg": 3,
974
+ "xl": 3,
975
+ "style": {}
976
+ },
977
+ "_r9c2": {
978
+ "type": "staticText",
979
+ "text": "15-30°C",
980
+ "xs": 12,
981
+ "sm": 3,
982
+ "md": 3,
983
+ "lg": 3,
984
+ "xl": 3,
985
+ "style": {}
986
+ },
987
+ "_r9c3": {
988
+ "type": "staticText",
989
+ "text": "14 days",
990
+ "xs": 12,
991
+ "sm": 3,
992
+ "md": 3,
993
+ "lg": 3,
994
+ "xl": 3,
995
+ "style": {}
996
+ },
997
+ "_div9": {
998
+ "type": "divider",
999
+ "xs": 12,
1000
+ "sm": 12,
1001
+ "md": 12,
1002
+ "lg": 12,
1003
+ "xl": 12
1004
+ },
1005
+ "_r10c0": {
1006
+ "type": "staticText",
1007
+ "text": "Peace Lily",
1008
+ "xs": 12,
1009
+ "sm": 3,
1010
+ "md": 3,
1011
+ "lg": 3,
1012
+ "xl": 3,
1013
+ "style": {}
1014
+ },
1015
+ "_r10c1": {
1016
+ "type": "staticText",
1017
+ "text": "50-70%",
1018
+ "xs": 12,
1019
+ "sm": 3,
1020
+ "md": 3,
1021
+ "lg": 3,
1022
+ "xl": 3,
1023
+ "style": {}
1024
+ },
1025
+ "_r10c2": {
1026
+ "type": "staticText",
1027
+ "text": "18-27°C",
1028
+ "xs": 12,
1029
+ "sm": 3,
1030
+ "md": 3,
1031
+ "lg": 3,
1032
+ "xl": 3,
1033
+ "style": {}
1034
+ },
1035
+ "_r10c3": {
1036
+ "type": "staticText",
1037
+ "text": "5 days",
1038
+ "xs": 12,
1039
+ "sm": 3,
1040
+ "md": 3,
1041
+ "lg": 3,
1042
+ "xl": 3,
1043
+ "style": {}
1044
+ },
1045
+ "_div10": {
1046
+ "type": "divider",
1047
+ "xs": 12,
1048
+ "sm": 12,
1049
+ "md": 12,
1050
+ "lg": 12,
1051
+ "xl": 12
1052
+ },
1053
+ "_r11c0": {
1054
+ "type": "staticText",
1055
+ "text": "Coffea arabica",
1056
+ "xs": 12,
1057
+ "sm": 3,
1058
+ "md": 3,
1059
+ "lg": 3,
1060
+ "xl": 3,
1061
+ "style": {}
1062
+ },
1063
+ "_r11c1": {
1064
+ "type": "staticText",
1065
+ "text": "60-80%",
1066
+ "xs": 12,
1067
+ "sm": 3,
1068
+ "md": 3,
1069
+ "lg": 3,
1070
+ "xl": 3,
1071
+ "style": {}
1072
+ },
1073
+ "_r11c2": {
1074
+ "type": "staticText",
1075
+ "text": "18-27°C",
1076
+ "xs": 12,
1077
+ "sm": 3,
1078
+ "md": 3,
1079
+ "lg": 3,
1080
+ "xl": 3,
1081
+ "style": {}
1082
+ },
1083
+ "_r11c3": {
1084
+ "type": "staticText",
1085
+ "text": "7 days",
1086
+ "xs": 12,
1087
+ "sm": 3,
1088
+ "md": 3,
1089
+ "lg": 3,
1090
+ "xl": 3,
1091
+ "style": {}
1092
+ },
1093
+ "_div11": {
1094
+ "type": "divider",
1095
+ "xs": 12,
1096
+ "sm": 12,
1097
+ "md": 12,
1098
+ "lg": 12,
1099
+ "xl": 12
1100
+ },
1101
+ "_r12c0": {
1102
+ "type": "staticText",
1103
+ "text": "Rhapis excelsa",
1104
+ "xs": 12,
1105
+ "sm": 3,
1106
+ "md": 3,
1107
+ "lg": 3,
1108
+ "xl": 3,
1109
+ "style": {}
1110
+ },
1111
+ "_r12c1": {
1112
+ "type": "staticText",
1113
+ "text": "40-60%",
1114
+ "xs": 12,
1115
+ "sm": 3,
1116
+ "md": 3,
1117
+ "lg": 3,
1118
+ "xl": 3,
1119
+ "style": {}
1120
+ },
1121
+ "_r12c2": {
1122
+ "type": "staticText",
1123
+ "text": "15-25°C",
1124
+ "xs": 12,
1125
+ "sm": 3,
1126
+ "md": 3,
1127
+ "lg": 3,
1128
+ "xl": 3,
1129
+ "style": {}
1130
+ },
1131
+ "_r12c3": {
1132
+ "type": "staticText",
1133
+ "text": "10 days",
1134
+ "xs": 12,
1135
+ "sm": 3,
1136
+ "md": 3,
1137
+ "lg": 3,
1138
+ "xl": 3,
1139
+ "style": {}
1140
+ },
1141
+ "_div12": {
1142
+ "type": "divider",
1143
+ "xs": 12,
1144
+ "sm": 12,
1145
+ "md": 12,
1146
+ "lg": 12,
1147
+ "xl": 12
1148
+ },
1149
+ "_r13c0": {
1150
+ "type": "staticText",
1151
+ "text": "Calathea zebrina",
1152
+ "xs": 12,
1153
+ "sm": 3,
1154
+ "md": 3,
1155
+ "lg": 3,
1156
+ "xl": 3,
1157
+ "style": {}
1158
+ },
1159
+ "_r13c1": {
1160
+ "type": "staticText",
1161
+ "text": "60-80%",
1162
+ "xs": 12,
1163
+ "sm": 3,
1164
+ "md": 3,
1165
+ "lg": 3,
1166
+ "xl": 3,
1167
+ "style": {}
1168
+ },
1169
+ "_r13c2": {
1170
+ "type": "staticText",
1171
+ "text": "18-29°C",
1172
+ "xs": 12,
1173
+ "sm": 3,
1174
+ "md": 3,
1175
+ "lg": 3,
1176
+ "xl": 3,
1177
+ "style": {}
1178
+ },
1179
+ "_r13c3": {
1180
+ "type": "staticText",
1181
+ "text": "5 days",
1182
+ "xs": 12,
1183
+ "sm": 3,
1184
+ "md": 3,
1185
+ "lg": 3,
1186
+ "xl": 3,
1187
+ "style": {}
1188
+ },
1189
+ "_div13": {
1190
+ "type": "divider",
1191
+ "xs": 12,
1192
+ "sm": 12,
1193
+ "md": 12,
1194
+ "lg": 12,
1195
+ "xl": 12
1196
+ },
1197
+ "_r14c0": {
1198
+ "type": "staticText",
1199
+ "text": "Sansevieria Laurentii",
1200
+ "xs": 12,
1201
+ "sm": 3,
1202
+ "md": 3,
1203
+ "lg": 3,
1204
+ "xl": 3,
1205
+ "style": {}
1206
+ },
1207
+ "_r14c1": {
1208
+ "type": "staticText",
1209
+ "text": "10-40%",
1210
+ "xs": 12,
1211
+ "sm": 3,
1212
+ "md": 3,
1213
+ "lg": 3,
1214
+ "xl": 3,
1215
+ "style": {}
1216
+ },
1217
+ "_r14c2": {
1218
+ "type": "staticText",
1219
+ "text": "16-27°C",
1220
+ "xs": 12,
1221
+ "sm": 3,
1222
+ "md": 3,
1223
+ "lg": 3,
1224
+ "xl": 3,
1225
+ "style": {}
1226
+ },
1227
+ "_r14c3": {
1228
+ "type": "staticText",
1229
+ "text": "21 days",
1230
+ "xs": 12,
1231
+ "sm": 3,
1232
+ "md": 3,
1233
+ "lg": 3,
1234
+ "xl": 3,
1235
+ "style": {}
1236
+ },
1237
+ "_div14": {
1238
+ "type": "divider",
1239
+ "xs": 12,
1240
+ "sm": 12,
1241
+ "md": 12,
1242
+ "lg": 12,
1243
+ "xl": 12
1244
+ },
1245
+ "_r15c0": {
1246
+ "type": "staticText",
1247
+ "text": "Custom",
1248
+ "xs": 12,
1249
+ "sm": 3,
1250
+ "md": 3,
1251
+ "lg": 3,
1252
+ "xl": 3,
1253
+ "style": {}
1254
+ },
1255
+ "_r15c1": {
1256
+ "type": "staticText",
1257
+ "text": "—",
1258
+ "xs": 12,
1259
+ "sm": 3,
1260
+ "md": 3,
1261
+ "lg": 3,
1262
+ "xl": 3,
1263
+ "style": {}
1264
+ },
1265
+ "_r15c2": {
1266
+ "type": "staticText",
1267
+ "text": "—",
1268
+ "xs": 12,
1269
+ "sm": 3,
1270
+ "md": 3,
1271
+ "lg": 3,
1272
+ "xl": 3,
1273
+ "style": {}
1274
+ },
1275
+ "_r15c3": {
1276
+ "type": "staticText",
1277
+ "text": "—",
1278
+ "xs": 12,
1279
+ "sm": 3,
1280
+ "md": 3,
1281
+ "lg": 3,
1282
+ "xl": 3,
1283
+ "style": {}
1284
+ },
1285
+ "_div15": {
1286
+ "type": "divider",
1287
+ "xs": 12,
1288
+ "sm": 12,
1289
+ "md": 12,
1290
+ "lg": 12,
1291
+ "xl": 12
1292
+ }
1293
+ }
1294
+ }
1295
+ }
1203
1296
  }