matterbridge 1.1.12 → 1.2.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/CHANGELOG.md +7 -3
- package/README.md +4 -4
- package/dist/AirQualityCluster.d.ts.map +1 -1
- package/dist/AirQualityCluster.js +1 -10
- package/dist/AirQualityCluster.js.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/matterbridge.d.ts +89 -13
- package/dist/matterbridge.d.ts.map +1 -1
- package/dist/matterbridge.js +154 -29
- package/dist/matterbridge.js.map +1 -1
- package/dist/matterbridgeAccessoryPlatform.d.ts +3 -2
- package/dist/matterbridgeAccessoryPlatform.d.ts.map +1 -1
- package/dist/matterbridgeAccessoryPlatform.js +3 -2
- package/dist/matterbridgeAccessoryPlatform.js.map +1 -1
- package/dist/matterbridgeDevice.d.ts +60 -0
- package/dist/matterbridgeDevice.d.ts.map +1 -1
- package/dist/matterbridgeDevice.js +60 -0
- package/dist/matterbridgeDevice.js.map +1 -1
- package/dist/matterbridgeDynamicPlatform.d.ts +3 -2
- package/dist/matterbridgeDynamicPlatform.d.ts.map +1 -1
- package/dist/matterbridgeDynamicPlatform.js +3 -2
- package/dist/matterbridgeDynamicPlatform.js.map +1 -1
- package/dist/matterbridgePlatform.d.ts +10 -11
- package/dist/matterbridgePlatform.d.ts.map +1 -1
- package/dist/matterbridgePlatform.js +10 -58
- package/dist/matterbridgePlatform.js.map +1 -1
- package/frontend/build/asset-manifest.json +6 -6
- package/frontend/build/index.html +1 -1
- package/frontend/build/static/css/{main.70102d98.css → main.b996bc4e.css} +2 -2
- package/frontend/build/static/css/main.b996bc4e.css.map +1 -0
- package/frontend/build/static/js/{main.5d39b100.js → main.657bca15.js} +3 -3
- package/frontend/build/static/js/main.657bca15.js.map +1 -0
- package/package.json +5 -3
- package/dist/ColorControlServer.d.ts +0 -86
- package/dist/ColorControlServer.d.ts.map +0 -1
- package/dist/ColorControlServer.js +0 -102
- package/dist/ColorControlServer.js.map +0 -1
- package/frontend/build/static/css/main.70102d98.css.map +0 -1
- package/frontend/build/static/js/main.5d39b100.js.map +0 -1
- /package/frontend/build/static/js/{main.5d39b100.js.LICENSE.txt → main.657bca15.js.LICENSE.txt} +0 -0
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Matterbridge",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "Matterbridge plugin manager for Matter",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
|
+
"homepage": "https://github.com/Luligu/matterbridge/blob/main/README.md",
|
|
7
8
|
"type": "module",
|
|
8
9
|
"main": "dist/index.js",
|
|
9
10
|
"types": "dist/index.d.js",
|
|
@@ -18,7 +19,8 @@
|
|
|
18
19
|
"matterbridge",
|
|
19
20
|
"homebridge",
|
|
20
21
|
"matter",
|
|
21
|
-
"matter.js"
|
|
22
|
+
"matter.js",
|
|
23
|
+
"matter-node.js"
|
|
22
24
|
],
|
|
23
25
|
"bin": {
|
|
24
26
|
"matterbridge": "dist/cli.js"
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file contains the ColorControlDefaultClusterHandler.
|
|
3
|
-
*
|
|
4
|
-
* @file ColorControlServer.ts
|
|
5
|
-
* @author Luca Liguori
|
|
6
|
-
* @date 2023-12-29
|
|
7
|
-
* @version 1.0.1
|
|
8
|
-
*
|
|
9
|
-
* Copyright 2023, 2024 Luca Liguori.
|
|
10
|
-
*
|
|
11
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
12
|
-
* you may not use this file except in compliance with the License.
|
|
13
|
-
* You may obtain a copy of the License at
|
|
14
|
-
*
|
|
15
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
16
|
-
*
|
|
17
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
18
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
19
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
20
|
-
* See the License for the specific language governing permissions and
|
|
21
|
-
* limitations under the License. *
|
|
22
|
-
*/
|
|
23
|
-
import { NamedHandler } from '@project-chip/matter-node.js/util';
|
|
24
|
-
import { ColorControl } from '@project-chip/matter-node.js/cluster';
|
|
25
|
-
import { AttributeInitialValues, ClusterServerHandlers } from '@project-chip/matter-node.js/cluster';
|
|
26
|
-
export declare const ColorControlDefaultClusterHandler: () => ClusterServerHandlers<typeof ColorControl.Complete>;
|
|
27
|
-
export declare const createDefaultColorControlClusterServer: (commandHandler: NamedHandler<any>, attributeInitialValues?: AttributeInitialValues<typeof ColorControl.Cluster.attributes>) => import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<import("@project-chip/matter-node.js/util").Merge<{
|
|
28
|
-
readonly remainingTime: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
29
|
-
readonly driftCompensation: import("@project-chip/matter-node.js/cluster").OptionalAttribute<ColorControl.DriftCompensation, any>;
|
|
30
|
-
readonly compensationText: import("@project-chip/matter-node.js/cluster").OptionalAttribute<string, any>;
|
|
31
|
-
readonly colorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorMode, any>;
|
|
32
|
-
readonly options: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/schema").TypeFromBitSchema<{
|
|
33
|
-
executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
|
|
34
|
-
}>, any>;
|
|
35
|
-
readonly numberOfPrimaries: import("@project-chip/matter-node.js/cluster").FixedAttribute<number | null, any>;
|
|
36
|
-
readonly primary1X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
37
|
-
readonly primary1Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
38
|
-
readonly primary1Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
39
|
-
readonly primary2X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
40
|
-
readonly primary2Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
41
|
-
readonly primary2Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
42
|
-
readonly primary3X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
43
|
-
readonly primary3Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
44
|
-
readonly primary3Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
45
|
-
readonly primary4X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
46
|
-
readonly primary4Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
47
|
-
readonly primary4Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
48
|
-
readonly primary5X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
49
|
-
readonly primary5Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
50
|
-
readonly primary5Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
51
|
-
readonly primary6X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
52
|
-
readonly primary6Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
53
|
-
readonly primary6Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
54
|
-
readonly whitePointX: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
55
|
-
readonly whitePointY: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
56
|
-
readonly colorPointRx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
57
|
-
readonly colorPointRy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
58
|
-
readonly colorPointRIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
59
|
-
readonly colorPointGx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
60
|
-
readonly colorPointGy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
61
|
-
readonly colorPointGIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
62
|
-
readonly colorPointBx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
63
|
-
readonly colorPointBy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
64
|
-
readonly colorPointBIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
65
|
-
readonly enhancedColorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.EnhancedColorMode, any>;
|
|
66
|
-
readonly colorCapabilities: import("@project-chip/matter-node.js/cluster").FixedAttribute<import("@project-chip/matter.js/schema").TypeFromBitSchema<{
|
|
67
|
-
hs: import("@project-chip/matter.js/schema").BitFlag;
|
|
68
|
-
ehue: import("@project-chip/matter.js/schema").BitFlag;
|
|
69
|
-
cl: import("@project-chip/matter.js/schema").BitFlag;
|
|
70
|
-
xy: import("@project-chip/matter.js/schema").BitFlag;
|
|
71
|
-
ct: import("@project-chip/matter.js/schema").BitFlag;
|
|
72
|
-
}>, any>;
|
|
73
|
-
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
74
|
-
readonly hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
|
|
75
|
-
readonly enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
|
|
76
|
-
readonly colorLoop: import("@project-chip/matter.js/schema").BitFlag;
|
|
77
|
-
readonly xy: import("@project-chip/matter.js/schema").BitFlag;
|
|
78
|
-
readonly colorTemperature: import("@project-chip/matter.js/schema").BitFlag;
|
|
79
|
-
}>>, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
80
|
-
readonly hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
|
|
81
|
-
readonly enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
|
|
82
|
-
readonly colorLoop: import("@project-chip/matter.js/schema").BitFlag;
|
|
83
|
-
readonly xy: import("@project-chip/matter.js/schema").BitFlag;
|
|
84
|
-
readonly colorTemperature: import("@project-chip/matter.js/schema").BitFlag;
|
|
85
|
-
}>>, {}>;
|
|
86
|
-
//# sourceMappingURL=ColorControlServer.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ColorControlServer.d.ts","sourceRoot":"","sources":["../src/ColorControlServer.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAIH,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjE,OAAO,EAAE,YAAY,EAAuB,MAAM,sCAAsC,CAAC;AAEzF,OAAO,EAAE,sBAAsB,EAAE,qBAAqB,EAAE,MAAM,sCAAsC,CAAC;AAErG,eAAO,MAAM,iCAAiC,EAAE,MAAM,qBAAqB,CAAC,OAAO,YAAY,CAAC,QAAQ,CAmEtG,CAAC;AAEH,eAAO,MAAM,sCAAsC,mBAEjC,aAAa,GAAG,CAAC,2BACR,uBAAuB,OAAO,aAAa,OAAO,CAAC,UAAU,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QActF,CAAC"}
|
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file contains the ColorControlDefaultClusterHandler.
|
|
3
|
-
*
|
|
4
|
-
* @file ColorControlServer.ts
|
|
5
|
-
* @author Luca Liguori
|
|
6
|
-
* @date 2023-12-29
|
|
7
|
-
* @version 1.0.1
|
|
8
|
-
*
|
|
9
|
-
* Copyright 2023, 2024 Luca Liguori.
|
|
10
|
-
*
|
|
11
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
12
|
-
* you may not use this file except in compliance with the License.
|
|
13
|
-
* You may obtain a copy of the License at
|
|
14
|
-
*
|
|
15
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
16
|
-
*
|
|
17
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
18
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
19
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
20
|
-
* See the License for the specific language governing permissions and
|
|
21
|
-
* limitations under the License. *
|
|
22
|
-
*/
|
|
23
|
-
import { NotImplementedError } from '@project-chip/matter.js/common';
|
|
24
|
-
import { WrapCommandHandler } from '@project-chip/matter-node.js/device';
|
|
25
|
-
import { ColorControl, ColorControlCluster } from '@project-chip/matter-node.js/cluster';
|
|
26
|
-
import { ClusterServer } from '@project-chip/matter-node.js/cluster';
|
|
27
|
-
export const ColorControlDefaultClusterHandler = () => ({
|
|
28
|
-
// Hue and Saturation { hueSaturation: true }
|
|
29
|
-
moveToHue: async () => {
|
|
30
|
-
throw new NotImplementedError('Not implemented');
|
|
31
|
-
},
|
|
32
|
-
moveHue: async () => {
|
|
33
|
-
throw new NotImplementedError('Not implemented');
|
|
34
|
-
},
|
|
35
|
-
stepHue: async () => {
|
|
36
|
-
throw new NotImplementedError('Not implemented');
|
|
37
|
-
},
|
|
38
|
-
moveToSaturation: async () => {
|
|
39
|
-
throw new NotImplementedError('Not implemented');
|
|
40
|
-
},
|
|
41
|
-
moveSaturation: async () => {
|
|
42
|
-
throw new NotImplementedError('Not implemented');
|
|
43
|
-
},
|
|
44
|
-
stepSaturation: async () => {
|
|
45
|
-
throw new NotImplementedError('Not implemented');
|
|
46
|
-
},
|
|
47
|
-
moveToHueAndSaturation: async () => {
|
|
48
|
-
throw new NotImplementedError('Not implemented');
|
|
49
|
-
},
|
|
50
|
-
// X Y color { xy: true }
|
|
51
|
-
moveToColor: async () => {
|
|
52
|
-
throw new NotImplementedError('Not implemented');
|
|
53
|
-
},
|
|
54
|
-
moveColor: async () => {
|
|
55
|
-
throw new NotImplementedError('Not implemented');
|
|
56
|
-
},
|
|
57
|
-
stepColor: async () => {
|
|
58
|
-
throw new NotImplementedError('Not implemented');
|
|
59
|
-
},
|
|
60
|
-
// Color temeperature { colorTemperature: true }
|
|
61
|
-
moveToColorTemperature: async () => {
|
|
62
|
-
throw new NotImplementedError('Not implemented');
|
|
63
|
-
},
|
|
64
|
-
// Enhanced Hue { enhancedHue: true }
|
|
65
|
-
enhancedMoveToHue: async () => {
|
|
66
|
-
throw new NotImplementedError('Not implemented');
|
|
67
|
-
},
|
|
68
|
-
enhancedMoveHue: async () => {
|
|
69
|
-
throw new NotImplementedError('Not implemented');
|
|
70
|
-
},
|
|
71
|
-
enhancedStepHue: async () => {
|
|
72
|
-
throw new NotImplementedError('Not implemented');
|
|
73
|
-
},
|
|
74
|
-
enhancedMoveToHueAndSaturation: async () => {
|
|
75
|
-
throw new NotImplementedError('Not implemented');
|
|
76
|
-
},
|
|
77
|
-
// Color loop { colorLoop: true }
|
|
78
|
-
colorLoopSet: async () => {
|
|
79
|
-
throw new NotImplementedError('Not implemented');
|
|
80
|
-
},
|
|
81
|
-
stopMoveStep: async () => {
|
|
82
|
-
throw new NotImplementedError('Not implemented');
|
|
83
|
-
},
|
|
84
|
-
moveColorTemperature: async () => {
|
|
85
|
-
throw new NotImplementedError('Not implemented');
|
|
86
|
-
},
|
|
87
|
-
stepColorTemperature: async () => {
|
|
88
|
-
throw new NotImplementedError('Not implemented');
|
|
89
|
-
},
|
|
90
|
-
});
|
|
91
|
-
export const createDefaultColorControlClusterServer = (
|
|
92
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
93
|
-
commandHandler, attributeInitialValues) => ClusterServer(ColorControlCluster, attributeInitialValues ?? {
|
|
94
|
-
colorMode: ColorControl.ColorMode.CurrentHueAndCurrentSaturation,
|
|
95
|
-
options: {
|
|
96
|
-
executeIfOff: false,
|
|
97
|
-
},
|
|
98
|
-
numberOfPrimaries: null,
|
|
99
|
-
enhancedColorMode: ColorControl.EnhancedColorMode.CurrentHueAndCurrentSaturation,
|
|
100
|
-
colorCapabilities: { xy: false, hs: false, cl: false, ehue: false, ct: false },
|
|
101
|
-
}, WrapCommandHandler(ColorControlDefaultClusterHandler(), commandHandler));
|
|
102
|
-
//# sourceMappingURL=ColorControlServer.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ColorControlServer.js","sourceRoot":"","sources":["../src/ColorControlServer.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"static/css/main.70102d98.css","mappings":"AAAA,KAKE,kCAAmC,CACnC,iCAAkC,CAJlC,mIAEY,CAHZ,QAMF,CAEA,KACE,uEAEF,CCTA,mBAEE,oBAAqB,CADrB,iBAEF,CAKA,cAEE,qBAAsB,CAItB,iBAAkB,CAIlB,wBAAyB,CAPzB,UAAW,CAaX,cAAe,CALf,QAAS,CACT,iBAAkB,CAElB,SAAU,CATV,WAAgB,CAGhB,iBAAkB,CAJlB,iBAAkB,CAWlB,sBAAwB,CAdxB,iBAAkB,CAQlB,SAQF,CAEA,yBACE,cACF,CAEA,uCAEE,SAAU,CADV,kBAEF,CAGA,gBACE,sBAQF,CAEA,iCAPE,oBAAsB,CAItB,4BAA0C,CAN1C,UAAY,CAKZ,cAAe,CADf,cAAe,CAHf,aAAe,CAEf,iBAeF,CATA,iBACE,oBAQF,CAKA,mBACE,UAAc,CAEd,KAAM,CADN,SAEF,CAEA,cACE,aACF,CAGA,iBACE,wBACF,CAGA,QAIE,QAAS,CAGT,WAAY,CAJZ,0BAA2B,CAE3B,QAAS,CACT,SAEF,CAGA,YATE,kBAAmB,CADnB,YAaF,CAGA,UAIE,UAAW,CAFX,cAAe,CADf,aAAc,CAEd,oBAAqB,CAErB,yBACF,CAEA,gBACE,aACF,CAGA,cAKE,wBAGF,CAGA,4BAVE,qBAAsB,CAKtB,UAAY,CAFZ,gBAAkB,CAGlB,eAYF,CARA,cAKE,wBAGF,CAEA,YACE,gBAAiB,CACjB,eACF,CAGA,eACE,qBAAsB,CAKtB,cAAe,CAFf,gBAAkB,CAClB,eAEF,CAGA,oBACE,wBACF,CAGA,mBACE,wBACF,CAGA,wBACE,wBACF,CAGA,qBACE,aACF,CAGA,sBACE,UACF,CAGA,sBACE,UAAc,CACd,cAAe,CAIf,eAAgB,CADhB,iBAEF,CAGA,GACE,QACF,CAGA,MACE,wBAAyB,CAEzB,4BAA6B,CAD7B,UAEF,CAEA,yBACE,QACE,qBACF,CAEA,IACE,eACF,CACF","sources":["index.css","App.css"],"sourcesContent":["body {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',\n 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',\n sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\ncode {\n font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',\n monospace;\n}\n","/* App.css */\n\n/* Tooltip style */\n.tooltip-container {\n position: relative;\n display: inline-block;\n}\n\n/*\nwidth: 120px;\n*/\n.tooltip-text {\n visibility: hidden;\n background-color: #555;\n color: #fff;\n text-align: center;\n padding: 5px 5px;\n border-radius: 6px;\n\n position: absolute;\n z-index: 1;\n bottom: calc(100% + 10px);\n left: 50%;\n margin-left: -60px;\n\n opacity: 0;\n transition: opacity 0.3s;\n font-size: 12px;\n}\n\n.tooltip-container:hover {\n cursor: pointer;\n}\n\n.tooltip-container:hover .tooltip-text {\n visibility: visible;\n opacity: 1;\n}\n\n/* StatusIndicator style */\n.status-enabled {\n background-color: green;\n color: white;\n padding: 0.2rem;\n border-radius: 0.25rem;\n text-align: center;\n font-size: 12px;\n cursor: pointer;\n box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);\n}\n\n.status-disabled {\n background-color: red;\n color: white;\n padding: 0.2rem;\n border-radius: 0.25rem;\n text-align: center;\n font-size: 12px;\n cursor: pointer;\n box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);\n}\n\n\n/* Home page style */\n\n.PluginsIconButton {\n color: #000000;\n padding: 0;\n gap: 0;\n}\n\n.HeaderButton {\n color: #4CAF50;\n}\n\n/* Table header style */\n.main-background {\n background-color: #c4c2c2;\n}\n\n/* Header style */\n.header {\n display: flex;\n align-items: center;\n justify-content: flex-start; /* Distribute items evenly */\n gap: 20px;\n margin: 0;\n padding: 0; /* 20px */\n height: 40px; /* Increase height for a more modern look */\n}\n\n/* Navigation style */\nnav {\n display: flex;\n align-items: center;\n}\n\n/* Navigation in Header.js style */\n.nav-link {\n margin: 0 10px;\n font-size: 20px;\n text-decoration: none; /* Remove underline from links */\n color: #333; /* Dark gray color for the links */\n transition: color 0.3s ease; /* Smooth color transition */\n}\n\n.nav-link:hover {\n color: #007BFF; /* Change color to blue when hovering */\n}\n\n/* Table header style */\n.table-header {\n border: 1px solid #ddd;\n padding: 5px;\n padding-right: 10px;\n padding-left: 10px;\n background-color: #4CAF50;\n color: white;\n text-align: left;\n}\n\n/* Table footer style */\n.table-footer {\n border: 1px solid #ddd;\n padding: 5px;\n padding-right: 10px;\n padding-left: 10px;\n background-color: #7dac7f;\n color: white;\n text-align: left;\n}\n\n.table-body {\n max-height: 100px; /* Replace with your desired maximum height */\n overflow-y: auto;\n}\n\n/* Table content style */\n.table-content {\n border: 1px solid #ddd;\n padding: 5px;\n padding-right: 10px;\n padding-left: 10px;\n text-align: left;\n font-size: 14px;\n}\n\n/* Table content style */\n.table-content-even {\n background-color: #bdbdbd;\n}\n\n/* Table content style */\n.table-content-odd {\n background-color: #9e9e9e;\n}\n\n/* Table content style for selected rows*/\n.table-content-selected {\n background-color: #5f8c9e;\n}\n\n/* Color for selected text */\n.text-color-selected {\n color: #09516d;\n}\n\n/* Color for field text */\n.label-color-selected {\n color: #000000;\n}\n\n/* Color for field text */\n.field-color-selected {\n color: #000000;\n font-size: 16px;\n margin: 0;\n margin-top: 5px;\n margin-bottom: 20px;\n font-weight: 400;\n}\n\n/* Table style */\nh3 {\n margin: 0;\n}\n\n/* Table style */\ntable {\n border-collapse: collapse;\n width: 100%;\n box-shadow: 5px 5px 10px #888; \n}\n\n@media (max-width: 600px) {\n .header {\n flex-direction: column;\n }\n\n nav {\n margin-top: 20px;\n }\n}\n/*\nth, td {\n border: 1px solid #ddd;\n padding: 5px;\n text-align: left;\n}\n\nth {\n background-color: #4CAF50;\n color: white;\n}\n\ntr:nth-child(odd) {\n background-color: #9e9e9e;\n}\n\ntr:nth-child(even) {\n background-color: #bdbdbd;\n}\n\n*/\n"],"names":[],"sourceRoot":""}
|