@perses-dev/clickhouse-plugin 0.5.0 → 0.5.1
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/{ClickHouse.dccd3adc.js → ClickHouse.2fcd9604.js} +3 -3
- package/__mf/js/async/{1728.c2466af2.js → 1728.d37983a1.js} +1 -1
- package/__mf/js/async/208.49efb2c2.js +4 -0
- package/__mf/js/async/54.44a0f38e.js +22 -0
- package/__mf/js/async/978.ea0a0872.js +7 -0
- package/__mf/js/async/{__federation_expose_ClickHouseDatasource.0bdc8df0.js → __federation_expose_ClickHouseDatasource.cf1e9c78.js} +2 -2
- package/__mf/js/async/{__federation_expose_ClickHouseLogQuery.1e3e609a.js → __federation_expose_ClickHouseLogQuery.54a525e9.js} +2 -2
- package/__mf/js/async/{__federation_expose_ClickHouseTimeSeriesQuery.e60dd445.js → __federation_expose_ClickHouseTimeSeriesQuery.ca467582.js} +2 -2
- package/__mf/js/{main.eadf8672.js → main.06276eb7.js} +3 -3
- package/lib/queries/click-house-log-query/ClickHouseLogQueryEditor.js.map +1 -1
- package/lib/queries/click-house-time-series-query/ClickHouseQueryEditor.js.map +1 -1
- package/mf-manifest.json +19 -19
- package/mf-stats.json +19 -19
- package/package.json +6 -6
- package/__mf/js/async/54.0abd57b9.js +0 -22
- package/__mf/js/async/6796.c1c2e96e.js +0 -7
- package/__mf/js/async/9010.7167d3a9.js +0 -2
- /package/__mf/js/async/{9010.7167d3a9.js.LICENSE.txt → 208.49efb2c2.js.LICENSE.txt} +0 -0
- /package/__mf/js/async/{54.0abd57b9.js.LICENSE.txt → 54.44a0f38e.js.LICENSE.txt} +0 -0
- /package/__mf/js/async/{6796.c1c2e96e.js.LICENSE.txt → 978.ea0a0872.js.LICENSE.txt} +0 -0
- /package/__mf/js/async/{__federation_expose_ClickHouseDatasource.0bdc8df0.js.LICENSE.txt → __federation_expose_ClickHouseDatasource.cf1e9c78.js.LICENSE.txt} +0 -0
- /package/__mf/js/async/{__federation_expose_ClickHouseLogQuery.1e3e609a.js.LICENSE.txt → __federation_expose_ClickHouseLogQuery.54a525e9.js.LICENSE.txt} +0 -0
- /package/__mf/js/async/{__federation_expose_ClickHouseTimeSeriesQuery.e60dd445.js.LICENSE.txt → __federation_expose_ClickHouseTimeSeriesQuery.ca467582.js.LICENSE.txt} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/queries/click-house-time-series-query/ClickHouseQueryEditor.tsx"],"sourcesContent":["// Copyright The Perses Authors\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\nimport {\n DatasourceSelect,\n DatasourceSelectProps,\n isVariableDatasource,\n OptionsEditorProps,\n} from '@perses-dev/plugin-system';\nimport { ReactElement, useCallback } from 'react';\nimport { produce } from 'immer';\nimport { Stack } from '@mui/material';\nimport { DATASOURCE_KIND, DEFAULT_DATASOURCE } from '../constants';\nimport { ClickQLEditor } from '../../components';\nimport { queryExample } from '../../components/constants';\nimport { useQueryState } from '../query-editor-model';\nimport { ClickHouseTimeSeriesQuerySpec } from './click-house-query-types';\n\ntype ClickHouseTimeSeriesQueryEditorProps = OptionsEditorProps<ClickHouseTimeSeriesQuerySpec>;\n\nexport function ClickHouseTimeSeriesQueryEditor(props: ClickHouseTimeSeriesQueryEditorProps): ReactElement {\n const { onChange, value } = props;\n const { datasource } = value;\n const selectedDatasource = datasource ?? DEFAULT_DATASOURCE;\n const { query, handleQueryChange, handleQueryBlur } = useQueryState(props);\n\n const handleDatasourceChange: DatasourceSelectProps['onChange'] = (newDatasourceSelection) => {\n if (!isVariableDatasource(newDatasourceSelection) && newDatasourceSelection.kind === DATASOURCE_KIND) {\n onChange(\n produce(value, (draft) => {\n draft.datasource = newDatasourceSelection;\n })\n );\n return;\n }\n throw new Error('Got unexpected non ClickHouse datasource selection');\n };\n\n // Immediate query execution on Enter or blur\n const handleQueryExecute = (query: string) => {\n onChange(\n produce(value, (draft) => {\n draft.query = query;\n })\n );\n };\n\n const handleClickHouseQueryChange = useCallback(\n (e: string) => {\n handleQueryChange(e);\n },\n [handleQueryChange]\n );\n\n const examplesStyle: React.CSSProperties = {\n fontSize: '11px',\n color: '#777',\n backgroundColor: '#f5f5f5',\n padding: '8px',\n borderRadius: '4px',\n fontFamily: 'Monaco, Menlo, \"Ubuntu Mono\", monospace',\n whiteSpace: 'pre-wrap',\n lineHeight: '1.3',\n };\n\n return (\n <Stack spacing={1.5}>\n <DatasourceSelect\n datasourcePluginKind={DATASOURCE_KIND}\n value={selectedDatasource}\n onChange={handleDatasourceChange}\n label=\"ClickHouse Datasource\"\n notched\n />\n <ClickQLEditor\n value={query}\n onChange={handleClickHouseQueryChange}\n onBlur={handleQueryBlur}\n onKeyDown={(event) => {\n if (event.key === 'Enter' && (event.ctrlKey || event.metaKey)) {\n event.preventDefault();\n handleQueryExecute(query);\n }\n }}\n placeholder=\"Enter ClickHouse SQL query\"\n />\n\n <details>\n <summary style={{ cursor: 'pointer', fontSize: '12px', color: '#666', marginBottom: '8px' }}>\n Query Examples\n </summary>\n <div style={examplesStyle}>{queryExample}</div>\n </details>\n </Stack>\n );\n}\n"],"names":["DatasourceSelect","isVariableDatasource","useCallback","produce","Stack","DATASOURCE_KIND","DEFAULT_DATASOURCE","ClickQLEditor","queryExample","useQueryState","ClickHouseTimeSeriesQueryEditor","props","onChange","value","datasource","selectedDatasource","query","handleQueryChange","handleQueryBlur","handleDatasourceChange","newDatasourceSelection","kind","draft","Error","handleQueryExecute","handleClickHouseQueryChange","e","examplesStyle","fontSize","color","backgroundColor","padding","borderRadius","fontFamily","whiteSpace","lineHeight","spacing","datasourcePluginKind","label","notched","onBlur","onKeyDown","event","key","ctrlKey","metaKey","preventDefault","placeholder","details","summary","style","cursor","marginBottom","div"],"mappings":";AAAA,+BAA+B;AAC/B,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,6CAA6C;AAC7C,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AAEjC,SACEA,gBAAgB,EAEhBC,oBAAoB,QAEf,4BAA4B;AACnC,SAAuBC,WAAW,QAAQ,QAAQ;AAClD,SAASC,OAAO,QAAQ,QAAQ;AAChC,SAASC,KAAK,QAAQ,gBAAgB;AACtC,SAASC,eAAe,EAAEC,kBAAkB,QAAQ,eAAe;AACnE,SAASC,aAAa,QAAQ,mBAAmB;AACjD,SAASC,YAAY,QAAQ,6BAA6B;AAC1D,SAASC,aAAa,QAAQ,wBAAwB;AAKtD,OAAO,SAASC,gCAAgCC,KAA2C;IACzF,MAAM,EAAEC,QAAQ,EAAEC,KAAK,EAAE,GAAGF;IAC5B,MAAM,EAAEG,UAAU,EAAE,GAAGD;IACvB,MAAME,qBAAqBD,cAAcR;IACzC,MAAM,EAAEU,KAAK,EAAEC,iBAAiB,EAAEC,eAAe,EAAE,GAAGT,cAAcE;IAEpE,MAAMQ,yBAA4D,CAACC;QACjE,IAAI,CAACnB,qBAAqBmB,2BAA2BA,uBAAuBC,IAAI,KAAKhB,iBAAiB;YACpGO,SACET,QAAQU,OAAO,CAACS;gBACdA,MAAMR,UAAU,GAAGM;YACrB;YAEF;QACF;QACA,MAAM,IAAIG,MAAM;IAClB;IAEA,6CAA6C;IAC7C,MAAMC,qBAAqB,CAACR;QAC1BJ,SACET,QAAQU,OAAO,CAACS;YACdA,MAAMN,KAAK,GAAGA;QAChB;IAEJ;IAEA,MAAMS,8BAA8BvB,YAClC,CAACwB;QACCT,kBAAkBS;IACpB,GACA;QAACT;KAAkB;IAGrB,MAAMU,gBAAqC;QACzCC,UAAU;QACVC,OAAO;QACPC,iBAAiB;QACjBC,SAAS;QACTC,cAAc;QACdC,YAAY;QACZC,YAAY;QACZC,YAAY;IACd;IAEA,qBACE,MAAC/B;QAAMgC,SAAS;;0BACd,KAACpC;gBACCqC,sBAAsBhC;gBACtBQ,OAAOE;gBACPH,UAAUO;gBACVmB,OAAM;gBACNC,OAAO;;0BAET,KAAChC;gBACCM,OAAOG;gBACPJ,UAAUa;gBACVe,QAAQtB;gBACRuB,WAAW,CAACC;oBACV,IAAIA,MAAMC,GAAG,KAAK,WAAYD,CAAAA,MAAME,OAAO,IAAIF,MAAMG,OAAO,AAAD,GAAI;wBAC7DH,MAAMI,cAAc;wBACpBtB,mBAAmBR;oBACrB;gBACF;gBACA+B,aAAY;;0BAGd,MAACC;;kCACC,KAACC;wBAAQC,OAAO;4BAAEC,QAAQ;4BAAWvB,UAAU;4BAAQC,OAAO;4BAAQuB,cAAc;wBAAM;kCAAG;;kCAG7F,KAACC;wBAAIH,OAAOvB;kCAAgBnB;;;;;;AAIpC"}
|
|
1
|
+
{"version":3,"sources":["../../../../src/queries/click-house-time-series-query/ClickHouseQueryEditor.tsx"],"sourcesContent":["// Copyright The Perses Authors\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\nimport {\n DatasourceSelect,\n DatasourceSelectProps,\n isVariableDatasource,\n OptionsEditorProps,\n} from '@perses-dev/plugin-system';\nimport { ReactElement, useCallback } from 'react';\nimport { produce } from 'immer';\nimport { Stack } from '@mui/material';\nimport { DATASOURCE_KIND, DEFAULT_DATASOURCE } from '../constants';\nimport { ClickQLEditor } from '../../components';\nimport { queryExample } from '../../components/constants';\nimport { useQueryState } from '../query-editor-model';\nimport { ClickHouseTimeSeriesQuerySpec } from './click-house-query-types';\n\ntype ClickHouseTimeSeriesQueryEditorProps = OptionsEditorProps<ClickHouseTimeSeriesQuerySpec>;\n\nexport function ClickHouseTimeSeriesQueryEditor(props: ClickHouseTimeSeriesQueryEditorProps): ReactElement {\n const { onChange, value } = props;\n const { datasource } = value;\n const selectedDatasource = datasource ?? DEFAULT_DATASOURCE;\n const { query, handleQueryChange, handleQueryBlur } = useQueryState(props);\n\n const handleDatasourceChange: DatasourceSelectProps['onChange'] = (newDatasourceSelection) => {\n if (!isVariableDatasource(newDatasourceSelection) && newDatasourceSelection.kind === DATASOURCE_KIND) {\n onChange(\n produce(value, (draft) => {\n draft.datasource = newDatasourceSelection;\n })\n );\n return;\n }\n throw new Error('Got unexpected non ClickHouse datasource selection');\n };\n\n // Immediate query execution on Enter or blur\n const handleQueryExecute = (query: string): void => {\n onChange(\n produce(value, (draft) => {\n draft.query = query;\n })\n );\n };\n\n const handleClickHouseQueryChange = useCallback(\n (e: string) => {\n handleQueryChange(e);\n },\n [handleQueryChange]\n );\n\n const examplesStyle: React.CSSProperties = {\n fontSize: '11px',\n color: '#777',\n backgroundColor: '#f5f5f5',\n padding: '8px',\n borderRadius: '4px',\n fontFamily: 'Monaco, Menlo, \"Ubuntu Mono\", monospace',\n whiteSpace: 'pre-wrap',\n lineHeight: '1.3',\n };\n\n return (\n <Stack spacing={1.5}>\n <DatasourceSelect\n datasourcePluginKind={DATASOURCE_KIND}\n value={selectedDatasource}\n onChange={handleDatasourceChange}\n label=\"ClickHouse Datasource\"\n notched\n />\n <ClickQLEditor\n value={query}\n onChange={handleClickHouseQueryChange}\n onBlur={handleQueryBlur}\n onKeyDown={(event) => {\n if (event.key === 'Enter' && (event.ctrlKey || event.metaKey)) {\n event.preventDefault();\n handleQueryExecute(query);\n }\n }}\n placeholder=\"Enter ClickHouse SQL query\"\n />\n\n <details>\n <summary style={{ cursor: 'pointer', fontSize: '12px', color: '#666', marginBottom: '8px' }}>\n Query Examples\n </summary>\n <div style={examplesStyle}>{queryExample}</div>\n </details>\n </Stack>\n );\n}\n"],"names":["DatasourceSelect","isVariableDatasource","useCallback","produce","Stack","DATASOURCE_KIND","DEFAULT_DATASOURCE","ClickQLEditor","queryExample","useQueryState","ClickHouseTimeSeriesQueryEditor","props","onChange","value","datasource","selectedDatasource","query","handleQueryChange","handleQueryBlur","handleDatasourceChange","newDatasourceSelection","kind","draft","Error","handleQueryExecute","handleClickHouseQueryChange","e","examplesStyle","fontSize","color","backgroundColor","padding","borderRadius","fontFamily","whiteSpace","lineHeight","spacing","datasourcePluginKind","label","notched","onBlur","onKeyDown","event","key","ctrlKey","metaKey","preventDefault","placeholder","details","summary","style","cursor","marginBottom","div"],"mappings":";AAAA,+BAA+B;AAC/B,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,6CAA6C;AAC7C,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AAEjC,SACEA,gBAAgB,EAEhBC,oBAAoB,QAEf,4BAA4B;AACnC,SAAuBC,WAAW,QAAQ,QAAQ;AAClD,SAASC,OAAO,QAAQ,QAAQ;AAChC,SAASC,KAAK,QAAQ,gBAAgB;AACtC,SAASC,eAAe,EAAEC,kBAAkB,QAAQ,eAAe;AACnE,SAASC,aAAa,QAAQ,mBAAmB;AACjD,SAASC,YAAY,QAAQ,6BAA6B;AAC1D,SAASC,aAAa,QAAQ,wBAAwB;AAKtD,OAAO,SAASC,gCAAgCC,KAA2C;IACzF,MAAM,EAAEC,QAAQ,EAAEC,KAAK,EAAE,GAAGF;IAC5B,MAAM,EAAEG,UAAU,EAAE,GAAGD;IACvB,MAAME,qBAAqBD,cAAcR;IACzC,MAAM,EAAEU,KAAK,EAAEC,iBAAiB,EAAEC,eAAe,EAAE,GAAGT,cAAcE;IAEpE,MAAMQ,yBAA4D,CAACC;QACjE,IAAI,CAACnB,qBAAqBmB,2BAA2BA,uBAAuBC,IAAI,KAAKhB,iBAAiB;YACpGO,SACET,QAAQU,OAAO,CAACS;gBACdA,MAAMR,UAAU,GAAGM;YACrB;YAEF;QACF;QACA,MAAM,IAAIG,MAAM;IAClB;IAEA,6CAA6C;IAC7C,MAAMC,qBAAqB,CAACR;QAC1BJ,SACET,QAAQU,OAAO,CAACS;YACdA,MAAMN,KAAK,GAAGA;QAChB;IAEJ;IAEA,MAAMS,8BAA8BvB,YAClC,CAACwB;QACCT,kBAAkBS;IACpB,GACA;QAACT;KAAkB;IAGrB,MAAMU,gBAAqC;QACzCC,UAAU;QACVC,OAAO;QACPC,iBAAiB;QACjBC,SAAS;QACTC,cAAc;QACdC,YAAY;QACZC,YAAY;QACZC,YAAY;IACd;IAEA,qBACE,MAAC/B;QAAMgC,SAAS;;0BACd,KAACpC;gBACCqC,sBAAsBhC;gBACtBQ,OAAOE;gBACPH,UAAUO;gBACVmB,OAAM;gBACNC,OAAO;;0BAET,KAAChC;gBACCM,OAAOG;gBACPJ,UAAUa;gBACVe,QAAQtB;gBACRuB,WAAW,CAACC;oBACV,IAAIA,MAAMC,GAAG,KAAK,WAAYD,CAAAA,MAAME,OAAO,IAAIF,MAAMG,OAAO,AAAD,GAAI;wBAC7DH,MAAMI,cAAc;wBACpBtB,mBAAmBR;oBACrB;gBACF;gBACA+B,aAAY;;0BAGd,MAACC;;kCACC,KAACC;wBAAQC,OAAO;4BAAEC,QAAQ;4BAAWvB,UAAU;4BAAQC,OAAO;4BAAQuB,cAAc;wBAAM;kCAAG;;kCAG7F,KAACC;wBAAIH,OAAOvB;kCAAgBnB;;;;;;AAIpC"}
|
package/mf-manifest.json
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
"name": "ClickHouse",
|
|
6
6
|
"type": "app",
|
|
7
7
|
"buildInfo": {
|
|
8
|
-
"buildVersion": "0.5.
|
|
8
|
+
"buildVersion": "0.5.1",
|
|
9
9
|
"buildName": "@perses-dev/clickhouse-plugin"
|
|
10
10
|
},
|
|
11
11
|
"remoteEntry": {
|
|
12
|
-
"name": "__mf/js/ClickHouse.
|
|
12
|
+
"name": "__mf/js/ClickHouse.2fcd9604.js",
|
|
13
13
|
"path": "",
|
|
14
14
|
"type": "global"
|
|
15
15
|
},
|
|
@@ -87,14 +87,14 @@
|
|
|
87
87
|
{
|
|
88
88
|
"id": "ClickHouse:@perses-dev/components",
|
|
89
89
|
"name": "@perses-dev/components",
|
|
90
|
-
"version": "0.53.
|
|
90
|
+
"version": "0.53.1",
|
|
91
91
|
"singleton": true,
|
|
92
|
-
"requiredVersion": "^0.53.
|
|
92
|
+
"requiredVersion": "^0.53.1",
|
|
93
93
|
"assets": {
|
|
94
94
|
"js": {
|
|
95
95
|
"async": [],
|
|
96
96
|
"sync": [
|
|
97
|
-
"__mf/js/async/
|
|
97
|
+
"__mf/js/async/978.ea0a0872.js"
|
|
98
98
|
]
|
|
99
99
|
},
|
|
100
100
|
"css": {
|
|
@@ -106,14 +106,14 @@
|
|
|
106
106
|
{
|
|
107
107
|
"id": "ClickHouse:@perses-dev/dashboards",
|
|
108
108
|
"name": "@perses-dev/dashboards",
|
|
109
|
-
"version": "0.53.
|
|
109
|
+
"version": "0.53.1",
|
|
110
110
|
"singleton": true,
|
|
111
|
-
"requiredVersion": "^0.53.
|
|
111
|
+
"requiredVersion": "^0.53.1",
|
|
112
112
|
"assets": {
|
|
113
113
|
"js": {
|
|
114
114
|
"async": [],
|
|
115
115
|
"sync": [
|
|
116
|
-
"__mf/js/async/54.
|
|
116
|
+
"__mf/js/async/54.44a0f38e.js"
|
|
117
117
|
]
|
|
118
118
|
},
|
|
119
119
|
"css": {
|
|
@@ -125,14 +125,14 @@
|
|
|
125
125
|
{
|
|
126
126
|
"id": "ClickHouse:@perses-dev/explore",
|
|
127
127
|
"name": "@perses-dev/explore",
|
|
128
|
-
"version": "0.53.
|
|
128
|
+
"version": "0.53.1",
|
|
129
129
|
"singleton": true,
|
|
130
|
-
"requiredVersion": "^0.53.
|
|
130
|
+
"requiredVersion": "^0.53.1",
|
|
131
131
|
"assets": {
|
|
132
132
|
"js": {
|
|
133
133
|
"async": [],
|
|
134
134
|
"sync": [
|
|
135
|
-
"__mf/js/async/1728.
|
|
135
|
+
"__mf/js/async/1728.d37983a1.js"
|
|
136
136
|
]
|
|
137
137
|
},
|
|
138
138
|
"css": {
|
|
@@ -144,14 +144,14 @@
|
|
|
144
144
|
{
|
|
145
145
|
"id": "ClickHouse:@perses-dev/plugin-system",
|
|
146
146
|
"name": "@perses-dev/plugin-system",
|
|
147
|
-
"version": "0.53.
|
|
147
|
+
"version": "0.53.1",
|
|
148
148
|
"singleton": true,
|
|
149
|
-
"requiredVersion": "^0.53.
|
|
149
|
+
"requiredVersion": "^0.53.1",
|
|
150
150
|
"assets": {
|
|
151
151
|
"js": {
|
|
152
152
|
"async": [],
|
|
153
153
|
"sync": [
|
|
154
|
-
"__mf/js/async/
|
|
154
|
+
"__mf/js/async/208.49efb2c2.js"
|
|
155
155
|
]
|
|
156
156
|
},
|
|
157
157
|
"css": {
|
|
@@ -340,14 +340,14 @@
|
|
|
340
340
|
"assets": {
|
|
341
341
|
"js": {
|
|
342
342
|
"sync": [
|
|
343
|
-
"__mf/js/async/__federation_expose_ClickHouseDatasource.
|
|
343
|
+
"__mf/js/async/__federation_expose_ClickHouseDatasource.cf1e9c78.js"
|
|
344
344
|
],
|
|
345
345
|
"async": [
|
|
346
346
|
"__mf/js/async/1825.3b06cbc6.js",
|
|
347
347
|
"__mf/js/async/9754.9efd83f1.js",
|
|
348
348
|
"__mf/js/async/6045.424732f1.js",
|
|
349
|
-
"__mf/js/async/__federation_expose_ClickHouseTimeSeriesQuery.
|
|
350
|
-
"__mf/js/async/__federation_expose_ClickHouseLogQuery.
|
|
349
|
+
"__mf/js/async/__federation_expose_ClickHouseTimeSeriesQuery.ca467582.js",
|
|
350
|
+
"__mf/js/async/__federation_expose_ClickHouseLogQuery.54a525e9.js",
|
|
351
351
|
"__mf/js/async/9249.f40b0225.js",
|
|
352
352
|
"__mf/js/async/9836.4cd749fe.js",
|
|
353
353
|
"__mf/js/async/7576.d8b258ff.js",
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
"__mf/js/async/1825.3b06cbc6.js",
|
|
381
381
|
"__mf/js/async/9754.9efd83f1.js",
|
|
382
382
|
"__mf/js/async/6045.424732f1.js",
|
|
383
|
-
"__mf/js/async/__federation_expose_ClickHouseTimeSeriesQuery.
|
|
383
|
+
"__mf/js/async/__federation_expose_ClickHouseTimeSeriesQuery.ca467582.js"
|
|
384
384
|
],
|
|
385
385
|
"async": [
|
|
386
386
|
"__mf/js/async/9249.f40b0225.js",
|
|
@@ -415,7 +415,7 @@
|
|
|
415
415
|
"__mf/js/async/1825.3b06cbc6.js",
|
|
416
416
|
"__mf/js/async/9754.9efd83f1.js",
|
|
417
417
|
"__mf/js/async/6045.424732f1.js",
|
|
418
|
-
"__mf/js/async/__federation_expose_ClickHouseLogQuery.
|
|
418
|
+
"__mf/js/async/__federation_expose_ClickHouseLogQuery.54a525e9.js"
|
|
419
419
|
],
|
|
420
420
|
"async": [
|
|
421
421
|
"__mf/js/async/9249.f40b0225.js",
|
package/mf-stats.json
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
"name": "ClickHouse",
|
|
6
6
|
"type": "app",
|
|
7
7
|
"buildInfo": {
|
|
8
|
-
"buildVersion": "0.5.
|
|
8
|
+
"buildVersion": "0.5.1",
|
|
9
9
|
"buildName": "@perses-dev/clickhouse-plugin"
|
|
10
10
|
},
|
|
11
11
|
"remoteEntry": {
|
|
12
|
-
"name": "__mf/js/ClickHouse.
|
|
12
|
+
"name": "__mf/js/ClickHouse.2fcd9604.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.
|
|
98
|
+
"requiredVersion": "^0.53.1",
|
|
99
99
|
"shareScope": "default",
|
|
100
100
|
"name": "@perses-dev/components",
|
|
101
|
-
"version": "0.53.
|
|
101
|
+
"version": "0.53.1",
|
|
102
102
|
"eager": false,
|
|
103
103
|
"id": "ClickHouse:@perses-dev/components",
|
|
104
104
|
"assets": {
|
|
105
105
|
"js": {
|
|
106
106
|
"async": [],
|
|
107
107
|
"sync": [
|
|
108
|
-
"__mf/js/async/
|
|
108
|
+
"__mf/js/async/978.ea0a0872.js"
|
|
109
109
|
]
|
|
110
110
|
},
|
|
111
111
|
"css": {
|
|
@@ -117,17 +117,17 @@
|
|
|
117
117
|
},
|
|
118
118
|
{
|
|
119
119
|
"singleton": true,
|
|
120
|
-
"requiredVersion": "^0.53.
|
|
120
|
+
"requiredVersion": "^0.53.1",
|
|
121
121
|
"shareScope": "default",
|
|
122
122
|
"name": "@perses-dev/dashboards",
|
|
123
|
-
"version": "0.53.
|
|
123
|
+
"version": "0.53.1",
|
|
124
124
|
"eager": false,
|
|
125
125
|
"id": "ClickHouse:@perses-dev/dashboards",
|
|
126
126
|
"assets": {
|
|
127
127
|
"js": {
|
|
128
128
|
"async": [],
|
|
129
129
|
"sync": [
|
|
130
|
-
"__mf/js/async/54.
|
|
130
|
+
"__mf/js/async/54.44a0f38e.js"
|
|
131
131
|
]
|
|
132
132
|
},
|
|
133
133
|
"css": {
|
|
@@ -139,17 +139,17 @@
|
|
|
139
139
|
},
|
|
140
140
|
{
|
|
141
141
|
"singleton": true,
|
|
142
|
-
"requiredVersion": "^0.53.
|
|
142
|
+
"requiredVersion": "^0.53.1",
|
|
143
143
|
"shareScope": "default",
|
|
144
144
|
"name": "@perses-dev/explore",
|
|
145
|
-
"version": "0.53.
|
|
145
|
+
"version": "0.53.1",
|
|
146
146
|
"eager": false,
|
|
147
147
|
"id": "ClickHouse:@perses-dev/explore",
|
|
148
148
|
"assets": {
|
|
149
149
|
"js": {
|
|
150
150
|
"async": [],
|
|
151
151
|
"sync": [
|
|
152
|
-
"__mf/js/async/1728.
|
|
152
|
+
"__mf/js/async/1728.d37983a1.js"
|
|
153
153
|
]
|
|
154
154
|
},
|
|
155
155
|
"css": {
|
|
@@ -161,17 +161,17 @@
|
|
|
161
161
|
},
|
|
162
162
|
{
|
|
163
163
|
"singleton": true,
|
|
164
|
-
"requiredVersion": "^0.53.
|
|
164
|
+
"requiredVersion": "^0.53.1",
|
|
165
165
|
"shareScope": "default",
|
|
166
166
|
"name": "@perses-dev/plugin-system",
|
|
167
|
-
"version": "0.53.
|
|
167
|
+
"version": "0.53.1",
|
|
168
168
|
"eager": false,
|
|
169
169
|
"id": "ClickHouse:@perses-dev/plugin-system",
|
|
170
170
|
"assets": {
|
|
171
171
|
"js": {
|
|
172
172
|
"async": [],
|
|
173
173
|
"sync": [
|
|
174
|
-
"__mf/js/async/
|
|
174
|
+
"__mf/js/async/208.49efb2c2.js"
|
|
175
175
|
]
|
|
176
176
|
},
|
|
177
177
|
"css": {
|
|
@@ -391,14 +391,14 @@
|
|
|
391
391
|
"assets": {
|
|
392
392
|
"js": {
|
|
393
393
|
"sync": [
|
|
394
|
-
"__mf/js/async/__federation_expose_ClickHouseDatasource.
|
|
394
|
+
"__mf/js/async/__federation_expose_ClickHouseDatasource.cf1e9c78.js"
|
|
395
395
|
],
|
|
396
396
|
"async": [
|
|
397
397
|
"__mf/js/async/1825.3b06cbc6.js",
|
|
398
398
|
"__mf/js/async/9754.9efd83f1.js",
|
|
399
399
|
"__mf/js/async/6045.424732f1.js",
|
|
400
|
-
"__mf/js/async/__federation_expose_ClickHouseTimeSeriesQuery.
|
|
401
|
-
"__mf/js/async/__federation_expose_ClickHouseLogQuery.
|
|
400
|
+
"__mf/js/async/__federation_expose_ClickHouseTimeSeriesQuery.ca467582.js",
|
|
401
|
+
"__mf/js/async/__federation_expose_ClickHouseLogQuery.54a525e9.js",
|
|
402
402
|
"__mf/js/async/9249.f40b0225.js",
|
|
403
403
|
"__mf/js/async/9836.4cd749fe.js",
|
|
404
404
|
"__mf/js/async/7576.d8b258ff.js",
|
|
@@ -433,7 +433,7 @@
|
|
|
433
433
|
"__mf/js/async/1825.3b06cbc6.js",
|
|
434
434
|
"__mf/js/async/9754.9efd83f1.js",
|
|
435
435
|
"__mf/js/async/6045.424732f1.js",
|
|
436
|
-
"__mf/js/async/__federation_expose_ClickHouseTimeSeriesQuery.
|
|
436
|
+
"__mf/js/async/__federation_expose_ClickHouseTimeSeriesQuery.ca467582.js"
|
|
437
437
|
],
|
|
438
438
|
"async": [
|
|
439
439
|
"__mf/js/async/9249.f40b0225.js",
|
|
@@ -470,7 +470,7 @@
|
|
|
470
470
|
"__mf/js/async/1825.3b06cbc6.js",
|
|
471
471
|
"__mf/js/async/9754.9efd83f1.js",
|
|
472
472
|
"__mf/js/async/6045.424732f1.js",
|
|
473
|
-
"__mf/js/async/__federation_expose_ClickHouseLogQuery.
|
|
473
|
+
"__mf/js/async/__federation_expose_ClickHouseLogQuery.54a525e9.js"
|
|
474
474
|
],
|
|
475
475
|
"async": [
|
|
476
476
|
"__mf/js/async/9249.f40b0225.js",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@perses-dev/clickhouse-plugin",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "rsbuild dev",
|
|
6
6
|
"build": "npm run build-mf && concurrently \"npm:build:*\"",
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"@emotion/react": "^11.7.1",
|
|
20
20
|
"@emotion/styled": "^11.6.0",
|
|
21
21
|
"@hookform/resolvers": "^3.2.0",
|
|
22
|
-
"@perses-dev/components": "^0.53.
|
|
23
|
-
"@perses-dev/core": "^0.53.0
|
|
24
|
-
"@perses-dev/dashboards": "^0.53.
|
|
25
|
-
"@perses-dev/explore": "^0.53.
|
|
26
|
-
"@perses-dev/plugin-system": "^0.53.
|
|
22
|
+
"@perses-dev/components": "^0.53.1",
|
|
23
|
+
"@perses-dev/core": "^0.53.0",
|
|
24
|
+
"@perses-dev/dashboards": "^0.53.1",
|
|
25
|
+
"@perses-dev/explore": "^0.53.1",
|
|
26
|
+
"@perses-dev/plugin-system": "^0.53.1",
|
|
27
27
|
"@tanstack/react-query": "^4.39.1",
|
|
28
28
|
"date-fns": "^4.1.0",
|
|
29
29
|
"date-fns-tz": "^3.2.0",
|