@six-group/ui-library-angular 0.0.0-insider.08c46fe → 0.0.0-insider.0f961ce

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.
@@ -19,6 +19,14 @@ const proxyInputs = (Cmp, inputs) => {
19
19
  set(val) {
20
20
  this.z.runOutsideAngular(() => (this.el[item] = val));
21
21
  },
22
+ /**
23
+ * In the event that proxyInputs is called
24
+ * multiple times re-defining these inputs
25
+ * will cause an error to be thrown. As a result
26
+ * we set configurable: true to indicate these
27
+ * properties can be changed.
28
+ */
29
+ configurable: true,
22
30
  });
23
31
  });
24
32
  };
@@ -2169,9 +2177,8 @@ class UiLibraryAngularModule {
2169
2177
  providers: [
2170
2178
  {
2171
2179
  provide: APP_INITIALIZER,
2172
- useFactory: () => {
2173
- return defineCustomElements();
2174
- },
2180
+ useFactory: () => async () => defineCustomElements(),
2181
+ multi: true,
2175
2182
  },
2176
2183
  { provide: ValidationMessagesService, useClass: customValidationMessagesService ?? ValidationMessagesService },
2177
2184
  ],