@avs/go 0.14.72008 → 0.14.72037

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/LICENSE +195 -0
  2. package/NOTICE +5 -0
  3. package/README.md +2 -2
  4. package/dist/avs-element-mixin.d.ts +3 -3
  5. package/dist/avs-element-mixin.d.ts.map +1 -1
  6. package/dist/avs-element-mixin.js +1 -1
  7. package/dist/avs-go-dataviz.d.ts +34 -44
  8. package/dist/avs-go-dataviz.d.ts.map +1 -1
  9. package/dist/avs-go-dataviz.js +49 -66
  10. package/dist/avs-go-dynamic-html.d.ts +1 -1
  11. package/dist/avs-go-dynamic-html.d.ts.map +1 -1
  12. package/dist/avs-go-dynamic-html.js +8 -3
  13. package/dist/avs-go-info.d.ts +1 -1
  14. package/dist/avs-go-info.d.ts.map +1 -1
  15. package/dist/avs-go-info.js +7 -2
  16. package/dist/avs-go.min.js +36 -57
  17. package/dist/avs-renderer.d.ts +2 -2
  18. package/dist/avs-renderer.d.ts.map +1 -1
  19. package/dist/avs-renderer.js +5 -1
  20. package/dist/constants.d.ts +1 -1
  21. package/dist/constants.js +2 -2
  22. package/dist/icons.d.ts +1 -1
  23. package/dist/icons.js +1 -1
  24. package/dist/index.d.ts +1 -1
  25. package/dist/index.js +1 -1
  26. package/dist/types.d.ts +4 -15
  27. package/dist/types.d.ts.map +1 -1
  28. package/dist/types.js +2 -18
  29. package/licenses/lit.BSD-3 +28 -0
  30. package/{lib/LICENSE-avsthreejs → licenses/three.MIT} +1 -21
  31. package/package.json +14 -4
  32. package/demo/data/scene.json +0 -1
  33. package/demo/img/avs.png +0 -0
  34. package/demo/jsonView.html +0 -36
  35. package/dist/avs-go.min.js.LICENSE.txt +0 -61
  36. package/rollup.config.js +0 -26
  37. package/src/avs-element-mixin.ts +0 -126
  38. package/src/avs-go-dataviz.ts +0 -2400
  39. package/src/avs-go-dynamic-html.ts +0 -138
  40. package/src/avs-go-info.ts +0 -141
  41. package/src/avs-renderer.ts +0 -44
  42. package/src/constants.ts +0 -21
  43. package/src/icons.ts +0 -29
  44. package/src/index.ts +0 -23
  45. package/src/types.ts +0 -160
  46. package/tsconfig.json +0 -16
package/LICENSE ADDED
@@ -0,0 +1,195 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ AVS/GO SUBCOMPONENTS:
180
+
181
+ AVS/Go includes a number of subcomponents with
182
+ separate copyright notices and license terms. Your use of the source
183
+ code for these subcomponents is subject to the terms and
184
+ conditions of the following licenses.
185
+
186
+ This product bundles three.js, copyright Three.js authors,
187
+ which is available under a MIT license.
188
+ For details, see licenses/three.MIT.
189
+
190
+ This product bundles Lit copyright Google LLC,
191
+ which is available under a BSD 3-Clause license.
192
+ For details, see licenses/lit.BSD-3.
193
+
194
+ This product bundles DOMPurify copyright Dr.-Ing. Mario Heiderich, Cure53,
195
+ which is available under the Apache license 2.0.
package/NOTICE ADDED
@@ -0,0 +1,5 @@
1
+ AVS/Go
2
+ Copyright 2026 Advanced Visual Systems Inc.
3
+
4
+ This product includes software developed at
5
+ Advanced Visual Systems Inc (http://www.avs.com)
package/README.md CHANGED
@@ -15,8 +15,8 @@ npm install @avs/go
15
15
  <html>
16
16
  <head>
17
17
  <script type="module" src="@avs/go/dist/avs-go-dataviz.js"></script>
18
- <!-- or -->
19
- <script src="@avs/go/dist/avs-go.min.js"></script>
18
+ <!-- or -->
19
+ <script src="@avs/go/dist/avs-go.min.js"></script>
20
20
  </head>
21
21
  <body>
22
22
  <avs-go-dataviz
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2018 Advanced Visual Systems Inc.
3
+ * Copyright 2018-2026 Advanced Visual Systems Inc.
4
4
  *
5
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
6
  * you may not use this file except in compliance with the License.
@@ -20,8 +20,8 @@
20
20
  import { LitElement } from 'lit';
21
21
  type Constructor<T = {}> = new (...args: any[]) => T;
22
22
  export declare class AvsElementMixinInterface {
23
- _httpRequest(url: string, onLoad?: (response: any) => void, onError?: () => void, model?: object): any;
24
- _dispatchErrorEvent(error: string): any;
23
+ _httpRequest(url: string, onLoad?: (response: any) => void, onError?: () => void, model?: object): void;
24
+ _dispatchErrorEvent(error: string): void;
25
25
  }
26
26
  export declare const AvsElementMixin: <T extends Constructor<LitElement>>(superClass: T) => Constructor<AvsElementMixinInterface> & T;
27
27
  export {};
@@ -1 +1 @@
1
- {"version":3,"file":"avs-element-mixin.d.ts","sourceRoot":"","sources":["../src/avs-element-mixin.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AAEH,OAAO,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;AAIjC,KAAK,WAAW,CAAC,CAAC,GAAG,EAAE,IAAI,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;AAErD,MAAM,CAAC,OAAO,OAAO,wBAAwB;IAC3C,YAAY,CAAC,GAAG,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC,QAAQ,EAAE,GAAG,KAAK,IAAI,EAAE,OAAO,CAAC,EAAE,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,MAAM;IAChG,mBAAmB,CAAC,KAAK,EAAE,MAAM;CAClC;AAED,eAAO,MAAM,eAAe,GAAI,CAAC,SAAS,WAAW,CAAC,UAAU,CAAC,EAAE,YAAY,CAAC,KA6F/C,WAAW,CAAC,wBAAwB,CAAC,GAAG,CACxE,CAAA"}
1
+ {"version":3,"file":"avs-element-mixin.d.ts","sourceRoot":"","sources":["../src/avs-element-mixin.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AAEH,OAAO,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;AAIjC,KAAK,WAAW,CAAC,CAAC,GAAG,EAAE,IAAI,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;AAErD,MAAM,CAAC,OAAO,OAAO,wBAAwB;IAC3C,YAAY,CAAC,GAAG,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC,QAAQ,EAAE,GAAG,KAAK,IAAI,EAAE,OAAO,CAAC,EAAE,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI;IACvG,mBAAmB,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;CACzC;AAED,eAAO,MAAM,eAAe,GAAI,CAAC,SAAS,WAAW,CAAC,UAAU,CAAC,EAAE,YAAY,CAAC,KA6F/C,WAAW,CAAC,wBAAwB,CAAC,GAAG,CACxE,CAAA"}
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2018 Advanced Visual Systems Inc.
3
+ * Copyright 2018-2026 Advanced Visual Systems Inc.
4
4
  *
5
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
6
  * you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2018 Advanced Visual Systems Inc.
3
+ * Copyright 2018-2026 Advanced Visual Systems Inc.
4
4
  *
5
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
6
  * you may not use this file except in compliance with the License.
@@ -38,6 +38,7 @@ declare const AvsGoDataViz_base: (new (...args: any[]) => import("./avs-element-
38
38
  * @applysMixin AvsElementMixin
39
39
  */
40
40
  export declare class AvsGoDataViz extends AvsGoDataViz_base {
41
+ static styles: import("lit").CSSResult;
41
42
  render(): import("lit-html").TemplateResult<1>;
42
43
  /** Don't request a new scene upon initialization or resize. */
43
44
  manualUpdate?: boolean;
@@ -188,7 +189,7 @@ export declare class AvsGoDataViz extends AvsGoDataViz_base {
188
189
  pointerDown: boolean;
189
190
  pointerDownX: number;
190
191
  pointerDownY: number;
191
- imageMapData: Array<any>;
192
+ imageMapData?: Array<any>;
192
193
  rectCanvas: HTMLCanvasElement;
193
194
  rectCtx: CanvasRenderingContext2D;
194
195
  sceneImage: HTMLImageElement;
@@ -200,10 +201,6 @@ export declare class AvsGoDataViz extends AvsGoDataViz_base {
200
201
  showMotionCaptureTooltip: boolean;
201
202
  zoomOverlayTimeoutId: number;
202
203
  timer: number;
203
- /**
204
- * Default line style and color
205
- */
206
- _rectangleStyle(): void;
207
204
  /**
208
205
  * Assemble the model from our properties to send to the server.
209
206
  */
@@ -211,7 +208,7 @@ export declare class AvsGoDataViz extends AvsGoDataViz_base {
211
208
  /**
212
209
  *
213
210
  */
214
- _applyCustomCssProperties(cssProperties: any, style: any, values: any): void;
211
+ _applyCustomCssProperties(cssProperties: object, style: CSSStyleDeclaration, values: object): void;
215
212
  /**
216
213
  *
217
214
  */
@@ -242,8 +239,8 @@ export declare class AvsGoDataViz extends AvsGoDataViz_base {
242
239
  * @param response Response parsed from HTTP or file.
243
240
  */
244
241
  _handleHttpResponse(response: DataVizResponse): void;
245
- getInheritedBackgroundCol(el: HTMLElement): any;
246
- getDefaultBackground(): string;
242
+ _getInheritedBackgroundCol(el: HTMLElement): string;
243
+ _getDefaultBackground(): string;
247
244
  /**
248
245
  *
249
246
  */
@@ -307,52 +304,45 @@ export declare class AvsGoDataViz extends AvsGoDataViz_base {
307
304
  _handleMotionCaptureCopyData(): void;
308
305
  _handleMotionCaptureCopyUrl(): Promise<void>;
309
306
  /**
310
- * Convert a string to its UTF-8 bytes and compress it.
311
- *
312
- * @param {string} str
313
- * @returns {Promise<Uint8Array>}
314
- */
315
- _compress(str: string): Promise<Uint8Array<ArrayBuffer>>;
316
- /**
317
- * Decompress bytes into a UTF-8 string.
307
+ * Gzip compress a string.
318
308
  *
319
- * @param {Uint8Array} compressedBytes
309
+ * @param {string} inString
320
310
  * @returns {Promise<string>}
321
311
  */
322
- _decompress(compressedBytes: any): Promise<string>;
312
+ _compress(inString: string): Promise<string>;
323
313
  /**
324
- * Combine multiple Uint8Arrays into one.
314
+ * Gzip decompress a string.
325
315
  *
326
- * @param {ReadonlyArray<Uint8Array>} uint8arrays
327
- * @returns {Promise<Uint8Array>}
316
+ * @param {string} inString
317
+ * @returns {Promise<string>}
328
318
  */
329
- _concatUint8Arrays(uint8arrays: any): Promise<Uint8Array<ArrayBuffer>>;
319
+ _decompress(inString: string): Promise<string>;
330
320
  _handleMotionCaptureClear(): void;
331
321
  _updatePixelRatio(change?: boolean): void;
332
322
  /**
333
323
  * Change in 'motion-capture-controls-enable' property.
334
324
  */
335
- _motionCaptureControlsEnableChanged(newValue: any, oldValue: any): void;
325
+ _motionCaptureControlsEnableChanged(newValue: boolean, oldValue?: boolean): void;
336
326
  /**
337
327
  * Change in 'transform-enable' property.
338
328
  */
339
- _transformEnableChanged(newValue: any, oldValue: any): void;
329
+ _transformEnableChanged(newValue: boolean, oldValue?: boolean): void;
340
330
  /**
341
331
  * Change in the 'transform-client-only' property.
342
332
  */
343
- _transformClientOnlyChanged(newValue: any, oldValue: any): void;
333
+ _transformClientOnlyChanged(newValue: boolean, oldValue?: boolean): void;
344
334
  /**
345
335
  * Change in 'transform-rotate-disable' property.
346
336
  */
347
- _transformRotateDisableChanged(newValue: any, oldValue: any): void;
337
+ _transformRotateDisableChanged(newValue: boolean, oldValue?: boolean): void;
348
338
  /**
349
339
  * Change in 'transform-zoom-disable' property.
350
340
  */
351
- _transformZoomDisableChanged(newValue: any, oldValue: any): void;
341
+ _transformZoomDisableChanged(newValue: boolean, oldValue?: boolean): void;
352
342
  /**
353
343
  * Change in 'transform-pan-disable' property.
354
344
  */
355
- _transformPanDisableChanged(newValue: any, oldValue: any): void;
345
+ _transformPanDisableChanged(newValue: boolean, oldValue?: boolean): void;
356
346
  /**
357
347
  * Reset the transform interactor.
358
348
  */
@@ -380,11 +370,11 @@ export declare class AvsGoDataViz extends AvsGoDataViz_base {
380
370
  /**
381
371
  * Change in 'animated-glyphs-visible' property.
382
372
  */
383
- _animatedGlyphsVisibleChanged(newValue: any, oldValue: any): void;
373
+ _animatedGlyphsVisibleChanged(newValue: boolean, oldValue?: boolean): void;
384
374
  /**
385
375
  * Change in 'animated-glyphs-enable' property.
386
376
  */
387
- _animatedGlyphsEnableChanged(newValue: any, oldValue: any): void;
377
+ _animatedGlyphsEnableChanged(newValue: boolean, oldValue?: boolean): void;
388
378
  /**
389
379
  * Change in 'transform-twist-angle', 'transform-tilt-angle' or 'transform-scale' properties.
390
380
  */
@@ -392,34 +382,34 @@ export declare class AvsGoDataViz extends AvsGoDataViz_base {
392
382
  /**
393
383
  * Change in 'motion-capture' property.
394
384
  */
395
- _motionCaptureValueChanged(newValue: any, oldValue: any): Promise<void>;
385
+ _motionCaptureValueChanged(newValue: string, oldValue?: string): Promise<void>;
396
386
  /**
397
387
  * Change in 'zoom-rectangle-enable' property.
398
388
  */
399
- _zoomRectangleEnableChanged(newValue: any, oldValue: any): void;
389
+ _zoomRectangleEnableChanged(newValue: boolean, oldValue?: boolean): void;
400
390
  /**
401
391
  * Change in 'pan-enable' property.
402
392
  */
403
- _panEnableChanged(newValue: any, oldValue: any): void;
393
+ _panEnableChanged(newValue: boolean, oldValue?: boolean): void;
404
394
  /**
405
395
  * Change in 'pan-zoom-enable' property.
406
396
  */
407
- _panZoomEnableChanged(newValue: any, oldValue: any): void;
408
- _handlePanChanged(e: any): void;
409
- _handlePanZoom(e: any): void;
410
- _handlePanZoomEnd(e: any): void;
397
+ _panZoomEnableChanged(newValue: boolean, oldValue?: boolean): void;
398
+ _handlePanChanged(e: CustomEvent): void;
399
+ _handlePanZoom(e: CustomEvent): void;
400
+ _handlePanZoomEnd(e: CustomEvent): void;
411
401
  /**
412
402
  * Change in 'pan-width-zoom-level' property.
413
403
  */
414
- _panWidthZoomLevelChanged(newValue: any, oldValue: any): void;
404
+ _panWidthZoomLevelChanged(newValue: number, oldValue?: number): void;
415
405
  /**
416
406
  * Change in 'pan-height-zoom-level' property.
417
407
  */
418
- _panHeightZoomLevelChanged(newValue: any, oldValue: any): void;
408
+ _panHeightZoomLevelChanged(newValue: number, oldValue?: number): void;
419
409
  /**
420
410
  * Change in 'pan-maximum-zoom-level' property.
421
411
  */
422
- _panMaximumZoomLevelChanged(newValue: any, oldValue: any): void;
412
+ _panMaximumZoomLevelChanged(newValue: number, oldValue?: number): void;
423
413
  /**
424
414
  * Reset the pan interactor.
425
415
  */
@@ -427,15 +417,15 @@ export declare class AvsGoDataViz extends AvsGoDataViz_base {
427
417
  /**
428
418
  * Change in 'renderer' property.
429
419
  */
430
- _rendererChanged(newValue: any, oldValue: any): void;
420
+ _rendererChanged(newValue: Renderer, oldValue?: Renderer): void;
431
421
  /**
432
422
  * Change in 'track-enable' property.
433
423
  */
434
- _trackEnableChanged(newValue: any, oldValue: any): void;
424
+ _trackEnableChanged(newValue: boolean, oldValue?: boolean): void;
435
425
  /**
436
426
  * Change in 'display-canvas' property.
437
427
  */
438
- _displayCanvasChanged(newValue: any, oldValue: any): void;
428
+ _displayCanvasChanged(newValue: boolean, oldValue?: boolean): void;
439
429
  setTooltipHTML(html: string): void;
440
430
  showTooltip(clientX: number, clientY: number): void;
441
431
  hideTooltip(): void;
@@ -1 +1 @@
1
- {"version":3,"file":"avs-go-dataviz.d.ts","sourceRoot":"","sources":["../src/avs-go-dataviz.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AAGH,OAAO,EAAE,UAAU,EAAQ,cAAc,EAAE,MAAM,KAAK,CAAC;AAIvD,OAAO,EAAE,MAAM,EAAE,mBAAmB,EAAE,aAAa,EAAE,uBAAuB,EAAiB,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAG9I,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,kBAAkB,EAAE,SAAS,EAAc,SAAS,EAAE,cAAc,EAAE,QAAQ,EAAoC,MAAM,YAAY,CAAC;;AAS7K;;;;;;;;;;;;;;;GAeG;AACH,qBACa,YAAa,SAAQ,iBAA2B;IAC3D,MAAM;IAwLN,+DAA+D;IAE/D,YAAY,CAAC,EAAE,OAAO,CAAC;IAEvB,mEAAmE;IAEnE,aAAa,EAAE,OAAO,CAAC;IAEvB,mEAAmE;IAEnE,GAAG,EAAE,MAAM,CAAC;IAEZ,wCAAwC;IAExC,eAAe,CAAC,EAAE,OAAO,CAAC;IAE1B,2EAA2E;IAE3E,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB,gFAAgF;IAEhF,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAElC,qEAAqE;IAErE,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,0EAA0E;IAE1E,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAE7B,wEAAwE;IAExE,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,6EAA6E;IAE7E,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAEhC,sFAAsF;IAEtF,QAAQ,EAAE,QAAQ,CAAC;IAEnB,gGAAgG;IAEhG,YAAY,CAAC,EAAE,OAAO,CAAC;IAEvB,0DAA0D;IAE1D,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAE9B,gDAAgD;IAEhD,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB,kLAAkL;IAElL,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;uEACmE;IAEnE,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB,mGAAmG;IAEnG,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB,mCAAmC;IAEnC,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB,iHAAiH;IAEjH,QAAQ,CAAC,EAAE,SAAS,CAAC;IAErB,mEAAmE;IAEnE,QAAQ,CAAC,EAAE,SAAS,CAAC;IAErB,2DAA2D;IAE3D,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAE7B,wEAAwE;IAExE,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAE3B,qKAAqK;IAErK,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAElC,sGAAsG;IAEtG,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAElC,qCAAqC;IAErC,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB,mHAAmH;IAEnH,UAAU,CAAC,EAAE,SAAS,CAAC;IAEvB,mEAAmE;IAEnE,UAAU,CAAC,EAAE,SAAS,CAAC;IAEvB,2DAA2D;IAE3D,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAE/B,wEAAwE;IAExE,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAE7B,qKAAqK;IAErK,yBAAyB,CAAC,EAAE,OAAO,CAAC;IAEpC,wGAAwG;IAExG,yBAAyB,CAAC,EAAE,OAAO,CAAC;IAEpC,qCAAqC;IAErC,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB,mHAAmH;IAEnH,UAAU,CAAC,EAAE,SAAS,CAAC;IAEvB,mEAAmE;IAEnE,UAAU,CAAC,EAAE,SAAS,CAAC;IAEvB,2DAA2D;IAE3D,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAE/B,wEAAwE;IAExE,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAE7B,qKAAqK;IAErK,yBAAyB,CAAC,EAAE,OAAO,CAAC;IAEpC;;;;;OAKG;IAEH,eAAe,CAAC,EAAE,OAAO,CAAC;IAE1B,sFAAsF;IAEtF,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAE9B,uCAAuC;IAEvC,sBAAsB,CAAC,EAAE,OAAO,CAAC;IAEjC,sCAAsC;IAEtC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAE/B,sCAAsC;IAEtC,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAE9B,gDAAgD;IAEhD,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAE7B,+CAA+C;IAE/C,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAE5B,0CAA0C;IAE1C,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB,kCAAkC;IAElC,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;;;;OAKG;IAEH,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAE9B;;;;OAIG;IAEH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;;OAGG;IAEH,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB,8EAA8E;IAE9E,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAE3B,+EAA+E;IAE/E,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAE5B,iGAAiG;IAEjG,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAE7B,wEAAwE;IAExE,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAEhC,0EAA0E;IAE1E,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAE/B,kFAAkF;IAElF,2BAA2B,CAAC,EAAE,OAAO,CAAC;IAGtC,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,cAAc,EAAE,MAAM,CAAC;IACvB,eAAe,EAAE,MAAM,CAAC;IACxB,eAAe,EAAE,MAAM,CAAC;IACxB,gBAAgB,EAAE,MAAM,CAAC;IACzB,WAAW,EAAE,OAAO,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,YAAY,CAAC;IACpB,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,mBAAmB,EAAE,mBAAmB,CAAC;IACzC,eAAe,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAC/B,QAAQ,EAAE,QAAQ,CAAC;IACnB,aAAa,EAAE,aAAa,CAAC;IAC7B,uBAAuB,EAAE,uBAAuB,CAAC;IACjD,YAAY,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;IACzB,WAAW,EAAE,OAAO,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;IACzB,UAAU,EAAE,iBAAiB,CAAC;IAC9B,OAAO,EAAE,wBAAwB,CAAC;IAClC,UAAU,EAAE,gBAAgB,CAAC;IAC7B,aAAa,EAAE,cAAc,CAAC;IAC9B,MAAM,EAAE,cAAc,CAAC;IACvB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,mBAAmB,EAAE,KAAK,CAAC,kBAAkB,CAAC,CAAC;IAC/C,wBAAwB,EAAE,OAAO,CAAC;IAClC,oBAAoB,EAAE,MAAM,CAAC;IAC7B,KAAK,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,eAAe;IAKf;;OAEG;IACH,cAAc,CAAC,SAAS,CAAC,EAAE,OAAO,GAAG,YAAY;IA0PjD;;OAEG;IACH,yBAAyB,CAAC,aAAa,KAAA,EAAE,KAAK,KAAA,EAAE,MAAM,KAAA;IAWtD;;OAEG;IACH,SAAS,CAAC,WAAW,EAAE,OAAO;IA+B9B,mBAAmB;IAOnB,WAAW;IAwBX,WAAW;IAKX,YAAY;IAIZ,WAAW;IAIX;;OAEG;IACH,OAAO,CAAC,iBAAiB,EAAE,cAAc,CAAC,IAAI,CAAC;IAqH/C;;OAEG;IACH,gBAAgB;IAIhB;;OAEG;IACH,YAAY;IAKZ;;OAEG;IACH,KAAK;IAgBL;;;OAGG;IACH,mBAAmB,CAAC,QAAQ,EAAE,eAAe;IAyH7C,yBAAyB,CAAC,EAAE,EAAE,WAAW;IAezC,oBAAoB;IASpB;;OAEG;IACH,mBAAmB;IAYnB;;OAEG;IACH,kBAAkB,CAAC,IAAI,EAAE,eAAe;IAQxC;;OAEG;IACH,UAAU,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,aAAa,EAAE,WAAW;IAgB3D;;OAEG;IACH,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM;IAkCxE;;OAEG;IACH,kBAAkB,CAAC,CAAC,EAAE,YAAY;IAelC;;OAEG;IACH,kBAAkB,CAAC,CAAC,EAAE,YAAY;IAyClC;;OAEG;IACH,gBAAgB,CAAC,CAAC,EAAE,YAAY;IAkBhC,kBAAkB,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM;;;;IAUvC,2BAA2B,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM;;;;;;IAiBxE,YAAY,CAAE,cAAc,EAAE,cAAc,EAAE,oBAAoB,CAAC,EAAE,OAAO,EAAE,cAAc,CAAC,EAAE,GAAG;IAwIlG,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,OAAO;IAqDlE;;OAEG;IACH,mBAAmB,CAAC,cAAc,EAAE,cAAc;IAuClD,WAAW;;IAgCX;;OAEG;IACH,iBAAiB;IAkBjB;;OAEG;IACH,oBAAoB;IAMpB,uCAAuC,CAAC,CAAC,EAAE,YAAY;IAcvD,uCAAuC;IAMvC,SAAS,CAAC,CAAC,EAAE,MAAM;IAInB,4BAA4B;IA8B5B,iCAAiC;IAQjC,iCAAiC;IAQjC,4BAA4B;IActB,2BAA2B;IAmBjC;;;;;OAKG;IACG,SAAS,CAAC,GAAG,EAAE,MAAM;IAiB3B;;;;;OAKG;IACG,WAAW,CAAC,eAAe,KAAA;IAoBjC;;;;;OAKG;IACG,kBAAkB,CAAC,WAAW,KAAA;IAMpC,yBAAyB;IAazB,iBAAiB,CAAC,MAAM,CAAC,EAAE,OAAO;IAQlC;;OAEG;IACH,mCAAmC,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAKtD;;OAEG;IACH,uBAAuB,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IA2B1C;;OAEG;IACH,2BAA2B,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAS9C;;OAEG;IACH,8BAA8B,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAMjD;;OAEG;IACH,4BAA4B,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAM/C;;OAEG;IACH,2BAA2B,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAM9C;;OAEG;IACH,cAAc;IAMd;;OAEG;IACH,MAAM;IAMN;;OAEG;IACH,OAAO;IAMP;;OAEG;IACH,KAAK,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM;IAMrC,uBAAuB;;;;;;IAmBvB,kBAAkB;IAMlB,YAAY;IAuBZ;;OAEG;IACH,6BAA6B,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAMhD;;OAEG;IACH,4BAA4B,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAM/C;;OAEG;IACH,sBAAsB;IAqBtB;;OAEG;IACG,0BAA0B,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IA0CnD;;OAEG;IACH,2BAA2B,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAkB9C;;OAEG;IACH,iBAAiB,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IA4BpC;;OAEG;IACH,qBAAqB,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAexC,iBAAiB,CAAC,CAAC,KAAA;IAQnB,cAAc,CAAC,CAAC,KAAA;IA4BhB,iBAAiB,CAAC,CAAC,KAAA;IAKnB;;OAEG;IACH,yBAAyB,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAM5C;;OAEG;IACH,0BAA0B,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAM7C;;OAEG;IACH,2BAA2B,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAM9C;;OAEG;IACH,QAAQ;IAMR;;OAEG;IACH,gBAAgB,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAyEnC;;OAEG;IACH,mBAAmB,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IActC;;OAEG;IACH,qBAAqB,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAMxC,cAAc,CAAC,IAAI,EAAE,MAAM;IAI3B,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM;IAQ5C,WAAW;IAKX,oBAAoB,CAAC,OAAO,EAAE,cAAc,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM;;;;IAmC9E,UAAU,CAAC,UAAU,EAAE,cAAc;;;;CAMtC;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,gBAAgB,EAAE,YAAY,CAAC;KAChC;CACF"}
1
+ {"version":3,"file":"avs-go-dataviz.d.ts","sourceRoot":"","sources":["../src/avs-go-dataviz.ts"],"names":[],"mappings":"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"}