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 b03a33c commit f22ca82
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 12 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
4 changes: 2 additions & 2 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
2 changes: 1 addition & 1 deletion src/common/charts/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const chartFontFamily = '"Market Sans", Arial, sans-serif',
const color = strokeColorMapping[i % strokeColorMapping.length];
series[i].lineColor = color;
series[i].borderColor = color;
series[i].fillOpacity = 1;
series[i].fillOpacity = 1;
}
},
setDonutColors = function (series: any) {
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,
},
},
};
};
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 f22ca82

Please sign in to comment.