@gitlab/ui 109.2.1 → 110.1.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/CHANGELOG.md +20 -0
- package/dist/charts.js +0 -1
- package/dist/components/charts/area/area.js +1 -1
- package/dist/components/charts/bar/bar.js +2 -2
- package/dist/components/charts/column/column.js +1 -1
- package/dist/components/charts/discrete_scatter/discrete_scatter.js +2 -2
- package/dist/components/charts/heatmap/heatmap.js +2 -2
- package/dist/components/charts/line/line.js +1 -1
- package/dist/components/charts/{tooltip → shared/tooltip}/tooltip.js +6 -6
- package/dist/components/{shared_components/charts → charts/shared/tooltip/tooltip_default_format}/tooltip_default_format.js +1 -1
- package/dist/components/charts/sparkline/sparkline.js +1 -1
- package/dist/components/charts/stacked_column/stacked_column.js +2 -2
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/package.json +2 -2
- package/src/charts.js +0 -1
- package/src/components/charts/area/area.vue +1 -1
- package/src/components/charts/bar/bar.vue +2 -2
- package/src/components/charts/column/column.vue +1 -1
- package/src/components/charts/discrete_scatter/discrete_scatter.vue +2 -2
- package/src/components/charts/heatmap/heatmap.vue +2 -2
- package/src/components/charts/line/line.vue +1 -1
- package/src/components/charts/{tooltip → shared/tooltip}/tooltip.vue +7 -6
- package/src/components/{shared_components/charts → charts/shared/tooltip/tooltip_default_format}/tooltip_default_format.vue +1 -1
- package/src/components/charts/sparkline/sparkline.vue +1 -1
- package/src/components/charts/stacked_column/stacked_column.vue +2 -2
- package/src/scss/components.scss +2 -2
- package/src/scss/typography.scss +17 -0
- package/src/vendor/bootstrap/scss/_tables.scss +0 -28
- /package/src/components/charts/{tooltip → shared/tooltip}/tooltip.md +0 -0
- /package/src/components/charts/{tooltip → shared/tooltip}/tooltip.scss +0 -0
- /package/src/components/{shared_components/charts → charts/shared/tooltip/tooltip_default_format}/tooltip_default_format.scss +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# [110.1.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v110.0.0...v110.1.0) (2025-03-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* use design tokens in Bootstrap .table class styles ([1b61082](https://gitlab.com/gitlab-org/gitlab-ui/commit/1b61082c5abcbf916fedf3ae99ec7f8b14746bdb))
|
|
7
|
+
|
|
8
|
+
# [110.0.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v109.2.1...v110.0.0) (2025-03-07)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **charts:** Removes GlChartTooltip component from published package ([99517f4](https://gitlab.com/gitlab-org/gitlab-ui/commit/99517f418f6b9116a724eba247dc004403557a77))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### BREAKING CHANGES
|
|
17
|
+
|
|
18
|
+
* **charts:** GlChartTooltip cannot be imported
|
|
19
|
+
from '@gitlab/ui/dist/charts'
|
|
20
|
+
|
|
1
21
|
## [109.2.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v109.2.0...v109.2.1) (2025-03-07)
|
|
2
22
|
|
|
3
23
|
|
package/dist/charts.js
CHANGED
|
@@ -5,7 +5,6 @@ export { default as GlGaugeChart } from './components/charts/gauge/gauge';
|
|
|
5
5
|
export { default as GlLineChart } from './components/charts/line/line';
|
|
6
6
|
export { default as GlChartLegend } from './components/charts/legend/legend';
|
|
7
7
|
export { default as GlChartSeriesLabel } from './components/charts/series_label/series_label';
|
|
8
|
-
export { default as GlChartTooltip } from './components/charts/tooltip/tooltip';
|
|
9
8
|
export { default as GlHeatmap } from './components/charts/heatmap';
|
|
10
9
|
export { default as GlColumnChart } from './components/charts/column/column';
|
|
11
10
|
export { default as GlStackedColumnChart } from './components/charts/stacked_column/stacked_column';
|
|
@@ -5,7 +5,7 @@ import { colorFromDefaultPalette } from '../../../utils/charts/theme';
|
|
|
5
5
|
import { seriesHasAnnotations, isDataPointAnnotation } from '../../../utils/charts/utils';
|
|
6
6
|
import Chart from '../chart/chart';
|
|
7
7
|
import ChartLegend from '../legend/legend';
|
|
8
|
-
import ChartTooltip from '../tooltip/tooltip';
|
|
8
|
+
import ChartTooltip from '../shared/tooltip/tooltip';
|
|
9
9
|
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
|
|
10
10
|
|
|
11
11
|
//
|
|
@@ -5,9 +5,9 @@ import { HEIGHT_AUTO_CLASSES } from '../../../utils/charts/constants';
|
|
|
5
5
|
import { colorFromDefaultPalette } from '../../../utils/charts/theme';
|
|
6
6
|
import { engineeringNotation } from '../../../utils/number_utils';
|
|
7
7
|
import { hexToRgba } from '../../../utils/utils';
|
|
8
|
-
import TooltipDefaultFormat from '
|
|
8
|
+
import TooltipDefaultFormat from '../shared/tooltip/tooltip_default_format/tooltip_default_format';
|
|
9
9
|
import Chart from '../chart/chart';
|
|
10
|
-
import ChartTooltip from '../tooltip/tooltip';
|
|
10
|
+
import ChartTooltip from '../shared/tooltip/tooltip';
|
|
11
11
|
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
|
|
12
12
|
|
|
13
13
|
//
|
|
@@ -4,7 +4,7 @@ import { CHART_TYPE_LINE, HEIGHT_AUTO_CLASSES } from '../../../utils/charts/cons
|
|
|
4
4
|
import { colorFromDefaultPalette } from '../../../utils/charts/theme';
|
|
5
5
|
import { columnOptions } from '../../../utils/constants';
|
|
6
6
|
import Chart from '../chart/chart';
|
|
7
|
-
import ChartTooltip from '../tooltip/tooltip';
|
|
7
|
+
import ChartTooltip from '../shared/tooltip/tooltip';
|
|
8
8
|
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
|
|
9
9
|
|
|
10
10
|
//
|
|
@@ -3,9 +3,9 @@ import { GRAY_200 } from '../../../tokens/build/js/tokens';
|
|
|
3
3
|
import { defaultChartOptions, dataZoomAdjustments, mergeSeriesToOptions } from '../../../utils/charts/config';
|
|
4
4
|
import { colorFromDefaultPalette } from '../../../utils/charts/theme';
|
|
5
5
|
import { HEIGHT_AUTO_CLASSES } from '../../../utils/charts/constants';
|
|
6
|
-
import TooltipDefaultFormat from '
|
|
6
|
+
import TooltipDefaultFormat from '../shared/tooltip/tooltip_default_format/tooltip_default_format';
|
|
7
7
|
import Chart from '../chart/chart';
|
|
8
|
-
import ChartTooltip from '../tooltip/tooltip';
|
|
8
|
+
import ChartTooltip from '../shared/tooltip/tooltip';
|
|
9
9
|
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
|
|
10
10
|
|
|
11
11
|
var script = {
|
|
@@ -4,10 +4,10 @@ import { getTooltipTitle, getTooltipContent } from '../../../utils/charts/config
|
|
|
4
4
|
import { HEIGHT_AUTO_CLASSES } from '../../../utils/charts/constants';
|
|
5
5
|
import { heatmapHues } from '../../../utils/charts/theme';
|
|
6
6
|
import { engineeringNotation } from '../../../utils/number_utils';
|
|
7
|
-
import TooltipDefaultFormat from '
|
|
7
|
+
import TooltipDefaultFormat from '../shared/tooltip/tooltip_default_format/tooltip_default_format';
|
|
8
8
|
import Chart from '../chart/chart';
|
|
9
9
|
import ChartLegend from '../legend/legend';
|
|
10
|
-
import ChartTooltip from '../tooltip/tooltip';
|
|
10
|
+
import ChartTooltip from '../shared/tooltip/tooltip';
|
|
11
11
|
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
|
|
12
12
|
|
|
13
13
|
//
|
|
@@ -6,7 +6,7 @@ import { colorFromDefaultPalette } from '../../../utils/charts/theme';
|
|
|
6
6
|
import { seriesHasAnnotations, isDataPointAnnotation } from '../../../utils/charts/utils';
|
|
7
7
|
import Chart from '../chart/chart';
|
|
8
8
|
import ChartLegend from '../legend/legend';
|
|
9
|
-
import ChartTooltip from '../tooltip/tooltip';
|
|
9
|
+
import ChartTooltip from '../shared/tooltip/tooltip';
|
|
10
10
|
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
|
|
11
11
|
|
|
12
12
|
//
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as echarts from 'echarts';
|
|
2
|
-
import { uid, debounceByAnimationFrame } from '
|
|
3
|
-
import GlPopover from '
|
|
4
|
-
import { popoverPlacements } from '
|
|
5
|
-
import { TOOLTIP_LEFT_OFFSET, TOOLTIP_TOP_OFFSET } from '
|
|
6
|
-
import { getTooltipTitle, getTooltipContent } from '
|
|
7
|
-
import TooltipDefaultFormat from '
|
|
2
|
+
import { uid, debounceByAnimationFrame } from '../../../../utils/utils';
|
|
3
|
+
import GlPopover from '../../../base/popover/popover';
|
|
4
|
+
import { popoverPlacements } from '../../../../utils/constants';
|
|
5
|
+
import { TOOLTIP_LEFT_OFFSET, TOOLTIP_TOP_OFFSET } from '../../../../utils/charts/constants';
|
|
6
|
+
import { getTooltipTitle, getTooltipContent } from '../../../../utils/charts/config';
|
|
7
|
+
import TooltipDefaultFormat from './tooltip_default_format/tooltip_default_format';
|
|
8
8
|
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
|
|
9
9
|
|
|
10
10
|
//
|
|
@@ -5,7 +5,7 @@ import { GlResizeObserverDirective } from '../../../directives/resize_observer/r
|
|
|
5
5
|
import { defaultChartOptions, mergeSeriesToOptions, symbolSize } from '../../../utils/charts/config';
|
|
6
6
|
import { HEIGHT_AUTO_HORIZONTAL_LAYOUT_CLASSES } from '../../../utils/charts/constants';
|
|
7
7
|
import Chart from '../chart/chart';
|
|
8
|
-
import ChartTooltip from '../tooltip/tooltip';
|
|
8
|
+
import ChartTooltip from '../shared/tooltip/tooltip';
|
|
9
9
|
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
|
|
10
10
|
|
|
11
11
|
//
|
|
@@ -3,10 +3,10 @@ import { yAxis, generateBarSeries, generateLineSeries, defaultChartOptions, grid
|
|
|
3
3
|
import { LEGEND_AVERAGE_TEXT, LEGEND_MAX_TEXT, LEGEND_MIN_TEXT, LEGEND_CURRENT_TEXT, LEGEND_LAYOUT_INLINE, LEGEND_LAYOUT_TABLE, CHART_TYPE_LINE, HEIGHT_AUTO_CLASSES } from '../../../utils/charts/constants';
|
|
4
4
|
import { colorFromDefaultPalette } from '../../../utils/charts/theme';
|
|
5
5
|
import { columnOptions } from '../../../utils/constants';
|
|
6
|
+
import TooltipDefaultFormat from '../shared/tooltip/tooltip_default_format/tooltip_default_format';
|
|
6
7
|
import Chart from '../chart/chart';
|
|
7
8
|
import ChartLegend from '../legend/legend';
|
|
8
|
-
import ChartTooltip from '../tooltip/tooltip';
|
|
9
|
-
import TooltipDefaultFormat from '../../shared_components/charts/tooltip_default_format';
|
|
9
|
+
import ChartTooltip from '../shared/tooltip/tooltip';
|
|
10
10
|
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
|
|
11
11
|
|
|
12
12
|
const yAxisDefaults = {
|