@vertexvis/viewer-toolkit-react 0.0.6-canary.12 → 0.0.6-canary.13

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.
@@ -5,6 +5,7 @@ interface UseCrossSectioningActions {
5
5
  enable(keepSnapshotSelection?: boolean): Promise<void>;
6
6
  disable(keepSnapshotSelection?: boolean): Promise<void>;
7
7
  reapply(): Promise<void>;
8
+ setHighlightColorAndLineWidth(): Promise<void>;
8
9
  openAdditionalTools(): Promise<void>;
9
10
  closeAdditionalTools(): void;
10
11
  openAlignmentTools(): void;
@@ -1,5 +1,6 @@
1
1
  import { UUID } from '@vertexvis/utils';
2
2
  import type { ModelView } from '@vertexvis/viewer';
3
+ export declare const MODEL_VIEW_ANIMATION_DURATION = 1000;
3
4
  export interface UseModelViewActions {
4
5
  fetchNextModelViews(itemId: UUID.UUID): void;
5
6
  loadModelView(itemId: UUID.UUID, modelView: ModelView): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertexvis/viewer-toolkit-react",
3
- "version": "0.0.6-canary.12",
3
+ "version": "0.0.6-canary.13",
4
4
  "description": "Components for common Vertex viewer usage patterns.",
5
5
  "author": "Vertex Developers <support@vertexvis.com> (https://developer.vertexvis.com)",
6
6
  "repository": {
@@ -30,7 +30,7 @@
30
30
  "prebuild": "yarn clean"
31
31
  },
32
32
  "dependencies": {
33
- "@vertexvis/utils": "^0.24.4-canary.6",
33
+ "@vertexvis/utils": "0.24.6-testing.0",
34
34
  "classnames": "^2.3.1",
35
35
  "pino": "^9.7.0",
36
36
  "react-infinite-scroller": "^1.2.6",
@@ -55,8 +55,8 @@
55
55
  "@vertexvis/jest-config-vertexvis": "^0.5.5",
56
56
  "@vertexvis/tailwind-config": "^0.1.3",
57
57
  "@vertexvis/ui-react": "^0.1.4",
58
- "@vertexvis/viewer-react": "0.24.4-canary.6",
59
- "@vertexwebtoolkit/build": "^0.0.6-canary.12",
58
+ "@vertexvis/viewer-react": "0.24.6-testing.0",
59
+ "@vertexwebtoolkit/build": "^0.0.6-canary.13",
60
60
  "autoprefixer": "^10.4.20",
61
61
  "chance": "^1.1.13",
62
62
  "eslint": "8.49.0",
@@ -87,5 +87,5 @@
87
87
  "react-dom": ">=16.3.0 <19.0.0",
88
88
  "tslib": ">=2.1.0"
89
89
  },
90
- "gitHead": "a2a2cdb9ee7615ddd6147c430f7351d686053c9a"
90
+ "gitHead": "d4493c88955f3313672d4d44e3f94ca4d7a3c3f6"
91
91
  }