Skip to content

Commit d917386

Browse files
committed
Version 4.10.20
1 parent a46bbb9 commit d917386

File tree

21 files changed

+103
-68
lines changed

21 files changed

+103
-68
lines changed

dist/ember/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55
Please note, that this project, while following numbering syntax, it DOES NOT
66
adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) rules.
77

8+
## [4.10.20] - 2021-06-17
9+
10+
### Fixed
11+
- In-line formatting of labels was triggering errors on pages with strict CSP rules.
12+
13+
814
## [4.10.19] - 2021-06-08
915

1016
### Fixed

dist/ember/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@amcharts/amcharts4-ember",
3-
"version": "4.10.19",
3+
"version": "4.10.20",
44
"description": "Ember add-on for amCharts 4",
55
"keywords": [
66
"ember-addon",

dist/ember/vendor/script/amcharts4/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55
Please note, that this project, while following numbering syntax, it DOES NOT
66
adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) rules.
77

8+
## [4.10.20] - 2021-06-17
9+
10+
### Fixed
11+
- In-line formatting of labels was triggering errors on pages with strict CSP rules.
12+
13+
814
## [4.10.19] - 2021-06-08
915

1016
### Fixed

dist/ember/vendor/script/amcharts4/core.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ember/vendor/script/amcharts4/core.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/es2015/.internal/charts/axes/Axis.d.ts

Lines changed: 8 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -109,27 +109,20 @@ export declare class AxisDataItem extends DataItem {
109109
*
110110
* ```TypeScript
111111
* // Hide all ticks and labels closer than 20% to axis beginning.
112-
* axis.renderer.ticks.template.minPosition = 0.2;
113-
* axis.renderer.labels.template.minPosition = 0.2;
112+
* axis.dataItems.template.minPosition = 0.2;
114113
* ```
115114
* ```JavaScript
116115
* // Hide all ticks and labels closer than 20% to axis beginning.
117-
* axis.renderer.ticks.template.minPosition = 0.2;
118-
* axis.renderer.labels.template.minPosition = 0.2;
116+
* axis.dataItems.template.minPosition = 0.2;
119117
* ```
120118
* ```JSON
121119
* {
122120
* // ...
123121
* "xAxes": [{
124122
* // ...
125123
* // Hide all ticks and labels closer than 20% to axis beginning.
126-
* "renderer": {
127-
* "ticks": {
128-
* "minPosition": 0.2
129-
* },
130-
* "labels": {
131-
* "minPosition": 0.2
132-
* }
124+
* "dataItems": {
125+
* "minPosition": 0.2
133126
* }
134127
* }]
135128
* }
@@ -146,27 +139,20 @@ export declare class AxisDataItem extends DataItem {
146139
*
147140
* ```TypeScript
148141
* // Hide all ticks and labels closer than 20% to axis end.
149-
* axis.renderer.ticks.template.maxPosition = 0.8;
150-
* axis.renderer.labels.template.maxPosition = 0.8;
142+
* axis.dataItems.template.maxPosition = 0.8;
151143
* ```
152144
* ```JavaScript
153145
* // Hide all ticks and labels closer than 20% to axis end.
154-
* axis.renderer.ticks.template.maxPosition = 0.8;
155-
* axis.renderer.labels.template.maxPosition = 0.8;
146+
* axis.dataItems.template.maxPosition = 0.8;
156147
* ```
157148
* ```JSON
158149
* {
159150
* // ...
160151
* "xAxes": [{
161152
* // ...
162153
* // Hide all ticks and labels closer than 20% to axis end.
163-
* "renderer": {
164-
* "ticks": {
165-
* "maxPosition": 0.8
166-
* },
167-
* "labels": {
168-
* "maxPosition": 0.8
169-
* }
154+
* "dataItems": {
155+
* "maxPosition": 0.8
170156
* }
171157
* }]
172158
* }

dist/es2015/.internal/charts/axes/Axis.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/es2015/.internal/core/System.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/es2015/.internal/core/System.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/es2015/.internal/core/elements/Label.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ export declare class Label extends Container {
571571
* @return Available height (px)
572572
*/
573573
readonly availableHeight: number;
574-
getSvgElement(text: string, style?: string): AMElement;
574+
getSvgElement(text: string, style?: string, parent?: Group): AMElement;
575575
/**
576576
* Invalidates the whole element, including layout AND all its child
577577
* elements.

0 commit comments

Comments
 (0)