Skip to content

Commit

Permalink
Version 4.10.26
Browse files Browse the repository at this point in the history
  • Loading branch information
martynasma committed Jul 9, 2022
1 parent 7118b63 commit 16ebf80
Show file tree
Hide file tree
Showing 59 changed files with 270 additions and 30 deletions.
8 changes: 8 additions & 0 deletions dist/ember/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
Please note, that this project, while following numbering syntax, it DOES NOT
adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) rules.

## [4.10.26] - 2022-07-09

### Fixed
- Setting `html` on a `Label`, then resetting it, was leaving the old content.
- Updating HTML label's `fill` was not updating the color of the actual label right away.
- `SliceGroper` plugin will now handle negative values correctly.


## [4.10.25] - 2022-04-19

### Added
Expand Down
2 changes: 1 addition & 1 deletion dist/ember/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@amcharts/amcharts4-ember",
"version": "4.10.25",
"version": "4.10.26",
"description": "Ember add-on for amCharts 4",
"keywords": [
"ember-addon",
Expand Down
8 changes: 8 additions & 0 deletions dist/ember/vendor/script/amcharts4/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
Please note, that this project, while following numbering syntax, it DOES NOT
adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) rules.

## [4.10.26] - 2022-07-09

### Fixed
- Setting `html` on a `Label`, then resetting it, was leaving the old content.
- Updating HTML label's `fill` was not updating the color of the actual label right away.
- `SliceGroper` plugin will now handle negative values correctly.


## [4.10.25] - 2022-04-19

### Added
Expand Down
2 changes: 1 addition & 1 deletion dist/ember/vendor/script/amcharts4/core.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ember/vendor/script/amcharts4/core.js.map

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions dist/ember/vendor/script/amcharts4/geodata/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [UNRELEASED] - ????-??-??

### Added
- New maps: Mauritius.


## [4.1.23] - 2022-03-31

### Added
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions dist/ember/vendor/script/amcharts4/geodata/mauritiusHigh.js

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions dist/ember/vendor/script/amcharts4/geodata/mauritiusLow.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ember/vendor/script/amcharts4/plugins/sliceGrouper.js

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

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions dist/ember/vendor/shims/amcharts4.js
Original file line number Diff line number Diff line change
Expand Up @@ -3062,6 +3062,22 @@ define('@amcharts/amcharts4-geodata/mauritaniaLow', [], function () {
}
throw new Error("You must add 'geodata/mauritaniaLow' to the amcharts4.files array in your EmberApp.");
});
define('@amcharts/amcharts4-geodata/mauritiusHigh', [], function () {
'use strict';
var output = self.am4geodata_mauritiusHigh;
if (output != null) {
return output;
}
throw new Error("You must add 'geodata/mauritiusHigh' to the amcharts4.files array in your EmberApp.");
});
define('@amcharts/amcharts4-geodata/mauritiusLow', [], function () {
'use strict';
var output = self.am4geodata_mauritiusLow;
if (output != null) {
return output;
}
throw new Error("You must add 'geodata/mauritiusLow' to the amcharts4.files array in your EmberApp.");
});
define('@amcharts/amcharts4-geodata/mexicoHigh', [], function () {
'use strict';
var output = self.am4geodata_mexicoHigh;
Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/.internal/core/System.js

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

2 changes: 1 addition & 1 deletion dist/es2015/.internal/core/System.js.map

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions dist/es2015/.internal/core/elements/Label.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ import { IRectangle } from "../defs/IRectangle";
import { AMElement } from "../rendering/AMElement";
import { Group } from "../rendering/Group";
import { MultiDisposer } from "../utils/Disposer";
import { Color } from "../utils/Color";
import { Pattern } from "../rendering/fills/Pattern";
import { LinearGradient } from "../rendering/fills/LinearGradient";
import { RadialGradient } from "../rendering/fills/RadialGradient";
import * as $type from "../utils/Type";
import { Paper } from "../rendering/Paper";
/**
Expand Down Expand Up @@ -504,6 +508,7 @@ export declare class Label extends Container {
* @return HTML content
*/
html: string;
protected setFill(value: $type.Optional<Color | Pattern | LinearGradient | RadialGradient>): void;
/**
* Indicates whether the whole text should be hidden if it does not fit into
* its allotted space.
Expand Down
19 changes: 19 additions & 0 deletions dist/es2015/.internal/core/elements/Label.js

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

2 changes: 1 addition & 1 deletion dist/es2015/.internal/core/elements/Label.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/es2015/.internal/core/rendering/Group.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,5 @@ export declare class Group extends AMElement {
* Removes all children from the group.
*/
removeChildren(): void;
removeChildrenByTag(tag: string): void;
}
8 changes: 8 additions & 0 deletions dist/es2015/.internal/core/rendering/Group.js

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

Loading

0 comments on commit 16ebf80

Please sign in to comment.