@operato/scene-legend 2.0.0-alpha.9 → 7.0.0-rc.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,28 @@
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
+ ## [7.0.0-rc.0](https://github.com/things-scene/operato-scene/compare/v2.0.0-beta.8...v7.0.0-rc.0) (2024-06-21)
7
+
8
+ **Note:** Version bump only for package @operato/scene-legend
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.0.0-beta.0](https://github.com/things-scene/operato-scene/compare/v2.0.0-alpha.12...v2.0.0-beta.0) (2024-06-01)
15
+
16
+
17
+ ### :rocket: New Features
18
+
19
+ * 2.0.0-beta.0 ([a2e2869](https://github.com/things-scene/operato-scene/commit/a2e28694eedf5bab0c54bcab5432d54ec59edd7f))
20
+
21
+
22
+ ### :bug: Bug Fix
23
+
24
+ * allowJs in tsconfig option ([fa77174](https://github.com/things-scene/operato-scene/commit/fa771742188f21f177f0a85281570f59f0c478cf))
25
+
26
+
27
+
6
28
  ## [2.0.0-alpha.9](https://github.com/things-scene/operato-scene/compare/v2.0.0-alpha.8...v2.0.0-alpha.9) (2024-04-11)
7
29
 
8
30
 
@@ -1,5 +1,5 @@
1
1
  import './editor-legend-status';
2
2
  import { OxPropertyEditor, PropertySpec } from '@operato/property-editor';
3
3
  export declare class PropertyEditorLegendStatus extends OxPropertyEditor {
4
- editorTemplate(value: any, spec: PropertySpec): import("lit").TemplateResult<1>;
4
+ editorTemplate(value: any, spec: PropertySpec): import("lit-html").TemplateResult<1>;
5
5
  }
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": "2.0.0-alpha.9",
5
+ "version": "7.0.0-rc.0",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
8
8
  "license": "MIT",
@@ -32,8 +32,8 @@
32
32
  },
33
33
  "devDependencies": {
34
34
  "@hatiolab/prettier-config": "^1.0.0",
35
- "@things-factory/builder": "^7.0.1-alpha.0",
36
- "@things-factory/operato-board": "^7.0.1-alpha.0",
35
+ "@things-factory/builder": "^7.0.1-beta.0",
36
+ "@things-factory/operato-board": "^7.0.1-beta.0",
37
37
  "@typescript-eslint/eslint-plugin": "^4.33.0",
38
38
  "@typescript-eslint/parser": "^4.33.0",
39
39
  "@web/dev-server": "^0.1.28",
@@ -58,5 +58,5 @@
58
58
  "prettier --write"
59
59
  ]
60
60
  },
61
- "gitHead": "1d9866ed1195dcb8bd7461c83cfd3e598b155c7c"
61
+ "gitHead": "40c22930ab65ec885f47a53429adc60e7f9c260f"
62
62
  }
package/tsconfig.json CHANGED
@@ -7,6 +7,7 @@
7
7
  "lib": ["es2019", "dom"],
8
8
  "strict": true,
9
9
  "esModuleInterop": false,
10
+ "allowJs": true,
10
11
  "allowSyntheticDefaultImports": true,
11
12
  "experimentalDecorators": true,
12
13
  "importHelpers": true,