Skip to content

Commit

Permalink
v3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jinwoo-kim-nhn committed Aug 7, 2018
1 parent 7b7bdb4 commit 9e93fdb
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 32 deletions.
7 changes: 4 additions & 3 deletions dist/tui-chart-all.js
Expand Up @@ -2,10 +2,10 @@
* tui-chart-all
* @fileoverview tui-chart
* @author NHN Ent. FE Development Lab <dl_javascript@nhnent.com>
* @version 3.3.0
* @version 3.3.1
* @license MIT
* @link https://github.com/nhnent/tui.chart
* bundle created at "Mon Aug 06 2018 11:16:50 GMT+0900 (KST)"
* bundle created at "Tue Aug 07 2018 12:40:22 GMT+0900 (KST)"
*/
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
Expand Down Expand Up @@ -46595,8 +46595,9 @@ return /******/ (function(modules) { // webpackBootstrap

return (this.seriesData.sectorData || []).map(function (datum) {
var position = datum.ratio ? Object.assign({}, datum[positionType]) : null;
var isReCalculatePosition = position && showLegend && showLabel && !_this5.isLabelAlignOuter;

if (showLegend && showLabel && !_this5.isLabelAlignOuter) {
if (isReCalculatePosition) {
if (dataType === 'value') {
position.top -= valueLabelHeight / 2;
} else if (dataType === 'legend') {
Expand Down
6 changes: 3 additions & 3 deletions dist/tui-chart-all.min.js

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions dist/tui-chart-polyfill.js
Expand Up @@ -2,10 +2,10 @@
* tui-chart-polyfill
* @fileoverview tui-chart
* @author NHN Ent. FE Development Lab <dl_javascript@nhnent.com>
* @version 3.3.0
* @version 3.3.1
* @license MIT
* @link https://github.com/nhnent/tui.chart
* bundle created at "Mon Aug 06 2018 11:17:18 GMT+0900 (KST)"
* bundle created at "Tue Aug 07 2018 12:41:09 GMT+0900 (KST)"
*/
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
Expand Down Expand Up @@ -42272,8 +42272,9 @@ return /******/ (function(modules) { // webpackBootstrap

return (this.seriesData.sectorData || []).map(function (datum) {
var position = datum.ratio ? Object.assign({}, datum[positionType]) : null;
var isReCalculatePosition = position && showLegend && showLabel && !_this5.isLabelAlignOuter;

if (showLegend && showLabel && !_this5.isLabelAlignOuter) {
if (isReCalculatePosition) {
if (dataType === 'value') {
position.top -= valueLabelHeight / 2;
} else if (dataType === 'legend') {
Expand Down
6 changes: 3 additions & 3 deletions dist/tui-chart-polyfill.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/tui-chart.css
Expand Up @@ -2,10 +2,10 @@
* tui-chart
* @fileoverview tui-chart
* @author NHN Ent. FE Development Lab <dl_javascript@nhnent.com>
* @version 3.3.0
* @version 3.3.1
* @license MIT
* @link https://github.com/nhnent/tui.chart
* bundle created at "Mon Aug 06 2018 11:17:44 GMT+0900 (KST)"
* bundle created at "Tue Aug 07 2018 12:41:43 GMT+0900 (KST)"
*/
.tui-chart {
position: relative;
Expand Down
7 changes: 4 additions & 3 deletions dist/tui-chart.js
Expand Up @@ -2,10 +2,10 @@
* tui-chart
* @fileoverview tui-chart
* @author NHN Ent. FE Development Lab <dl_javascript@nhnent.com>
* @version 3.3.0
* @version 3.3.1
* @license MIT
* @link https://github.com/nhnent/tui.chart
* bundle created at "Mon Aug 06 2018 11:17:44 GMT+0900 (KST)"
* bundle created at "Tue Aug 07 2018 12:41:43 GMT+0900 (KST)"
*/
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
Expand Down Expand Up @@ -33420,8 +33420,9 @@ return /******/ (function(modules) { // webpackBootstrap

return (this.seriesData.sectorData || []).map(function (datum) {
var position = datum.ratio ? Object.assign({}, datum[positionType]) : null;
var isReCalculatePosition = position && showLegend && showLabel && !_this5.isLabelAlignOuter;

if (showLegend && showLabel && !_this5.isLabelAlignOuter) {
if (isReCalculatePosition) {
if (dataType === 'value') {
position.top -= valueLabelHeight / 2;
} else if (dataType === 'legend') {
Expand Down
4 changes: 2 additions & 2 deletions dist/tui-chart.min.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/tui-chart.min.js

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions package-lock.json 100755 → 100644

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
@@ -1,7 +1,7 @@
{
"name": "tui-chart",
"author": "NHN Ent. FE Development Lab <dl_javascript@nhnent.com>",
"version": "3.3.0",
"version": "3.3.1",
"main": "dist/tui-chart",
"license": "MIT",
"description": "TOAST UI Application: Chart",
Expand Down

0 comments on commit 9e93fdb

Please sign in to comment.