@perses-dev/components 0.50.0 → 0.50.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.
Files changed (46) hide show
  1. package/dist/StatChart/StatChart.d.ts +4 -4
  2. package/dist/StatChart/StatChart.d.ts.map +1 -1
  3. package/dist/StatChart/StatChart.js +6 -10
  4. package/dist/StatChart/StatChart.js.map +1 -1
  5. package/dist/StatChart/utils/formatStatChartValue.d.ts +3 -0
  6. package/dist/StatChart/utils/formatStatChartValue.d.ts.map +1 -0
  7. package/dist/StatChart/utils/formatStatChartValue.js +26 -0
  8. package/dist/StatChart/utils/formatStatChartValue.js.map +1 -0
  9. package/dist/StatusHistoryChart/StatusHistoryChart.d.ts +16 -3
  10. package/dist/StatusHistoryChart/StatusHistoryChart.d.ts.map +1 -1
  11. package/dist/StatusHistoryChart/StatusHistoryChart.js +8 -24
  12. package/dist/StatusHistoryChart/StatusHistoryChart.js.map +1 -1
  13. package/dist/StatusHistoryChart/StatusHistoryTooltip.d.ts +2 -1
  14. package/dist/StatusHistoryChart/StatusHistoryTooltip.d.ts.map +1 -1
  15. package/dist/StatusHistoryChart/StatusHistoryTooltip.js +3 -3
  16. package/dist/StatusHistoryChart/StatusHistoryTooltip.js.map +1 -1
  17. package/dist/StatusHistoryChart/utils/get-color.d.ts +1 -1
  18. package/dist/StatusHistoryChart/utils/get-color.d.ts.map +1 -1
  19. package/dist/StatusHistoryChart/utils/get-color.js +5 -5
  20. package/dist/StatusHistoryChart/utils/get-color.js.map +1 -1
  21. package/dist/ValueMappingEditor/ValueMappingEditor.d.ts +10 -0
  22. package/dist/ValueMappingEditor/ValueMappingEditor.d.ts.map +1 -0
  23. package/dist/ValueMappingEditor/ValueMappingEditor.js +387 -0
  24. package/dist/ValueMappingEditor/ValueMappingEditor.js.map +1 -0
  25. package/dist/ValueMappingEditor/ValueMappingsEditor.d.ts +8 -0
  26. package/dist/ValueMappingEditor/ValueMappingsEditor.d.ts.map +1 -0
  27. package/dist/ValueMappingEditor/ValueMappingsEditor.js +118 -0
  28. package/dist/ValueMappingEditor/ValueMappingsEditor.js.map +1 -0
  29. package/dist/ValueMappingEditor/index.d.ts +2 -0
  30. package/dist/ValueMappingEditor/index.d.ts.map +1 -0
  31. package/dist/ValueMappingEditor/index.js +15 -0
  32. package/dist/ValueMappingEditor/index.js.map +1 -0
  33. package/dist/cjs/StatChart/StatChart.js +8 -12
  34. package/dist/cjs/StatChart/utils/formatStatChartValue.js +34 -0
  35. package/dist/cjs/StatusHistoryChart/StatusHistoryChart.js +10 -26
  36. package/dist/cjs/StatusHistoryChart/StatusHistoryTooltip.js +3 -3
  37. package/dist/cjs/StatusHistoryChart/utils/get-color.js +7 -7
  38. package/dist/cjs/ValueMappingEditor/ValueMappingEditor.js +400 -0
  39. package/dist/cjs/ValueMappingEditor/ValueMappingsEditor.js +131 -0
  40. package/dist/cjs/ValueMappingEditor/index.js +30 -0
  41. package/dist/cjs/index.js +1 -0
  42. package/dist/index.d.ts +1 -0
  43. package/dist/index.d.ts.map +1 -1
  44. package/dist/index.js +1 -0
  45. package/dist/index.js.map +1 -1
  46. package/package.json +3 -3
@@ -0,0 +1,131 @@
1
+ // Copyright 2024 The Perses Authors
2
+ // Licensed under the Apache License, Version 2.0 (the "License");
3
+ // you may not use this file except in compliance with the License.
4
+ // You may obtain a copy of the License at
5
+ //
6
+ // http://www.apache.org/licenses/LICENSE-2.0
7
+ //
8
+ // Unless required by applicable law or agreed to in writing, software
9
+ // distributed under the License is distributed on an "AS IS" BASIS,
10
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+ "use strict";
14
+ Object.defineProperty(exports, "__esModule", {
15
+ value: true
16
+ });
17
+ Object.defineProperty(exports, "ValueMappingsEditor", {
18
+ enumerable: true,
19
+ get: function() {
20
+ return ValueMappingsEditor;
21
+ }
22
+ });
23
+ const _jsxruntime = require("react/jsx-runtime");
24
+ const _material = require("@mui/material");
25
+ const _react = require("react");
26
+ const _Plus = /*#__PURE__*/ _interop_require_default(require("mdi-material-ui/Plus"));
27
+ const _ValueMappingEditor = require("./ValueMappingEditor");
28
+ function _interop_require_default(obj) {
29
+ return obj && obj.__esModule ? obj : {
30
+ default: obj
31
+ };
32
+ }
33
+ const ValueMappingsEditor = ({ mappings, onChange })=>{
34
+ const [valueMappings, setValueMappings] = (0, _react.useState)(mappings);
35
+ function handleValueMappingChange(index, mapping) {
36
+ const updatedValueMapings = [
37
+ ...valueMappings
38
+ ];
39
+ updatedValueMapings[index] = mapping;
40
+ setValueMappings(updatedValueMapings);
41
+ onChange(updatedValueMapings);
42
+ }
43
+ function handleAddValueMappingEditor() {
44
+ const updatedValueMapings = [
45
+ ...valueMappings
46
+ ];
47
+ updatedValueMapings.push({
48
+ kind: 'Value',
49
+ spec: {
50
+ result: {
51
+ value: ''
52
+ }
53
+ }
54
+ });
55
+ setValueMappings(updatedValueMapings);
56
+ onChange(updatedValueMapings);
57
+ }
58
+ function handleValueMappingDelete(index) {
59
+ const updatedValueMapings = [
60
+ ...valueMappings
61
+ ];
62
+ updatedValueMapings.splice(index, 1);
63
+ setValueMappings(updatedValueMapings);
64
+ onChange(updatedValueMapings);
65
+ }
66
+ return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_material.Stack, {
67
+ spacing: 1,
68
+ children: [
69
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_material.Grid2, {
70
+ container: true,
71
+ spacing: 2,
72
+ children: [
73
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Grid2, {
74
+ size: {
75
+ xs: 5
76
+ },
77
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Typography, {
78
+ variant: "subtitle1",
79
+ children: "Condition"
80
+ })
81
+ }),
82
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Grid2, {
83
+ size: {
84
+ xs: 4
85
+ },
86
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Typography, {
87
+ variant: "subtitle1",
88
+ children: "Display Text"
89
+ })
90
+ }),
91
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Grid2, {
92
+ size: {
93
+ xs: 1
94
+ },
95
+ textAlign: "center",
96
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Typography, {
97
+ variant: "subtitle1",
98
+ children: "Color"
99
+ })
100
+ }),
101
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Grid2, {
102
+ size: {
103
+ xs: 1
104
+ }
105
+ })
106
+ ]
107
+ }),
108
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Stack, {
109
+ gap: 1.5,
110
+ divider: /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Divider, {
111
+ flexItem: true,
112
+ orientation: "horizontal"
113
+ }),
114
+ children: valueMappings.map((mapping, i)=>/*#__PURE__*/ (0, _jsxruntime.jsx)(_ValueMappingEditor.ValueMappingEditor, {
115
+ mapping: mapping,
116
+ onChange: (updatedMapping)=>handleValueMappingChange(i, updatedMapping),
117
+ onDelete: ()=>handleValueMappingDelete(i)
118
+ }, i))
119
+ }),
120
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Button, {
121
+ variant: "contained",
122
+ startIcon: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Plus.default, {}),
123
+ sx: {
124
+ marginTop: 1
125
+ },
126
+ onClick: handleAddValueMappingEditor,
127
+ children: "Add value mappings"
128
+ })
129
+ ]
130
+ });
131
+ };
@@ -0,0 +1,30 @@
1
+ // Copyright 2024 The Perses Authors
2
+ // Licensed under the Apache License, Version 2.0 (the "License");
3
+ // you may not use this file except in compliance with the License.
4
+ // You may obtain a copy of the License at
5
+ //
6
+ // http://www.apache.org/licenses/LICENSE-2.0
7
+ //
8
+ // Unless required by applicable law or agreed to in writing, software
9
+ // distributed under the License is distributed on an "AS IS" BASIS,
10
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+ "use strict";
14
+ Object.defineProperty(exports, "__esModule", {
15
+ value: true
16
+ });
17
+ _export_star(require("./ValueMappingsEditor"), exports);
18
+ function _export_star(from, to) {
19
+ Object.keys(from).forEach(function(k) {
20
+ if (k !== "default" && !Object.prototype.hasOwnProperty.call(to, k)) {
21
+ Object.defineProperty(to, k, {
22
+ enumerable: true,
23
+ get: function() {
24
+ return from[k];
25
+ }
26
+ });
27
+ }
28
+ });
29
+ return from;
30
+ }
package/dist/cjs/index.js CHANGED
@@ -57,6 +57,7 @@ _export_star(require("./TransformsEditor"), exports);
57
57
  _export_star(require("./RefreshIntervalPicker"), exports);
58
58
  _export_star(require("./PieChart"), exports);
59
59
  _export_star(require("./StatusHistoryChart"), exports);
60
+ _export_star(require("./ValueMappingEditor"), exports);
60
61
  function _export_star(from, to) {
61
62
  Object.keys(from).forEach(function(k) {
62
63
  if (k !== "default" && !Object.prototype.hasOwnProperty.call(to, k)) {
package/dist/index.d.ts CHANGED
@@ -41,4 +41,5 @@ export * from './TransformsEditor';
41
41
  export * from './RefreshIntervalPicker';
42
42
  export * from './PieChart';
43
43
  export * from './StatusHistoryChart';
44
+ export * from './ValueMappingEditor';
44
45
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAaA,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,WAAW,CAAC;AAC1B,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,oBAAoB,CAAC;AACnC,cAAc,yBAAyB,CAAC;AACxC,cAAc,YAAY,CAAC;AAC3B,cAAc,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAaA,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,WAAW,CAAC;AAC1B,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,oBAAoB,CAAC;AACnC,cAAc,yBAAyB,CAAC;AACxC,cAAc,YAAY,CAAC;AAC3B,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC"}
package/dist/index.js CHANGED
@@ -53,5 +53,6 @@ export * from './TransformsEditor';
53
53
  export * from './RefreshIntervalPicker';
54
54
  export * from './PieChart';
55
55
  export * from './StatusHistoryChart';
56
+ export * from './ValueMappingEditor';
56
57
 
57
58
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["// Copyright 2023 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\nexport * from './AlignSelector';\nexport * from './BarChart';\nexport * from './ColorPicker';\nexport * from './ContentWithLegend';\nexport * from './controls';\nexport * from './Dialog';\nexport * from './DensitySelector';\nexport * from './DragAndDrop';\nexport * from './Drawer';\nexport * from './EChart';\nexport * from './ErrorAlert';\nexport * from './ErrorBoundary';\nexport * from './FontSizeSelector';\nexport * from './FormEditor';\nexport * from './GaugeChart';\nexport * from './InfoTooltip';\nexport * from './JSONEditor';\nexport * from './Legend';\nexport * from './LineChart';\nexport * from './LinksEditor';\nexport * from './ModeSelector';\nexport * from './OptionsEditorLayout';\nexport * from './Overlay';\nexport * from './SettingsAutocomplete';\nexport * from './SortSelector';\nexport * from './StatChart';\nexport * from './Table';\nexport * from './ThresholdsEditor';\nexport * from './TimeChart';\nexport * from './TimeRangeSelector';\nexport * from './TimeSeriesTooltip';\nexport * from './ToolbarIconButton';\nexport * from './FormatControls';\nexport * from './YAxisLabel';\nexport * from './context';\nexport * from './utils';\nexport * from './model';\nexport * from './test-utils';\nexport * from './theme';\nexport * from './TransformsEditor';\nexport * from './RefreshIntervalPicker';\nexport * from './PieChart';\nexport * from './StatusHistoryChart';\n"],"names":[],"mappings":"AAAA,oCAAoC;AACpC,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,6CAA6C;AAC7C,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AAEjC,cAAc,kBAAkB;AAChC,cAAc,aAAa;AAC3B,cAAc,gBAAgB;AAC9B,cAAc,sBAAsB;AACpC,cAAc,aAAa;AAC3B,cAAc,WAAW;AACzB,cAAc,oBAAoB;AAClC,cAAc,gBAAgB;AAC9B,cAAc,WAAW;AACzB,cAAc,WAAW;AACzB,cAAc,eAAe;AAC7B,cAAc,kBAAkB;AAChC,cAAc,qBAAqB;AACnC,cAAc,eAAe;AAC7B,cAAc,eAAe;AAC7B,cAAc,gBAAgB;AAC9B,cAAc,eAAe;AAC7B,cAAc,WAAW;AACzB,cAAc,cAAc;AAC5B,cAAc,gBAAgB;AAC9B,cAAc,iBAAiB;AAC/B,cAAc,wBAAwB;AACtC,cAAc,YAAY;AAC1B,cAAc,yBAAyB;AACvC,cAAc,iBAAiB;AAC/B,cAAc,cAAc;AAC5B,cAAc,UAAU;AACxB,cAAc,qBAAqB;AACnC,cAAc,cAAc;AAC5B,cAAc,sBAAsB;AACpC,cAAc,sBAAsB;AACpC,cAAc,sBAAsB;AACpC,cAAc,mBAAmB;AACjC,cAAc,eAAe;AAC7B,cAAc,YAAY;AAC1B,cAAc,UAAU;AACxB,cAAc,UAAU;AACxB,cAAc,eAAe;AAC7B,cAAc,UAAU;AACxB,cAAc,qBAAqB;AACnC,cAAc,0BAA0B;AACxC,cAAc,aAAa;AAC3B,cAAc,uBAAuB"}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["// Copyright 2023 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\nexport * from './AlignSelector';\nexport * from './BarChart';\nexport * from './ColorPicker';\nexport * from './ContentWithLegend';\nexport * from './controls';\nexport * from './Dialog';\nexport * from './DensitySelector';\nexport * from './DragAndDrop';\nexport * from './Drawer';\nexport * from './EChart';\nexport * from './ErrorAlert';\nexport * from './ErrorBoundary';\nexport * from './FontSizeSelector';\nexport * from './FormEditor';\nexport * from './GaugeChart';\nexport * from './InfoTooltip';\nexport * from './JSONEditor';\nexport * from './Legend';\nexport * from './LineChart';\nexport * from './LinksEditor';\nexport * from './ModeSelector';\nexport * from './OptionsEditorLayout';\nexport * from './Overlay';\nexport * from './SettingsAutocomplete';\nexport * from './SortSelector';\nexport * from './StatChart';\nexport * from './Table';\nexport * from './ThresholdsEditor';\nexport * from './TimeChart';\nexport * from './TimeRangeSelector';\nexport * from './TimeSeriesTooltip';\nexport * from './ToolbarIconButton';\nexport * from './FormatControls';\nexport * from './YAxisLabel';\nexport * from './context';\nexport * from './utils';\nexport * from './model';\nexport * from './test-utils';\nexport * from './theme';\nexport * from './TransformsEditor';\nexport * from './RefreshIntervalPicker';\nexport * from './PieChart';\nexport * from './StatusHistoryChart';\nexport * from './ValueMappingEditor';\n"],"names":[],"mappings":"AAAA,oCAAoC;AACpC,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,6CAA6C;AAC7C,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AAEjC,cAAc,kBAAkB;AAChC,cAAc,aAAa;AAC3B,cAAc,gBAAgB;AAC9B,cAAc,sBAAsB;AACpC,cAAc,aAAa;AAC3B,cAAc,WAAW;AACzB,cAAc,oBAAoB;AAClC,cAAc,gBAAgB;AAC9B,cAAc,WAAW;AACzB,cAAc,WAAW;AACzB,cAAc,eAAe;AAC7B,cAAc,kBAAkB;AAChC,cAAc,qBAAqB;AACnC,cAAc,eAAe;AAC7B,cAAc,eAAe;AAC7B,cAAc,gBAAgB;AAC9B,cAAc,eAAe;AAC7B,cAAc,WAAW;AACzB,cAAc,cAAc;AAC5B,cAAc,gBAAgB;AAC9B,cAAc,iBAAiB;AAC/B,cAAc,wBAAwB;AACtC,cAAc,YAAY;AAC1B,cAAc,yBAAyB;AACvC,cAAc,iBAAiB;AAC/B,cAAc,cAAc;AAC5B,cAAc,UAAU;AACxB,cAAc,qBAAqB;AACnC,cAAc,cAAc;AAC5B,cAAc,sBAAsB;AACpC,cAAc,sBAAsB;AACpC,cAAc,sBAAsB;AACpC,cAAc,mBAAmB;AACjC,cAAc,eAAe;AAC7B,cAAc,YAAY;AAC1B,cAAc,UAAU;AACxB,cAAc,UAAU;AACxB,cAAc,eAAe;AAC7B,cAAc,UAAU;AACxB,cAAc,qBAAqB;AACnC,cAAc,0BAA0B;AACxC,cAAc,aAAa;AAC3B,cAAc,uBAAuB;AACrC,cAAc,uBAAuB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@perses-dev/components",
3
- "version": "0.50.0",
3
+ "version": "0.50.1",
4
4
  "description": "Common UI components used across Perses features",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/perses/perses/blob/main/README.md",
@@ -38,7 +38,7 @@
38
38
  "@codemirror/lang-json": "^6.0.1",
39
39
  "@fontsource/lato": "^4.5.10",
40
40
  "@mui/x-date-pickers": "^7.23.1",
41
- "@perses-dev/core": "0.50.0",
41
+ "@perses-dev/core": "0.50.1",
42
42
  "@tanstack/react-table": "^8.20.5",
43
43
  "@uiw/react-codemirror": "^4.19.1",
44
44
  "date-fns": "^2.28.0",
@@ -55,7 +55,7 @@
55
55
  "zod": "^3.21.4"
56
56
  },
57
57
  "devDependencies": {
58
- "@perses-dev/storybook": "0.50.0"
58
+ "@perses-dev/storybook": "0.50.1"
59
59
  },
60
60
  "peerDependencies": {
61
61
  "@mui/material": "^6.1.10",