@six-group/ui-library-angular 0.0.0-insider.06a0594 → 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.
- package/esm2020/lib/stencil-generated/angular-component-lib/utils.mjs +9 -1
- package/esm2020/lib/ui-library-angular.module.mjs +3 -4
- package/fesm2015/six-group-ui-library-angular.mjs +11 -4
- package/fesm2015/six-group-ui-library-angular.mjs.map +1 -1
- package/fesm2020/six-group-ui-library-angular.mjs +10 -3
- package/fesm2020/six-group-ui-library-angular.mjs.map +1 -1
- package/package.json +4 -1
|
@@ -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
|
-
|
|
2174
|
-
},
|
|
2180
|
+
useFactory: () => async () => defineCustomElements(),
|
|
2181
|
+
multi: true,
|
|
2175
2182
|
},
|
|
2176
2183
|
{ provide: ValidationMessagesService, useClass: customValidationMessagesService ?? ValidationMessagesService },
|
|
2177
2184
|
],
|