iobroker.iot 1.8.21 → 1.8.25

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2018-2020 bluefox <dogafox@gmail.com>
3
+ Copyright (c) 2018-2021 bluefox <dogafox@gmail.com>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,10 +1,13 @@
1
1
  ![Logo](admin/iot.png)
2
2
  # ioBroker IoT Adapter
3
3
 
4
- ![Number of Installations](http://iobroker.live/badges/iot-installed.svg) ![Number of Installations](http://iobroker.live/badges/iot-stable.svg) [![NPM version](http://img.shields.io/npm/v/iobroker.iot.svg)](https://www.npmjs.com/package/iobroker.iot)
5
- [![Downloads](https://img.shields.io/npm/dm/iobroker.iot.svg)](https://www.npmjs.com/package/iobroker.iot)
4
+ ![Number of Installations](http://iobroker.live/badges/iot-installed.svg)
5
+ ![Number of Installations](http://iobroker.live/badges/iot-stable.svg)
6
+ [![NPM version](http://img.shields.io/npm/v/iobroker.iot.svg)](https://www.npmjs.com/package/iobroker.iot)
6
7
 
7
- [![NPM](https://nodei.co/npm/iobroker.iot.png?downloads=true)](https://nodei.co/npm/iobroker.iot/)
8
+ ![Test and Release](https://github.com/ioBroker/ioBroker.iot/workflows/Test%20and%20Release/badge.svg)
9
+ [![Translation status](https://weblate.iobroker.net/widgets/adapters/-/iot/svg-badge.svg)](https://weblate.iobroker.net/engage/adapters/?utm_source=widget)
10
+ [![Downloads](https://img.shields.io/npm/dm/iobroker.iot.svg)](https://www.npmjs.com/package/iobroker.iot)
8
11
 
9
12
  This adapter is ONLY for communication with Amazon Alexa, Google Home and Nightscout.
10
13
  It is not for remote access to your ioBroker instance. Use ioBroker.cloud adapter for that.
@@ -18,6 +21,11 @@ To use cloud adapter you should first to register on the ioBroker cloud [https:/
18
21
 
19
22
  ![Intro](img/intro.png)
20
23
 
24
+ ### Limits
25
+ Everything has a limits, so the Amazon Alexa too. Alexa can support only up to 300 devices.
26
+
27
+ Google Cloud and Alisa should be cleared
28
+
21
29
  ### Language
22
30
  If you select "default" language the smart names of devices and of enumerations will not be translated. If some language specified all known names will be translated into this language.
23
31
  It is done to switch fast between many languages for demonstration purposes.
@@ -83,7 +91,7 @@ Alexa, lock the "lock name"
83
91
  ## How names will be generated
84
92
  The adapter tries to generate virtual devices for smart home control (e.g. Amazon Alexa or Google Home).
85
93
 
86
- The are two important enumerations for that: rooms and functions.
94
+ There are two important enumerations for that: rooms and functions.
87
95
 
88
96
  Rooms are like: living room, bathroom, sleeping room.
89
97
  Functions are like: light, blind, heating.
@@ -93,9 +101,9 @@ Following conditions must be met to get the state in the automatically generated
93
101
  - the state must be in some "function" enumeration.
94
102
  - the state must have role ("state", "switch" or "level.*", e.g. level.dimmer) if not directly included into "functions".
95
103
  It can be that the channel is in the "functions", but state itself not.
96
- - the state must be writable: common.write = true
97
- - the state dimmer must have common.type as 'number'
98
- - the state heating must have common.unit as '°C', '°F' or '°K' and common.type as 'number'
104
+ - the state must be writable: `common.write` = true
105
+ - the state dimmer must have `common.type` as 'number'
106
+ - the state heating must have `common.unit` as '°C', '°F' or '°K' and `common.type` as `number`
99
107
 
100
108
  If the state is only in "functions" and not in any "room", the name of state will be used.
101
109
 
@@ -116,9 +124,9 @@ If the group has more than one state, the group must be renamed via the enumerat
116
124
  To create own groups the user can install "scenes" adapter or create "script" in Javascript adapter.
117
125
 
118
126
  ### Replaces
119
- You can specify strings, that could be automatically replaced in the devices names. E. g. if you set replaces to:
127
+ You can specify strings, that could be automatically replaced in the devices names. E.g. if you set replaces to:
120
128
  `.STATE,.LEVEL`, so all ".STATE" and ".LEVEL" will be deleted from names. Be careful with spaces.
121
- If you will set `.STATE, .LEVEL`, so ".STATE" and " .LEVEL" will be replaced and not ".LEVEL".
129
+ If you set `.STATE, .LEVEL`, so ".STATE" and " .LEVEL" will be replaced and not ".LEVEL".
122
130
 
123
131
  ## Helper states
124
132
  - **smart.lastObjectID**: This state will be set if only one device was controlled by home skill (alexa, google home).
@@ -130,6 +138,12 @@ If you will set `.STATE, .LEVEL`, so ".STATE" and " .LEVEL" will be replaced and
130
138
  ## IFTTT
131
139
  [instructions](doc/ifttt.md)
132
140
 
141
+ ## Google Home
142
+ If you see following error message in the log: `[GHOME] Invalid URL Pro key. Status auto-update is disabled you can set states but receive states only manually`.
143
+ So you must generate the URL-Key anew:
144
+
145
+ ![Url key](img/url_key.png)
146
+
133
147
  ## Services
134
148
  There is a possibility to send messages to cloud adapter.
135
149
  If you call `[POST]https://service.iobroker.in/v1/iotService?service=custom_<NAME>&key=<XXX>&user=<USER_EMAIL>` und value as payload.
@@ -253,246 +267,255 @@ Following types are supported:
253
267
  ### __WORK IN PROGRESS__
254
268
  -->
255
269
 
256
- ## Changelog
270
+ ## Changelog
271
+ ### 1.8.25 (2021-11-18)
272
+ * (bluefox) Corrected the enabling of the category
273
+
274
+ ### 1.8.24 (2021-09-19)
275
+ * (bluefox) Respect the min/max limits by controlling
276
+
277
+ ### 1.8.23 (2021-09-18)
278
+ * (bluefox) Fixed the response for the heating control
279
+
280
+ ### 1.8.22 (2021-05-16)
281
+ * (bluefox) Make it admin4 compatible
282
+
257
283
  ### 1.8.21 (2021-05-16)
258
- * (bluefox) Fixed the encryption of the password. Warning: if you see the message in the log, that password is invalid, please enter the password in configuration dialog one more time and save.
259
-
284
+ * (bluefox) Fixed the encryption of the password. Warning: if you see the message in the log, that password is invalid, please enter the password in configuration dialog one more time and save.
285
+
260
286
  ### 1.8.20 (2021-05-16)
261
- * (foxriver76) we now write data received from custom services with acknowledge flag
262
-
287
+ * (foxriver76) we now write data received from custom services with acknowledge flag
288
+
263
289
  ### 1.8.19 (2021-05-14)
264
- * (bluefox) Only added one debug output
265
-
290
+ * (bluefox) Only added one debug output
291
+
266
292
  ### 1.8.16 (2021-03-13)
267
- * (bluefox) fixed the blind functionality in alisa
268
-
293
+ * (bluefox) fixed the blind functionality in alisa
294
+
269
295
  ### 1.8.15 (2021-03-12)
270
- * (bluefox) implemented the sensor functionality in alisa
271
-
296
+ * (bluefox) implemented the sensor functionality in alisa
297
+
272
298
  ### 1.8.14 (2021-03-12)
273
- * (bluefox) allowed the control of the blinds in alisa
274
-
299
+ * (bluefox) allowed the control of the blinds in alisa
300
+
275
301
  ### 1.8.13 (2021-02-04)
276
- * (Apollon77) add missing object smart.lastObjectID
277
-
302
+ * (Apollon77) add missing object smart.lastObjectID
303
+
278
304
  ### 1.8.12 (2021-02-02)
279
- * (bluefox) Fixed the dimmer issue with alisa.
280
-
305
+ * (bluefox) Fixed the dimmer issue with alisa.
306
+
281
307
  ### 1.8.11 (2021-01-20)
282
- * (Morluktom) Alexa - Corrected the request for percentage values
283
-
308
+ * (Morluktom) Alexa - Corrected the request for percentage values
309
+
284
310
  ### 1.8.10 (2021-01-20)
285
- * (bluefox) Added the reconnection strategy if DNS address cannot be resolved
286
-
311
+ * (bluefox) Added the reconnection strategy if DNS address cannot be resolved
312
+
287
313
  ### 1.8.9 (2020-12-27)
288
- * (bluefox) Updated configuration GUI to the latest state
289
-
314
+ * (bluefox) Updated configuration GUI to the latest state
315
+
290
316
  ### 1.8.8 (2020-12-14)
291
- * (bluefox) Corrected the "google home" error
292
-
317
+ * (bluefox) Corrected the "google home" error
318
+
293
319
  ### 1.8.6 (2020-12-13)
294
- * (bluefox) Try to fix google home error
295
-
320
+ * (bluefox) Try to fix google home error
321
+
296
322
  ### 1.8.5 (2020-11-23)
297
- * (bluefox) Corrected the configuration table for google home
298
-
323
+ * (bluefox) Corrected the configuration table for google home
324
+
299
325
  ### 1.8.4 (2020-11-18)
300
- * (bluefox) Corrected the configuration table for google home
301
-
326
+ * (bluefox) Corrected the configuration table for google home
327
+
302
328
  ### 1.8.3 (2020-11-16)
303
- * (bluefox) Trying to fix the set to false at start for google home
304
-
329
+ * (bluefox) Trying to fix the set to false at start for google home
330
+
305
331
  ### 1.8.2 (2020-11-15)
306
- * (bluefox) Added the debug outputs for google home
307
-
332
+ * (bluefox) Added the debug outputs for google home
333
+
308
334
  ### 1.8.1 (2020-11-13)
309
- * (bluefox) The deletion of google home devices was corrected
310
-
335
+ * (bluefox) The deletion of google home devices was corrected
336
+
311
337
  ### 1.8.0 (2020-11-12)
312
- * (bluefox) The google home table was rewritten
313
-
338
+ * (bluefox) The google home table was rewritten
339
+
314
340
  ### 1.7.15 (2020-11-05)
315
- * (Morluktom) Corrected the request for temperature
316
-
341
+ * (Morluktom) Corrected the request for temperature
342
+
317
343
  ### 1.7.14 (2020-11-05)
318
- * (bluefox) Updated the select ID dialog.
319
-
320
- #### 1.7.13 (2020-10-30)
321
- * (foxriver76) add eraseOnUpload flag for js-controller 3.2+
322
-
344
+ * (bluefox) Updated the select ID dialog.
345
+
323
346
  ### 1.7.12 (2020-09-25)
324
- * (bluefox) Updated the select ID dialog.
325
-
347
+ * (bluefox) Updated the select ID dialog.
348
+
326
349
  ### 1.7.9 (2020-09-17)
327
- * (bluefox) Updated GUI for config.
328
-
350
+ * (bluefox) Updated GUI for config.
351
+
329
352
  ### 1.7.7 (2020-09-02)
330
- * (bluefox) Added information about changed linking process.
331
-
353
+ * (bluefox) Added information about changed linking process.
354
+
332
355
  ### 1.7.6 (2020-08-25)
333
- * (bluefox) Some colors were changed in the dark mode.
334
-
356
+ * (bluefox) Some colors were changed in the dark mode.
357
+
335
358
  ### 1.7.5 (2020-08-21)
336
359
  * (Apollon77) Crash prevented (Sentry IOBROKER-IOT-W)
337
- * (bluefox) Values for modes will be converted to number in Alisa
338
-
360
+ * (bluefox) Values for modes will be converted to number in Alisa
361
+
339
362
  ### 1.7.3 (2020-08-16)
340
- * (bluefox) Added vacuum cleaner to Alisa
341
-
363
+ * (bluefox) Added vacuum cleaner to Alisa
364
+
342
365
  ### 1.7.1 (2020-08-16)
343
- * (bluefox) Added blinds, lock and thermostat to Alisa
344
-
366
+ * (bluefox) Added blinds, lock and thermostat to Alisa
367
+
345
368
  ### 1.6.4 (2020-08-06)
346
- * (Apollon77) crash prevented (Sentry IOBROKER-IOT-V)
347
-
369
+ * (Apollon77) crash prevented (Sentry IOBROKER-IOT-V)
370
+
348
371
  ### 1.6.3 (2020-08-04)
349
- * (bluefox) Added french letters to allowed symbols
350
-
372
+ * (bluefox) Added french letters to allowed symbols
373
+
351
374
  ### 1.6.1 (2020-07-10)
352
- * (bluefox) Used new SelectID Dialog in GUI
353
-
375
+ * (bluefox) Used new SelectID Dialog in GUI
376
+
354
377
  ### 1.5.3 (2020-05-28)
355
- * (bluefox) Small change for nightscout
356
-
378
+ * (bluefox) Small change for nightscout
379
+
357
380
  ### 1.5.2 (2020-05-21)
358
381
  * (bluefox) Changed requirements for password
359
- * (bluefox) Do not try load the "sharp" if blood sugar not enabled
360
-
382
+ * (bluefox) Do not try load the "sharp" if blood sugar not enabled
383
+
361
384
  ### 1.4.18 (2020-05-11)
362
385
  * (Apollon77) Make sure that invalid configured states or values without a timestamp do not crash adapter (Sentry IOBROKER-IOT-8)
363
- * (Apollon77) Make sure publishes after the disconnect to not break adapter (Sentry IOBROKER-IOT-A)
364
-
386
+ * (Apollon77) Make sure publishes after the disconnect to not break adapter (Sentry IOBROKER-IOT-A)
387
+
365
388
  ### 1.4.17 (2020-05-11)
366
- * (bluefox) Better error output is implemented
367
-
389
+ * (bluefox) Better error output is implemented
390
+
368
391
  ### 1.4.14 (2020-05-01)
369
- * (bluefox) Fixed the problem if admin is not on 8081 port
370
-
392
+ * (bluefox) Fixed the problem if admin is not on 8081 port
393
+
371
394
  ### 1.4.12 (2020-04-30)
372
- * (Apollon77) error case handled where system.config objects does not exist (Sentry IOBROKER-IOT-5)
373
-
395
+ * (Apollon77) error case handled where system.config objects does not exist (Sentry IOBROKER-IOT-5)
396
+
374
397
  ### 1.4.11 (2020-04-26)
375
- * (bluefox) fixed IOBROKER-IOT-REACT-F
376
-
398
+ * (bluefox) fixed IOBROKER-IOT-REACT-F
399
+
377
400
  ### 1.4.10 (2020-04-24)
378
- * (bluefox) Fixed crashes reported by sentry
379
-
401
+ * (bluefox) Fixed crashes reported by sentry
402
+
380
403
  ### 1.4.7 (2020-04-23)
381
404
  * fix iot crash when timeouts in communications to Google happens (Sentry IOBROKER-IOT-2)
382
- * fix iot crash when google answers without customData (Sentry IOBROKER-IOT-1)
383
-
405
+ * fix iot crash when google answers without customData (Sentry IOBROKER-IOT-1)
406
+
384
407
  ### 1.4.6 (2020-04-18)
385
- * (Apollon77) Add the Sentry error reporting to `React Frontend`
386
-
408
+ * (Apollon77) Add the Sentry error reporting to `React Frontend`
409
+
387
410
  ### 1.4.4 (2020-04-14)
388
411
  * (Apollon77) remove js-controller 3.0 warnings and replace `adapter.objects` access
389
412
  * (Apollon77) add linux dependencies for canvas library
390
- * (Apollon77) add sentry configuration
391
-
413
+ * (Apollon77) add sentry configuration
414
+
392
415
  ### 1.4.2 (2020-04-08)
393
- * (TA2k) Fix updateState for Google Home
394
-
416
+ * (TA2k) Fix updateState for Google Home
417
+
395
418
  ### 1.4.1 (2020-04-04)
396
- * (bluefox) The blood glucose request supported now
397
-
419
+ * (bluefox) The blood glucose request supported now
420
+
398
421
  ### 1.3.4 (2020-02-26)
399
- * (TA2k) Fixed deconz issues in Google Home
400
-
422
+ * (TA2k) Fixed deconz issues in Google Home
423
+
401
424
  ### 1.3.3 (2020-02-12)
402
- * (Apollon77) fix alisa error with invalid smartName attributes
403
-
425
+ * (Apollon77) fix alisa error with invalid smartName attributes
426
+
404
427
  ### 1.3.2 (2020-02-10)
405
- * (Apollon77) usage with all kinds of admin ports and reverse proxies optimized
406
-
428
+ * (Apollon77) usage with all kinds of admin ports and reverse proxies optimized
429
+
407
430
  ### 1.3.1 (2020-02-09)
408
431
  * (Apollon77) Dependency updates
409
- * (Apollon77) Make compatible with Admin > 4.0 because of updated socket.io
410
-
432
+ * (Apollon77) Make compatible with Admin > 4.0 because of updated socket.io
433
+
411
434
  ### 1.2.1 (2020-01-18)
412
- * (bluefox) Fixed problem if the port of admin is not 8081
413
-
435
+ * (bluefox) Fixed problem if the port of admin is not 8081
436
+
414
437
  ### 1.2.0 (2020-01-04)
415
- * (TA2k) Google Home handling and visualization improved.
416
-
438
+ * (TA2k) Google Home handling and visualization improved.
439
+
417
440
  ### 1.1.10 (2020-01-03)
418
441
  * (bluefox) Now is allowed to select the temperature values as alexa states
419
- * (bluefox) Allowed the setting type immediately after insertion of new state
420
-
442
+ * (bluefox) Allowed the setting type immediately after insertion of new state
443
+
421
444
  ### 1.1.9 (2019-11-27)
422
- * (bluefox) Fixed: sometimes the configuration could not be loaded
423
-
445
+ * (bluefox) Fixed: sometimes the configuration could not be loaded
446
+
424
447
  ### 1.1.8 (2019-09-12)
425
- * (bluefox) Optimization of google home communication was done
426
-
448
+ * (bluefox) Optimization of google home communication was done
449
+
427
450
  ### 1.1.7 (2019-09-11)
428
- * (bluefox) The sending rate to google home is limited now
429
-
451
+ * (bluefox) The sending rate to google home is limited now
452
+
430
453
  ### 1.1.6 (2019-09-11)
431
- * (TA2k) Room fix for Google Home and LinkedDevices
432
-
454
+ * (TA2k) Room fix for Google Home and LinkedDevices
455
+
433
456
  ### 1.1.4 (2019-09-10)
434
- * (bluefox) decreased keepalive value to fix issue with disconnect
435
-
457
+ * (bluefox) decreased keepalive value to fix issue with disconnect
458
+
436
459
  ### 1.1.3 (2019-09-09)
437
- * (TA2k) Google Home problem fixed with LinkedDevices
438
-
460
+ * (TA2k) Google Home problem fixed with LinkedDevices
461
+
439
462
  ### 1.1.0 (2019-09-06)
440
- * (bluefox) Added support of aliases
441
-
463
+ * (bluefox) Added support of aliases
464
+
442
465
  ### 1.0.8 (2019-09-03)
443
466
  * (TA2k) Improved support for Google Home
444
467
  * (TA2k) Added auto detection for RGB, RGBSingle, Hue, CT, MediaDevice, Switch, Info, Socket, Light, Dimmer, Thermostat, WindowTilt, Blinds, Slider
445
468
  * (TA2k) Added support for manually adding states as devices
446
469
  * (TA2k) Fix update state after Sync
447
470
  * (TA2k) Added typical Google Home devices and traits/actions
448
- * (TA2k) Fix only process update message when Alexa is checked in the options
449
-
471
+ * (TA2k) Fix only process update message when Alexa is checked in the options
472
+
450
473
  ### 1.0.4 (2019-08-01)
451
- * (bluefox) Fixed password encoding. Please enter password anew!
452
-
474
+ * (bluefox) Fixed password encoding. Please enter password anew!
475
+
453
476
  ### 1.0.3 (2019-07-30)
454
- * (bluefox) Fixed language issues for google home and yandex alice
455
-
477
+ * (bluefox) Fixed language issues for google home and yandex alice
478
+
456
479
  ### 1.0.1 (2019-07-26)
457
- * (bluefox) Support of private skills/actions was added.
458
-
480
+ * (bluefox) Support of private skills/actions was added.
481
+
459
482
  ### 1.0.0 (2019-07-14)
460
- * (TA2k) Google Home list was added
461
-
483
+ * (TA2k) Google Home list was added
484
+
462
485
  ### 0.5.0 (2019-06-29)
463
- * (bluefox) tried to add yandex Alisa
464
-
486
+ * (bluefox) tried to add yandex Alisa
487
+
465
488
  ### 0.4.3 (2019-04-14)
466
- * (Apollon77) Change enable/disable of Amazon Alexa and of Google Home from configuration to be really "active if selected".
467
-
489
+ * (Apollon77) Change enable/disable of Amazon Alexa and of Google Home from configuration to be really "active if selected".
490
+
468
491
  ### 0.4.2 (2019-03-10)
469
- * (bluefox) Allowed the enablement and disable of Amazon Alexa and of Google Home from configuration.
470
-
492
+ * (bluefox) Allowed the enablement and disable of Amazon Alexa and of Google Home from configuration.
493
+
471
494
  ### 0.4.1 (2019-02-19)
472
- * (bluefox) Add version check to google home
473
-
495
+ * (bluefox) Add version check to google home
496
+
474
497
  ### 0.3.1 (2019-01-13)
475
- * (bluefox) Blockly was fixed
476
-
498
+ * (bluefox) Blockly was fixed
499
+
477
500
  ### 0.3.0 (2018-12-30)
478
- * (bluefox) Detection of google devices was fixed
479
-
501
+ * (bluefox) Detection of google devices was fixed
502
+
480
503
  ### 0.2.2 (2018-12-21)
481
- * (bluefox) Generation of new URL key was added
482
-
504
+ * (bluefox) Generation of new URL key was added
505
+
483
506
  ### 0.2.0 (2018-12-18)
484
- * (bluefox) Change the name of adapter
485
-
507
+ * (bluefox) Change the name of adapter
508
+
486
509
  ### 0.1.8 (2018-10-21)
487
- * (bluefox) Added extended diagnostics
488
-
510
+ * (bluefox) Added extended diagnostics
511
+
489
512
  ### 0.1.7 (2018-10-14)
490
513
  * (bluefox) The configuration dialog was corrected
491
- * (bluefox) The possibility to create the answer with script for the custom skill was implemented.
492
-
514
+ * (bluefox) The possibility to create the answer with script for the custom skill was implemented.
515
+
493
516
  ### 0.1.4 (2018-09-26)
494
- * (bluefox) Initial commit
495
-
517
+ * (bluefox) Initial commit
518
+
496
519
  ## License
497
520
  The MIT License (MIT)
498
521
 
@@ -514,5 +537,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
514
537
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
515
538
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
516
539
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
517
- SOFTWARE.
518
-
540
+ SOFTWARE.
@@ -1,23 +1,23 @@
1
1
  {
2
2
  "files": {
3
3
  "main.css": "./static/css/main.e2d673ee.chunk.css",
4
- "main.js": "./static/js/main.b7727019.chunk.js",
5
- "main.js.map": "./static/js/main.b7727019.chunk.js.map",
4
+ "main.js": "./static/js/main.3c6ad20e.chunk.js",
5
+ "main.js.map": "./static/js/main.3c6ad20e.chunk.js.map",
6
6
  "runtime-main.js": "./static/js/runtime-main.3886ef11.js",
7
7
  "runtime-main.js.map": "./static/js/runtime-main.3886ef11.js.map",
8
- "static/css/2.c04f2d9d.chunk.css": "./static/css/2.c04f2d9d.chunk.css",
9
- "static/js/2.7960fa52.chunk.js": "./static/js/2.7960fa52.chunk.js",
10
- "static/js/2.7960fa52.chunk.js.map": "./static/js/2.7960fa52.chunk.js.map",
8
+ "static/css/2.67ef5efb.chunk.css": "./static/css/2.67ef5efb.chunk.css",
9
+ "static/js/2.4ed12e11.chunk.js": "./static/js/2.4ed12e11.chunk.js",
10
+ "static/js/2.4ed12e11.chunk.js.map": "./static/js/2.4ed12e11.chunk.js.map",
11
11
  "index.html": "./index.html",
12
- "static/css/2.c04f2d9d.chunk.css.map": "./static/css/2.c04f2d9d.chunk.css.map",
12
+ "static/css/2.67ef5efb.chunk.css.map": "./static/css/2.67ef5efb.chunk.css.map",
13
13
  "static/css/main.e2d673ee.chunk.css.map": "./static/css/main.e2d673ee.chunk.css.map",
14
- "static/js/2.7960fa52.chunk.js.LICENSE.txt": "./static/js/2.7960fa52.chunk.js.LICENSE.txt"
14
+ "static/js/2.4ed12e11.chunk.js.LICENSE.txt": "./static/js/2.4ed12e11.chunk.js.LICENSE.txt"
15
15
  },
16
16
  "entrypoints": [
17
17
  "static/js/runtime-main.3886ef11.js",
18
- "static/css/2.c04f2d9d.chunk.css",
19
- "static/js/2.7960fa52.chunk.js",
18
+ "static/css/2.67ef5efb.chunk.css",
19
+ "static/js/2.4ed12e11.chunk.js",
20
20
  "static/css/main.e2d673ee.chunk.css",
21
- "static/js/main.b7727019.chunk.js"
21
+ "static/js/main.3c6ad20e.chunk.js"
22
22
  ]
23
23
  }
@@ -1 +1 @@
1
- <!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="shortcut icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><meta name="theme-color" content="#000000"/><link rel="manifest" href="./manifest.json"/><script type="text/javascript" src="./../../lib/js/socket.io.js"></script><title>IoT Settings</title><link href="./static/css/2.c04f2d9d.chunk.css" rel="stylesheet"><link href="./static/css/main.e2d673ee.chunk.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script>!function(e){function t(t){for(var n,i,l=t[0],a=t[1],f=t[2],c=0,s=[];c<l.length;c++)i=l[c],Object.prototype.hasOwnProperty.call(o,i)&&o[i]&&s.push(o[i][0]),o[i]=0;for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(e[n]=a[n]);for(p&&p(t);s.length;)s.shift()();return u.push.apply(u,f||[]),r()}function r(){for(var e,t=0;t<u.length;t++){for(var r=u[t],n=!0,l=1;l<r.length;l++){var a=r[l];0!==o[a]&&(n=!1)}n&&(u.splice(t--,1),e=i(i.s=r[0]))}return e}var n={},o={1:0},u=[];function i(t){if(n[t])return n[t].exports;var r=n[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,i),r.l=!0,r.exports}i.m=e,i.c=n,i.d=function(e,t,r){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(i.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)i.d(r,n,function(t){return e[t]}.bind(null,n));return r},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="./";var l=this["webpackJsonpiot-admin"]=this["webpackJsonpiot-admin"]||[],a=l.push.bind(l);l.push=t,l=l.slice();for(var f=0;f<l.length;f++)t(l[f]);var p=a;r()}([])</script><script src="./static/js/2.7960fa52.chunk.js"></script><script src="./static/js/main.b7727019.chunk.js"></script></body></html>
1
+ <!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="shortcut icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><meta name="theme-color" content="#000000"/><link rel="manifest" href="./manifest.json"/><script type="text/javascript" src="./../../lib/js/socket.io.js"></script><title>IoT Settings</title><link href="./static/css/2.67ef5efb.chunk.css" rel="stylesheet"><link href="./static/css/main.e2d673ee.chunk.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script>!function(e){function t(t){for(var n,i,l=t[0],a=t[1],f=t[2],c=0,s=[];c<l.length;c++)i=l[c],Object.prototype.hasOwnProperty.call(o,i)&&o[i]&&s.push(o[i][0]),o[i]=0;for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(e[n]=a[n]);for(p&&p(t);s.length;)s.shift()();return u.push.apply(u,f||[]),r()}function r(){for(var e,t=0;t<u.length;t++){for(var r=u[t],n=!0,l=1;l<r.length;l++){var a=r[l];0!==o[a]&&(n=!1)}n&&(u.splice(t--,1),e=i(i.s=r[0]))}return e}var n={},o={1:0},u=[];function i(t){if(n[t])return n[t].exports;var r=n[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,i),r.l=!0,r.exports}i.m=e,i.c=n,i.d=function(e,t,r){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(i.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)i.d(r,n,function(t){return e[t]}.bind(null,n));return r},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="./";var l=this["webpackJsonpiot-admin"]=this["webpackJsonpiot-admin"]||[],a=l.push.bind(l);l.push=t,l=l.slice();for(var f=0;f<l.length;f++)t(l[f]);var p=a;r()}([])</script><script src="./static/js/2.4ed12e11.chunk.js"></script><script src="./static/js/main.3c6ad20e.chunk.js"></script></body></html>
@@ -1,2 +1,2 @@
1
1
  .logo-background-colored,.logo-background-light{background:#fff}.logo-background-blue,.logo-background-dark{background:#000}.logo-div{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);overflow:hidden;z-index:2}.logo-border,.logo-div{position:absolute;border-radius:50%}.logo-border{border-color:#39c #164477 #164477;border-style:solid;box-sizing:border-box;width:100%;height:100%}.logo-top{position:absolute;width:4.5%;height:16%;top:0;z-index:2}.logo-i{height:60%;top:20%}.logo-i,.logo-i-top{position:absolute;width:14.5%;left:42%;background:#39c}.logo-i-top{height:4%;border-radius:100%}.logo-back{width:100%;height:100%;z-index:0;overflow:hidden}@-webkit-keyframes logo-grow{0%{width:230px;height:230px;-webkit-transform:translate(-50%,-50%) scale(1);transform:translate(-50%,-50%) scale(1);opacity:1}99%{width:230px;height:230px;-webkit-transform:translate(-50%,-50%) scale(10);transform:translate(-50%,-50%) scale(10);opacity:0}to{width:0;height:0;opacity:0}}@keyframes logo-grow{0%{width:230px;height:230px;-webkit-transform:translate(-50%,-50%) scale(1);transform:translate(-50%,-50%) scale(1);opacity:1}99%{width:230px;height:230px;-webkit-transform:translate(-50%,-50%) scale(10);transform:translate(-50%,-50%) scale(10);opacity:0}to{width:0;height:0;opacity:0}}@-webkit-keyframes logo-spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes logo-spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes logo-color-inside-light{0%{background:#fefefe}to{background:#39c}}@keyframes logo-color-inside-light{0%{background:#fefefe}to{background:#39c}}@-webkit-keyframes logo-color-inside-dark{0%{background:#030303}to{background:#39c}}@keyframes logo-color-inside-dark{0%{background:#030303}to{background:#39c}}@-webkit-keyframes logo-color-inside-colored{0%{background:#fefefe}to{background:#39c}}@keyframes logo-color-inside-colored{0%{background:#fefefe}to{background:#39c}}@-webkit-keyframes logo-color-inside-blue{0%{background:#030303}to{background:#39c}}@keyframes logo-color-inside-blue{0%{background:#030303}to{background:#39c}}@-webkit-keyframes logo-color-outside-light{0%{border-color:#fefefe}to{border-color:#39c #164477 #164477}}@keyframes logo-color-outside-light{0%{border-color:#fefefe}to{border-color:#39c #164477 #164477}}@-webkit-keyframes logo-color-outside-dark{0%{border-color:#040404}to{border-color:#39c #164477 #164477}}@keyframes logo-color-outside-dark{0%{border-color:#040404}to{border-color:#39c #164477 #164477}}@-webkit-keyframes logo-color-outside-colored{0%{border-color:#fefefe}to{border-color:#39c #164477 #164477}}@keyframes logo-color-outside-colored{0%{border-color:#fefefe}to{border-color:#39c #164477 #164477}}@-webkit-keyframes logo-color-outside-blue{0%{border-color:#040404}to{border-color:#39c #164477 #164477}}@keyframes logo-color-outside-blue{0%{border-color:#040404}to{border-color:#39c #164477 #164477}}.logo-animate-wait{-webkit-animation:logo-color-outside 1.5s,logo-spin 1.5s linear infinite;animation:logo-color-outside 1.5s,logo-spin 1.5s linear infinite}.logo-animate-grow-light{background:#ddd}.logo-animate-grow-dark{background:#1d1d1d}.logo-animate-grow-colored{background:#ddd}.logo-animate-grow-blue{background:#1d1d1d}.logo-animate-grow{display:inline-block;text-align:center;z-index:1;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:245px;height:245px;border-radius:50%;position:absolute;-webkit-animation:logo-grow 1s ease 1 forwards;animation:logo-grow 1s ease 1 forwards}.logo-animate-color-inside-light{-webkit-animation:logo-color-inside-light 2.5s;animation:logo-color-inside-light 2.5s}.logo-animate-color-inside-dark{-webkit-animation:logo-color-inside-dark 2.5s;animation:logo-color-inside-dark 2.5s}.logo-animate-color-inside-colored{-webkit-animation:logo-color-inside-colored 2.5s;animation:logo-color-inside-colored 2.5s}.logo-animate-color-inside-blue{-webkit-animation:logo-color-inside-blue 2.5s;animation:logo-color-inside-blue 2.5s}.logo-animate-color-outside-light{-webkit-animation:logo-color-outside-light 1.5s;animation:logo-color-outside-light 1.5s}.logo-animate-color-outside-dark{-webkit-animation:logo-color-outside-dark 1.5s;animation:logo-color-outside-dark 1.5s}.logo-animate-color-outside-colored{-webkit-animation:logo-color-outside-colored 1.5s;animation:logo-color-outside-colored 1.5s}.logo-animate-color-outside-blue{-webkit-animation:logo-color-outside-blue 1.5s;animation:logo-color-outside-blue 1.5s}body,html{height:100%}body{margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:100%;overflow:hidden}::-webkit-scrollbar-track{background-color:#ccc;border-radius:5px}::-webkit-scrollbar{width:5px;height:5px;background-color:#ccc}::-webkit-scrollbar-thumb{background-color:#575757;border-radius:5px}#root,.App{height:100%}@-webkit-keyframes glow{0%{background-color:initial}to{background-color:#58c458}}@keyframes glow{0%{background-color:initial}to{background-color:#58c458}}
2
- /*# sourceMappingURL=2.c04f2d9d.chunk.css.map */
2
+ /*# sourceMappingURL=2.67ef5efb.chunk.css.map */
@@ -1 +1 @@
1
- {"version":3,"sources":["webpack://node_modules/@iobroker/adapter-react/Components/loader.css","webpack://node_modules/@iobroker/adapter-react/index.css"],"names":[],"mappings":"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","file":"2.c04f2d9d.chunk.css","sourcesContent":["/**\n * Copyright 2018-2020 bluefox <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n\n.logo-background-light, .logo-background-colored {\n background: white;\n}\n.logo-background-dark, .logo-background-blue {\n background: black;\n}\n.logo-div {\n position: absolute;\n top: 50%;\n left: 50%;\n -ms-transform: translateX(-50%) translateY(-50%);\n -webkit-transform: translate(-50%,-50%);\n transform: translate(-50%,-50%);\n overflow: hidden;\n border-radius: 50%;\n z-index: 2;\n}\n.logo-border {\n /*border-color: #164477;*/\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n border-radius: 50%;\n border-style: solid;\n box-sizing: border-box;\n width: 100%;\n height: 100%;\n position: absolute;\n}\n.logo-top {\n position: absolute;\n width: 4.5%;\n height: 16%;\n top: 0;\n z-index: 2;\n}\n.logo-i {\n position: absolute;\n width: 14.5%;\n height: 60%;\n top: 20%;\n left: 42%;\n background: #3399CC;\n}\n.logo-i-top {\n position: absolute;\n width: 14.5%;\n height: 4%;\n left: 42%;\n background: #3399CC;\n border-radius: 100%;\n}\n.logo-back {\n width: 100%;\n height: 100%;\n z-index: 0;\n overflow: hidden;\n}\n@keyframes logo-grow {\n 0% {\n width: 230px;\n height: 230px;\n transform: translate(-50%,-50%) scale(1);\n opacity: 1\n }\n 99% {\n width: 230px;\n height: 230px;\n transform: translate(-50%,-50%) scale(10);\n opacity: 0;\n }\n 100% {\n width: 0;\n height: 0;\n opacity: 0;\n }\n}\n@keyframes logo-spin { 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }\n@keyframes logo-color-inside-light {\n 0% {\n background: #FEFEFE;\n }\n 100% {\n background: #3399CC;\n }\n}\n@keyframes logo-color-inside-dark {\n 0% {\n background: #030303;\n }\n 100% {\n background: #3399CC;\n }\n}\n@keyframes logo-color-inside-colored {\n 0% {\n background: #FEFEFE;\n }\n 100% {\n background: #3399CC;\n }\n}\n@keyframes logo-color-inside-blue {\n 0% {\n background: #030303;\n }\n 100% {\n background: #3399CC;\n }\n}\n\n@keyframes logo-color-outside-light {\n 0% {\n border-color: #FEFEFE;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n@keyframes logo-color-outside-dark {\n 0% {\n border-color: #040404;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n@keyframes logo-color-outside-colored {\n 0% {\n border-color: #FEFEFE;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n@keyframes logo-color-outside-blue {\n 0% {\n border-color: #040404;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n\n.logo-animate-wait {\n animation: logo-color-outside 1.5s, logo-spin 1.5s linear infinite;\n}\n\n.logo-animate-grow-light {\n background: #DDD;\n}\n.logo-animate-grow-dark {\n background: #1d1d1d;\n}\n.logo-animate-grow-colored {\n background: #DDD;\n}\n.logo-animate-grow-blue {\n background: #1d1d1d;\n}\n\n.logo-animate-grow {\n display: inline-block;\n text-align: center;\n z-index: 1;\n top: 50%;\n left: 50%;\n -ms-transform: translateX(-50%) translateY(-50%);\n -webkit-transform: translate(-50%,-50%);\n transform: translate(-50%,-50%);\n width: 245px;\n height: 245px;\n border-radius: 50%;\n position: absolute;\n animation: logo-grow 1s 1 ease forwards;\n}\n\n.logo-animate-color-inside-light {\n animation: logo-color-inside-light 2.5s;\n}\n.logo-animate-color-inside-dark {\n animation: logo-color-inside-dark 2.5s;\n}\n.logo-animate-color-inside-colored {\n animation: logo-color-inside-colored 2.5s;\n}\n.logo-animate-color-inside-blue {\n animation: logo-color-inside-blue 2.5s;\n}\n\n.logo-animate-color-outside-light {\n animation: logo-color-outside-light 1.5s;\n}\n.logo-animate-color-outside-dark {\n animation: logo-color-outside-dark 1.5s;\n}\n.logo-animate-color-outside-colored {\n animation: logo-color-outside-colored 1.5s;\n}\n.logo-animate-color-outside-blue {\n animation: logo-color-outside-blue 1.5s;\n}","/**\n * Copyright 2018-2020 bluefox <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n\nhtml {\n height: 100%;\n}\n\nbody {\n margin: 0;\n padding: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n width: 100%;\n height: 100%;\n overflow: hidden;\n}\n\n/* scrollbar */\n::-webkit-scrollbar-track {\n background-color: #ccc;\n border-radius: 5px;\n}\n\n::-webkit-scrollbar {\n width: 5px;\n height: 5px;\n background-color: #ccc;\n}\n\n::-webkit-scrollbar-thumb {\n background-color: #575757;\n border-radius: 5px;\n}\n\n#root {\n height: 100%;\n}\n\n.App {\n height: 100%;\n}\n\n@keyframes glow {\n from {\n background-color: initial;\n }\n to {\n background-color: #58c458;\n }\n}"]}
1
+ {"version":3,"sources":["webpack://node_modules/@iobroker/adapter-react/Components/loader.css","webpack://node_modules/@iobroker/adapter-react/index.css"],"names":[],"mappings":"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","file":"2.67ef5efb.chunk.css","sourcesContent":["/**\n * Copyright 2018-2021 bluefox <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n\n.logo-background-light, .logo-background-colored {\n background: white;\n}\n.logo-background-dark, .logo-background-blue {\n background: black;\n}\n.logo-div {\n position: absolute;\n top: 50%;\n left: 50%;\n -ms-transform: translateX(-50%) translateY(-50%);\n -webkit-transform: translate(-50%,-50%);\n transform: translate(-50%,-50%);\n overflow: hidden;\n border-radius: 50%;\n z-index: 2;\n}\n.logo-border {\n /*border-color: #164477;*/\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n border-radius: 50%;\n border-style: solid;\n box-sizing: border-box;\n width: 100%;\n height: 100%;\n position: absolute;\n}\n.logo-top {\n position: absolute;\n width: 4.5%;\n height: 16%;\n top: 0;\n z-index: 2;\n}\n.logo-i {\n position: absolute;\n width: 14.5%;\n height: 60%;\n top: 20%;\n left: 42%;\n background: #3399CC;\n}\n.logo-i-top {\n position: absolute;\n width: 14.5%;\n height: 4%;\n left: 42%;\n background: #3399CC;\n border-radius: 100%;\n}\n.logo-back {\n width: 100%;\n height: 100%;\n z-index: 0;\n overflow: hidden;\n}\n@keyframes logo-grow {\n 0% {\n width: 230px;\n height: 230px;\n transform: translate(-50%,-50%) scale(1);\n opacity: 1\n }\n 99% {\n width: 230px;\n height: 230px;\n transform: translate(-50%,-50%) scale(10);\n opacity: 0;\n }\n 100% {\n width: 0;\n height: 0;\n opacity: 0;\n }\n}\n@keyframes logo-spin { 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }\n@keyframes logo-color-inside-light {\n 0% {\n background: #FEFEFE;\n }\n 100% {\n background: #3399CC;\n }\n}\n@keyframes logo-color-inside-dark {\n 0% {\n background: #030303;\n }\n 100% {\n background: #3399CC;\n }\n}\n@keyframes logo-color-inside-colored {\n 0% {\n background: #FEFEFE;\n }\n 100% {\n background: #3399CC;\n }\n}\n@keyframes logo-color-inside-blue {\n 0% {\n background: #030303;\n }\n 100% {\n background: #3399CC;\n }\n}\n\n@keyframes logo-color-outside-light {\n 0% {\n border-color: #FEFEFE;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n@keyframes logo-color-outside-dark {\n 0% {\n border-color: #040404;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n@keyframes logo-color-outside-colored {\n 0% {\n border-color: #FEFEFE;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n@keyframes logo-color-outside-blue {\n 0% {\n border-color: #040404;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n\n.logo-animate-wait {\n animation: logo-color-outside 1.5s, logo-spin 1.5s linear infinite;\n}\n\n.logo-animate-grow-light {\n background: #DDD;\n}\n.logo-animate-grow-dark {\n background: #1d1d1d;\n}\n.logo-animate-grow-colored {\n background: #DDD;\n}\n.logo-animate-grow-blue {\n background: #1d1d1d;\n}\n\n.logo-animate-grow {\n display: inline-block;\n text-align: center;\n z-index: 1;\n top: 50%;\n left: 50%;\n -ms-transform: translateX(-50%) translateY(-50%);\n -webkit-transform: translate(-50%,-50%);\n transform: translate(-50%,-50%);\n width: 245px;\n height: 245px;\n border-radius: 50%;\n position: absolute;\n animation: logo-grow 1s 1 ease forwards;\n}\n\n.logo-animate-color-inside-light {\n animation: logo-color-inside-light 2.5s;\n}\n.logo-animate-color-inside-dark {\n animation: logo-color-inside-dark 2.5s;\n}\n.logo-animate-color-inside-colored {\n animation: logo-color-inside-colored 2.5s;\n}\n.logo-animate-color-inside-blue {\n animation: logo-color-inside-blue 2.5s;\n}\n\n.logo-animate-color-outside-light {\n animation: logo-color-outside-light 1.5s;\n}\n.logo-animate-color-outside-dark {\n animation: logo-color-outside-dark 1.5s;\n}\n.logo-animate-color-outside-colored {\n animation: logo-color-outside-colored 1.5s;\n}\n.logo-animate-color-outside-blue {\n animation: logo-color-outside-blue 1.5s;\n}","/**\n * Copyright 2018-2020 bluefox <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n\nhtml {\n height: 100%;\n}\n\nbody {\n margin: 0;\n padding: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n width: 100%;\n height: 100%;\n overflow: hidden;\n}\n\n/* scrollbar */\n::-webkit-scrollbar-track {\n background-color: #ccc;\n border-radius: 5px;\n}\n\n::-webkit-scrollbar {\n width: 5px;\n height: 5px;\n background-color: #ccc;\n}\n\n::-webkit-scrollbar-thumb {\n background-color: #575757;\n border-radius: 5px;\n}\n\n#root {\n height: 100%;\n}\n\n.App {\n height: 100%;\n}\n\n@keyframes glow {\n from {\n background-color: initial;\n }\n to {\n background-color: #58c458;\n }\n}"]}