@pilotdev/pilot-web-2d 24.9.0 → 24.12.0

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 (2) hide show
  1. package/index.d.ts +3 -2
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -71,6 +71,7 @@ export namespace Viewer3DIcons {
71
71
  const VIEWER_MEASUREMENT_PLANE_ICON: string;
72
72
  const VIEWER_MEASUREMENT_PERPENDICULAR_ICON: string;
73
73
  const VIEWER_MEASUREMENT_DIMENSION_ICON: string;
74
+ const VIEWER_ZOOM_TO_FIT_ICON: string;
74
75
  }
75
76
  export namespace ViewerGeneralIcons {
76
77
  const CLOSE: string;
@@ -356,8 +357,8 @@ export namespace Button {
356
357
  }
357
358
  export class SubMenu implements IMenu {
358
359
  readonly controls: IControl[];
359
- set selectedIndex(value: MDCListIndex);
360
- get selectedIndex(): MDCListIndex;
360
+ set selectedIndex(value: number | number[]);
361
+ get selectedIndex(): number | number[];
361
362
  setEnabled(index: number, value: boolean): void;
362
363
  addControl(control: IControl, index?: number): void;
363
364
  removeControl(index?: number): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pilotdev/pilot-web-2d",
3
- "version": "24.9.0",
3
+ "version": "24.12.0",
4
4
  "description": "TypeScript definitions for ASCON PilotWeb2D component",
5
5
  "main": "",
6
6
  "types": "index.d.ts",