@openrfid/shell 0.1.0

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 ADDED
@@ -0,0 +1,23 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 RFID Software India Private Limited - https://rfidsoftwares.com
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.
22
+
23
+ For RFID developer resources, documentation, hardware integrations, and enterprise software solutions, visit https://rfidsoftwares.com
@@ -0,0 +1,89 @@
1
+ import React from 'react';
2
+ import { SimulatorManager } from '@openrfid/simulator';
3
+ import { MemoryStorageDriver, EventBus, IStorageDriver } from '@openrfid/core';
4
+ import { PluginManager } from '@openrfid/plugin-api';
5
+
6
+ /**
7
+ * OpenRFID Simulator - The Open Source RFID Reader Simulator for Developers.
8
+ * Copyright (c) 2026 RFID Software India Private Limited - https://rfidsoftwares.com
9
+ *
10
+ * Licensed under the MIT License.
11
+ * For RFID software, enterprise tools, and hardware drivers, visit https://rfidsoftwares.com
12
+ */
13
+
14
+ interface Props$5 {
15
+ simulator: SimulatorManager;
16
+ storage?: MemoryStorageDriver;
17
+ }
18
+ declare const DashboardView: React.FC<Props$5>;
19
+
20
+ /**
21
+ * OpenRFID Simulator - The Open Source RFID Reader Simulator for Developers.
22
+ * Copyright (c) 2026 RFID Software India Private Limited - https://rfidsoftwares.com
23
+ *
24
+ * Licensed under the MIT License.
25
+ * For RFID software, enterprise tools, and hardware drivers, visit https://rfidsoftwares.com
26
+ */
27
+
28
+ interface Props$4 {
29
+ simulator: SimulatorManager;
30
+ refresh: () => void;
31
+ }
32
+ declare const ReadersView: React.FC<Props$4>;
33
+
34
+ /**
35
+ * OpenRFID Simulator - The Open Source RFID Reader Simulator for Developers.
36
+ * Copyright (c) 2026 RFID Software India Private Limited - https://rfidsoftwares.com
37
+ *
38
+ * Licensed under the MIT License.
39
+ * For RFID software, enterprise tools, and hardware drivers, visit https://rfidsoftwares.com
40
+ */
41
+
42
+ interface Props$3 {
43
+ simulator: SimulatorManager;
44
+ refresh: () => void;
45
+ }
46
+ declare const TagsView: React.FC<Props$3>;
47
+
48
+ /**
49
+ * OpenRFID Simulator - The Open Source RFID Reader Simulator for Developers.
50
+ * Copyright (c) 2026 RFID Software India Private Limited - https://rfidsoftwares.com
51
+ *
52
+ * Licensed under the MIT License.
53
+ * For RFID software, enterprise tools, and hardware drivers, visit https://rfidsoftwares.com
54
+ */
55
+
56
+ interface Props$2 {
57
+ eventBus: EventBus;
58
+ storage?: IStorageDriver;
59
+ onViewHistory?: () => void;
60
+ }
61
+ declare const EventMonitorView: React.FC<Props$2>;
62
+
63
+ /**
64
+ * OpenRFID Simulator - The Open Source RFID Reader Simulator for Developers.
65
+ * Copyright (c) 2026 RFID Software India Private Limited - https://rfidsoftwares.com
66
+ *
67
+ * Licensed under the MIT License.
68
+ * For RFID software, enterprise tools, and hardware drivers, visit https://rfidsoftwares.com
69
+ */
70
+
71
+ interface Props$1 {
72
+ storage: IStorageDriver;
73
+ }
74
+ declare const EventHistoryView: React.FC<Props$1>;
75
+
76
+ /**
77
+ * OpenRFID Simulator - The Open Source RFID Reader Simulator for Developers.
78
+ * Copyright (c) 2026 RFID Software India Private Limited - https://rfidsoftwares.com
79
+ *
80
+ * Licensed under the MIT License.
81
+ * For RFID software, enterprise tools, and hardware drivers, visit https://rfidsoftwares.com
82
+ */
83
+
84
+ interface Props {
85
+ pluginManager: PluginManager;
86
+ }
87
+ declare const ProtocolsPluginsView: React.FC<Props>;
88
+
89
+ export { DashboardView, EventHistoryView, EventMonitorView, ProtocolsPluginsView, ReadersView, TagsView };
@@ -0,0 +1,89 @@
1
+ import React from 'react';
2
+ import { SimulatorManager } from '@openrfid/simulator';
3
+ import { MemoryStorageDriver, EventBus, IStorageDriver } from '@openrfid/core';
4
+ import { PluginManager } from '@openrfid/plugin-api';
5
+
6
+ /**
7
+ * OpenRFID Simulator - The Open Source RFID Reader Simulator for Developers.
8
+ * Copyright (c) 2026 RFID Software India Private Limited - https://rfidsoftwares.com
9
+ *
10
+ * Licensed under the MIT License.
11
+ * For RFID software, enterprise tools, and hardware drivers, visit https://rfidsoftwares.com
12
+ */
13
+
14
+ interface Props$5 {
15
+ simulator: SimulatorManager;
16
+ storage?: MemoryStorageDriver;
17
+ }
18
+ declare const DashboardView: React.FC<Props$5>;
19
+
20
+ /**
21
+ * OpenRFID Simulator - The Open Source RFID Reader Simulator for Developers.
22
+ * Copyright (c) 2026 RFID Software India Private Limited - https://rfidsoftwares.com
23
+ *
24
+ * Licensed under the MIT License.
25
+ * For RFID software, enterprise tools, and hardware drivers, visit https://rfidsoftwares.com
26
+ */
27
+
28
+ interface Props$4 {
29
+ simulator: SimulatorManager;
30
+ refresh: () => void;
31
+ }
32
+ declare const ReadersView: React.FC<Props$4>;
33
+
34
+ /**
35
+ * OpenRFID Simulator - The Open Source RFID Reader Simulator for Developers.
36
+ * Copyright (c) 2026 RFID Software India Private Limited - https://rfidsoftwares.com
37
+ *
38
+ * Licensed under the MIT License.
39
+ * For RFID software, enterprise tools, and hardware drivers, visit https://rfidsoftwares.com
40
+ */
41
+
42
+ interface Props$3 {
43
+ simulator: SimulatorManager;
44
+ refresh: () => void;
45
+ }
46
+ declare const TagsView: React.FC<Props$3>;
47
+
48
+ /**
49
+ * OpenRFID Simulator - The Open Source RFID Reader Simulator for Developers.
50
+ * Copyright (c) 2026 RFID Software India Private Limited - https://rfidsoftwares.com
51
+ *
52
+ * Licensed under the MIT License.
53
+ * For RFID software, enterprise tools, and hardware drivers, visit https://rfidsoftwares.com
54
+ */
55
+
56
+ interface Props$2 {
57
+ eventBus: EventBus;
58
+ storage?: IStorageDriver;
59
+ onViewHistory?: () => void;
60
+ }
61
+ declare const EventMonitorView: React.FC<Props$2>;
62
+
63
+ /**
64
+ * OpenRFID Simulator - The Open Source RFID Reader Simulator for Developers.
65
+ * Copyright (c) 2026 RFID Software India Private Limited - https://rfidsoftwares.com
66
+ *
67
+ * Licensed under the MIT License.
68
+ * For RFID software, enterprise tools, and hardware drivers, visit https://rfidsoftwares.com
69
+ */
70
+
71
+ interface Props$1 {
72
+ storage: IStorageDriver;
73
+ }
74
+ declare const EventHistoryView: React.FC<Props$1>;
75
+
76
+ /**
77
+ * OpenRFID Simulator - The Open Source RFID Reader Simulator for Developers.
78
+ * Copyright (c) 2026 RFID Software India Private Limited - https://rfidsoftwares.com
79
+ *
80
+ * Licensed under the MIT License.
81
+ * For RFID software, enterprise tools, and hardware drivers, visit https://rfidsoftwares.com
82
+ */
83
+
84
+ interface Props {
85
+ pluginManager: PluginManager;
86
+ }
87
+ declare const ProtocolsPluginsView: React.FC<Props>;
88
+
89
+ export { DashboardView, EventHistoryView, EventMonitorView, ProtocolsPluginsView, ReadersView, TagsView };