Skip to content

Commit

Permalink
ROU-3901: Update version and license after renewal - release 2023 V1 (#…
Browse files Browse the repository at this point in the history
…348)

* Update Wijmo version

* Fix issue in View._setGroups caused by WJM-22376

* Update wijmo.cloud.d.ts

* Fix column picker issue after upgrade

* Add comments

* Fix eslint issues

* Add new language "fr-CA"
  • Loading branch information
OS-giulianasilva committed Jun 22, 2023
1 parent 3803eec commit 134b58c
Show file tree
Hide file tree
Showing 98 changed files with 1,631 additions and 116 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down Expand Up @@ -697,7 +697,7 @@ declare module wijmo.barcode.common {
* barcode type.
*/
class Ean13 extends EanBase {
static readonly type: string;
static readonly type = "EAN13";
/**
* Initializes a new instance of the {@link Ean13} class.
* @param element The DOM element that hosts the control, or a selector for the host element (e.g. '#theCtrl').
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down Expand Up @@ -604,6 +604,7 @@ declare module wijmo.chart {
cssPriority: boolean;
readOnly: boolean;
precision: number;
readonly group: Element;
addClipRect(clipRect: wijmo.Rect, id: string): void;
drawEllipse(cx: number, cy: number, rx: number, ry: number, className?: string, style?: any): SVGElement;
drawRect(x: number, y: number, w: number, h: number, className?: string, style?: any, clipPath?: string): SVGElement;
Expand Down Expand Up @@ -655,6 +656,7 @@ declare module wijmo.chart {
private _colRowLens;
private _orient;
private _maxSz;
private _scrollbar;
/**
* Initializes a new instance of the {@link Legend} class.
*
Expand Down Expand Up @@ -684,10 +686,17 @@ declare module wijmo.chart {
* The size can be specified in pixels: maxSize = '100px' or percents: maxSize = '50%'.
*/
maxSize: number | string;
/**
* Gets or sets a value that determines whether the scrollbar should be used for a long legend.
*
* The default value for this property is **false**.
*/
scrollbar: boolean;
_getDesiredSize(engine: IRenderEngine, pos: Position, w: number, h: number): wijmo.Size;
_getPosition(w: number, h: number): Position;
_render(engine: IRenderEngine, pt: wijmo.Point, pos: Position, w: number, h: number): void;
_hitTest(pt: wijmo.Point): number;
private _addScrollbar;
private _invalidate;
_getMaxSize(sz: number): number;
}
Expand Down Expand Up @@ -1038,7 +1047,22 @@ declare module wijmo.chart {
* @param done A function to be called after data url is generated. The function gets passed the data url as its argument.
*/
saveImageToDataUrl(format: ImageFormat, done: Function): void;
_exportToImage(extension: any, processDataURI: any): void;
/**
* Saves the chart to a data url as SVG image.
*
* @param done A function to be called after data url is generated. The function gets passed the data url as its argument.
* @param embedCss Whether to include CSS styles to SVG image.
*/
saveSvgToDataUrl(done: Function, embedCss?: boolean): void;
/**
* Saves the chart to an SVG image file.
*
* @param filename The filename for the exported image file including extension.
* @param embedCss Whether to include CSS styles to SVG image.
*/
saveSvgToFile(filename: string, embedCss?: boolean): void;
_exportToImage(extension: any, processDataURI: any, options?: any): void;
prepareDataUri(ele: Element, extension: string, dataUrl: string, processDataURI: Function): void;
/**
* Refreshes the chart.
*
Expand Down Expand Up @@ -1476,6 +1500,8 @@ declare module wijmo.chart {
private _parea;
private _labelPadding;
private _actualLabels;
private _labelMin;
private _labelMax;
_axrect: wijmo.Rect;
_desiredSize: wijmo.Size;
_annoSize: wijmo.Size;
Expand Down Expand Up @@ -1602,6 +1628,18 @@ declare module wijmo.chart {
* ranging from -90 to 90.
*/
labelAngle: number;
/**
* Gets or sets a value that determines whether the minimum axis value should be always labeled.
*
* The default value for this property is **false**.
*/
labelMin: boolean;
/**
* Gets or sets a value that determines whether the maximum axis value should be always labeled.
*
* The default value for this property is **false**.
*/
labelMax: boolean;
/**
* Gets or sets the value at which an axis crosses the perpendicular axis.
**/
Expand Down Expand Up @@ -1756,6 +1794,7 @@ declare module wijmo.chart {
_renderLabel(engine: IRenderEngine, val: number, text: string, pos: wijmo.Point, ha: any, va: any, className?: string): boolean;
private _renderRotatedLabel;
private _getLabelAlign;
_addMinMaxLabels(vals: number[], lbls: string[]): void;
_customConvert: Function;
_customConvertBack: Function;
/**
Expand Down Expand Up @@ -3424,6 +3463,7 @@ declare module wijmo.chart {
private _updatePositionByAlignment;
private _getEventPoint;
private _pointInRect;
private _getTop;
}
}
declare module wijmo.chart {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down Expand Up @@ -88,6 +88,7 @@ declare module wijmo.chart.finance {
closes: number[];
constructor(highs: number[], lows: number[], opens: number[], closes: number[]);
calculate(): any;
isValid(n1: number, n2: number, n3: number, n4: number): boolean;
}
class _HeikinAshiCalculator extends _BaseCalculator {
constructor(highs: number[], lows: number[], opens: number[], closes: number[]);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down Expand Up @@ -163,6 +163,7 @@ declare module wijmo.chart.interaction {
private _onMouseMove;
private _onMouseup;
private _onMouseWheel;
private _focus;
private _mouseDown;
private _mouseMove;
private _mouseup;
Expand Down Expand Up @@ -193,8 +194,6 @@ declare module wijmo.chart.interaction {
private _initAxisRangeWithPosAndScale;
private _updateAxisRange;
private _reset;
private _getAxisMin;
private _getAxisMax;
private _getTransFormGroups;
private _disabledOthersInteraction;
private _getPoint;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down Expand Up @@ -186,6 +186,7 @@ declare module wijmo.chart.map {
private _touchEnd;
private _touchCancel;
private _mouseWheel;
private _getItem;
}
class MercatorProjection {
maxY: number;
Expand Down Expand Up @@ -515,10 +516,19 @@ declare module wijmo.chart.map {
getBBox(geoJson: GeoJSON.GeoJSON): wijmo.Rect;
getGeometryBBox(g: GeoJSON.Geometry, rect0?: wijmo.Rect): wijmo.Rect;
getRect(coords: number[], rect0?: wijmo.Rect): wijmo.Rect;
hitTest(geoJson: GeoJSON.GeoJSON, x: number, y: number): any;
private setAttribute;
private createId;
private flat;
}
class _GeoJsonHitTest {
static hitTest(geoJson: GeoJSON.GeoJSON, x: number, y: number): boolean;
static hitTestPolygon(poly: GeoJSON.Polygon, x: number, y: number): boolean;
static hitTestMultiPolygon(mpoly: GeoJSON.MultiPolygon, x: number, y: number): boolean;
static hitTestGeometry(g: GeoJSON.Geometry, x: number, y: number): boolean;
static contains(pts: number[][], x: number, y: number): boolean;
static west(x1: number, y1: number, x2: number, y2: number, x: number, y: number): boolean;
}
}
declare module wijmo.chart.map {
/**
Expand Down Expand Up @@ -560,6 +570,7 @@ declare module wijmo.chart.map {
symbolSize: number;
_clearCache(): void;
_getFeatureById(id: string): GeoJSON.Feature;
_hitTest(x: number, y: number): any;
}
}
declare module wijmo.chart.map {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
*
* Wijmo Library 5.20221.842
* Wijmo Library 5.20231.888
* http://wijmo.com/
*
* Copyright(c) GrapeCity, Inc. All rights reserved.
Expand Down Expand Up @@ -80,6 +80,7 @@ declare module wijmo.chart.webgl {
setViewportSize(w: number, h: number): void;
endRender(): void;
drawEllipse(cx: number, cy: number, rx: number, ry: number, className?: string, style?: any): SVGElement;
_getGroupClipRect(e?: Element): wijmo.Rect;
drawRect(x: number, y: number, w: number, h: number, className?: string, style?: any, clipPath?: string): SVGElement;
drawLines(xs: number[], ys: number[], className?: string, style?: any, clipPath?: string, num?: number): SVGElement;
drawPolygon(xs: number[], ys: number[], className?: string, style?: any, clipPath?: string): SVGElement;
Expand Down
Loading

0 comments on commit 134b58c

Please sign in to comment.