matterbridge 1.3.5 → 1.3.7
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 +32 -0
- package/README.md +3 -1
- package/dist/cluster/ElectricalEnergyMeasurementCluster.js +1 -1
- package/dist/cluster/ElectricalEnergyMeasurementCluster.js.map +1 -1
- package/dist/cluster/ElectricalPowerMeasurementCluster.js +10 -10
- package/dist/cluster/ElectricalPowerMeasurementCluster.js.map +1 -1
- package/dist/logger/export.d.ts.map +1 -0
- package/dist/logger/export.js.map +1 -0
- package/dist/matterbridge.d.ts +4 -4
- package/dist/matterbridge.d.ts.map +1 -1
- package/dist/matterbridge.js +182 -101
- package/dist/matterbridge.js.map +1 -1
- package/dist/matterbridgeDevice.d.ts +1 -5
- package/dist/matterbridgeDevice.d.ts.map +1 -1
- package/dist/matterbridgeDevice.js +9 -9
- package/dist/matterbridgeDevice.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.57bd18a9.css → main.abff2627.css} +8 -2
- package/frontend/build/static/css/main.abff2627.css.map +1 -0
- package/frontend/build/static/js/{main.c3b5dfce.js → main.942a74a2.js} +3 -3
- package/frontend/build/static/js/{main.c3b5dfce.js.map → main.942a74a2.js.map} +1 -1
- package/package.json +29 -7
- package/dist/cluster/export.d.ts +0 -25
- package/dist/cluster/export.d.ts.map +0 -1
- package/dist/cluster/export.js +0 -25
- package/dist/cluster/export.js.map +0 -1
- package/dist/log/export.d.ts.map +0 -1
- package/dist/log/export.js.map +0 -1
- package/dist/utils/export.d.ts +0 -3
- package/dist/utils/export.d.ts.map +0 -1
- package/dist/utils/export.js +0 -3
- package/dist/utils/export.js.map +0 -1
- package/frontend/build/static/css/main.57bd18a9.css.map +0 -1
- /package/dist/{log → logger}/export.d.ts +0 -0
- /package/dist/{log → logger}/export.js +0 -0
- /package/frontend/build/static/js/{main.c3b5dfce.js.LICENSE.txt → main.942a74a2.js.LICENSE.txt} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.7",
|
|
4
4
|
"description": "Matterbridge plugin manager for Matter",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -39,13 +39,35 @@
|
|
|
39
39
|
],
|
|
40
40
|
"type": "module",
|
|
41
41
|
"main": "dist/index.js",
|
|
42
|
-
"types": "dist/index.d.
|
|
42
|
+
"types": "dist/index.d.ts",
|
|
43
43
|
"bin": {
|
|
44
44
|
"matterbridge": "dist/cli.js"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=18.0.0"
|
|
48
48
|
},
|
|
49
|
+
"exports": {
|
|
50
|
+
".": {
|
|
51
|
+
"import": "./dist/index.js",
|
|
52
|
+
"types": "./dist/index.d.ts"
|
|
53
|
+
},
|
|
54
|
+
"./utils/*": {
|
|
55
|
+
"import": "./dist/utils/*.js",
|
|
56
|
+
"types": "./dist/utils/*.d.ts"
|
|
57
|
+
},
|
|
58
|
+
"./cluster/*": {
|
|
59
|
+
"import": "./dist/cluster/*.js",
|
|
60
|
+
"types": "./dist/cluster/*.d.ts"
|
|
61
|
+
},
|
|
62
|
+
"./logger": {
|
|
63
|
+
"import": "./dist/logger/export.js",
|
|
64
|
+
"types": "./dist/logger/export.d.ts"
|
|
65
|
+
},
|
|
66
|
+
"./storage": {
|
|
67
|
+
"import": "./dist/storage/export.js",
|
|
68
|
+
"types": "./dist/storage/export.d.ts"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
49
71
|
"scripts": {
|
|
50
72
|
"build": "tsc",
|
|
51
73
|
"watch": "tsc --watch",
|
|
@@ -54,9 +76,9 @@
|
|
|
54
76
|
"start:childbridge": "node ./dist/cli.js -childbridge",
|
|
55
77
|
"start:controller": "node ./dist/cli.js -controller",
|
|
56
78
|
"start:help": "node ./dist/cli.js -help",
|
|
57
|
-
"test": "jest",
|
|
58
|
-
"test:verbose": "jest --verbose",
|
|
59
|
-
"test:watch": "jest --watch",
|
|
79
|
+
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
|
80
|
+
"test:verbose": "node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose",
|
|
81
|
+
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
|
|
60
82
|
"lint": "eslint --max-warnings=0 .",
|
|
61
83
|
"lint:fix": "eslint --fix --max-warnings=0 .",
|
|
62
84
|
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
@@ -87,7 +109,7 @@
|
|
|
87
109
|
"eslint": "latest"
|
|
88
110
|
},
|
|
89
111
|
"dependencies": {
|
|
90
|
-
"@project-chip/matter-node.js": "^0.9.
|
|
112
|
+
"@project-chip/matter-node.js": "^0.9.3",
|
|
91
113
|
"body-parser": "^1.20.2",
|
|
92
114
|
"express": "^4.19.2",
|
|
93
115
|
"https": "^1.0.0",
|
|
@@ -97,7 +119,7 @@
|
|
|
97
119
|
"ws": "^8.17.1"
|
|
98
120
|
},
|
|
99
121
|
"devDependencies": {
|
|
100
|
-
"@eslint/js": "^9.
|
|
122
|
+
"@eslint/js": "^9.6.0",
|
|
101
123
|
"@types/eslint__js": "^8.42.3",
|
|
102
124
|
"@types/express": "^4.17.21",
|
|
103
125
|
"@types/jest": "^29.5.12",
|
package/dist/cluster/export.d.ts
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
export * from '../cluster/AirQualityCluster.js';
|
|
2
|
-
export * from '../cluster/BooleanStateConfigurationCluster.js';
|
|
3
|
-
export * from '../cluster/BridgedDeviceBasicInformationCluster.js';
|
|
4
|
-
export * from '../cluster/CarbonDioxideConcentrationMeasurementCluster.js';
|
|
5
|
-
export * from '../cluster/CarbonMonoxideConcentrationMeasurementCluster.js';
|
|
6
|
-
export * from '../cluster/ConcentrationMeasurementCluster.js';
|
|
7
|
-
export * from '../cluster/DeviceEnergyManagementCluster.js';
|
|
8
|
-
export * from '../cluster/DeviceEnergyManagementModeCluster.js';
|
|
9
|
-
export * from '../cluster/ElectricalEnergyMeasurementCluster.js';
|
|
10
|
-
export * from '../cluster/ElectricalPowerMeasurementCluster.js';
|
|
11
|
-
export * from '../cluster/FanControlCluster.js';
|
|
12
|
-
export * from '../cluster/FormaldehydeConcentrationMeasurementCluster.js';
|
|
13
|
-
export * from '../cluster/MeasurementAccuracy.js';
|
|
14
|
-
export * from '../cluster/MeasurementAccuracyRange.js';
|
|
15
|
-
export * from '../cluster/MeasurementType.js';
|
|
16
|
-
export * from '../cluster/NitrogenDioxideConcentrationMeasurementCluster.js';
|
|
17
|
-
export * from '../cluster/OzoneConcentrationMeasurementCluster.js';
|
|
18
|
-
export * from '../cluster/Pm10ConcentrationMeasurementCluster.js';
|
|
19
|
-
export * from '../cluster/Pm1ConcentrationMeasurementCluster.js';
|
|
20
|
-
export * from '../cluster/Pm25ConcentrationMeasurementCluster.js';
|
|
21
|
-
export * from '../cluster/PowerTopologyCluster.js';
|
|
22
|
-
export * from '../cluster/RadonConcentrationMeasurementCluster.js';
|
|
23
|
-
export * from '../cluster/SmokeCoAlarmCluster.js';
|
|
24
|
-
export * from '../cluster/TvocCluster.js';
|
|
25
|
-
//# sourceMappingURL=export.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"export.d.ts","sourceRoot":"","sources":["../../src/cluster/export.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC;AAChD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,oDAAoD,CAAC;AACnE,cAAc,4DAA4D,CAAC;AAC3E,cAAc,6DAA6D,CAAC;AAC5E,cAAc,+CAA+C,CAAC;AAC9D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,iDAAiD,CAAC;AAChE,cAAc,kDAAkD,CAAC;AACjE,cAAc,iDAAiD,CAAC;AAChE,cAAc,iCAAiC,CAAC;AAChD,cAAc,2DAA2D,CAAC;AAC1E,cAAc,mCAAmC,CAAC;AAClD,cAAc,wCAAwC,CAAC;AACvD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,8DAA8D,CAAC;AAC7E,cAAc,oDAAoD,CAAC;AACnE,cAAc,mDAAmD,CAAC;AAClE,cAAc,kDAAkD,CAAC;AACjE,cAAc,mDAAmD,CAAC;AAClE,cAAc,oCAAoC,CAAC;AACnD,cAAc,oDAAoD,CAAC;AACnE,cAAc,mCAAmC,CAAC;AAClD,cAAc,2BAA2B,CAAC"}
|
package/dist/cluster/export.js
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
export * from '../cluster/AirQualityCluster.js';
|
|
2
|
-
export * from '../cluster/BooleanStateConfigurationCluster.js';
|
|
3
|
-
export * from '../cluster/BridgedDeviceBasicInformationCluster.js'; // Already defined in matter.js
|
|
4
|
-
export * from '../cluster/CarbonDioxideConcentrationMeasurementCluster.js';
|
|
5
|
-
export * from '../cluster/CarbonMonoxideConcentrationMeasurementCluster.js';
|
|
6
|
-
export * from '../cluster/ConcentrationMeasurementCluster.js';
|
|
7
|
-
export * from '../cluster/DeviceEnergyManagementCluster.js';
|
|
8
|
-
export * from '../cluster/DeviceEnergyManagementModeCluster.js';
|
|
9
|
-
export * from '../cluster/ElectricalEnergyMeasurementCluster.js';
|
|
10
|
-
export * from '../cluster/ElectricalPowerMeasurementCluster.js';
|
|
11
|
-
export * from '../cluster/FanControlCluster.js'; // Already defined in matter.js like rev. 2
|
|
12
|
-
export * from '../cluster/FormaldehydeConcentrationMeasurementCluster.js';
|
|
13
|
-
export * from '../cluster/MeasurementAccuracy.js';
|
|
14
|
-
export * from '../cluster/MeasurementAccuracyRange.js';
|
|
15
|
-
export * from '../cluster/MeasurementType.js';
|
|
16
|
-
export * from '../cluster/NitrogenDioxideConcentrationMeasurementCluster.js';
|
|
17
|
-
export * from '../cluster/OzoneConcentrationMeasurementCluster.js';
|
|
18
|
-
export * from '../cluster/Pm10ConcentrationMeasurementCluster.js';
|
|
19
|
-
export * from '../cluster/Pm1ConcentrationMeasurementCluster.js';
|
|
20
|
-
export * from '../cluster/Pm25ConcentrationMeasurementCluster.js';
|
|
21
|
-
export * from '../cluster/PowerTopologyCluster.js';
|
|
22
|
-
export * from '../cluster/RadonConcentrationMeasurementCluster.js';
|
|
23
|
-
export * from '../cluster/SmokeCoAlarmCluster.js';
|
|
24
|
-
export * from '../cluster/TvocCluster.js';
|
|
25
|
-
//# sourceMappingURL=export.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"export.js","sourceRoot":"","sources":["../../src/cluster/export.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC;AAChD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,oDAAoD,CAAC,CAAC,+BAA+B;AACnG,cAAc,4DAA4D,CAAC;AAC3E,cAAc,6DAA6D,CAAC;AAC5E,cAAc,+CAA+C,CAAC;AAC9D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,iDAAiD,CAAC;AAChE,cAAc,kDAAkD,CAAC;AACjE,cAAc,iDAAiD,CAAC;AAChE,cAAc,iCAAiC,CAAC,CAAC,2CAA2C;AAC5F,cAAc,2DAA2D,CAAC;AAC1E,cAAc,mCAAmC,CAAC;AAClD,cAAc,wCAAwC,CAAC;AACvD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,8DAA8D,CAAC;AAC7E,cAAc,oDAAoD,CAAC;AACnE,cAAc,mDAAmD,CAAC;AAClE,cAAc,kDAAkD,CAAC;AACjE,cAAc,mDAAmD,CAAC;AAClE,cAAc,oCAAoC,CAAC;AACnD,cAAc,oDAAoD,CAAC;AACnE,cAAc,mCAAmC,CAAC;AAClD,cAAc,2BAA2B,CAAC"}
|
package/dist/log/export.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"export.d.ts","sourceRoot":"","sources":["../../src/log/export.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC"}
|
package/dist/log/export.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"export.js","sourceRoot":"","sources":["../../src/log/export.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC"}
|
package/dist/utils/export.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"export.d.ts","sourceRoot":"","sources":["../../src/utils/export.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC"}
|
package/dist/utils/export.js
DELETED
package/dist/utils/export.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"export.js","sourceRoot":"","sources":["../../src/utils/export.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"static/css/main.57bd18a9.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,CAEA,oBACE,wBAAyB,CACzB,UAUF,CAEA,oCAPE,oBAAsB,CAItB,4BAA0C,CAD1C,cAAe,CADf,cAAe,CAHf,gBAAgB,CAEhB,iBAkBF,CAZA,gBACE,wBAAyB,CACzB,UAUF,CAEA,gBACE,wBAAyB,CAMzB,oBAAsB,CAItB,4BAA0C,CAT1C,UAAY,CAQZ,cAAe,CADf,cAAe,CAHf,gBAAgB,CAEhB,iBAIF,CAIA,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,CACzB,UAEF,CAKA,oBANE,4BAYF,CANA,cAKE,wBAAyB,CADzB,qBAAsB,CAHtB,YAAa,CACb,qBAIF,CAGA,iBAME,wBAAyB,CADzB,4BAA6B,CAI7B,qBAAsB,CALtB,WAAY,CAIZ,SAAY,CALZ,UAOF,CAGA,kCAXE,kBAAmB,CADnB,cAAe,CAMf,QAeF,CATA,iBAKE,UAAY,CADZ,WAAY,CADZ,sBAAuB,CAKvB,mBACF,CAGA,qBACE,UAAY,CACZ,eAAiB,CACjB,QAAW,CAGX,gBACF,EAGA,eAIE,kBAAmB,CAHnB,YAAa,CAEb,aAAc,CADd,kBAAmB,CAMnB,QAAS,CAHT,6BAA8B,CAC9B,QAAW,CACX,YAEF,EAGA,gBACE,gBAAiB,CAGjB,QAAS,CAFT,QAAW,CACX,YAEF","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 */\r\n\r\n/* Tooltip style */\r\n.tooltip-container {\r\n position: relative;\r\n display: inline-block;\r\n}\r\n\r\n/*\r\nwidth: 120px;\r\n*/\r\n.tooltip-text {\r\n visibility: hidden;\r\n background-color: #555;\r\n color: #fff;\r\n text-align: center;\r\n padding: 5px 5px;\r\n border-radius: 6px;\r\n\r\n position: absolute;\r\n z-index: 1;\r\n bottom: calc(100% + 10px);\r\n left: 50%;\r\n margin-left: -60px;\r\n\r\n opacity: 0;\r\n transition: opacity 0.3s;\r\n font-size: 12px;\r\n}\r\n\r\n.tooltip-container:hover {\r\n cursor: pointer;\r\n}\r\n\r\n.tooltip-container:hover .tooltip-text {\r\n visibility: visible;\r\n opacity: 1;\r\n}\r\n\r\n/* StatusIndicator style */\r\n.status-enabled {\r\n background-color: green;\r\n color: white;\r\n padding: 0.2rem;\r\n border-radius: 0.25rem;\r\n text-align: center;\r\n font-size: 12px;\r\n cursor: pointer;\r\n box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n.status-disabled {\r\n background-color: red;\r\n color: white;\r\n padding: 0.2rem;\r\n border-radius: 0.25rem;\r\n text-align: center;\r\n font-size: 12px;\r\n cursor: pointer;\r\n box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n.status-information {\r\n background-color: #9e9e9e;\r\n color: white;\r\n padding-left: 10px;\r\n padding-right: 10px;\r\n padding-bottom: 2px;\r\n padding-top: 2px;\r\n border-radius: 0.25rem;\r\n text-align: center;\r\n font-size: 12px;\r\n cursor: pointer;\r\n box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n.status-warning {\r\n background-color: #e9db18;\r\n color: black;\r\n padding-left: 10px;\r\n padding-right: 10px;\r\n padding-bottom: 2px;\r\n padding-top: 2px;\r\n border-radius: 0.25rem;\r\n text-align: center;\r\n font-size: 12px;\r\n cursor: pointer;\r\n box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n.status-sponsor {\r\n background-color: #b6409c;\r\n color: white;\r\n padding-left: 10px;\r\n padding-right: 10px;\r\n padding-bottom: 2px;\r\n padding-top: 2px;\r\n border-radius: 0.25rem;\r\n text-align: center;\r\n font-size: 12px;\r\n cursor: pointer;\r\n box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n/* Home page style */\r\n\r\n.PluginsIconButton {\r\n color: #000000;\r\n padding: 0;\r\n gap: 0;\r\n}\r\n\r\n.HeaderButton {\r\n color: #4CAF50;\r\n}\r\n\r\n/* Table header style */\r\n.main-background {\r\n background-color: #c4c2c2;\r\n}\r\n\r\n/* Header style */\r\n.header {\r\n display: flex;\r\n align-items: center;\r\n justify-content: flex-start; /* Distribute items evenly */\r\n gap: 20px;\r\n margin: 0;\r\n padding: 0; /* 20px */\r\n height: 40px; /* Increase height for a more modern look */\r\n}\r\n\r\n/* Navigation style */\r\nnav {\r\n display: flex;\r\n align-items: center;\r\n}\r\n\r\n/* Navigation in Header.js style */\r\n.nav-link {\r\n margin: 0 10px;\r\n font-size: 20px;\r\n text-decoration: none; /* Remove underline from links */\r\n color: #333; /* Dark gray color for the links */\r\n transition: color 0.3s ease; /* Smooth color transition */\r\n}\r\n\r\n.nav-link:hover {\r\n color: #007BFF; /* Change color to blue when hovering */\r\n}\r\n\r\n/* Table header style */\r\n.table-header {\r\n border: 1px solid #ddd;\r\n padding: 5px;\r\n padding-right: 10px;\r\n padding-left: 10px;\r\n background-color: #4CAF50;\r\n color: white;\r\n text-align: left;\r\n}\r\n\r\n/* Table footer style */\r\n.table-footer {\r\n border: 1px solid #ddd;\r\n padding: 5px;\r\n padding-right: 10px;\r\n padding-left: 10px;\r\n background-color: #7dac7f;\r\n color: white;\r\n text-align: left;\r\n}\r\n\r\n.table-body {\r\n max-height: 100px; /* Replace with your desired maximum height */\r\n overflow-y: auto;\r\n}\r\n\r\n/* Table content style */\r\n.table-content {\r\n border: 1px solid #ddd;\r\n padding: 5px;\r\n padding-right: 10px;\r\n padding-left: 10px;\r\n text-align: left;\r\n font-size: 14px;\r\n}\r\n\r\n/* Table content style */\r\n.table-content-even {\r\n background-color: #bdbdbd;\r\n}\r\n\r\n/* Table content style */\r\n.table-content-odd {\r\n background-color: #9e9e9e;\r\n}\r\n\r\n/* Table content style for selected rows*/\r\n.table-content-selected {\r\n background-color: #5f8c9e;\r\n}\r\n\r\n/* Color for selected text */\r\n.text-color-selected {\r\n color: #09516d;\r\n}\r\n\r\n/* Color for field text */\r\n.label-color-selected {\r\n color: #000000;\r\n}\r\n\r\n/* Color for field text */\r\n.field-color-selected {\r\n color: #000000;\r\n font-size: 16px;\r\n margin: 0;\r\n margin-top: 5px;\r\n margin-bottom: 20px;\r\n font-weight: 400;\r\n}\r\n\r\n/* Table style */\r\nh3 {\r\n margin: 0;\r\n}\r\n\r\n/* Table style */\r\ntable {\r\n border-collapse: collapse;\r\n width: 100%;\r\n box-shadow: 5px 5px 10px #888; \r\n}\r\n\r\n/* Mbf content style */\r\n\r\n/* Define the style for the main div element */\r\n.MbfWindowDiv {\r\n display: flex;\r\n flex-direction: column;\r\n box-shadow: 5px 5px 10px #888;\r\n border: 1px solid #ddd;\r\n background-color: #9e9e9e;\r\n}\r\n\r\n/* Define the style for the header element */\r\n.MbfWindowHeader {\r\n display: 'flex';\r\n align-items: center;\r\n width: 100%;\r\n height: 34px;\r\n border-bottom: 1px solid #ddd;\r\n background-color: #4CAF50;\r\n margin: 0px;\r\n padding: 0px;\r\n box-sizing: border-box;\r\n}\r\n\r\n/* Define the style for the header element */\r\n.MbfWindowFooter {\r\n display: 'flex';\r\n align-items: center;\r\n justify-content: center;\r\n height: 40px;\r\n color: black;\r\n margin: 0px;\r\n padding: 10px;\r\n padding-top: 0px;\r\n}\r\n\r\n/* Define the style for the header text element */\r\n.MbfWindowHeaderText {\r\n color: white;\r\n font-weight: bold;\r\n margin: 0px;\r\n padding: 5px;\r\n padding-right: 10px;\r\n padding-left: 10px;\r\n};\r\n\r\n/* Define the style for the body element */\r\n.MbfWindowBody {\r\n display: flex;\r\n flex-direction: row;\r\n flex: 1 1 auto;\r\n align-items: center;\r\n justify-content: space-between;\r\n margin: 0px;\r\n padding: 10px;\r\n gap: 20px;\r\n};\r\n\r\n/* Define the style for the body element */\r\n.MbfWindowBody2 {\r\n align-items: left;\r\n margin: 0px;\r\n padding: 10px;\r\n gap: 20px;\r\n};\r\n\r\n/*\r\n@media (max-width: 600px) {\r\n .header {\r\n flex-direction: column;\r\n }\r\n\r\n nav {\r\n margin-top: 20px;\r\n }\r\n}\r\n*/\r\n/*\r\nth, td {\r\n border: 1px solid #ddd;\r\n padding: 5px;\r\n text-align: left;\r\n}\r\n\r\nth {\r\n background-color: #4CAF50;\r\n color: white;\r\n}\r\n\r\ntr:nth-child(odd) {\r\n background-color: #9e9e9e;\r\n}\r\n\r\ntr:nth-child(even) {\r\n background-color: #bdbdbd;\r\n}\r\n\r\n*/\r\n"],"names":[],"sourceRoot":""}
|
|
File without changes
|
|
File without changes
|
/package/frontend/build/static/js/{main.c3b5dfce.js.LICENSE.txt → main.942a74a2.js.LICENSE.txt}
RENAMED
|
File without changes
|