@operato/scene-legend 1.3.7 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,23 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.4.0](https://github.com/things-scene/operato-scene/compare/v1.3.29...v1.4.0) (2025-01-11)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * update lit@3 ([9b7ffa0](https://github.com/things-scene/operato-scene/commit/9b7ffa0fc942715ea91439fd85db808b7475dd39))
12
+
13
+
14
+
15
+ ## [1.3.14](https://github.com/things-scene/operato-scene/compare/v1.3.13...v1.3.14) (2024-02-14)
16
+
17
+ **Note:** Version bump only for package @operato/scene-legend
18
+
19
+
20
+
21
+
22
+
6
23
  ## [1.3.7](https://github.com/things-scene/operato-scene/compare/v1.3.6...v1.3.7) (2024-01-01)
7
24
 
8
25
 
package/dist/legend.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Component, ComponentNature, Container, Properties } from '@hatiolab/things-scene';
1
+ import { Component, ComponentNature, Container, POSITION, Properties } from '@hatiolab/things-scene';
2
2
  export default class Legend extends Container {
3
3
  ready(): void;
4
4
  get showMoveHandle(): boolean;
@@ -7,7 +7,7 @@ export default class Legend extends Container {
7
7
  x: any;
8
8
  y: any;
9
9
  handler: {
10
- ondragmove: (point: import("@hatiolab/things-scene").POINT, index: number, component: Component) => void;
10
+ ondragmove: (point: POSITION, index: number, component: Component) => void;
11
11
  };
12
12
  }[];
13
13
  get layout(): import("@hatiolab/things-scene").LAYOUT;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/scene-legend",
3
3
  "description": "Legend component for things-scene.",
4
4
  "author": "heartyoh",
5
- "version": "1.3.7",
5
+ "version": "1.4.0",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
8
8
  "license": "MIT",
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@hatiolab/things-scene": "^3.2.0",
31
- "lit": "^2.4.0"
31
+ "lit": "^3.0.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@hatiolab/prettier-config": "^1.0.0",
@@ -58,5 +58,5 @@
58
58
  "prettier --write"
59
59
  ]
60
60
  },
61
- "gitHead": "1a9537c359f06a220491b213794c9747ab6e5a24"
61
+ "gitHead": "2644777dcc5096929f04c2fa0ded9185b1fc32cc"
62
62
  }