asajs 4.0.10-indev → 4.0.11

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.
package/config.d.ts CHANGED
@@ -15,6 +15,12 @@ export interface Config {
15
15
  fixInventoryItemRenderer?: boolean
16
16
  buildFolder?: string
17
17
  }
18
+
19
+ ui_analyzer?: {
20
+ enabled?: boolean
21
+ imports?: string[]
22
+ }
23
+
18
24
  packinfo?: {
19
25
  name?: string
20
26
  description?: string
@@ -17,6 +17,7 @@ export interface Control {
17
17
  draggable?: Value<boolean>;
18
18
  follows_cursor?: Value<boolean>;
19
19
  property_bag?: Value<PropertyBags>;
20
+ collection_index?: Value<number>;
20
21
  property_bag_for_children?: Value<PropertyBags>;
21
22
  [key: Binding]: Value<any>;
22
23
  [key: Variable]: Value<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asajs",
3
- "version": "4.0.10-indev",
3
+ "version": "4.0.11",
4
4
  "description": "Create your Minecraft JSON-UI resource packs using JavaScript",
5
5
  "keywords": [
6
6
  "Minecraft",
@@ -14,7 +14,7 @@
14
14
  "type": "git",
15
15
  "url": "git+https://github.com/asakiyuki/asajs.git"
16
16
  },
17
- "license": "MIT",
17
+ "license": "GPL-3.0-only",
18
18
  "author": "Asaki Yuki",
19
19
  "type": "module",
20
20
  "main": "dist/js/index.js",