@perses-dev/logs-table-plugin 0.2.0-beta.0 → 0.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/__mf/js/{LogsTable.6980b2d9.js → LogsTable.2781dfd7.js} +3 -3
- package/__mf/js/async/1117.0a72bc85.js +2 -0
- package/__mf/js/async/1129.e0f0503a.js +7 -0
- package/__mf/js/async/1240.1a0b69fc.js +1 -0
- package/__mf/js/async/304.d0edd380.js +37 -0
- package/__mf/js/async/392.2e457deb.js +2 -0
- package/__mf/js/async/3982.ab5d25af.js +1 -0
- package/__mf/js/async/6034.130a9e6d.js +22 -0
- package/__mf/js/async/648.0ddef36d.js +1 -0
- package/__mf/js/async/7445.28262ec0.js +110 -0
- package/__mf/js/async/8542.1802a06b.js +1 -0
- package/__mf/js/async/8608.4e8b55b4.js +1 -0
- package/__mf/js/async/8859.f8f648fc.js +1 -0
- package/__mf/js/async/9293.7e278959.js +2 -0
- package/__mf/js/async/__federation_expose_LogsTable.f2d6f7ad.js +1 -0
- package/__mf/js/async/lib-router.04411383.js +2 -0
- package/__mf/js/async/{lib-router.318cb64e.js.LICENSE.txt → lib-router.04411383.js.LICENSE.txt} +3 -3
- package/__mf/js/{main.029df708.js → main.76fc2531.js} +3 -3
- package/lib/LogsTable.d.ts.map +1 -1
- package/lib/LogsTable.js +6 -1
- package/lib/LogsTable.js.map +1 -1
- package/lib/LogsTableComponent.d.ts.map +1 -1
- package/lib/LogsTableComponent.js +13 -9
- package/lib/LogsTableComponent.js.map +1 -1
- package/lib/LogsTableItemSelectionActionsEditor.d.ts +4 -0
- package/lib/LogsTableItemSelectionActionsEditor.d.ts.map +1 -0
- package/lib/LogsTableItemSelectionActionsEditor.js +36 -0
- package/lib/LogsTableItemSelectionActionsEditor.js.map +1 -0
- package/lib/LogsTablePanel.js +1 -1
- package/lib/LogsTablePanel.js.map +1 -1
- package/lib/LogsTableSettingsEditor.js +2 -2
- package/lib/LogsTableSettingsEditor.js.map +1 -1
- package/lib/bootstrap.js +1 -1
- package/lib/bootstrap.js.map +1 -1
- package/lib/cjs/LogsTable.js +6 -1
- package/lib/cjs/LogsTableComponent.js +12 -8
- package/lib/cjs/LogsTableItemSelectionActionsEditor.js +44 -0
- package/lib/cjs/LogsTablePanel.js +1 -1
- package/lib/cjs/LogsTableSettingsEditor.js +1 -1
- package/lib/cjs/bootstrap.js +1 -1
- package/lib/cjs/components/EmptyLogsState.js +1 -1
- package/lib/cjs/components/LogRow/LogDetailsTable.js +1 -1
- package/lib/cjs/components/LogRow/LogRow.js +260 -13
- package/lib/cjs/components/LogRow/LogTimestamp.js +1 -1
- package/lib/cjs/components/LogRow/LogsStyles.js +9 -7
- package/lib/cjs/components/LogRow/index.js +1 -1
- package/lib/cjs/components/LogsList.js +1 -1
- package/lib/cjs/components/VirtualizedLogsList.js +502 -19
- package/lib/cjs/components/hooks/useExpandedRows.js +1 -1
- package/lib/cjs/components/hooks/useSeverity.js +47 -0
- package/lib/cjs/components/utils.js +78 -0
- package/lib/cjs/env.d.js +1 -1
- package/lib/cjs/getPluginModule.js +12 -0
- package/lib/cjs/index-federation.js +1 -1
- package/lib/cjs/index.js +12 -0
- package/lib/cjs/model.js +1 -1
- package/lib/cjs/setup-tests.js +1 -1
- package/lib/cjs/test/mock-query-results.js +60 -3
- package/lib/cjs/utils/copyHelpers.js +70 -0
- package/lib/components/EmptyLogsState.js +1 -1
- package/lib/components/EmptyLogsState.js.map +1 -1
- package/lib/components/LogRow/LogDetailsTable.js +1 -1
- package/lib/components/LogRow/LogDetailsTable.js.map +1 -1
- package/lib/components/LogRow/LogRow.d.ts +4 -1
- package/lib/components/LogRow/LogRow.d.ts.map +1 -1
- package/lib/components/LogRow/LogRow.js +262 -15
- package/lib/components/LogRow/LogRow.js.map +1 -1
- package/lib/components/LogRow/LogTimestamp.js +1 -1
- package/lib/components/LogRow/LogTimestamp.js.map +1 -1
- package/lib/components/LogRow/LogsStyles.d.ts +3 -0
- package/lib/components/LogRow/LogsStyles.d.ts.map +1 -1
- package/lib/components/LogRow/LogsStyles.js +9 -7
- package/lib/components/LogRow/LogsStyles.js.map +1 -1
- package/lib/components/LogRow/index.js +1 -1
- package/lib/components/LogRow/index.js.map +1 -1
- package/lib/components/LogsList.js +1 -1
- package/lib/components/LogsList.js.map +1 -1
- package/lib/components/VirtualizedLogsList.d.ts.map +1 -1
- package/lib/components/VirtualizedLogsList.js +463 -21
- package/lib/components/VirtualizedLogsList.js.map +1 -1
- package/lib/components/hooks/useExpandedRows.js +1 -1
- package/lib/components/hooks/useExpandedRows.js.map +1 -1
- package/lib/components/hooks/useSeverity.d.ts +3 -0
- package/lib/components/hooks/useSeverity.d.ts.map +1 -0
- package/lib/components/hooks/useSeverity.js +39 -0
- package/lib/components/hooks/useSeverity.js.map +1 -0
- package/lib/components/utils.d.ts +5 -0
- package/lib/components/utils.d.ts.map +1 -0
- package/lib/components/utils.js +62 -0
- package/lib/components/utils.js.map +1 -0
- package/lib/env.d.js +1 -1
- package/lib/env.d.js.map +1 -1
- package/lib/getPluginModule.d.ts.map +1 -1
- package/lib/getPluginModule.js +12 -0
- package/lib/getPluginModule.js.map +1 -1
- package/lib/index-federation.js +1 -1
- package/lib/index-federation.js.map +1 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +12 -0
- package/lib/index.js.map +1 -1
- package/lib/model.d.ts +4 -1
- package/lib/model.d.ts.map +1 -1
- package/lib/model.js +1 -1
- package/lib/model.js.map +1 -1
- package/lib/setup-tests.js +1 -1
- package/lib/setup-tests.js.map +1 -1
- package/lib/test/mock-query-results.d.ts +1 -0
- package/lib/test/mock-query-results.d.ts.map +1 -1
- package/lib/test/mock-query-results.js +57 -3
- package/lib/test/mock-query-results.js.map +1 -1
- package/lib/utils/copyHelpers.d.ts +28 -0
- package/lib/utils/copyHelpers.d.ts.map +1 -0
- package/lib/utils/copyHelpers.js +56 -0
- package/lib/utils/copyHelpers.js.map +1 -0
- package/mf-manifest.json +30 -30
- package/mf-stats.json +35 -32
- package/package.json +5 -5
- package/__mf/js/async/1117.921746cb.js +0 -2
- package/__mf/js/async/1939.46722505.js +0 -1
- package/__mf/js/async/392.ffb0729b.js +0 -2
- package/__mf/js/async/580.9e16464c.js +0 -110
- package/__mf/js/async/5997.f6b3408c.js +0 -2
- package/__mf/js/async/6600.884fc0ad.js +0 -22
- package/__mf/js/async/6916.3d24109f.js +0 -7
- package/__mf/js/async/7417.39d13c6a.js +0 -1
- package/__mf/js/async/8252.88cd9656.js +0 -1
- package/__mf/js/async/8294.dac3426d.js +0 -37
- package/__mf/js/async/8535.20f8a453.js +0 -1
- package/__mf/js/async/9558.692edca6.js +0 -1
- package/__mf/js/async/9890.b97f395d.js +0 -1
- package/__mf/js/async/__federation_expose_LogsTable.6f8b33f4.js +0 -1
- package/__mf/js/async/lib-router.318cb64e.js +0 -2
- /package/__mf/js/async/{1117.921746cb.js.LICENSE.txt → 1117.0a72bc85.js.LICENSE.txt} +0 -0
- /package/__mf/js/async/{6916.3d24109f.js.LICENSE.txt → 1129.e0f0503a.js.LICENSE.txt} +0 -0
- /package/__mf/js/async/{392.ffb0729b.js.LICENSE.txt → 392.2e457deb.js.LICENSE.txt} +0 -0
- /package/__mf/js/async/{6600.884fc0ad.js.LICENSE.txt → 6034.130a9e6d.js.LICENSE.txt} +0 -0
- /package/__mf/js/async/{580.9e16464c.js.LICENSE.txt → 7445.28262ec0.js.LICENSE.txt} +0 -0
package/mf-manifest.json
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
"name": "LogsTable",
|
|
6
6
|
"type": "app",
|
|
7
7
|
"buildInfo": {
|
|
8
|
-
"buildVersion": "0.2.0
|
|
8
|
+
"buildVersion": "0.2.0",
|
|
9
9
|
"buildName": "@perses-dev/logs-table-plugin"
|
|
10
10
|
},
|
|
11
11
|
"remoteEntry": {
|
|
12
|
-
"name": "__mf/js/LogsTable.
|
|
12
|
+
"name": "__mf/js/LogsTable.2781dfd7.js",
|
|
13
13
|
"path": "",
|
|
14
14
|
"type": "global"
|
|
15
15
|
},
|
|
@@ -87,14 +87,14 @@
|
|
|
87
87
|
{
|
|
88
88
|
"id": "LogsTable:@perses-dev/components",
|
|
89
89
|
"name": "@perses-dev/components",
|
|
90
|
-
"version": "0.53.0
|
|
90
|
+
"version": "0.53.0",
|
|
91
91
|
"singleton": true,
|
|
92
|
-
"requiredVersion": "^0.53.0
|
|
92
|
+
"requiredVersion": "^0.53.0",
|
|
93
93
|
"assets": {
|
|
94
94
|
"js": {
|
|
95
95
|
"async": [],
|
|
96
96
|
"sync": [
|
|
97
|
-
"__mf/js/async/
|
|
97
|
+
"__mf/js/async/1129.e0f0503a.js"
|
|
98
98
|
]
|
|
99
99
|
},
|
|
100
100
|
"css": {
|
|
@@ -106,14 +106,14 @@
|
|
|
106
106
|
{
|
|
107
107
|
"id": "LogsTable:@perses-dev/core",
|
|
108
108
|
"name": "@perses-dev/core",
|
|
109
|
-
"version": "0.53.0-
|
|
109
|
+
"version": "0.53.0-rc.2",
|
|
110
110
|
"singleton": true,
|
|
111
|
-
"requiredVersion": "^0.53.0-
|
|
111
|
+
"requiredVersion": "^0.53.0-rc.2",
|
|
112
112
|
"assets": {
|
|
113
113
|
"js": {
|
|
114
114
|
"async": [],
|
|
115
115
|
"sync": [
|
|
116
|
-
"__mf/js/async/1117.
|
|
116
|
+
"__mf/js/async/1117.0a72bc85.js"
|
|
117
117
|
]
|
|
118
118
|
},
|
|
119
119
|
"css": {
|
|
@@ -125,14 +125,14 @@
|
|
|
125
125
|
{
|
|
126
126
|
"id": "LogsTable:@perses-dev/dashboards",
|
|
127
127
|
"name": "@perses-dev/dashboards",
|
|
128
|
-
"version": "0.53.0
|
|
128
|
+
"version": "0.53.0",
|
|
129
129
|
"singleton": true,
|
|
130
|
-
"requiredVersion": "^0.53.0
|
|
130
|
+
"requiredVersion": "^0.53.0",
|
|
131
131
|
"assets": {
|
|
132
132
|
"js": {
|
|
133
133
|
"async": [],
|
|
134
134
|
"sync": [
|
|
135
|
-
"__mf/js/async/
|
|
135
|
+
"__mf/js/async/6034.130a9e6d.js"
|
|
136
136
|
]
|
|
137
137
|
},
|
|
138
138
|
"css": {
|
|
@@ -144,14 +144,14 @@
|
|
|
144
144
|
{
|
|
145
145
|
"id": "LogsTable:@perses-dev/plugin-system",
|
|
146
146
|
"name": "@perses-dev/plugin-system",
|
|
147
|
-
"version": "0.53.0
|
|
147
|
+
"version": "0.53.0",
|
|
148
148
|
"singleton": true,
|
|
149
|
-
"requiredVersion": "^0.53.0
|
|
149
|
+
"requiredVersion": "^0.53.0",
|
|
150
150
|
"assets": {
|
|
151
151
|
"js": {
|
|
152
152
|
"async": [],
|
|
153
153
|
"sync": [
|
|
154
|
-
"__mf/js/async/
|
|
154
|
+
"__mf/js/async/648.0ddef36d.js"
|
|
155
155
|
]
|
|
156
156
|
},
|
|
157
157
|
"css": {
|
|
@@ -201,14 +201,14 @@
|
|
|
201
201
|
{
|
|
202
202
|
"id": "LogsTable:lodash",
|
|
203
203
|
"name": "lodash",
|
|
204
|
-
"version": "4.17.
|
|
204
|
+
"version": "4.17.23",
|
|
205
205
|
"singleton": true,
|
|
206
|
-
"requiredVersion": "^4.17.
|
|
206
|
+
"requiredVersion": "^4.17.23",
|
|
207
207
|
"assets": {
|
|
208
208
|
"js": {
|
|
209
209
|
"async": [],
|
|
210
210
|
"sync": [
|
|
211
|
-
"__mf/js/async/392.
|
|
211
|
+
"__mf/js/async/392.2e457deb.js"
|
|
212
212
|
]
|
|
213
213
|
},
|
|
214
214
|
"css": {
|
|
@@ -303,30 +303,30 @@
|
|
|
303
303
|
"assets": {
|
|
304
304
|
"js": {
|
|
305
305
|
"sync": [
|
|
306
|
-
"__mf/js/async/
|
|
307
|
-
"__mf/js/async/
|
|
308
|
-
"__mf/js/async/
|
|
309
|
-
"__mf/js/async/__federation_expose_LogsTable.
|
|
306
|
+
"__mf/js/async/9293.7e278959.js",
|
|
307
|
+
"__mf/js/async/7445.28262ec0.js",
|
|
308
|
+
"__mf/js/async/8608.4e8b55b4.js",
|
|
309
|
+
"__mf/js/async/__federation_expose_LogsTable.f2d6f7ad.js"
|
|
310
310
|
],
|
|
311
311
|
"async": [
|
|
312
|
+
"__mf/js/async/lib-router.04411383.js",
|
|
312
313
|
"__mf/js/async/8356.9ea56838.js",
|
|
313
|
-
"__mf/js/async/
|
|
314
|
-
"__mf/js/async/
|
|
314
|
+
"__mf/js/async/8542.1802a06b.js",
|
|
315
|
+
"__mf/js/async/304.d0edd380.js",
|
|
316
|
+
"__mf/js/async/7452.60dd8e7a.js",
|
|
317
|
+
"__mf/js/async/3982.ab5d25af.js",
|
|
315
318
|
"__mf/js/async/9588.1ab96620.js",
|
|
316
319
|
"__mf/js/async/5071.a0b2c6c3.js",
|
|
317
|
-
"__mf/js/async/8294.dac3426d.js",
|
|
318
320
|
"__mf/js/async/2043.3343388c.js",
|
|
319
|
-
"__mf/js/async/
|
|
320
|
-
"__mf/js/async/
|
|
321
|
-
"__mf/js/async/7177.848ebbb2.js",
|
|
322
|
-
"__mf/js/async/1939.46722505.js"
|
|
321
|
+
"__mf/js/async/1240.1a0b69fc.js",
|
|
322
|
+
"__mf/js/async/7177.848ebbb2.js"
|
|
323
323
|
]
|
|
324
324
|
},
|
|
325
325
|
"css": {
|
|
326
326
|
"sync": [],
|
|
327
327
|
"async": [
|
|
328
|
-
"__mf/css/async/
|
|
329
|
-
"__mf/css/async/
|
|
328
|
+
"__mf/css/async/7823.d3010b86.css",
|
|
329
|
+
"__mf/css/async/3061.d3010b86.css"
|
|
330
330
|
]
|
|
331
331
|
}
|
|
332
332
|
},
|
package/mf-stats.json
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
"name": "LogsTable",
|
|
6
6
|
"type": "app",
|
|
7
7
|
"buildInfo": {
|
|
8
|
-
"buildVersion": "0.2.0
|
|
8
|
+
"buildVersion": "0.2.0",
|
|
9
9
|
"buildName": "@perses-dev/logs-table-plugin"
|
|
10
10
|
},
|
|
11
11
|
"remoteEntry": {
|
|
12
|
-
"name": "__mf/js/LogsTable.
|
|
12
|
+
"name": "__mf/js/LogsTable.2781dfd7.js",
|
|
13
13
|
"path": "",
|
|
14
14
|
"type": "global"
|
|
15
15
|
},
|
|
@@ -95,17 +95,17 @@
|
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
97
|
"singleton": true,
|
|
98
|
-
"requiredVersion": "^0.53.0
|
|
98
|
+
"requiredVersion": "^0.53.0",
|
|
99
99
|
"shareScope": "default",
|
|
100
100
|
"name": "@perses-dev/components",
|
|
101
|
-
"version": "0.53.0
|
|
101
|
+
"version": "0.53.0",
|
|
102
102
|
"eager": false,
|
|
103
103
|
"id": "LogsTable:@perses-dev/components",
|
|
104
104
|
"assets": {
|
|
105
105
|
"js": {
|
|
106
106
|
"async": [],
|
|
107
107
|
"sync": [
|
|
108
|
-
"__mf/js/async/
|
|
108
|
+
"__mf/js/async/1129.e0f0503a.js"
|
|
109
109
|
]
|
|
110
110
|
},
|
|
111
111
|
"css": {
|
|
@@ -119,17 +119,17 @@
|
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
121
|
"singleton": true,
|
|
122
|
-
"requiredVersion": "^0.53.0-
|
|
122
|
+
"requiredVersion": "^0.53.0-rc.2",
|
|
123
123
|
"shareScope": "default",
|
|
124
124
|
"name": "@perses-dev/core",
|
|
125
|
-
"version": "0.53.0-
|
|
125
|
+
"version": "0.53.0-rc.2",
|
|
126
126
|
"eager": false,
|
|
127
127
|
"id": "LogsTable:@perses-dev/core",
|
|
128
128
|
"assets": {
|
|
129
129
|
"js": {
|
|
130
130
|
"async": [],
|
|
131
131
|
"sync": [
|
|
132
|
-
"__mf/js/async/1117.
|
|
132
|
+
"__mf/js/async/1117.0a72bc85.js"
|
|
133
133
|
]
|
|
134
134
|
},
|
|
135
135
|
"css": {
|
|
@@ -141,17 +141,17 @@
|
|
|
141
141
|
},
|
|
142
142
|
{
|
|
143
143
|
"singleton": true,
|
|
144
|
-
"requiredVersion": "^0.53.0
|
|
144
|
+
"requiredVersion": "^0.53.0",
|
|
145
145
|
"shareScope": "default",
|
|
146
146
|
"name": "@perses-dev/dashboards",
|
|
147
|
-
"version": "0.53.0
|
|
147
|
+
"version": "0.53.0",
|
|
148
148
|
"eager": false,
|
|
149
149
|
"id": "LogsTable:@perses-dev/dashboards",
|
|
150
150
|
"assets": {
|
|
151
151
|
"js": {
|
|
152
152
|
"async": [],
|
|
153
153
|
"sync": [
|
|
154
|
-
"__mf/js/async/
|
|
154
|
+
"__mf/js/async/6034.130a9e6d.js"
|
|
155
155
|
]
|
|
156
156
|
},
|
|
157
157
|
"css": {
|
|
@@ -159,21 +159,23 @@
|
|
|
159
159
|
"sync": []
|
|
160
160
|
}
|
|
161
161
|
},
|
|
162
|
-
"usedIn": [
|
|
162
|
+
"usedIn": [
|
|
163
|
+
"./LogsTable"
|
|
164
|
+
]
|
|
163
165
|
},
|
|
164
166
|
{
|
|
165
167
|
"singleton": true,
|
|
166
|
-
"requiredVersion": "^0.53.0
|
|
168
|
+
"requiredVersion": "^0.53.0",
|
|
167
169
|
"shareScope": "default",
|
|
168
170
|
"name": "@perses-dev/plugin-system",
|
|
169
|
-
"version": "0.53.0
|
|
171
|
+
"version": "0.53.0",
|
|
170
172
|
"eager": false,
|
|
171
173
|
"id": "LogsTable:@perses-dev/plugin-system",
|
|
172
174
|
"assets": {
|
|
173
175
|
"js": {
|
|
174
176
|
"async": [],
|
|
175
177
|
"sync": [
|
|
176
|
-
"__mf/js/async/
|
|
178
|
+
"__mf/js/async/648.0ddef36d.js"
|
|
177
179
|
]
|
|
178
180
|
},
|
|
179
181
|
"css": {
|
|
@@ -231,17 +233,17 @@
|
|
|
231
233
|
},
|
|
232
234
|
{
|
|
233
235
|
"singleton": true,
|
|
234
|
-
"requiredVersion": "^4.17.
|
|
236
|
+
"requiredVersion": "^4.17.23",
|
|
235
237
|
"shareScope": "default",
|
|
236
238
|
"name": "lodash",
|
|
237
|
-
"version": "4.17.
|
|
239
|
+
"version": "4.17.23",
|
|
238
240
|
"eager": false,
|
|
239
241
|
"id": "LogsTable:lodash",
|
|
240
242
|
"assets": {
|
|
241
243
|
"js": {
|
|
242
244
|
"async": [],
|
|
243
245
|
"sync": [
|
|
244
|
-
"__mf/js/async/392.
|
|
246
|
+
"__mf/js/async/392.2e457deb.js"
|
|
245
247
|
]
|
|
246
248
|
},
|
|
247
249
|
"css": {
|
|
@@ -352,36 +354,37 @@
|
|
|
352
354
|
"requires": [
|
|
353
355
|
"react",
|
|
354
356
|
"@perses-dev/components",
|
|
355
|
-
"@perses-dev/plugin-system"
|
|
357
|
+
"@perses-dev/plugin-system",
|
|
358
|
+
"@perses-dev/dashboards"
|
|
356
359
|
],
|
|
357
360
|
"file": "src/LogsTable.ts",
|
|
358
361
|
"assets": {
|
|
359
362
|
"js": {
|
|
360
363
|
"sync": [
|
|
361
|
-
"__mf/js/async/
|
|
362
|
-
"__mf/js/async/
|
|
363
|
-
"__mf/js/async/
|
|
364
|
-
"__mf/js/async/__federation_expose_LogsTable.
|
|
364
|
+
"__mf/js/async/9293.7e278959.js",
|
|
365
|
+
"__mf/js/async/7445.28262ec0.js",
|
|
366
|
+
"__mf/js/async/8608.4e8b55b4.js",
|
|
367
|
+
"__mf/js/async/__federation_expose_LogsTable.f2d6f7ad.js"
|
|
365
368
|
],
|
|
366
369
|
"async": [
|
|
370
|
+
"__mf/js/async/lib-router.04411383.js",
|
|
367
371
|
"__mf/js/async/8356.9ea56838.js",
|
|
368
|
-
"__mf/js/async/
|
|
369
|
-
"__mf/js/async/
|
|
372
|
+
"__mf/js/async/8542.1802a06b.js",
|
|
373
|
+
"__mf/js/async/304.d0edd380.js",
|
|
374
|
+
"__mf/js/async/7452.60dd8e7a.js",
|
|
375
|
+
"__mf/js/async/3982.ab5d25af.js",
|
|
370
376
|
"__mf/js/async/9588.1ab96620.js",
|
|
371
377
|
"__mf/js/async/5071.a0b2c6c3.js",
|
|
372
|
-
"__mf/js/async/8294.dac3426d.js",
|
|
373
378
|
"__mf/js/async/2043.3343388c.js",
|
|
374
|
-
"__mf/js/async/
|
|
375
|
-
"__mf/js/async/
|
|
376
|
-
"__mf/js/async/7177.848ebbb2.js",
|
|
377
|
-
"__mf/js/async/1939.46722505.js"
|
|
379
|
+
"__mf/js/async/1240.1a0b69fc.js",
|
|
380
|
+
"__mf/js/async/7177.848ebbb2.js"
|
|
378
381
|
]
|
|
379
382
|
},
|
|
380
383
|
"css": {
|
|
381
384
|
"sync": [],
|
|
382
385
|
"async": [
|
|
383
|
-
"__mf/css/async/
|
|
384
|
-
"__mf/css/async/
|
|
386
|
+
"__mf/css/async/7823.d3010b86.css",
|
|
387
|
+
"__mf/css/async/3061.d3010b86.css"
|
|
385
388
|
]
|
|
386
389
|
}
|
|
387
390
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@perses-dev/logs-table-plugin",
|
|
3
|
-
"version": "0.2.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"homepage": "https://github.com/perses/plugins/blob/main/README.md",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"@emotion/react": "^11.7.1",
|
|
28
28
|
"@emotion/styled": "^11.6.0",
|
|
29
29
|
"@hookform/resolvers": "^3.2.0",
|
|
30
|
-
"@perses-dev/components": "^0.53.0
|
|
31
|
-
"@perses-dev/core": "^0.53.0-
|
|
32
|
-
"@perses-dev/plugin-system": "^0.53.0
|
|
33
|
-
"@perses-dev/dashboards": "^0.53.0
|
|
30
|
+
"@perses-dev/components": "^0.53.0",
|
|
31
|
+
"@perses-dev/core": "^0.53.0-rc.2",
|
|
32
|
+
"@perses-dev/plugin-system": "^0.53.0",
|
|
33
|
+
"@perses-dev/dashboards": "^0.53.0",
|
|
34
34
|
"date-fns": "^4.1.0",
|
|
35
35
|
"date-fns-tz": "^3.2.0",
|
|
36
36
|
"echarts": "5.5.0",
|