iobroker.public-transport 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +208 -0
  3. package/admin/custom/.vite/manifest.json +338 -0
  4. package/admin/custom/assets/AdminComponentEasyAccessSet__loadShare___mf_0_iobroker_mf_1_adapter_mf_2_react_mf_2_v5__loadShare__-CmYJ37BE.js +1 -0
  5. package/admin/custom/assets/AdminComponentEasyAccessSet__loadShare___mf_0_mui_mf_1_icons_mf_2_material__loadShare__-CljkirG-.js +1 -0
  6. package/admin/custom/assets/AdminComponentEasyAccessSet__loadShare___mf_0_mui_mf_1_material__loadShare__-EKOPJIKX.js +1 -0
  7. package/admin/custom/assets/AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js +1 -0
  8. package/admin/custom/assets/AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js +5 -0
  9. package/admin/custom/assets/Components-BxfYFqIg.js +1 -0
  10. package/admin/custom/assets/DefaultPropsProvider-CLe-DXgN.js +1 -0
  11. package/admin/custom/assets/TextField-Omef9SlF.js +103 -0
  12. package/admin/custom/assets/ThemeProvider-DA2qDu9j.js +29 -0
  13. package/admin/custom/assets/Tram-DfEnfuV-.js +1 -0
  14. package/admin/custom/assets/_commonjsHelpers-CE1G-McA.js +1 -0
  15. package/admin/custom/assets/createSvgIcon-BA2rfUM-.js +1 -0
  16. package/admin/custom/assets/createTheme-7CZNbMr1.js +8 -0
  17. package/admin/custom/assets/defaultTheme-BJjGWN-J.js +1 -0
  18. package/admin/custom/assets/hostInit-BJ6gSofk.js +2 -0
  19. package/admin/custom/assets/index-4wMOc304.js +1 -0
  20. package/admin/custom/assets/index-Bu92Wd0L.js +8 -0
  21. package/admin/custom/assets/index-C0won9I_.js +31 -0
  22. package/admin/custom/assets/index-CJpYCuOo.js +1 -0
  23. package/admin/custom/assets/index-CL2iD7Tl.js +1 -0
  24. package/admin/custom/assets/index-CNPhn7qj.js +908 -0
  25. package/admin/custom/assets/index-CZC4fTbC.js +1398 -0
  26. package/admin/custom/assets/index-Dr3QlUn7.js +1 -0
  27. package/admin/custom/assets/index-M6fKBo01.js +1 -0
  28. package/admin/custom/assets/index-omnYtLS_.js +91 -0
  29. package/admin/custom/assets/preload-helper-BDBacUwf.js +1 -0
  30. package/admin/custom/assets/useTheme-B92oTuSc.js +1 -0
  31. package/admin/custom/assets/useTheme-lyF5r2xq.js +1 -0
  32. package/admin/custom/assets/virtualExposes-CSzgrU-8.js +2 -0
  33. package/admin/custom/customComponents.js +2 -0
  34. package/admin/custom/i18n/de.json +201 -0
  35. package/admin/custom/i18n/en.json +201 -0
  36. package/admin/custom/i18n/es.json +1 -0
  37. package/admin/custom/i18n/fr.json +1 -0
  38. package/admin/custom/i18n/it.json +1 -0
  39. package/admin/custom/i18n/nl.json +1 -0
  40. package/admin/custom/i18n/pl.json +1 -0
  41. package/admin/custom/i18n/pt.json +1 -0
  42. package/admin/custom/i18n/ru.json +1 -0
  43. package/admin/custom/i18n/uk.json +1 -0
  44. package/admin/custom/i18n/zh-cn.json +1 -0
  45. package/admin/custom/index.html +48 -0
  46. package/admin/custom/mf-manifest.json +1 -0
  47. package/admin/i18n/de/translations.json +203 -0
  48. package/admin/i18n/en/translations.json +203 -0
  49. package/admin/i18n/es/translations.json +1 -0
  50. package/admin/i18n/fr/translations.json +1 -0
  51. package/admin/i18n/it/translations.json +1 -0
  52. package/admin/i18n/nl/translations.json +1 -0
  53. package/admin/i18n/pl/translations.json +1 -0
  54. package/admin/i18n/pt/translations.json +1 -0
  55. package/admin/i18n/ru/translations.json +1 -0
  56. package/admin/i18n/uk/translations.json +1 -0
  57. package/admin/i18n/zh-cn/translations.json +1 -0
  58. package/admin/jsonConfig.json +45 -0
  59. package/admin/public-transport.png +0 -0
  60. package/build/lib/class/dbVendoService.js +113 -0
  61. package/build/lib/class/dbVendoService.js.map +7 -0
  62. package/build/lib/class/departure.js +565 -0
  63. package/build/lib/class/departure.js.map +7 -0
  64. package/build/lib/class/departurePolling.js +89 -0
  65. package/build/lib/class/departurePolling.js.map +7 -0
  66. package/build/lib/class/hafasService.js +141 -0
  67. package/build/lib/class/hafasService.js.map +7 -0
  68. package/build/lib/class/journeyPolling.js +146 -0
  69. package/build/lib/class/journeyPolling.js.map +7 -0
  70. package/build/lib/class/journeys.js +862 -0
  71. package/build/lib/class/journeys.js.map +7 -0
  72. package/build/lib/class/pollingManager.js +164 -0
  73. package/build/lib/class/pollingManager.js.map +7 -0
  74. package/build/lib/class/station.js +126 -0
  75. package/build/lib/class/station.js.map +7 -0
  76. package/build/lib/const/definition.js +1064 -0
  77. package/build/lib/const/definition.js.map +7 -0
  78. package/build/lib/tools/library.js +852 -0
  79. package/build/lib/tools/library.js.map +7 -0
  80. package/build/lib/tools/mapper.js +251 -0
  81. package/build/lib/tools/mapper.js.map +7 -0
  82. package/build/lib/types/transportService.js +17 -0
  83. package/build/lib/types/transportService.js.map +7 -0
  84. package/build/lib/types/types.js +39 -0
  85. package/build/lib/types/types.js.map +7 -0
  86. package/build/main.js +250 -0
  87. package/build/main.js.map +7 -0
  88. package/io-package.json +122 -0
  89. package/package.json +80 -0
  90. package/widgets/public-transport/css/style-deptt.css +274 -0
  91. package/widgets/public-transport/img/deptt.svg +65 -0
  92. package/widgets/public-transport/js/deptt.js +292 -0
  93. package/widgets/public-transport.html +23 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 - 2026 tt-tom17 <tgb@kabelmail.de>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,208 @@
1
+ ![Logo](admin/public-transport.png)
2
+
3
+ # ioBroker.public-transport
4
+
5
+ [![NPM version](https://img.shields.io/npm/v/iobroker.public-transport.svg)](https://www.npmjs.com/package/iobroker.public-transport)
6
+ [![Downloads](https://img.shields.io/npm/dm/iobroker.public-transport.svg)](https://www.npmjs.com/package/iobroker.public-transport)
7
+ ![Number of Installations](https://iobroker.live/badges/public-transport-installed.svg)
8
+ ![Current version in stable repository](https://iobroker.live/badges/public-transport-stable.svg)
9
+
10
+ [![NPM](https://nodei.co/npm/iobroker.public-transport.png?downloads=true)](https://nodei.co/npm/iobroker.public-transport/)
11
+
12
+ **Tests:** ![Test and Release](https://github.com/tt-tom17/ioBroker.public-transport/workflows/Test%20and%20Release/badge.svg)
13
+
14
+ ## Public Transport Adapter for ioBroker
15
+
16
+ The public-transport adapter enables seamless integration of real-time public transportation schedule information into your ioBroker smart home environment. With this adapter, you can retrieve departure times from stops of various transport operators in Germany, Austria, and other countries and use them for automation.
17
+
18
+ [🇩🇪 Deutsche Dokumentation](doc/README.de.md)
19
+
20
+ ## Table of Contents
21
+
22
+ - [Key Features](#key-features)
23
+ - [Installation](#installation)
24
+ - [Supported Transport Networks](#supported-transport-networks)
25
+ - [Configuration](#configuration)
26
+ - [Data Structure](#data-structure)
27
+ - [Usage Examples](#usage-examples)
28
+ - [Changelog](#changelog)
29
+ - [License](#license)
30
+
31
+ ## Key Features
32
+
33
+ - **Multiple Transport Services**: Full support for HAFAS and DB Vendo APIs
34
+ - **Flexible Station Configuration**: Configure any number of stops simultaneously
35
+ - **Real-time Data**: Retrieve live departure times with delay information
36
+ - **Automatic Updates**: Regular polling of departure times at freely configurable intervals
37
+ - **Comprehensive Filter Options**: Filter by transport modes (bus, train, tram, subway, ferry, etc.)
38
+ - **Flexible Time Offset**: Show departures from a specific point in the future
39
+ - **Customizable Query Count**: Determine how many departures per station should be displayed
40
+ - **Custom Names**: Assign individual names to your stations
41
+ - **Time Period Filtering**: Define a time period in which departures should be shown
42
+
43
+ ## Installation
44
+
45
+ ### Prerequisites
46
+
47
+ - ioBroker installation (Node.js 20.x or higher required)
48
+ - Internet access for retrieving schedule data
49
+
50
+ ### Installation via ioBroker Admin
51
+
52
+ 1. Open the ioBroker Admin interface
53
+ 2. Navigate to "Adapters"
54
+ 3. Search for "public-transport"
55
+ 4. Click "Install"
56
+
57
+ ## Supported Transport Networks
58
+
59
+ ### HAFAS Profiles
60
+
61
+ The adapter uses the HAFAS (HaCon Timetable Information System) API and supports numerous transport networks and operators:
62
+
63
+ #### Germany
64
+ - **VBB** - Verkehrsverbund Berlin-Brandenburg
65
+
66
+
67
+ #### Austria
68
+ - **ÖBB** - Österreichische Bundesbahnen (nationwide)
69
+
70
+ - And more international profiles
71
+
72
+ ### DB Vendo
73
+
74
+ Additional support for transport operators using the DB Vendo API. This API is used by various regional transport companies.
75
+
76
+ ## Configuration
77
+
78
+ ### General Settings
79
+
80
+ 1. **Select Service Type**
81
+ - Choose between `HAFAS` and `Vendo` based on your transport operator
82
+
83
+ 2. **Select Profile** (HAFAS only)
84
+ - Choose the appropriate transport network profile from the dropdown list
85
+ - Example: "db" for Deutsche Bahn, "vbb" for Berlin-Brandenburg
86
+
87
+ 3. **Query Interval**
88
+ - Define how often data should be updated (in minutes)
89
+ - Recommended: 2-5 minutes for real-time data
90
+ - Minimum: 1 minute
91
+
92
+ ### Adding a Station
93
+
94
+ The following parameters can be configured for each stop:
95
+
96
+ #### Configuration Parameters
97
+
98
+ - **Station ID** (required)
99
+ - The unique ID of the station
100
+
101
+ - **Custom Name** (optional)
102
+ - An individual name for the station in ioBroker
103
+ - Used as object name
104
+ - Example: "Bus_Stop_Work" instead of the official designation
105
+
106
+ - **Number of Departures**
107
+ - How many departures should be retrieved?
108
+ - Default: 5
109
+ - Range: 1-20
110
+
111
+ - **Time Offset (minutes)**
112
+ - Show departures from this point in the future
113
+ - Default: 0 (immediately)
114
+ - Example: 5 = only show departures in 5+ minutes
115
+ - Useful to hide departures you can no longer catch
116
+
117
+ - **Time Period (minutes)**
118
+ - Maximum time period for displayed departures
119
+ - Default: 60
120
+ - Example: 30 = only departures within the next 30 minutes
121
+
122
+ - **Transport Mode Filter**
123
+ - Select which transport modes should be displayed:
124
+ - Bus
125
+ - S-Bahn (Suburban)
126
+ - U-Bahn (Subway)
127
+ - Tram (Streetcar)
128
+ - Regional Train
129
+ - National Train
130
+ - Ferry
131
+ - Express
132
+ - Taxi
133
+ - Multiple selection possible
134
+
135
+ ## Data Structure
136
+
137
+ The adapter creates an object tree in ioBroker for each configured station:
138
+
139
+ ```
140
+ public-transport.0
141
+ ├── <Station-Name or ID>
142
+ │ ├── 0
143
+ │ │ ├── delay // Delay in minutes
144
+ │ │ ├── departure // Scheduled departure time
145
+ │ │ ├── departureTime // Actual departure time (with delay)
146
+ │ │ ├── direction // Direction/final destination
147
+ │ │ ├── line // Line designation
148
+ │ │ ├── platform // Platform/track
149
+ │ │ ├── type // Transport mode type
150
+ │ │ └── cancelled // Cancellation (true/false)
151
+ │ ├── 1
152
+ │ │ └── ...
153
+ │ ├── ...
154
+ │ └── json // JSON string of all departures
155
+ ```
156
+
157
+ ### Data Types and Example Values
158
+
159
+ | State | Type | Example | Description |
160
+ |-------|------|---------|-------------|
161
+ | delay | number | `3` | Delay in minutes (0 = on time) |
162
+ | departure | string | `2026-02-16T14:30:00.000Z` | Scheduled departure time (ISO 8601) |
163
+ | departureTime | string | `2026-02-16T14:33:00.000Z` | Actual departure time incl. delay |
164
+ | direction | string | `S Potsdam Hauptbahnhof` | Final destination |
165
+ | line | string | `S7` | Line designation |
166
+ | platform | string | `3` | Track/platform/bus bay |
167
+ | type | string | `suburban` | Transport mode type |
168
+ | cancelled | boolean | `false` | Trip cancellation |
169
+
170
+ ## Usage Examples
171
+
172
+ ### 1. Vis Display
173
+
174
+ For Vis1, there is a widget available for displaying departures. The JSON data is used for the display.
175
+
176
+ ## Changelog
177
+ <!--
178
+ Placeholder for the next version (at the beginning of the line):
179
+ ### **WORK IN PROGRESS**
180
+ -->
181
+ ### 0.0.4 (2026-02-16)
182
+ * (tt-tom17) optimization react pages
183
+
184
+ ### 0.0.1-preAlpha.0 (2025-12-01)
185
+ * (tt-tom17) initial release
186
+
187
+ ## License
188
+ MIT License
189
+
190
+ Copyright (c) 2025 - 2026 tt-tom17 <tgb@kabelmail.de>
191
+
192
+ Permission is hereby granted, free of charge, to any person obtaining a copy
193
+ of this software and associated documentation files (the "Software"), to deal
194
+ in the Software without restriction, including without limitation the rights
195
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
196
+ copies of the Software, and to permit persons to whom the Software is
197
+ furnished to do so, subject to the following conditions:
198
+
199
+ The above copyright notice and this permission notice shall be included in all
200
+ copies or substantial portions of the Software.
201
+
202
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
203
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
204
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
205
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
206
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
207
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
208
+ SOFTWARE.
@@ -0,0 +1,338 @@
1
+ {
2
+ "_AdminComponentEasyAccessSet__loadShare___mf_0_iobroker_mf_1_adapter_mf_2_react_mf_2_v5__loadShare__-CmYJ37BE.js": {
3
+ "file": "assets/AdminComponentEasyAccessSet__loadShare___mf_0_iobroker_mf_1_adapter_mf_2_react_mf_2_v5__loadShare__-CmYJ37BE.js",
4
+ "name": "AdminComponentEasyAccessSet__loadShare___mf_0_iobroker_mf_1_adapter_mf_2_react_mf_2_v5__loadShare__",
5
+ "imports": [
6
+ "__commonjsHelpers-CE1G-McA.js",
7
+ "_AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js"
8
+ ]
9
+ },
10
+ "_AdminComponentEasyAccessSet__loadShare___mf_0_mui_mf_1_icons_mf_2_material__loadShare__-CljkirG-.js": {
11
+ "file": "assets/AdminComponentEasyAccessSet__loadShare___mf_0_mui_mf_1_icons_mf_2_material__loadShare__-CljkirG-.js",
12
+ "name": "AdminComponentEasyAccessSet__loadShare___mf_0_mui_mf_1_icons_mf_2_material__loadShare__",
13
+ "imports": [
14
+ "__commonjsHelpers-CE1G-McA.js",
15
+ "_AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js"
16
+ ]
17
+ },
18
+ "_AdminComponentEasyAccessSet__loadShare___mf_0_mui_mf_1_material__loadShare__-EKOPJIKX.js": {
19
+ "file": "assets/AdminComponentEasyAccessSet__loadShare___mf_0_mui_mf_1_material__loadShare__-EKOPJIKX.js",
20
+ "name": "AdminComponentEasyAccessSet__loadShare___mf_0_mui_mf_1_material__loadShare__",
21
+ "imports": [
22
+ "_AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js"
23
+ ]
24
+ },
25
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js": {
26
+ "file": "assets/AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js",
27
+ "name": "AdminComponentEasyAccessSet__loadShare__react__loadShare__",
28
+ "imports": [
29
+ "__commonjsHelpers-CE1G-McA.js",
30
+ "_AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js"
31
+ ]
32
+ },
33
+ "_AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js": {
34
+ "file": "assets/AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js",
35
+ "name": "AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__"
36
+ },
37
+ "_DefaultPropsProvider-CLe-DXgN.js": {
38
+ "file": "assets/DefaultPropsProvider-CLe-DXgN.js",
39
+ "name": "DefaultPropsProvider",
40
+ "imports": [
41
+ "_createTheme-7CZNbMr1.js",
42
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js"
43
+ ]
44
+ },
45
+ "_TextField-Omef9SlF.js": {
46
+ "file": "assets/TextField-Omef9SlF.js",
47
+ "name": "TextField",
48
+ "imports": [
49
+ "_defaultTheme-BJjGWN-J.js",
50
+ "_createTheme-7CZNbMr1.js",
51
+ "_useTheme-B92oTuSc.js",
52
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js",
53
+ "_createSvgIcon-BA2rfUM-.js",
54
+ "_DefaultPropsProvider-CLe-DXgN.js",
55
+ "_index-CJpYCuOo.js",
56
+ "_useTheme-lyF5r2xq.js"
57
+ ]
58
+ },
59
+ "_ThemeProvider-DA2qDu9j.js": {
60
+ "file": "assets/ThemeProvider-DA2qDu9j.js",
61
+ "name": "ThemeProvider",
62
+ "imports": [
63
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js",
64
+ "_createTheme-7CZNbMr1.js",
65
+ "_DefaultPropsProvider-CLe-DXgN.js",
66
+ "_index-CJpYCuOo.js",
67
+ "_useTheme-B92oTuSc.js"
68
+ ]
69
+ },
70
+ "_Tram-DfEnfuV-.js": {
71
+ "file": "assets/Tram-DfEnfuV-.js",
72
+ "name": "Tram",
73
+ "imports": [
74
+ "_DefaultPropsProvider-CLe-DXgN.js",
75
+ "_createSvgIcon-BA2rfUM-.js"
76
+ ]
77
+ },
78
+ "__commonjsHelpers-CE1G-McA.js": {
79
+ "file": "assets/_commonjsHelpers-CE1G-McA.js",
80
+ "name": "_commonjsHelpers"
81
+ },
82
+ "_createSvgIcon-BA2rfUM-.js": {
83
+ "file": "assets/createSvgIcon-BA2rfUM-.js",
84
+ "name": "createSvgIcon",
85
+ "imports": [
86
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js",
87
+ "_DefaultPropsProvider-CLe-DXgN.js",
88
+ "_defaultTheme-BJjGWN-J.js",
89
+ "_createTheme-7CZNbMr1.js"
90
+ ]
91
+ },
92
+ "_createTheme-7CZNbMr1.js": {
93
+ "file": "assets/createTheme-7CZNbMr1.js",
94
+ "name": "createTheme",
95
+ "imports": [
96
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js"
97
+ ]
98
+ },
99
+ "_defaultTheme-BJjGWN-J.js": {
100
+ "file": "assets/defaultTheme-BJjGWN-J.js",
101
+ "name": "defaultTheme",
102
+ "imports": [
103
+ "_createTheme-7CZNbMr1.js"
104
+ ]
105
+ },
106
+ "_index-4wMOc304.js": {
107
+ "file": "assets/index-4wMOc304.js",
108
+ "name": "index",
109
+ "isDynamicEntry": true,
110
+ "imports": [
111
+ "__commonjsHelpers-CE1G-McA.js"
112
+ ]
113
+ },
114
+ "_index-Bu92Wd0L.js": {
115
+ "file": "assets/index-Bu92Wd0L.js",
116
+ "name": "index",
117
+ "isDynamicEntry": true,
118
+ "imports": [
119
+ "__commonjsHelpers-CE1G-McA.js",
120
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js"
121
+ ]
122
+ },
123
+ "_index-C0won9I_.js": {
124
+ "file": "assets/index-C0won9I_.js",
125
+ "name": "index",
126
+ "imports": [
127
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js",
128
+ "_useTheme-lyF5r2xq.js",
129
+ "__commonjsHelpers-CE1G-McA.js"
130
+ ]
131
+ },
132
+ "_index-CJpYCuOo.js": {
133
+ "file": "assets/index-CJpYCuOo.js",
134
+ "name": "index",
135
+ "imports": [
136
+ "__commonjsHelpers-CE1G-McA.js",
137
+ "_AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js",
138
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js",
139
+ "_DefaultPropsProvider-CLe-DXgN.js",
140
+ "_useTheme-B92oTuSc.js",
141
+ "_createTheme-7CZNbMr1.js"
142
+ ]
143
+ },
144
+ "_index-CL2iD7Tl.js": {
145
+ "file": "assets/index-CL2iD7Tl.js",
146
+ "name": "index",
147
+ "isDynamicEntry": true,
148
+ "imports": [
149
+ "_useTheme-lyF5r2xq.js",
150
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js"
151
+ ]
152
+ },
153
+ "_preload-helper-BDBacUwf.js": {
154
+ "file": "assets/preload-helper-BDBacUwf.js",
155
+ "name": "preload-helper"
156
+ },
157
+ "_useTheme-B92oTuSc.js": {
158
+ "file": "assets/useTheme-B92oTuSc.js",
159
+ "name": "useTheme",
160
+ "imports": [
161
+ "_createTheme-7CZNbMr1.js",
162
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js"
163
+ ]
164
+ },
165
+ "_useTheme-lyF5r2xq.js": {
166
+ "file": "assets/useTheme-lyF5r2xq.js",
167
+ "name": "useTheme",
168
+ "imports": [
169
+ "__commonjsHelpers-CE1G-McA.js",
170
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js",
171
+ "_defaultTheme-BJjGWN-J.js",
172
+ "_createTheme-7CZNbMr1.js",
173
+ "_useTheme-B92oTuSc.js"
174
+ ]
175
+ },
176
+ "index.html": {
177
+ "file": "assets/index-Dr3QlUn7.js",
178
+ "name": "index",
179
+ "src": "index.html",
180
+ "isEntry": true,
181
+ "imports": [
182
+ "_AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js",
183
+ "_DefaultPropsProvider-CLe-DXgN.js",
184
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js",
185
+ "_index-CJpYCuOo.js",
186
+ "_AdminComponentEasyAccessSet__loadShare___mf_0_mui_mf_1_material__loadShare__-EKOPJIKX.js",
187
+ "_AdminComponentEasyAccessSet__loadShare___mf_0_iobroker_mf_1_adapter_mf_2_react_mf_2_v5__loadShare__-CmYJ37BE.js",
188
+ "_ThemeProvider-DA2qDu9j.js",
189
+ "_createTheme-7CZNbMr1.js",
190
+ "__commonjsHelpers-CE1G-McA.js",
191
+ "_useTheme-B92oTuSc.js"
192
+ ]
193
+ },
194
+ "node_modules/@iobroker/adapter-react-v5/build/index.js": {
195
+ "file": "assets/index-CNPhn7qj.js",
196
+ "name": "index",
197
+ "src": "node_modules/@iobroker/adapter-react-v5/build/index.js",
198
+ "isDynamicEntry": true,
199
+ "imports": [
200
+ "_createTheme-7CZNbMr1.js",
201
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js",
202
+ "_AdminComponentEasyAccessSet__loadShare___mf_0_mui_mf_1_material__loadShare__-EKOPJIKX.js",
203
+ "_AdminComponentEasyAccessSet__loadShare___mf_0_mui_mf_1_icons_mf_2_material__loadShare__-CljkirG-.js",
204
+ "_index-C0won9I_.js",
205
+ "__commonjsHelpers-CE1G-McA.js",
206
+ "_useTheme-lyF5r2xq.js",
207
+ "_AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js",
208
+ "_defaultTheme-BJjGWN-J.js",
209
+ "_useTheme-B92oTuSc.js"
210
+ ]
211
+ },
212
+ "node_modules/@iobroker/json-config/build/index.js": {
213
+ "file": "assets/index-CZC4fTbC.js",
214
+ "name": "index",
215
+ "src": "node_modules/@iobroker/json-config/build/index.js",
216
+ "isDynamicEntry": true,
217
+ "imports": [
218
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js",
219
+ "__commonjsHelpers-CE1G-McA.js",
220
+ "_AdminComponentEasyAccessSet__loadShare___mf_0_mui_mf_1_material__loadShare__-EKOPJIKX.js",
221
+ "_AdminComponentEasyAccessSet__loadShare___mf_0_mui_mf_1_icons_mf_2_material__loadShare__-CljkirG-.js",
222
+ "_AdminComponentEasyAccessSet__loadShare___mf_0_iobroker_mf_1_adapter_mf_2_react_mf_2_v5__loadShare__-CmYJ37BE.js",
223
+ "_index-CJpYCuOo.js",
224
+ "_TextField-Omef9SlF.js",
225
+ "_createTheme-7CZNbMr1.js",
226
+ "_index-C0won9I_.js",
227
+ "_AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js",
228
+ "_DefaultPropsProvider-CLe-DXgN.js",
229
+ "_useTheme-lyF5r2xq.js",
230
+ "_createSvgIcon-BA2rfUM-.js",
231
+ "_preload-helper-BDBacUwf.js",
232
+ "_useTheme-B92oTuSc.js",
233
+ "_defaultTheme-BJjGWN-J.js"
234
+ ],
235
+ "dynamicImports": [
236
+ "_index-CL2iD7Tl.js"
237
+ ]
238
+ },
239
+ "node_modules/@mui/icons-material/esm/index.js": {
240
+ "file": "assets/index-M6fKBo01.js",
241
+ "name": "index",
242
+ "src": "node_modules/@mui/icons-material/esm/index.js",
243
+ "isDynamicEntry": true,
244
+ "imports": [
245
+ "_DefaultPropsProvider-CLe-DXgN.js",
246
+ "_createSvgIcon-BA2rfUM-.js",
247
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js",
248
+ "_Tram-DfEnfuV-.js",
249
+ "_createTheme-7CZNbMr1.js",
250
+ "_defaultTheme-BJjGWN-J.js",
251
+ "__commonjsHelpers-CE1G-McA.js",
252
+ "_AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js"
253
+ ]
254
+ },
255
+ "node_modules/@mui/material/index.js": {
256
+ "file": "assets/index-omnYtLS_.js",
257
+ "name": "index",
258
+ "src": "node_modules/@mui/material/index.js",
259
+ "isDynamicEntry": true,
260
+ "imports": [
261
+ "_createTheme-7CZNbMr1.js",
262
+ "_createSvgIcon-BA2rfUM-.js",
263
+ "_TextField-Omef9SlF.js",
264
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js",
265
+ "_DefaultPropsProvider-CLe-DXgN.js",
266
+ "_useTheme-lyF5r2xq.js",
267
+ "_index-CJpYCuOo.js",
268
+ "_useTheme-B92oTuSc.js",
269
+ "_ThemeProvider-DA2qDu9j.js",
270
+ "_defaultTheme-BJjGWN-J.js",
271
+ "__commonjsHelpers-CE1G-McA.js",
272
+ "_AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js"
273
+ ]
274
+ },
275
+ "node_modules/__mf__virtual/AdminComponentEasyAccessSet__H_A_I__hostAutoInit__H_A_I__.js": {
276
+ "file": "assets/hostInit-BJ6gSofk.js",
277
+ "name": "hostInit",
278
+ "src": "node_modules/__mf__virtual/AdminComponentEasyAccessSet__H_A_I__hostAutoInit__H_A_I__.js",
279
+ "isEntry": true,
280
+ "imports": [
281
+ "_preload-helper-BDBacUwf.js"
282
+ ],
283
+ "dynamicImports": [
284
+ "virtual:mf-REMOTE_ENTRY_ID"
285
+ ]
286
+ },
287
+ "src/Components.tsx": {
288
+ "file": "assets/Components-tMeBV1ru.js",
289
+ "name": "Components",
290
+ "src": "src/Components.tsx",
291
+ "isDynamicEntry": true,
292
+ "imports": [
293
+ "_DefaultPropsProvider-CLe-DXgN.js",
294
+ "_AdminComponentEasyAccessSet__loadShare___mf_0_iobroker_mf_1_adapter_mf_2_react_mf_2_v5__loadShare__-CmYJ37BE.js",
295
+ "_AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js",
296
+ "_AdminComponentEasyAccessSet__loadShare___mf_0_mui_mf_1_material__loadShare__-EKOPJIKX.js",
297
+ "_Tram-DfEnfuV-.js",
298
+ "_AdminComponentEasyAccessSet__loadShare___mf_0_mui_mf_1_icons_mf_2_material__loadShare__-CljkirG-.js",
299
+ "_AdminComponentEasyAccessSet__loadShare__react__loadShare__-CJmceRyn.js",
300
+ "_createTheme-7CZNbMr1.js",
301
+ "__commonjsHelpers-CE1G-McA.js",
302
+ "_createSvgIcon-BA2rfUM-.js",
303
+ "_defaultTheme-BJjGWN-J.js"
304
+ ]
305
+ },
306
+ "virtual:mf-REMOTE_ENTRY_ID": {
307
+ "file": "customComponents.js",
308
+ "name": "customComponents",
309
+ "src": "virtual:mf-REMOTE_ENTRY_ID",
310
+ "isEntry": true,
311
+ "isDynamicEntry": true,
312
+ "imports": [
313
+ "_AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js",
314
+ "virtual:mf-exposes",
315
+ "_preload-helper-BDBacUwf.js"
316
+ ],
317
+ "dynamicImports": [
318
+ "node_modules/@iobroker/adapter-react-v5/build/index.js",
319
+ "node_modules/@iobroker/json-config/build/index.js",
320
+ "node_modules/@mui/icons-material/esm/index.js",
321
+ "node_modules/@mui/material/index.js",
322
+ "_index-4wMOc304.js",
323
+ "_index-Bu92Wd0L.js"
324
+ ]
325
+ },
326
+ "virtual:mf-exposes": {
327
+ "file": "assets/virtualExposes-BnCRJHyr.js",
328
+ "name": "virtualExposes",
329
+ "src": "virtual:mf-exposes",
330
+ "isEntry": true,
331
+ "imports": [
332
+ "_preload-helper-BDBacUwf.js"
333
+ ],
334
+ "dynamicImports": [
335
+ "src/Components.tsx"
336
+ ]
337
+ }
338
+ }
@@ -0,0 +1 @@
1
+ import{g as s}from"./_commonjsHelpers-CE1G-McA.js";import{A as i,a as c}from"./AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js";function f(e,a){for(var _=0;_<a.length;_++){const t=a[_];if(typeof t!="string"&&!Array.isArray(t)){for(const r in t)if(r!=="default"&&!(r in e)){const o=Object.getOwnPropertyDescriptor(t,r);o&&Object.defineProperty(e,r,o.get?o:{enumerable:!0,get:()=>t[r]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}const{loadShare:m}=c,{initPromise:d}=i,l=d.then(e=>m("@iobroker/adapter-react-v5",{customShareInfo:{shareConfig:{singleton:!0,strictVersion:!1,requiredVersion:"*"}}})),p=await l.then(e=>e());var n=p;const u=s(n),S=f({__proto__:null,default:u},[n]);export{n as A,S as a};
@@ -0,0 +1 @@
1
+ import{g as s}from"./_commonjsHelpers-CE1G-McA.js";import{A as i,a as m}from"./AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js";function c(e,a){for(var r=0;r<a.length;r++){const t=a[r];if(typeof t!="string"&&!Array.isArray(t)){for(const o in t)if(o!=="default"&&!(o in e)){const _=Object.getOwnPropertyDescriptor(t,o);_&&Object.defineProperty(e,o,_.get?_:{enumerable:!0,get:()=>t[o]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}const{loadShare:f}=m,{initPromise:l}=i,u=l.then(e=>f("@mui/icons-material",{customShareInfo:{shareConfig:{singleton:!0,strictVersion:!1,requiredVersion:"*"}}})),d=await u.then(e=>e());var n=d;const p=s(n),h=c({__proto__:null,default:p},[n]);export{n as A,h as I};
@@ -0,0 +1 @@
1
+ import{A as _,a as t}from"./AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js";const{loadShare:o}=t,{initPromise:s}=_,a=s.then(e=>o("@mui/material",{customShareInfo:{shareConfig:{singleton:!0,strictVersion:!1,requiredVersion:"*"}}})),n=await a.then(e=>e());var i=n;export{i as A};
@@ -0,0 +1 @@
1
+ import{g as c}from"./_commonjsHelpers-CE1G-McA.js";import{A as i,a as _}from"./AdminComponentEasyAccessSet__mf_v__runtimeInit__mf_v__-9o5tLcPN.js";function f(e,a){for(var o=0;o<a.length;o++){const t=a[o];if(typeof t!="string"&&!Array.isArray(t)){for(const r in t)if(r!=="default"&&!(r in e)){const n=Object.getOwnPropertyDescriptor(t,r);n&&Object.defineProperty(e,r,n.get?n:{enumerable:!0,get:()=>t[r]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}const{loadShare:m}=_,{initPromise:l}=i,u=l.then(e=>m("react",{customShareInfo:{shareConfig:{singleton:!0,strictVersion:!1,requiredVersion:"*"}}})),d=await u.then(e=>e());var s=d;const p=c(s),h=f({__proto__:null,default:p},[s]);export{s as A,p as R,h as a};