@kong-ui-public/dashboard-renderer 0.26.32 → 0.27.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/dist/dashboard-renderer.es.js +372 -345
- package/dist/dashboard-renderer.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/types/components/BarChartRenderer.vue.d.ts.map +1 -1
- package/dist/types/components/BaseAnalyticsChartRenderer.vue.d.ts +12 -0
- package/dist/types/components/BaseAnalyticsChartRenderer.vue.d.ts.map +1 -0
- package/dist/types/components/DashboardRenderer.vue.d.ts +237 -3
- package/dist/types/components/DashboardRenderer.vue.d.ts.map +1 -1
- package/dist/types/components/DashboardTile.vue.d.ts +236 -2
- package/dist/types/components/DashboardTile.vue.d.ts.map +1 -1
- package/dist/types/components/GoldenSignalsRenderer.vue.d.ts.map +1 -1
- package/dist/types/components/TimeseriesChartRenderer.vue.d.ts.map +1 -1
- package/dist/types/types/dashboard-renderer-types.d.ts +1 -0
- package/dist/types/types/dashboard-renderer-types.d.ts.map +1 -1
- package/package.json +11 -11
|
@@ -6,12 +6,246 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6
6
|
context: DashboardRendererContextInternal;
|
|
7
7
|
height?: number;
|
|
8
8
|
queryReady: boolean;
|
|
9
|
-
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}
|
|
9
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
10
|
+
"edit-tile": (tile: {
|
|
11
|
+
query: {
|
|
12
|
+
time_range?: {
|
|
13
|
+
tz?: string | undefined;
|
|
14
|
+
type: "relative";
|
|
15
|
+
time_range: "15m" | "1h" | "6h" | "12h" | "24h" | "7d" | "current_week" | "previous_week" | "30d" | "current_month" | "previous_month";
|
|
16
|
+
} | {
|
|
17
|
+
tz?: string | undefined;
|
|
18
|
+
type: "absolute";
|
|
19
|
+
start: string;
|
|
20
|
+
end: string;
|
|
21
|
+
} | undefined;
|
|
22
|
+
metrics?: ("active_services" | "request_count" | "request_per_minute" | "response_latency_average" | "response_latency_p99" | "response_latency_p95" | "response_latency_p50" | "upstream_latency_p99" | "upstream_latency_p95" | "upstream_latency_p50" | "upstream_latency_average" | "kong_latency_p99" | "kong_latency_p95" | "kong_latency_p50" | "kong_latency_average" | "response_size_p99" | "response_size_p95" | "response_size_p50" | "request_size_p99" | "request_size_p95" | "request_size_p50" | "request_size_average" | "response_size_average")[] | undefined;
|
|
23
|
+
dimensions?: ("api_product" | "api_product_version" | "control_plane" | "control_plane_group" | "data_plane_node" | "gateway_service" | "route" | "status_code" | "status_code_grouped" | "time" | "application" | "consumer" | "iso_code")[] | undefined;
|
|
24
|
+
filters?: {
|
|
25
|
+
type: "in" | "not_in" | "selector";
|
|
26
|
+
values: (string | number | null)[];
|
|
27
|
+
dimension: "api_product" | "api_product_version" | "control_plane" | "control_plane_group" | "data_plane_node" | "gateway_service" | "route" | "status_code" | "status_code_grouped" | "application" | "consumer" | "iso_code";
|
|
28
|
+
}[] | undefined;
|
|
29
|
+
granularity?: "secondly" | "minutely" | "hourly" | "daily" | "weekly" | "trend" | undefined;
|
|
30
|
+
limit?: number | undefined;
|
|
31
|
+
meta?: {
|
|
32
|
+
[x: string]: unknown;
|
|
33
|
+
} | undefined;
|
|
34
|
+
datasource: "advanced";
|
|
35
|
+
} | {
|
|
36
|
+
time_range?: {
|
|
37
|
+
tz?: string | undefined;
|
|
38
|
+
type: "relative";
|
|
39
|
+
time_range: "15m" | "1h" | "6h" | "12h" | "24h" | "7d" | "current_week" | "previous_week" | "30d" | "current_month" | "previous_month";
|
|
40
|
+
} | {
|
|
41
|
+
tz?: string | undefined;
|
|
42
|
+
type: "absolute";
|
|
43
|
+
start: string;
|
|
44
|
+
end: string;
|
|
45
|
+
} | undefined;
|
|
46
|
+
metrics?: ("active_services" | "request_count" | "request_per_minute" | "response_latency_average")[] | undefined;
|
|
47
|
+
dimensions?: ("api_product" | "api_product_version" | "control_plane" | "control_plane_group" | "data_plane_node" | "gateway_service" | "route" | "status_code" | "status_code_grouped" | "time")[] | undefined;
|
|
48
|
+
filters?: {
|
|
49
|
+
type: "in" | "not_in" | "selector";
|
|
50
|
+
values: (string | number | null)[];
|
|
51
|
+
dimension: "api_product" | "api_product_version" | "control_plane" | "control_plane_group" | "data_plane_node" | "gateway_service" | "route" | "status_code" | "status_code_grouped";
|
|
52
|
+
}[] | undefined;
|
|
53
|
+
granularity?: "secondly" | "minutely" | "hourly" | "daily" | "weekly" | "trend" | undefined;
|
|
54
|
+
limit?: number | undefined;
|
|
55
|
+
meta?: {
|
|
56
|
+
[x: string]: unknown;
|
|
57
|
+
} | undefined;
|
|
58
|
+
datasource: "basic";
|
|
59
|
+
} | {
|
|
60
|
+
time_range?: {
|
|
61
|
+
tz?: string | undefined;
|
|
62
|
+
type: "relative";
|
|
63
|
+
time_range: "15m" | "1h" | "6h" | "12h" | "24h" | "7d" | "current_week" | "previous_week" | "30d" | "current_month" | "previous_month";
|
|
64
|
+
} | {
|
|
65
|
+
tz?: string | undefined;
|
|
66
|
+
type: "absolute";
|
|
67
|
+
start: string;
|
|
68
|
+
end: string;
|
|
69
|
+
} | undefined;
|
|
70
|
+
metrics?: ("total_tokens" | "prompt_tokens" | "completion_tokens" | "ai_request_count" | "cost" | "llm_cache_embeddings_latency_average" | "llm_cache_fetch_latency_average" | "llm_latency_average" | "llm_embeddings_tokens" | "llm_embeddings_cost")[] | undefined;
|
|
71
|
+
dimensions?: ("control_plane" | "control_plane_group" | "gateway_service" | "route" | "time" | "application" | "consumer" | "ai_provider" | "ai_response_model" | "ai_request_model" | "llm_cache_status" | "llm_embeddings_provider" | "llm_embeddings_model")[] | undefined;
|
|
72
|
+
filters?: {
|
|
73
|
+
type: "in" | "not_in" | "selector";
|
|
74
|
+
values: (string | number | null)[];
|
|
75
|
+
dimension: "control_plane" | "control_plane_group" | "gateway_service" | "route" | "application" | "consumer" | "ai_provider" | "ai_response_model" | "ai_request_model" | "llm_cache_status" | "llm_embeddings_provider" | "llm_embeddings_model";
|
|
76
|
+
}[] | undefined;
|
|
77
|
+
granularity?: "secondly" | "minutely" | "hourly" | "daily" | "weekly" | "trend" | undefined;
|
|
78
|
+
limit?: number | undefined;
|
|
79
|
+
meta?: {
|
|
80
|
+
[x: string]: unknown;
|
|
81
|
+
} | undefined;
|
|
82
|
+
datasource: "ai";
|
|
83
|
+
};
|
|
84
|
+
chart: {
|
|
85
|
+
chartDatasetColors?: {
|
|
86
|
+
[x: string]: string;
|
|
87
|
+
} | string[] | undefined;
|
|
88
|
+
syntheticsDataKey?: string | undefined;
|
|
89
|
+
chartTitle?: string | undefined;
|
|
90
|
+
allowCsvExport?: boolean | undefined;
|
|
91
|
+
stacked?: boolean | undefined;
|
|
92
|
+
type: "horizontal_bar" | "vertical_bar";
|
|
93
|
+
} | {
|
|
94
|
+
syntheticsDataKey?: string | undefined;
|
|
95
|
+
chartTitle?: string | undefined;
|
|
96
|
+
metricDisplay?: import("@kong-ui-public/analytics-chart").ChartMetricDisplay | undefined;
|
|
97
|
+
reverseDataset?: boolean | undefined;
|
|
98
|
+
numerator?: number | undefined;
|
|
99
|
+
type: "gauge";
|
|
100
|
+
} | {
|
|
101
|
+
chartDatasetColors?: {
|
|
102
|
+
[x: string]: string;
|
|
103
|
+
} | string[] | undefined;
|
|
104
|
+
syntheticsDataKey?: string | undefined;
|
|
105
|
+
chartTitle?: string | undefined;
|
|
106
|
+
allowCsvExport?: boolean | undefined;
|
|
107
|
+
stacked?: boolean | undefined;
|
|
108
|
+
type: "timeseries_line";
|
|
109
|
+
} | {
|
|
110
|
+
description?: string | undefined;
|
|
111
|
+
chartTitle?: string | undefined;
|
|
112
|
+
longCardTitles?: boolean | undefined;
|
|
113
|
+
percentileLatency?: boolean | undefined;
|
|
114
|
+
type: "golden_signals";
|
|
115
|
+
} | {
|
|
116
|
+
description?: string | undefined;
|
|
117
|
+
syntheticsDataKey?: string | undefined;
|
|
118
|
+
chartTitle?: string | undefined;
|
|
119
|
+
entityLink?: string | undefined;
|
|
120
|
+
type: "top_n";
|
|
121
|
+
} | {
|
|
122
|
+
type: "slottable";
|
|
123
|
+
id: string;
|
|
124
|
+
};
|
|
125
|
+
}) => any;
|
|
126
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
10
127
|
definition: TileDefinition;
|
|
11
128
|
context: DashboardRendererContextInternal;
|
|
12
129
|
height?: number;
|
|
13
130
|
queryReady: boolean;
|
|
14
|
-
}> & Readonly<{
|
|
131
|
+
}> & Readonly<{
|
|
132
|
+
"onEdit-tile"?: ((tile: {
|
|
133
|
+
query: {
|
|
134
|
+
time_range?: {
|
|
135
|
+
tz?: string | undefined;
|
|
136
|
+
type: "relative";
|
|
137
|
+
time_range: "15m" | "1h" | "6h" | "12h" | "24h" | "7d" | "current_week" | "previous_week" | "30d" | "current_month" | "previous_month";
|
|
138
|
+
} | {
|
|
139
|
+
tz?: string | undefined;
|
|
140
|
+
type: "absolute";
|
|
141
|
+
start: string;
|
|
142
|
+
end: string;
|
|
143
|
+
} | undefined;
|
|
144
|
+
metrics?: ("active_services" | "request_count" | "request_per_minute" | "response_latency_average" | "response_latency_p99" | "response_latency_p95" | "response_latency_p50" | "upstream_latency_p99" | "upstream_latency_p95" | "upstream_latency_p50" | "upstream_latency_average" | "kong_latency_p99" | "kong_latency_p95" | "kong_latency_p50" | "kong_latency_average" | "response_size_p99" | "response_size_p95" | "response_size_p50" | "request_size_p99" | "request_size_p95" | "request_size_p50" | "request_size_average" | "response_size_average")[] | undefined;
|
|
145
|
+
dimensions?: ("api_product" | "api_product_version" | "control_plane" | "control_plane_group" | "data_plane_node" | "gateway_service" | "route" | "status_code" | "status_code_grouped" | "time" | "application" | "consumer" | "iso_code")[] | undefined;
|
|
146
|
+
filters?: {
|
|
147
|
+
type: "in" | "not_in" | "selector";
|
|
148
|
+
values: (string | number | null)[];
|
|
149
|
+
dimension: "api_product" | "api_product_version" | "control_plane" | "control_plane_group" | "data_plane_node" | "gateway_service" | "route" | "status_code" | "status_code_grouped" | "application" | "consumer" | "iso_code";
|
|
150
|
+
}[] | undefined;
|
|
151
|
+
granularity?: "secondly" | "minutely" | "hourly" | "daily" | "weekly" | "trend" | undefined;
|
|
152
|
+
limit?: number | undefined;
|
|
153
|
+
meta?: {
|
|
154
|
+
[x: string]: unknown;
|
|
155
|
+
} | undefined;
|
|
156
|
+
datasource: "advanced";
|
|
157
|
+
} | {
|
|
158
|
+
time_range?: {
|
|
159
|
+
tz?: string | undefined;
|
|
160
|
+
type: "relative";
|
|
161
|
+
time_range: "15m" | "1h" | "6h" | "12h" | "24h" | "7d" | "current_week" | "previous_week" | "30d" | "current_month" | "previous_month";
|
|
162
|
+
} | {
|
|
163
|
+
tz?: string | undefined;
|
|
164
|
+
type: "absolute";
|
|
165
|
+
start: string;
|
|
166
|
+
end: string;
|
|
167
|
+
} | undefined;
|
|
168
|
+
metrics?: ("active_services" | "request_count" | "request_per_minute" | "response_latency_average")[] | undefined;
|
|
169
|
+
dimensions?: ("api_product" | "api_product_version" | "control_plane" | "control_plane_group" | "data_plane_node" | "gateway_service" | "route" | "status_code" | "status_code_grouped" | "time")[] | undefined;
|
|
170
|
+
filters?: {
|
|
171
|
+
type: "in" | "not_in" | "selector";
|
|
172
|
+
values: (string | number | null)[];
|
|
173
|
+
dimension: "api_product" | "api_product_version" | "control_plane" | "control_plane_group" | "data_plane_node" | "gateway_service" | "route" | "status_code" | "status_code_grouped";
|
|
174
|
+
}[] | undefined;
|
|
175
|
+
granularity?: "secondly" | "minutely" | "hourly" | "daily" | "weekly" | "trend" | undefined;
|
|
176
|
+
limit?: number | undefined;
|
|
177
|
+
meta?: {
|
|
178
|
+
[x: string]: unknown;
|
|
179
|
+
} | undefined;
|
|
180
|
+
datasource: "basic";
|
|
181
|
+
} | {
|
|
182
|
+
time_range?: {
|
|
183
|
+
tz?: string | undefined;
|
|
184
|
+
type: "relative";
|
|
185
|
+
time_range: "15m" | "1h" | "6h" | "12h" | "24h" | "7d" | "current_week" | "previous_week" | "30d" | "current_month" | "previous_month";
|
|
186
|
+
} | {
|
|
187
|
+
tz?: string | undefined;
|
|
188
|
+
type: "absolute";
|
|
189
|
+
start: string;
|
|
190
|
+
end: string;
|
|
191
|
+
} | undefined;
|
|
192
|
+
metrics?: ("total_tokens" | "prompt_tokens" | "completion_tokens" | "ai_request_count" | "cost" | "llm_cache_embeddings_latency_average" | "llm_cache_fetch_latency_average" | "llm_latency_average" | "llm_embeddings_tokens" | "llm_embeddings_cost")[] | undefined;
|
|
193
|
+
dimensions?: ("control_plane" | "control_plane_group" | "gateway_service" | "route" | "time" | "application" | "consumer" | "ai_provider" | "ai_response_model" | "ai_request_model" | "llm_cache_status" | "llm_embeddings_provider" | "llm_embeddings_model")[] | undefined;
|
|
194
|
+
filters?: {
|
|
195
|
+
type: "in" | "not_in" | "selector";
|
|
196
|
+
values: (string | number | null)[];
|
|
197
|
+
dimension: "control_plane" | "control_plane_group" | "gateway_service" | "route" | "application" | "consumer" | "ai_provider" | "ai_response_model" | "ai_request_model" | "llm_cache_status" | "llm_embeddings_provider" | "llm_embeddings_model";
|
|
198
|
+
}[] | undefined;
|
|
199
|
+
granularity?: "secondly" | "minutely" | "hourly" | "daily" | "weekly" | "trend" | undefined;
|
|
200
|
+
limit?: number | undefined;
|
|
201
|
+
meta?: {
|
|
202
|
+
[x: string]: unknown;
|
|
203
|
+
} | undefined;
|
|
204
|
+
datasource: "ai";
|
|
205
|
+
};
|
|
206
|
+
chart: {
|
|
207
|
+
chartDatasetColors?: {
|
|
208
|
+
[x: string]: string;
|
|
209
|
+
} | string[] | undefined;
|
|
210
|
+
syntheticsDataKey?: string | undefined;
|
|
211
|
+
chartTitle?: string | undefined;
|
|
212
|
+
allowCsvExport?: boolean | undefined;
|
|
213
|
+
stacked?: boolean | undefined;
|
|
214
|
+
type: "horizontal_bar" | "vertical_bar";
|
|
215
|
+
} | {
|
|
216
|
+
syntheticsDataKey?: string | undefined;
|
|
217
|
+
chartTitle?: string | undefined;
|
|
218
|
+
metricDisplay?: import("@kong-ui-public/analytics-chart").ChartMetricDisplay | undefined;
|
|
219
|
+
reverseDataset?: boolean | undefined;
|
|
220
|
+
numerator?: number | undefined;
|
|
221
|
+
type: "gauge";
|
|
222
|
+
} | {
|
|
223
|
+
chartDatasetColors?: {
|
|
224
|
+
[x: string]: string;
|
|
225
|
+
} | string[] | undefined;
|
|
226
|
+
syntheticsDataKey?: string | undefined;
|
|
227
|
+
chartTitle?: string | undefined;
|
|
228
|
+
allowCsvExport?: boolean | undefined;
|
|
229
|
+
stacked?: boolean | undefined;
|
|
230
|
+
type: "timeseries_line";
|
|
231
|
+
} | {
|
|
232
|
+
description?: string | undefined;
|
|
233
|
+
chartTitle?: string | undefined;
|
|
234
|
+
longCardTitles?: boolean | undefined;
|
|
235
|
+
percentileLatency?: boolean | undefined;
|
|
236
|
+
type: "golden_signals";
|
|
237
|
+
} | {
|
|
238
|
+
description?: string | undefined;
|
|
239
|
+
syntheticsDataKey?: string | undefined;
|
|
240
|
+
chartTitle?: string | undefined;
|
|
241
|
+
entityLink?: string | undefined;
|
|
242
|
+
type: "top_n";
|
|
243
|
+
} | {
|
|
244
|
+
type: "slottable";
|
|
245
|
+
id: string;
|
|
246
|
+
};
|
|
247
|
+
}) => any) | undefined;
|
|
248
|
+
}>, {
|
|
15
249
|
height: number;
|
|
16
250
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
251
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DashboardTile.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DashboardTile.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DashboardTile.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DashboardTile.vue"],"names":[],"mappings":"AA+EA,OAAO,KAAK,EAAE,gCAAgC,EAAqB,cAAc,EAAE,MAAM,UAAU,CAAA;AAKnG,OAAO,gDAAgD,CAAA;AACvD,OAAO,0DAA0D,CAAA;;gBAcnD,cAAc;aACjB,gCAAgC;aAChC,MAAM;gBACH,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAHP,cAAc;aACjB,gCAAgC;aAChC,MAAM;gBACH,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YADV,MAAM;;AAmIjB,wBAUG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GoldenSignalsRenderer.vue.d.ts","sourceRoot":"","sources":["../../../src/components/GoldenSignalsRenderer.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"GoldenSignalsRenderer.vue.d.ts","sourceRoot":"","sources":["../../../src/components/GoldenSignalsRenderer.vue"],"names":[],"mappings":"AA2FA,OAAO,KAAK,EAAqB,aAAa,EAAE,MAAM,UAAU,CAAA;;;;;;;;;;;;;;AAmIhE,wBAMG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TimeseriesChartRenderer.vue.d.ts","sourceRoot":"","sources":["../../../src/components/TimeseriesChartRenderer.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TimeseriesChartRenderer.vue.d.ts","sourceRoot":"","sources":["../../../src/components/TimeseriesChartRenderer.vue"],"names":[],"mappings":"AAoBA,OAAO,KAAK,EAA0B,aAAa,EAAE,MAAM,UAAU,CAAA;;;;;;;;;;;;;;;;;;;;AA4DrE,wBAMG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard-renderer-types.d.ts","sourceRoot":"","sources":["../../../src/types/dashboard-renderer-types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;AAC/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAA;AAEpE,OAAO,KAAK,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,qCAAqC,CAAA;AAgBlF,MAAM,WAAW,wBAAwB;IACvC,OAAO,EAAE,UAAU,EAAE,CAAA;IACrB,QAAQ,CAAC,EAAE,WAAW,CAAA;IACtB,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,eAAe,CAAC,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"dashboard-renderer-types.d.ts","sourceRoot":"","sources":["../../../src/types/dashboard-renderer-types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong-ui-public/dashboard-renderer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.27.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/dashboard-renderer.umd.js",
|
|
6
6
|
"module": "./dist/dashboard-renderer.es.js",
|
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@kong/design-tokens": "1.17.2",
|
|
25
|
-
"@kong/kongponents": "9.14.
|
|
25
|
+
"@kong/kongponents": "9.14.8",
|
|
26
26
|
"json-schema-to-ts": "^3.1.1",
|
|
27
27
|
"pinia": ">= 2.1.7 < 3",
|
|
28
28
|
"swrv": "^1.0.4",
|
|
29
29
|
"vue": "^3.5.12",
|
|
30
|
-
"@kong-ui-public/analytics-chart": "^5.
|
|
30
|
+
"@kong-ui-public/analytics-chart": "^5.3.0",
|
|
31
31
|
"@kong-ui-public/analytics-config-store": "^0.8.19",
|
|
32
|
-
"@kong-ui-public/i18n": "^2.2.7",
|
|
33
|
-
"@kong-ui-public/analytics-metric-provider": "^8.4.48",
|
|
34
32
|
"@kong-ui-public/analytics-utilities": "^5.2.0",
|
|
35
|
-
"@kong-ui-public/
|
|
33
|
+
"@kong-ui-public/i18n": "^2.2.7",
|
|
34
|
+
"@kong-ui-public/sandbox-layout": "^2.1.52",
|
|
35
|
+
"@kong-ui-public/analytics-metric-provider": "^8.4.49"
|
|
36
36
|
},
|
|
37
37
|
"repository": {
|
|
38
38
|
"type": "git",
|
|
@@ -52,19 +52,19 @@
|
|
|
52
52
|
"errorLimit": "512KB"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@kong/kongponents": "^9.14.
|
|
55
|
+
"@kong/kongponents": "^9.14.8",
|
|
56
56
|
"swrv": "^1.0.4",
|
|
57
57
|
"vue": ">= 3.3.13 < 4",
|
|
58
|
-
"@kong-ui-public/analytics-chart": "^5.
|
|
58
|
+
"@kong-ui-public/analytics-chart": "^5.3.0",
|
|
59
59
|
"@kong-ui-public/analytics-config-store": "^0.8.19",
|
|
60
|
-
"@kong-ui-public/analytics-metric-provider": "^8.4.
|
|
60
|
+
"@kong-ui-public/analytics-metric-provider": "^8.4.49",
|
|
61
61
|
"@kong-ui-public/analytics-utilities": "^5.2.0",
|
|
62
62
|
"@kong-ui-public/i18n": "^2.2.7"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"ajv": "^8.17.1",
|
|
66
|
-
"@kong-ui-public/
|
|
67
|
-
"@kong-ui-public/
|
|
66
|
+
"@kong-ui-public/core": "^1.10.5",
|
|
67
|
+
"@kong-ui-public/entities-shared": "^3.10.3"
|
|
68
68
|
},
|
|
69
69
|
"scripts": {
|
|
70
70
|
"dev": "cross-env USE_SANDBOX=true vite",
|