@stencil/angular-output-target 0.0.1-dev.11698339873.1ef44d58 → 0.0.1-dev.11698434337.14ecd9f2

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.
@@ -12,6 +12,14 @@ export const proxyInputs = (Cmp: any, inputs: string[]) => {
12
12
  set(val: any) {
13
13
  this.z.runOutsideAngular(() => (this.el[item] = val));
14
14
  },
15
+ /**
16
+ * In the event that proxyInputs is called
17
+ * multiple times re-defining these inputs
18
+ * will cause an error to be thrown. As a result
19
+ * we set configurable: true to indicate these
20
+ * properties can be changed.
21
+ */
22
+ configurable: true,
15
23
  });
16
24
  });
17
25
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/angular-output-target",
3
- "version": "0.0.1-dev.11698339873.1ef44d58",
3
+ "version": "0.0.1-dev.11698434337.14ecd9f2",
4
4
  "description": "Angular output target for @stencil/core components.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",
@@ -58,7 +58,7 @@
58
58
  ],
59
59
  "testURL": "http://localhost"
60
60
  },
61
- "gitHead": "ef44d589029b42b742dfe1c8faf57faaecfdfb82",
61
+ "gitHead": "4ecd9f2a1fb58183e15c2471a95ade8cfa501b6a",
62
62
  "volta": {
63
63
  "extends": "../../package.json"
64
64
  }