@wavemaker/angular-app 11.11.6-rc.6191 → 11.11.7-rc.218
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/dependencies/pipe-provider.cjs.js +16 -1
- package/dependencies/transpilation-web.cjs.js +1 -1
- package/dependency-report.html +1 -1
- package/npm-shrinkwrap.json +170 -109
- package/package-lock.json +170 -109
- package/package.json +5 -5
|
@@ -162809,6 +162809,20 @@ class StateClassPipe {
|
|
|
162809
162809
|
name: 'stateClass'
|
|
162810
162810
|
}]
|
|
162811
162811
|
}], null, null); })();
|
|
162812
|
+
class TemplateReplacePipe {
|
|
162813
|
+
transform(data, replaceObj) {
|
|
162814
|
+
return replace$2(data, replaceObj);
|
|
162815
|
+
}
|
|
162816
|
+
static { this.ɵfac = function TemplateReplacePipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TemplateReplacePipe)(); }; }
|
|
162817
|
+
static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "templateReplace", type: TemplateReplacePipe, pure: true, standalone: true }); }
|
|
162818
|
+
}
|
|
162819
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(TemplateReplacePipe, [{
|
|
162820
|
+
type: Pipe,
|
|
162821
|
+
args: [{
|
|
162822
|
+
standalone: true,
|
|
162823
|
+
name: 'templateReplace'
|
|
162824
|
+
}]
|
|
162825
|
+
}], null, null); })();
|
|
162812
162826
|
class FileExtensionFromMimePipe {
|
|
162813
162827
|
transform(mimeType) {
|
|
162814
162828
|
const typeMapping = {
|
|
@@ -231361,7 +231375,8 @@ class PipeProvider {
|
|
|
231361
231375
|
this.preparePipeMeta(StringToNumberPipe, 'stringToNumber', true),
|
|
231362
231376
|
this.preparePipeMeta(CustomPipe, 'custom', true, [this.injector.get(CustomPipeManager)]),
|
|
231363
231377
|
this.preparePipeMeta(TrustAsPipe, 'trustAs', true, [this.domSanitizer]),
|
|
231364
|
-
this.preparePipeMeta(SanitizePipe, 'sanitize', true, [this.domSanitizer])
|
|
231378
|
+
this.preparePipeMeta(SanitizePipe, 'sanitize', true, [this.domSanitizer]),
|
|
231379
|
+
this.preparePipeMeta(TemplateReplacePipe, 'templateReplace', true),
|
|
231365
231380
|
];
|
|
231366
231381
|
}
|
|
231367
231382
|
unknownPipe(name) {
|
|
@@ -115652,7 +115652,7 @@ var button_build$1 = /*#__PURE__*/Object.freeze({
|
|
|
115652
115652
|
const tagName$Q = 'div';
|
|
115653
115653
|
register('wm-checkbox', () => {
|
|
115654
115654
|
return {
|
|
115655
|
-
pre: attrs => `<${tagName$Q} wmCheckbox ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
|
|
115655
|
+
pre: attrs => `<${tagName$Q} wmCheckbox ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)} style="height:100%">`,
|
|
115656
115656
|
post: () => `</${tagName$Q}>`
|
|
115657
115657
|
};
|
|
115658
115658
|
});
|
package/dependency-report.html
CHANGED