@wavemaker/angular-app 11.14.1-22.647453 → 11.14.1-22.647482
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.
|
@@ -5867,14 +5867,14 @@ function createNgModuleType(meta) {
|
|
|
5867
5867
|
if (meta.kind === R3NgModuleMetadataKind.Local) {
|
|
5868
5868
|
return new ExpressionType$1(meta.type.value);
|
|
5869
5869
|
}
|
|
5870
|
-
const { type: moduleType, declarations, exports
|
|
5870
|
+
const { type: moduleType, declarations, exports, imports, includeImportTypes, publicDeclarationTypes, } = meta;
|
|
5871
5871
|
return new ExpressionType$1(importExpr(Identifiers.NgModuleDeclaration, [
|
|
5872
5872
|
new ExpressionType$1(moduleType.type),
|
|
5873
5873
|
publicDeclarationTypes === null
|
|
5874
5874
|
? tupleTypeOf(declarations)
|
|
5875
5875
|
: tupleOfTypes(publicDeclarationTypes),
|
|
5876
5876
|
includeImportTypes ? tupleTypeOf(imports) : NONE_TYPE,
|
|
5877
|
-
tupleTypeOf(exports
|
|
5877
|
+
tupleTypeOf(exports),
|
|
5878
5878
|
]));
|
|
5879
5879
|
}
|
|
5880
5880
|
/**
|
|
@@ -33117,7 +33117,7 @@ function verifySemanticsOfNgModuleDef$1(moduleType, allowDuplicateDeclarationsIn
|
|
|
33117
33117
|
verifySemanticsOfNgModuleImport(modOrStandaloneCmpt, moduleType);
|
|
33118
33118
|
verifySemanticsOfNgModuleDef$1(modOrStandaloneCmpt, false, moduleType);
|
|
33119
33119
|
});
|
|
33120
|
-
const exports
|
|
33120
|
+
const exports = maybeUnwrapFn$1(ngModuleDef.exports);
|
|
33121
33121
|
declarations.forEach(verifyDeclarationsHaveDefinitions);
|
|
33122
33122
|
declarations.forEach(verifyDirectivesHaveSelector);
|
|
33123
33123
|
declarations.forEach((declarationType) => verifyNotStandalone(declarationType, moduleType));
|
|
@@ -33125,7 +33125,7 @@ function verifySemanticsOfNgModuleDef$1(moduleType, allowDuplicateDeclarationsIn
|
|
|
33125
33125
|
...declarations.map(resolveForwardRef$1),
|
|
33126
33126
|
...flatten$3(imports.map(computeCombinedExports$1)).map(resolveForwardRef$1),
|
|
33127
33127
|
];
|
|
33128
|
-
exports
|
|
33128
|
+
exports.forEach(verifyExportsAreDeclaredOrReExported);
|
|
33129
33129
|
declarations.forEach((decl) => verifyDeclarationIsUnique(decl, allowDuplicateDeclarationsInRoot));
|
|
33130
33130
|
const ngModule = getAnnotation$1(moduleType, 'NgModule');
|
|
33131
33131
|
if (ngModule) {
|
|
@@ -81193,7 +81193,7 @@ function verifySemanticsOfNgModuleDef(moduleType, allowDuplicateDeclarationsInRo
|
|
|
81193
81193
|
verifySemanticsOfNgModuleImport(modOrStandaloneCmpt, moduleType);
|
|
81194
81194
|
verifySemanticsOfNgModuleDef(modOrStandaloneCmpt, false, moduleType);
|
|
81195
81195
|
});
|
|
81196
|
-
const exports
|
|
81196
|
+
const exports = maybeUnwrapFn(ngModuleDef.exports);
|
|
81197
81197
|
declarations.forEach(verifyDeclarationsHaveDefinitions);
|
|
81198
81198
|
declarations.forEach(verifyDirectivesHaveSelector);
|
|
81199
81199
|
declarations.forEach((declarationType) => verifyNotStandalone(declarationType, moduleType));
|
|
@@ -81201,7 +81201,7 @@ function verifySemanticsOfNgModuleDef(moduleType, allowDuplicateDeclarationsInRo
|
|
|
81201
81201
|
...declarations.map(resolveForwardRef),
|
|
81202
81202
|
...flatten$1(imports.map(computeCombinedExports)).map(resolveForwardRef),
|
|
81203
81203
|
];
|
|
81204
|
-
exports
|
|
81204
|
+
exports.forEach(verifyExportsAreDeclaredOrReExported);
|
|
81205
81205
|
declarations.forEach((decl) => verifyDeclarationIsUnique(decl, allowDuplicateDeclarationsInRoot));
|
|
81206
81206
|
const ngModule = getAnnotation(moduleType, 'NgModule');
|
|
81207
81207
|
if (ngModule) {
|
|
@@ -102019,14 +102019,14 @@ function createNgModuleType$1(meta) {
|
|
|
102019
102019
|
if (meta.kind === R3NgModuleMetadataKind$1.Local) {
|
|
102020
102020
|
return new ExpressionType$1$1(meta.type.value);
|
|
102021
102021
|
}
|
|
102022
|
-
const { type: moduleType, declarations, exports
|
|
102022
|
+
const { type: moduleType, declarations, exports, imports, includeImportTypes, publicDeclarationTypes, } = meta;
|
|
102023
102023
|
return new ExpressionType$1$1(importExpr$1(Identifiers$1.NgModuleDeclaration, [
|
|
102024
102024
|
new ExpressionType$1$1(moduleType.type),
|
|
102025
102025
|
publicDeclarationTypes === null
|
|
102026
102026
|
? tupleTypeOf$1(declarations)
|
|
102027
102027
|
: tupleOfTypes$1(publicDeclarationTypes),
|
|
102028
102028
|
includeImportTypes ? tupleTypeOf$1(imports) : NONE_TYPE$1,
|
|
102029
|
-
tupleTypeOf$1(exports
|
|
102029
|
+
tupleTypeOf$1(exports),
|
|
102030
102030
|
]));
|
|
102031
102031
|
}
|
|
102032
102032
|
/**
|
|
@@ -133314,7 +133314,7 @@ var hasRequiredEntities$1;
|
|
|
133314
133314
|
function requireEntities$1 () {
|
|
133315
133315
|
if (hasRequiredEntities$1) return entities$1;
|
|
133316
133316
|
hasRequiredEntities$1 = 1;
|
|
133317
|
-
(function (exports
|
|
133317
|
+
(function (exports) {
|
|
133318
133318
|
|
|
133319
133319
|
var freeze = requireConventions$1().freeze;
|
|
133320
133320
|
|
|
@@ -133325,7 +133325,7 @@ function requireEntities$1 () {
|
|
|
133325
133325
|
* @see https://www.w3.org/TR/2008/REC-xml-20081126/#sec-predefined-ent W3C XML 1.0
|
|
133326
133326
|
* @see https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Predefined_entities_in_XML Wikipedia
|
|
133327
133327
|
*/
|
|
133328
|
-
exports
|
|
133328
|
+
exports.XML_ENTITIES = freeze({
|
|
133329
133329
|
amp: '&',
|
|
133330
133330
|
apos: "'",
|
|
133331
133331
|
gt: '>',
|
|
@@ -133347,7 +133347,7 @@ function requireEntities$1 () {
|
|
|
133347
133347
|
* @see https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Character_entity_references_in_HTML Wikipedia (HTML)
|
|
133348
133348
|
* @see https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Entities_representing_special_characters_in_XHTML Wikpedia (XHTML)
|
|
133349
133349
|
*/
|
|
133350
|
-
exports
|
|
133350
|
+
exports.HTML_ENTITIES = freeze({
|
|
133351
133351
|
Aacute: '\u00C1',
|
|
133352
133352
|
aacute: '\u00E1',
|
|
133353
133353
|
Abreve: '\u0102',
|
|
@@ -135479,7 +135479,7 @@ function requireEntities$1 () {
|
|
|
135479
135479
|
* @deprecated use `HTML_ENTITIES` instead
|
|
135480
135480
|
* @see HTML_ENTITIES
|
|
135481
135481
|
*/
|
|
135482
|
-
exports
|
|
135482
|
+
exports.entityMap = exports.HTML_ENTITIES;
|
|
135483
135483
|
} (entities$1));
|
|
135484
135484
|
return entities$1;
|
|
135485
135485
|
}
|
|
@@ -137287,7 +137287,7 @@ var hasRequiredMoment$1;
|
|
|
137287
137287
|
function requireMoment$1 () {
|
|
137288
137288
|
if (hasRequiredMoment$1) return moment$2.exports;
|
|
137289
137289
|
hasRequiredMoment$1 = 1;
|
|
137290
|
-
(function (module, exports
|
|
137290
|
+
(function (module, exports) {
|
|
137291
137291
|
(function (global, factory) {
|
|
137292
137292
|
module.exports = factory() ;
|
|
137293
137293
|
}(this, (function () {
|
|
@@ -158977,14 +158977,14 @@ function createNgModuleType(meta) {
|
|
|
158977
158977
|
if (meta.kind === R3NgModuleMetadataKind.Local) {
|
|
158978
158978
|
return new ExpressionType$1(meta.type.value);
|
|
158979
158979
|
}
|
|
158980
|
-
const { type: moduleType, declarations, exports
|
|
158980
|
+
const { type: moduleType, declarations, exports, imports, includeImportTypes, publicDeclarationTypes, } = meta;
|
|
158981
158981
|
return new ExpressionType$1(importExpr(Identifiers.NgModuleDeclaration, [
|
|
158982
158982
|
new ExpressionType$1(moduleType.type),
|
|
158983
158983
|
publicDeclarationTypes === null
|
|
158984
158984
|
? tupleTypeOf(declarations)
|
|
158985
158985
|
: tupleOfTypes(publicDeclarationTypes),
|
|
158986
158986
|
includeImportTypes ? tupleTypeOf(imports) : NONE_TYPE,
|
|
158987
|
-
tupleTypeOf(exports
|
|
158987
|
+
tupleTypeOf(exports),
|
|
158988
158988
|
]));
|
|
158989
158989
|
}
|
|
158990
158990
|
/**
|
|
@@ -190272,7 +190272,7 @@ var hasRequiredEntities;
|
|
|
190272
190272
|
function requireEntities () {
|
|
190273
190273
|
if (hasRequiredEntities) return entities;
|
|
190274
190274
|
hasRequiredEntities = 1;
|
|
190275
|
-
(function (exports
|
|
190275
|
+
(function (exports) {
|
|
190276
190276
|
|
|
190277
190277
|
var freeze = requireConventions().freeze;
|
|
190278
190278
|
|
|
@@ -190283,7 +190283,7 @@ function requireEntities () {
|
|
|
190283
190283
|
* @see https://www.w3.org/TR/2008/REC-xml-20081126/#sec-predefined-ent W3C XML 1.0
|
|
190284
190284
|
* @see https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Predefined_entities_in_XML Wikipedia
|
|
190285
190285
|
*/
|
|
190286
|
-
exports
|
|
190286
|
+
exports.XML_ENTITIES = freeze({
|
|
190287
190287
|
amp: '&',
|
|
190288
190288
|
apos: "'",
|
|
190289
190289
|
gt: '>',
|
|
@@ -190305,7 +190305,7 @@ function requireEntities () {
|
|
|
190305
190305
|
* @see https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Character_entity_references_in_HTML Wikipedia (HTML)
|
|
190306
190306
|
* @see https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Entities_representing_special_characters_in_XHTML Wikpedia (XHTML)
|
|
190307
190307
|
*/
|
|
190308
|
-
exports
|
|
190308
|
+
exports.HTML_ENTITIES = freeze({
|
|
190309
190309
|
Aacute: '\u00C1',
|
|
190310
190310
|
aacute: '\u00E1',
|
|
190311
190311
|
Abreve: '\u0102',
|
|
@@ -192437,7 +192437,7 @@ function requireEntities () {
|
|
|
192437
192437
|
* @deprecated use `HTML_ENTITIES` instead
|
|
192438
192438
|
* @see HTML_ENTITIES
|
|
192439
192439
|
*/
|
|
192440
|
-
exports
|
|
192440
|
+
exports.entityMap = exports.HTML_ENTITIES;
|
|
192441
192441
|
} (entities));
|
|
192442
192442
|
return entities;
|
|
192443
192443
|
}
|
|
@@ -194245,7 +194245,7 @@ var hasRequiredMoment;
|
|
|
194245
194245
|
function requireMoment () {
|
|
194246
194246
|
if (hasRequiredMoment) return moment$1.exports;
|
|
194247
194247
|
hasRequiredMoment = 1;
|
|
194248
|
-
(function (module, exports
|
|
194248
|
+
(function (module, exports) {
|
|
194249
194249
|
(function (global, factory) {
|
|
194250
194250
|
module.exports = factory() ;
|
|
194251
194251
|
}(this, (function () {
|
|
@@ -5867,14 +5867,14 @@ function createNgModuleType(meta) {
|
|
|
5867
5867
|
if (meta.kind === R3NgModuleMetadataKind.Local) {
|
|
5868
5868
|
return new ExpressionType$1(meta.type.value);
|
|
5869
5869
|
}
|
|
5870
|
-
const { type: moduleType, declarations, exports
|
|
5870
|
+
const { type: moduleType, declarations, exports, imports, includeImportTypes, publicDeclarationTypes, } = meta;
|
|
5871
5871
|
return new ExpressionType$1(importExpr(Identifiers.NgModuleDeclaration, [
|
|
5872
5872
|
new ExpressionType$1(moduleType.type),
|
|
5873
5873
|
publicDeclarationTypes === null
|
|
5874
5874
|
? tupleTypeOf(declarations)
|
|
5875
5875
|
: tupleOfTypes(publicDeclarationTypes),
|
|
5876
5876
|
includeImportTypes ? tupleTypeOf(imports) : NONE_TYPE,
|
|
5877
|
-
tupleTypeOf(exports
|
|
5877
|
+
tupleTypeOf(exports),
|
|
5878
5878
|
]));
|
|
5879
5879
|
}
|
|
5880
5880
|
/**
|
|
@@ -39837,7 +39837,7 @@ var hasRequiredEntities;
|
|
|
39837
39837
|
function requireEntities () {
|
|
39838
39838
|
if (hasRequiredEntities) return entities;
|
|
39839
39839
|
hasRequiredEntities = 1;
|
|
39840
|
-
(function (exports
|
|
39840
|
+
(function (exports) {
|
|
39841
39841
|
|
|
39842
39842
|
var freeze = requireConventions().freeze;
|
|
39843
39843
|
|
|
@@ -39848,7 +39848,7 @@ function requireEntities () {
|
|
|
39848
39848
|
* @see https://www.w3.org/TR/2008/REC-xml-20081126/#sec-predefined-ent W3C XML 1.0
|
|
39849
39849
|
* @see https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Predefined_entities_in_XML Wikipedia
|
|
39850
39850
|
*/
|
|
39851
|
-
exports
|
|
39851
|
+
exports.XML_ENTITIES = freeze({
|
|
39852
39852
|
amp: '&',
|
|
39853
39853
|
apos: "'",
|
|
39854
39854
|
gt: '>',
|
|
@@ -39870,7 +39870,7 @@ function requireEntities () {
|
|
|
39870
39870
|
* @see https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Character_entity_references_in_HTML Wikipedia (HTML)
|
|
39871
39871
|
* @see https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Entities_representing_special_characters_in_XHTML Wikpedia (XHTML)
|
|
39872
39872
|
*/
|
|
39873
|
-
exports
|
|
39873
|
+
exports.HTML_ENTITIES = freeze({
|
|
39874
39874
|
Aacute: '\u00C1',
|
|
39875
39875
|
aacute: '\u00E1',
|
|
39876
39876
|
Abreve: '\u0102',
|
|
@@ -42002,7 +42002,7 @@ function requireEntities () {
|
|
|
42002
42002
|
* @deprecated use `HTML_ENTITIES` instead
|
|
42003
42003
|
* @see HTML_ENTITIES
|
|
42004
42004
|
*/
|
|
42005
|
-
exports
|
|
42005
|
+
exports.entityMap = exports.HTML_ENTITIES;
|
|
42006
42006
|
} (entities));
|
|
42007
42007
|
return entities;
|
|
42008
42008
|
}
|
|
@@ -43810,7 +43810,7 @@ var hasRequiredMoment;
|
|
|
43810
43810
|
function requireMoment () {
|
|
43811
43811
|
if (hasRequiredMoment) return moment$1.exports;
|
|
43812
43812
|
hasRequiredMoment = 1;
|
|
43813
|
-
(function (module, exports
|
|
43813
|
+
(function (module, exports) {
|
|
43814
43814
|
(function (global, factory) {
|
|
43815
43815
|
module.exports = factory() ;
|
|
43816
43816
|
}(this, (function () {
|
|
@@ -81945,7 +81945,7 @@ function verifySemanticsOfNgModuleDef(moduleType, allowDuplicateDeclarationsInRo
|
|
|
81945
81945
|
verifySemanticsOfNgModuleImport(modOrStandaloneCmpt, moduleType);
|
|
81946
81946
|
verifySemanticsOfNgModuleDef(modOrStandaloneCmpt, false, moduleType);
|
|
81947
81947
|
});
|
|
81948
|
-
const exports
|
|
81948
|
+
const exports = maybeUnwrapFn(ngModuleDef.exports);
|
|
81949
81949
|
declarations.forEach(verifyDeclarationsHaveDefinitions);
|
|
81950
81950
|
declarations.forEach(verifyDirectivesHaveSelector);
|
|
81951
81951
|
declarations.forEach((declarationType) => verifyNotStandalone(declarationType, moduleType));
|
|
@@ -81953,7 +81953,7 @@ function verifySemanticsOfNgModuleDef(moduleType, allowDuplicateDeclarationsInRo
|
|
|
81953
81953
|
...declarations.map(resolveForwardRef),
|
|
81954
81954
|
...flatten(imports.map(computeCombinedExports)).map(resolveForwardRef),
|
|
81955
81955
|
];
|
|
81956
|
-
exports
|
|
81956
|
+
exports.forEach(verifyExportsAreDeclaredOrReExported);
|
|
81957
81957
|
declarations.forEach((decl) => verifyDeclarationIsUnique(decl, allowDuplicateDeclarationsInRoot));
|
|
81958
81958
|
const ngModule = getAnnotation(moduleType, 'NgModule');
|
|
81959
81959
|
if (ngModule) {
|
package/dependency-report.html
CHANGED