@pepperi-addons/ngx-lib 0.2.50 → 0.2.51-beta.0
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/bundles/pepperi-addons-ngx-lib-form.umd.js +3403 -58
- package/bundles/pepperi-addons-ngx-lib-form.umd.js.map +1 -1
- package/bundles/pepperi-addons-ngx-lib.umd.js +18 -0
- package/bundles/pepperi-addons-ngx-lib.umd.js.map +1 -1
- package/core/common/model/wapi.model.d.ts +1 -0
- package/core/customization/customization.model.d.ts +10 -0
- package/esm2015/core/common/model/wapi.model.js +2 -1
- package/esm2015/core/customization/customization.model.js +13 -1
- package/esm2015/form/field-generator.component.js +13 -3
- package/esm2015/form/form.component.js +36 -16
- package/esm2015/form/form.module.js +5 -1
- package/esm2015/form/internal-carusel.component.js +187 -0
- package/esm2015/form/internal-carusel.service.js +32 -0
- package/esm2015/form/internal-carusel.temp-data.js +3129 -0
- package/esm2015/form/internal-page.component.js +3 -39
- package/esm2015/form/pepperi-addons-ngx-lib-form.js +3 -1
- package/fesm2015/pepperi-addons-ngx-lib-form.js +3392 -56
- package/fesm2015/pepperi-addons-ngx-lib-form.js.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib.js +14 -1
- package/fesm2015/pepperi-addons-ngx-lib.js.map +1 -1
- package/form/field-generator.component.d.ts +5 -0
- package/form/form.component.d.ts +4 -2
- package/form/internal-carusel.component.d.ts +46 -0
- package/form/internal-carusel.service.d.ts +12 -0
- package/form/internal-carusel.temp-data.d.ts +62 -0
- package/form/pepperi-addons-ngx-lib-form.d.ts +2 -0
- package/form/pepperi-addons-ngx-lib-form.metadata.json +1 -1
- package/package.json +1 -1
- package/pepperi-addons-ngx-lib.metadata.json +1 -1
|
@@ -1745,6 +1745,7 @@
|
|
|
1745
1745
|
FIELD_TYPE[FIELD_TYPE["Duration"] = 51] = "Duration";
|
|
1746
1746
|
FIELD_TYPE[FIELD_TYPE["ListOfObjects"] = 52] = "ListOfObjects";
|
|
1747
1747
|
FIELD_TYPE[FIELD_TYPE["Package"] = 53] = "Package";
|
|
1748
|
+
FIELD_TYPE[FIELD_TYPE["RelatedObjectsCards"] = 54] = "RelatedObjectsCards";
|
|
1748
1749
|
FIELD_TYPE[FIELD_TYPE["BooleanText"] = 55] = "BooleanText";
|
|
1749
1750
|
FIELD_TYPE[FIELD_TYPE["RichTextHTML"] = 56] = "RichTextHTML";
|
|
1750
1751
|
})(exports.FIELD_TYPE || (exports.FIELD_TYPE = {}));
|
|
@@ -3776,6 +3777,22 @@
|
|
|
3776
3777
|
}
|
|
3777
3778
|
return PepInternalPageField;
|
|
3778
3779
|
}(PepFieldBase));
|
|
3780
|
+
var PepInternalCaruselField = /** @class */ (function (_super) {
|
|
3781
|
+
__extends(PepInternalCaruselField, _super);
|
|
3782
|
+
function PepInternalCaruselField(options) {
|
|
3783
|
+
if (options === void 0) { options = {}; }
|
|
3784
|
+
var _this = _super.call(this, options) || this;
|
|
3785
|
+
_this.controlType = 'internalCarusel';
|
|
3786
|
+
_this.objectId = '';
|
|
3787
|
+
// parentId = '';
|
|
3788
|
+
_this.searchCode = '';
|
|
3789
|
+
_this.objectId = options.objectId || '';
|
|
3790
|
+
// this.parentId = options.parentId || '';
|
|
3791
|
+
_this.searchCode = options.searchCode || '';
|
|
3792
|
+
return _this;
|
|
3793
|
+
}
|
|
3794
|
+
return PepInternalCaruselField;
|
|
3795
|
+
}(PepFieldBase));
|
|
3779
3796
|
var PepInternalMenuField = /** @class */ (function (_super) {
|
|
3780
3797
|
__extends(PepInternalMenuField, _super);
|
|
3781
3798
|
// hasSubMenu: boolean = false;
|
|
@@ -4812,6 +4829,7 @@
|
|
|
4812
4829
|
exports.PepIndicatorsField = PepIndicatorsField;
|
|
4813
4830
|
exports.PepInputAutoWidthDirective = PepInputAutoWidthDirective;
|
|
4814
4831
|
exports.PepInternalButtonField = PepInternalButtonField;
|
|
4832
|
+
exports.PepInternalCaruselField = PepInternalCaruselField;
|
|
4815
4833
|
exports.PepInternalMenuField = PepInternalMenuField;
|
|
4816
4834
|
exports.PepInternalPageField = PepInternalPageField;
|
|
4817
4835
|
exports.PepJwtHelperService = PepJwtHelperService;
|