@mathstack/viz 1.1.1 → 1.1.3
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.
|
@@ -21,7 +21,7 @@ export declare abstract class GeographiesLayerBuilder<TProperties, TGeometry ext
|
|
|
21
21
|
class(value: string): this;
|
|
22
22
|
class(value: (d: TProperties) => string): this;
|
|
23
23
|
/**
|
|
24
|
-
* OPTIONAL. Determines whether the layer can use viz
|
|
24
|
+
* OPTIONAL. Determines whether the layer can use viz event actions.
|
|
25
25
|
*
|
|
26
26
|
* If true, the event listener that corresponds to the provided directive will be placed on that layer's paths.
|
|
27
27
|
*
|
package/lib/lines/index.d.ts
CHANGED
|
@@ -6,5 +6,6 @@ export * from './events/actions/lines-hover-move-actions';
|
|
|
6
6
|
export * from './events/actions/lines-marker-click-actions';
|
|
7
7
|
export * from './events/lines-events.directive';
|
|
8
8
|
export * from './events/lines-interaction-output';
|
|
9
|
+
export * from './events/lines-tooltip-positioner';
|
|
9
10
|
export * from './lines.component';
|
|
10
11
|
export * from './lines.module';
|
package/package.json
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"name": "@mathstack/viz",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/cdk": "
|
|
6
|
-
"@angular/common": "
|
|
7
|
-
"@angular/core": "
|
|
5
|
+
"@angular/cdk": ">=19.0.0 <21.0.0",
|
|
6
|
+
"@angular/common": ">=19.0.0 <21.0.0",
|
|
7
|
+
"@angular/core": ">=19.0.0 <21.0.0",
|
|
8
8
|
"@mathstack/app-kit": "^1.0.0",
|
|
9
9
|
"csstype": "^3.1.3",
|
|
10
10
|
"d3": "^7.6.1",
|
|
@@ -19,7 +19,12 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"tslib": "^2.3.0"
|
|
21
21
|
},
|
|
22
|
-
"
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "https://github.com/mathematica-pub/frontend-shared-packages.git",
|
|
25
|
+
"directory": "libs/viz"
|
|
26
|
+
},
|
|
27
|
+
"version": "1.1.3",
|
|
23
28
|
"module": "fesm2022/mathstack-viz.mjs",
|
|
24
29
|
"typings": "index.d.ts",
|
|
25
30
|
"exports": {
|