Skip to content

Commit

Permalink
ci: release (next)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 17, 2025
1 parent 341697e commit 94889f0
Show file tree
Hide file tree
Showing 10 changed files with 51 additions and 23 deletions.
13 changes: 13 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"mode": "pre",
"tag": "next",
"initialVersions": {
"@ebay/ebayui-core": "14.6.7"
},
"changesets": [
"sharp-bees-grin",
"sixty-experts-marry",
"thirty-walls-notice",
"wet-wombats-roll"
]
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# eBayUI-Core Changelog

## 14.7.0-next.0

### Minor Changes

- [#2357](https://github.com/eBay/ebayui-core/pull/2357) [`96f2732`](https://github.com/eBay/ebayui-core/commit/96f273242ac1a91bd851426e676ff4dca2f0d8e3) Thanks [@saiponnada](https://github.com/saiponnada)! - Add area chart

### Patch Changes

- [#2357](https://github.com/eBay/ebayui-core/pull/2357) [`2cb19b1`](https://github.com/eBay/ebayui-core/commit/2cb19b11f766f1cf2744d8f07ec7c79ef56194de) Thanks [@saiponnada](https://github.com/saiponnada)! - TS fix for combobox

- [#2357](https://github.com/eBay/ebayui-core/pull/2357) [`59357e6`](https://github.com/eBay/ebayui-core/commit/59357e6cdc401cbd0a14832c7e72fd20ddc2b7fd) Thanks [@saiponnada](https://github.com/saiponnada)! - Upgrade dependencies

- [#2357](https://github.com/eBay/ebayui-core/pull/2357) [`985ec4f`](https://github.com/eBay/ebayui-core/commit/985ec4fe074ba2097b2a23421e95d1e7960f77d3) Thanks [@saiponnada](https://github.com/saiponnada)! - Updated the component-browser.ts file to reference shared attributes from tags-html.d.ts and added the Textbox class implementation.

## 14.6.7

### Patch Changes
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ebay/ebayui-core",
"version": "14.6.7",
"version": "14.7.0-next.0",
"description": "Collection of core eBay components; considered to be the building blocks for all composite structures, pages & apps.",
"keywords": [
"marko-components"
Expand Down
4 changes: 1 addition & 3 deletions src/common/charts/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,12 @@ export const chartFontFamily = '"Market Sans", Arial, sans-serif',
if (series[i].type === "bar") {
(series[i] as Highcharts.SeriesBarOptions).borderColor = color;
(series[i] as Highcharts.SeriesBarOptions).color = color;
}
else {
} else {
(series[i] as Highcharts.SeriesAreaOptions).lineColor = color;
(series[i] as Highcharts.SeriesAreaOptions).fillOpacity = 1;
}
}
},

setDonutColors = function (series: any) {
const colors = [
{ lineColor: chartPrimaryColor, borderColor: chartPrimaryColor },
Expand Down
6 changes: 3 additions & 3 deletions src/components/ebay-area-chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ The area chart displays one to five series of data points as an interactive stac

## Examples and Documentation

- [Storybook](https://ebay.github.io/ebayui-core/?path=/docs/charts-ebay-area-chart)
- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/charts-ebay-area-chart)
- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-area-chart/examples)
- [Storybook](https://ebay.github.io/ebayui-core/?path=/docs/charts-ebay-area-chart)
- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/charts-ebay-area-chart)
- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-area-chart/examples)
4 changes: 2 additions & 2 deletions src/components/ebay-area-chart/area-chart.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const seriesDataWithoutLabels = sampleSeriesData.map((series) => {
return rest;
}),
};
})
});

export default {
title: "charts/ebay-area-chart",
Expand Down Expand Up @@ -226,4 +226,4 @@ CustomHighchartOptions.args = {
tickAmount: 4,
},
},
};
};
2 changes: 1 addition & 1 deletion src/components/ebay-bar-chart/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class BarChart extends Marko.Component<Input> {
: [this.input.series];
const stacked = this.input.stacked;
const title = this.input.title;

// controls rounded corders and spacing at the bottom of data points
if (stacked) {
series[0].bottom = true; // set a variable on the first series so it renders rounder corners on the bottom of the bar
Expand Down
2 changes: 1 addition & 1 deletion src/components/ebay-line-chart/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ declare const Highcharts: typeof HighchartsTypes;

interface SeriesLineOptions extends Highcharts.PlotLineOptions {
data: Highcharts.PointOptionsObject[];
type: "line",
type: "line";
}

interface LineChartInput
Expand Down
9 changes: 6 additions & 3 deletions src/components/ebay-textbox/component-browser.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import FloatingLabel from "makeup-floating-label";
import type { WithNormalizedProps } from "../../global";
import type { AttrOnOff, AttrString, AttrStringOrNumber } from "marko/tags-html";
import type {
AttrOnOff,
AttrString,
AttrStringOrNumber,
} from "marko/tags-html";

export interface TextboxEvent {
originalEvent: Event;
Expand Down Expand Up @@ -35,7 +39,6 @@ interface TextboxInput extends Omit<Marko.Input<"input">, `on${string}`> {
autocorrect?: AttrOnOff;
cols?: AttrStringOrNumber;
rows?: AttrStringOrNumber;

}

export interface Input extends WithNormalizedProps<TextboxInput> {}
Expand Down Expand Up @@ -100,4 +103,4 @@ class Textbox extends Marko.Component<Input> {
}
}

export default Textbox;
export default Textbox;

0 comments on commit 94889f0

Please sign in to comment.