@wavemaker/angular-app 11.11.1-rc.6142 → 11.11.2-1.6157
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 +38 -20
- package/dependencies/transpilation-web.cjs.js +19 -10
- package/dependency-report.html +1 -1
- package/npm-shrinkwrap.json +123 -123
- package/package-lock.json +123 -123
- package/package.json +5 -5
|
@@ -159141,6 +159141,19 @@ const setAttr$1 = (node, attrName, val, sync) => {
|
|
|
159141
159141
|
invokeLater$1(task);
|
|
159142
159142
|
};
|
|
159143
159143
|
|
|
159144
|
+
const properties$1 = {};
|
|
159145
|
+
const previewProp$1 = {};
|
|
159146
|
+
function getPreviewProperties$1() {
|
|
159147
|
+
const fontConfig = previewProp$1.fontConfig || '';
|
|
159148
|
+
const cssPaths = [...fontConfig.matchAll(/"csspath":\s*"([^"]+)"/g)]
|
|
159149
|
+
.map(match => match[1]);
|
|
159150
|
+
properties$1.default = {
|
|
159151
|
+
baseFont: '',
|
|
159152
|
+
fonts: cssPaths.map(csspath => ({ csspath }))
|
|
159153
|
+
};
|
|
159154
|
+
return properties$1;
|
|
159155
|
+
}
|
|
159156
|
+
|
|
159144
159157
|
function* idGenerator$1(token) {
|
|
159145
159158
|
let id = 1;
|
|
159146
159159
|
while (1) {
|
|
@@ -161179,7 +161192,7 @@ const findViewParent$1 = (lView) => {
|
|
|
161179
161192
|
}*/
|
|
161180
161193
|
};
|
|
161181
161194
|
const getFontConfig$1 = () => {
|
|
161182
|
-
return _WM_APP_PROPERTIES.fontConfig
|
|
161195
|
+
return _WM_APP_PROPERTIES.fontConfig || getPreviewProperties$1();
|
|
161183
161196
|
};
|
|
161184
161197
|
/*export const getParent = (parent: any) => {
|
|
161185
161198
|
if(parent.hasOwnProperty("isDynamicComponent") || parent.hasOwnProperty("isPageComponent")) {
|
|
@@ -161652,16 +161665,12 @@ let CustomPipeManager$1 = class CustomPipeManager {
|
|
|
161652
161665
|
}], null, null); })();
|
|
161653
161666
|
|
|
161654
161667
|
let CustomIconsLoaderService$1 = class CustomIconsLoaderService {
|
|
161655
|
-
|
|
161656
|
-
this.http = inject(HttpClient$1);
|
|
161657
|
-
}
|
|
161668
|
+
// private http = inject(HttpClient);
|
|
161658
161669
|
load() {
|
|
161659
|
-
|
|
161660
|
-
const cssPaths =
|
|
161661
|
-
|
|
161662
|
-
|
|
161663
|
-
cssPaths.push(match[1]);
|
|
161664
|
-
}
|
|
161670
|
+
const { default: fontConfig } = getFontConfig$1();
|
|
161671
|
+
const cssPaths = (fontConfig?.fonts ?? [])
|
|
161672
|
+
.filter(font => !!font.csspath)
|
|
161673
|
+
.map(font => font.csspath);
|
|
161665
161674
|
loadStyleSheets$1(cssPaths);
|
|
161666
161675
|
}
|
|
161667
161676
|
static { this.ɵfac = function CustomIconsLoaderService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomIconsLoaderService)(); }; }
|
|
@@ -226349,6 +226358,19 @@ const setAttr = (node, attrName, val, sync) => {
|
|
|
226349
226358
|
invokeLater(task);
|
|
226350
226359
|
};
|
|
226351
226360
|
|
|
226361
|
+
const properties = {};
|
|
226362
|
+
const previewProp = {};
|
|
226363
|
+
function getPreviewProperties() {
|
|
226364
|
+
const fontConfig = previewProp.fontConfig || '';
|
|
226365
|
+
const cssPaths = [...fontConfig.matchAll(/"csspath":\s*"([^"]+)"/g)]
|
|
226366
|
+
.map(match => match[1]);
|
|
226367
|
+
properties.default = {
|
|
226368
|
+
baseFont: '',
|
|
226369
|
+
fonts: cssPaths.map(csspath => ({ csspath }))
|
|
226370
|
+
};
|
|
226371
|
+
return properties;
|
|
226372
|
+
}
|
|
226373
|
+
|
|
226352
226374
|
function* idGenerator(token) {
|
|
226353
226375
|
let id = 1;
|
|
226354
226376
|
while (1) {
|
|
@@ -228387,7 +228409,7 @@ const findViewParent = (lView) => {
|
|
|
228387
228409
|
}*/
|
|
228388
228410
|
};
|
|
228389
228411
|
const getFontConfig = () => {
|
|
228390
|
-
return _WM_APP_PROPERTIES.fontConfig
|
|
228412
|
+
return _WM_APP_PROPERTIES.fontConfig || getPreviewProperties();
|
|
228391
228413
|
};
|
|
228392
228414
|
/*export const getParent = (parent: any) => {
|
|
228393
228415
|
if(parent.hasOwnProperty("isDynamicComponent") || parent.hasOwnProperty("isPageComponent")) {
|
|
@@ -228860,16 +228882,12 @@ class CustomPipeManager {
|
|
|
228860
228882
|
}], null, null); })();
|
|
228861
228883
|
|
|
228862
228884
|
class CustomIconsLoaderService {
|
|
228863
|
-
|
|
228864
|
-
this.http = inject$1(HttpClient);
|
|
228865
|
-
}
|
|
228885
|
+
// private http = inject(HttpClient);
|
|
228866
228886
|
load() {
|
|
228867
|
-
|
|
228868
|
-
const cssPaths =
|
|
228869
|
-
|
|
228870
|
-
|
|
228871
|
-
cssPaths.push(match[1]);
|
|
228872
|
-
}
|
|
228887
|
+
const { default: fontConfig } = getFontConfig();
|
|
228888
|
+
const cssPaths = (fontConfig?.fonts ?? [])
|
|
228889
|
+
.filter(font => !!font.csspath)
|
|
228890
|
+
.map(font => font.csspath);
|
|
228873
228891
|
loadStyleSheets(cssPaths);
|
|
228874
228892
|
}
|
|
228875
228893
|
static { this.ɵfac = function CustomIconsLoaderService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomIconsLoaderService)(); }; }
|
|
@@ -110923,6 +110923,19 @@ const setAttr = (node, attrName, val, sync) => {
|
|
|
110923
110923
|
invokeLater(task);
|
|
110924
110924
|
};
|
|
110925
110925
|
|
|
110926
|
+
const properties = {};
|
|
110927
|
+
const previewProp = {};
|
|
110928
|
+
function getPreviewProperties() {
|
|
110929
|
+
const fontConfig = previewProp.fontConfig || '';
|
|
110930
|
+
const cssPaths = [...fontConfig.matchAll(/"csspath":\s*"([^"]+)"/g)]
|
|
110931
|
+
.map(match => match[1]);
|
|
110932
|
+
properties.default = {
|
|
110933
|
+
baseFont: '',
|
|
110934
|
+
fonts: cssPaths.map(csspath => ({ csspath }))
|
|
110935
|
+
};
|
|
110936
|
+
return properties;
|
|
110937
|
+
}
|
|
110938
|
+
|
|
110926
110939
|
function* idGenerator(token) {
|
|
110927
110940
|
let id = 1;
|
|
110928
110941
|
while (1) {
|
|
@@ -112959,7 +112972,7 @@ const findViewParent = (lView) => {
|
|
|
112959
112972
|
}*/
|
|
112960
112973
|
};
|
|
112961
112974
|
const getFontConfig = () => {
|
|
112962
|
-
return _WM_APP_PROPERTIES.fontConfig
|
|
112975
|
+
return _WM_APP_PROPERTIES.fontConfig || getPreviewProperties();
|
|
112963
112976
|
};
|
|
112964
112977
|
/*export const getParent = (parent: any) => {
|
|
112965
112978
|
if(parent.hasOwnProperty("isDynamicComponent") || parent.hasOwnProperty("isPageComponent")) {
|
|
@@ -113432,16 +113445,12 @@ class CustomPipeManager {
|
|
|
113432
113445
|
}], null, null); })();
|
|
113433
113446
|
|
|
113434
113447
|
class CustomIconsLoaderService {
|
|
113435
|
-
|
|
113436
|
-
this.http = inject(HttpClient);
|
|
113437
|
-
}
|
|
113448
|
+
// private http = inject(HttpClient);
|
|
113438
113449
|
load() {
|
|
113439
|
-
|
|
113440
|
-
const cssPaths =
|
|
113441
|
-
|
|
113442
|
-
|
|
113443
|
-
cssPaths.push(match[1]);
|
|
113444
|
-
}
|
|
113450
|
+
const { default: fontConfig } = getFontConfig();
|
|
113451
|
+
const cssPaths = (fontConfig?.fonts ?? [])
|
|
113452
|
+
.filter(font => !!font.csspath)
|
|
113453
|
+
.map(font => font.csspath);
|
|
113445
113454
|
loadStyleSheets(cssPaths);
|
|
113446
113455
|
}
|
|
113447
113456
|
static { this.ɵfac = function CustomIconsLoaderService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomIconsLoaderService)(); }; }
|
package/dependency-report.html
CHANGED