@seniorsistemas/angular-components 17.4.4 → 17.5.1
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/seniorsistemas-angular-components.umd.js +191 -87
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/components/card/card.component.d.ts +19 -0
- package/components/card/card.module.d.ts +2 -0
- package/components/card/index.d.ts +3 -0
- package/components/card/models/card-template-types.d.ts +5 -0
- package/components/index.d.ts +1 -0
- package/components/progressbar/components/progressbar-determinate/progressbar-determinate.component.d.ts +6 -0
- package/components/progressbar/progressbar.component.d.ts +2 -0
- package/esm2015/components/card/card.component.js +58 -0
- package/esm2015/components/card/card.module.js +16 -0
- package/esm2015/components/card/index.js +4 -0
- package/esm2015/components/card/models/card-template-types.js +7 -0
- package/esm2015/components/index.js +2 -1
- package/esm2015/components/progressbar/components/progressbar-determinate/progressbar-determinate.component.js +22 -3
- package/esm2015/components/progressbar/components/progressbar-indeterminate/progressbar-indeterminate.component.js +2 -2
- package/esm2015/components/progressbar/progressbar.component.js +10 -2
- package/esm2015/seniorsistemas-angular-components.js +53 -53
- package/esm5/components/card/card.component.js +60 -0
- package/esm5/components/card/card.module.js +19 -0
- package/esm5/components/card/index.js +4 -0
- package/esm5/components/card/models/card-template-types.js +7 -0
- package/esm5/components/index.js +2 -1
- package/esm5/components/progressbar/components/progressbar-determinate/progressbar-determinate.component.js +23 -3
- package/esm5/components/progressbar/components/progressbar-indeterminate/progressbar-indeterminate.component.js +2 -2
- package/esm5/components/progressbar/progressbar.component.js +10 -2
- package/esm5/seniorsistemas-angular-components.js +53 -53
- package/fesm2015/seniorsistemas-angular-components.js +129 -33
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +139 -37
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +52 -52
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -1972,6 +1972,112 @@
|
|
|
1972
1972
|
return CalendarMaskModule;
|
|
1973
1973
|
}());
|
|
1974
1974
|
|
|
1975
|
+
var TemplateDirective = /** @class */ (function () {
|
|
1976
|
+
function TemplateDirective(template) {
|
|
1977
|
+
this.template = template;
|
|
1978
|
+
}
|
|
1979
|
+
TemplateDirective.ctorParameters = function () { return [
|
|
1980
|
+
{ type: core.TemplateRef }
|
|
1981
|
+
]; };
|
|
1982
|
+
__decorate([
|
|
1983
|
+
core.Input("sTemplate")
|
|
1984
|
+
], TemplateDirective.prototype, "type", void 0);
|
|
1985
|
+
TemplateDirective = __decorate([
|
|
1986
|
+
core.Directive({
|
|
1987
|
+
selector: "[sTemplate]",
|
|
1988
|
+
})
|
|
1989
|
+
], TemplateDirective);
|
|
1990
|
+
return TemplateDirective;
|
|
1991
|
+
}());
|
|
1992
|
+
|
|
1993
|
+
|
|
1994
|
+
(function (CardTemplateTypes) {
|
|
1995
|
+
CardTemplateTypes["Header"] = "header";
|
|
1996
|
+
CardTemplateTypes["Body"] = "body";
|
|
1997
|
+
CardTemplateTypes["Footer"] = "footer";
|
|
1998
|
+
})(exports.CardTemplateTypes || (exports.CardTemplateTypes = {}));
|
|
1999
|
+
|
|
2000
|
+
var CardComponent = /** @class */ (function () {
|
|
2001
|
+
function CardComponent() {
|
|
2002
|
+
this.fullWidth = false;
|
|
2003
|
+
this.showBanner = false;
|
|
2004
|
+
this.hasCustomTemplates = false;
|
|
2005
|
+
}
|
|
2006
|
+
CardComponent.prototype.ngAfterContentInit = function () {
|
|
2007
|
+
this._getTemplates();
|
|
2008
|
+
this._testLoadImage();
|
|
2009
|
+
};
|
|
2010
|
+
CardComponent.prototype._getHeaderTemplate = function () {
|
|
2011
|
+
return this._getCustomTemplate(exports.CardTemplateTypes.Header);
|
|
2012
|
+
};
|
|
2013
|
+
CardComponent.prototype._getBodyTemplate = function () {
|
|
2014
|
+
return this._getCustomTemplate(exports.CardTemplateTypes.Body);
|
|
2015
|
+
};
|
|
2016
|
+
CardComponent.prototype._getFooterTemplate = function () {
|
|
2017
|
+
return this._getCustomTemplate(exports.CardTemplateTypes.Footer);
|
|
2018
|
+
};
|
|
2019
|
+
CardComponent.prototype._getCustomTemplate = function (type) {
|
|
2020
|
+
var _a;
|
|
2021
|
+
return (_a = this.templates.find(function (template) { return template.type === type; })) === null || _a === void 0 ? void 0 : _a.template;
|
|
2022
|
+
};
|
|
2023
|
+
CardComponent.prototype._getTemplates = function () {
|
|
2024
|
+
this.headerTemplate = this._getHeaderTemplate();
|
|
2025
|
+
this.bodyTemplate = this._getBodyTemplate();
|
|
2026
|
+
this.footerTemplate = this._getFooterTemplate();
|
|
2027
|
+
this.hasCustomTemplates = !!(this.headerTemplate || this.bodyTemplate || this.footerTemplate);
|
|
2028
|
+
};
|
|
2029
|
+
CardComponent.prototype._testLoadImage = function () {
|
|
2030
|
+
var _this = this;
|
|
2031
|
+
var img = new Image();
|
|
2032
|
+
img.src = this.bannerImage;
|
|
2033
|
+
img.onload = function () { return (_this.showBanner = true); };
|
|
2034
|
+
img.onerror = function () { return (_this.showBanner = false); };
|
|
2035
|
+
};
|
|
2036
|
+
__decorate([
|
|
2037
|
+
core.Input()
|
|
2038
|
+
], CardComponent.prototype, "bannerImage", void 0);
|
|
2039
|
+
__decorate([
|
|
2040
|
+
core.Input()
|
|
2041
|
+
], CardComponent.prototype, "fullWidth", void 0);
|
|
2042
|
+
__decorate([
|
|
2043
|
+
core.ContentChildren(TemplateDirective)
|
|
2044
|
+
], CardComponent.prototype, "templates", void 0);
|
|
2045
|
+
CardComponent = __decorate([
|
|
2046
|
+
core.Component({
|
|
2047
|
+
selector: "s-card",
|
|
2048
|
+
template: "<div class=\"card\" [ngClass]=\"{ 'card--full-width': fullWidth }\">\n <div\n *ngIf=\"showBanner\"\n class=\"banner\"\n [ngStyle]=\"{'background-image': 'url(' + bannerImage + ')'}\">\n </div>\n\n <ng-container *ngIf=\"hasCustomTemplates; then customTemplates; else contentTemplate\"> </ng-container>\n\n <ng-template #customTemplates>\n <div *ngIf=\"headerTemplate\" class=\"header\">\n <ng-container *ngTemplateOutlet=\"headerTemplate\"></ng-container>\n </div>\n <div *ngIf=\"bodyTemplate\" class=\"body\">\n <ng-container *ngTemplateOutlet=\"bodyTemplate\"></ng-container>\n </div>\n <div *ngIf=\"footerTemplate\" class=\"footer\">\n <ng-container *ngTemplateOutlet=\"footerTemplate\"></ng-container>\n </div>\n </ng-template>\n\n <ng-template #contentTemplate>\n <div class=\"body\">\n <ng-content></ng-content>\n </div>\n </ng-template>\n</div>\n",
|
|
2049
|
+
styles: [".card{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:column;flex-direction:column;background-color:#fff;border-radius:4px;box-shadow:0 1px 5px 0 #00000040;overflow:hidden}.card--full-width{width:100%}.card .banner{background-repeat:no-repeat;background-size:cover;height:150px;width:100%}.card .header{padding:16px 12px}.card .body,.card .footer{padding:16px}.card .body+.footer,.card .header+.body{border-top:1px solid #c1c1cc}"]
|
|
2050
|
+
})
|
|
2051
|
+
], CardComponent);
|
|
2052
|
+
return CardComponent;
|
|
2053
|
+
}());
|
|
2054
|
+
|
|
2055
|
+
var TemplateModule = /** @class */ (function () {
|
|
2056
|
+
function TemplateModule() {
|
|
2057
|
+
}
|
|
2058
|
+
TemplateModule = __decorate([
|
|
2059
|
+
core.NgModule({
|
|
2060
|
+
imports: [common.CommonModule],
|
|
2061
|
+
declarations: [TemplateDirective],
|
|
2062
|
+
exports: [TemplateDirective],
|
|
2063
|
+
})
|
|
2064
|
+
], TemplateModule);
|
|
2065
|
+
return TemplateModule;
|
|
2066
|
+
}());
|
|
2067
|
+
|
|
2068
|
+
var CardModule = /** @class */ (function () {
|
|
2069
|
+
function CardModule() {
|
|
2070
|
+
}
|
|
2071
|
+
CardModule = __decorate([
|
|
2072
|
+
core.NgModule({
|
|
2073
|
+
imports: [common.CommonModule],
|
|
2074
|
+
declarations: [CardComponent],
|
|
2075
|
+
exports: [CardComponent, TemplateModule],
|
|
2076
|
+
})
|
|
2077
|
+
], CardModule);
|
|
2078
|
+
return CardModule;
|
|
2079
|
+
}());
|
|
2080
|
+
|
|
1975
2081
|
|
|
1976
2082
|
(function (Languages) {
|
|
1977
2083
|
Languages["TaxCalculation"] = "TaxCalculation";
|
|
@@ -6256,6 +6362,11 @@
|
|
|
6256
6362
|
|
|
6257
6363
|
var ProgressBarComponent = /** @class */ (function () {
|
|
6258
6364
|
function ProgressBarComponent() {
|
|
6365
|
+
this.numberFormatOptions = {
|
|
6366
|
+
style: "decimal",
|
|
6367
|
+
minimumFractionDigits: 0,
|
|
6368
|
+
maximumFractionDigits: 2,
|
|
6369
|
+
};
|
|
6259
6370
|
this.showValue = true;
|
|
6260
6371
|
this.mode = ProgressBarMode.Determinate;
|
|
6261
6372
|
}
|
|
@@ -6276,6 +6387,9 @@
|
|
|
6276
6387
|
__decorate([
|
|
6277
6388
|
core.Input()
|
|
6278
6389
|
], ProgressBarComponent.prototype, "value", void 0);
|
|
6390
|
+
__decorate([
|
|
6391
|
+
core.Input()
|
|
6392
|
+
], ProgressBarComponent.prototype, "numberFormatOptions", void 0);
|
|
6279
6393
|
__decorate([
|
|
6280
6394
|
core.Input()
|
|
6281
6395
|
], ProgressBarComponent.prototype, "targetValue", void 0);
|
|
@@ -6297,7 +6411,7 @@
|
|
|
6297
6411
|
ProgressBarComponent = __decorate([
|
|
6298
6412
|
core.Component({
|
|
6299
6413
|
selector: "s-progressbar",
|
|
6300
|
-
template: "<ng-container *ngIf=\"mode === 'determinate'; then pbDeterminateTemplate else pbIndeterminateTemplate\"></ng-container>\n\n<ng-template #pbDeterminateTemplate>\n <s-progressbar-determinate\n [value]=\"value\"\n [targetValue]=\"targetValue\"\n [targetLabel]=\"targetLabel\"\n [activeColor]=\"activeColor\"\n [showValue]=\"showValue\">\n </s-progressbar-determinate>\n</ng-template>\n\n<ng-template #pbIndeterminateTemplate>\n <s-progressbar-indeterminate\n [activeColor]=\"activeColor\"\n [label]=\"label\">\n </s-progressbar-indeterminate>\n</ng-template>",
|
|
6414
|
+
template: "<ng-container *ngIf=\"mode === 'determinate'; then pbDeterminateTemplate else pbIndeterminateTemplate\"></ng-container>\n\n<ng-template #pbDeterminateTemplate>\n <s-progressbar-determinate\n [value]=\"value\"\n [numberFormatOptions]=\"numberFormatOptions\"\n [targetValue]=\"targetValue\"\n [targetLabel]=\"targetLabel\"\n [activeColor]=\"activeColor\"\n [showValue]=\"showValue\">\n </s-progressbar-determinate>\n</ng-template>\n\n<ng-template #pbIndeterminateTemplate>\n <s-progressbar-indeterminate\n [activeColor]=\"activeColor\"\n [label]=\"label\">\n </s-progressbar-indeterminate>\n</ng-template>",
|
|
6301
6415
|
styles: [".progress-bar{position:relative}.progress-bar .progress-bar-all{background-color:#d8d8d8;border-radius:4px;height:24px;overflow:hidden;width:100%}.progress-bar .progress-bar-all .progress-bar-active{-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:14px;height:100%;-ms-flex-pack:center;justify-content:center;line-height:150%;-webkit-user-select:none;-ms-user-select:none;user-select:none;width:80%}.progress-bar .progress-bar-all .progress-bar-active--blue{background-color:#428bca}.progress-bar .progress-bar-all .progress-bar-active--green{background-color:#0c9348}.progress-bar .progress-bar-all .progress-bar-active--red{background-color:#c13018}.progress-bar .progress-bar-all .progress-bar-active--yellow{background-color:#fcbf10}.progress-bar .target{-ms-flex-align:start;align-items:flex-start;bottom:-38px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:absolute}.progress-bar .target .target-line{background-color:#333;height:40px;margin:8px 0;width:1px}.progress-bar .target .target-label{background-color:#426e78;border-radius:10px;color:#e5eaea;font-family:\"Open Sans\",sans-serif;font-size:12px;line-height:150%;padding:2px 12px}"]
|
|
6302
6416
|
})
|
|
6303
6417
|
], ProgressBarComponent);
|
|
@@ -6305,11 +6419,24 @@
|
|
|
6305
6419
|
}());
|
|
6306
6420
|
|
|
6307
6421
|
var ProgressBarDeterminateComponent = /** @class */ (function () {
|
|
6308
|
-
function ProgressBarDeterminateComponent() {
|
|
6422
|
+
function ProgressBarDeterminateComponent(localeService) {
|
|
6423
|
+
this.localeService = localeService;
|
|
6309
6424
|
this.showValue = true;
|
|
6310
6425
|
}
|
|
6311
6426
|
ProgressBarDeterminateComponent.prototype.ngOnInit = function () {
|
|
6312
6427
|
this.validateValues();
|
|
6428
|
+
this.onGetLocale();
|
|
6429
|
+
};
|
|
6430
|
+
ProgressBarDeterminateComponent.prototype.onGetLocale = function () {
|
|
6431
|
+
var _this = this;
|
|
6432
|
+
this.localeService.getLocale().subscribe({
|
|
6433
|
+
next: function (locale) {
|
|
6434
|
+
_this.numberFormat = new Intl.NumberFormat(locale !== null && locale !== void 0 ? locale : "pt-BR", _this.numberFormatOptions);
|
|
6435
|
+
},
|
|
6436
|
+
error: function () {
|
|
6437
|
+
_this.numberFormat = new Intl.NumberFormat("pt-BR", _this.numberFormatOptions);
|
|
6438
|
+
},
|
|
6439
|
+
});
|
|
6313
6440
|
};
|
|
6314
6441
|
ProgressBarDeterminateComponent.prototype.validateValues = function () {
|
|
6315
6442
|
if (this.value < 0 || this.value > 100) {
|
|
@@ -6319,9 +6446,15 @@
|
|
|
6319
6446
|
throw new Error("Invalid value for targetValue");
|
|
6320
6447
|
}
|
|
6321
6448
|
};
|
|
6449
|
+
ProgressBarDeterminateComponent.ctorParameters = function () { return [
|
|
6450
|
+
{ type: LocaleService }
|
|
6451
|
+
]; };
|
|
6322
6452
|
__decorate([
|
|
6323
6453
|
core.Input()
|
|
6324
6454
|
], ProgressBarDeterminateComponent.prototype, "value", void 0);
|
|
6455
|
+
__decorate([
|
|
6456
|
+
core.Input()
|
|
6457
|
+
], ProgressBarDeterminateComponent.prototype, "numberFormatOptions", void 0);
|
|
6325
6458
|
__decorate([
|
|
6326
6459
|
core.Input()
|
|
6327
6460
|
], ProgressBarDeterminateComponent.prototype, "targetValue", void 0);
|
|
@@ -6337,7 +6470,7 @@
|
|
|
6337
6470
|
ProgressBarDeterminateComponent = __decorate([
|
|
6338
6471
|
core.Component({
|
|
6339
6472
|
selector: "s-progressbar-determinate",
|
|
6340
|
-
template: "<div class=\"progressbar-determinate\">\n <div class=\"progressbar-container\">\n <div\n class=\"progressbar-active\"\n [ngClass]=\"{\n 'progressbar-active--blue' : activeColor === 'blue',\n 'progressbar-active--green': activeColor === 'green',\n 'progressbar-active--red': activeColor === 'red',\n 'progressbar-active--yellow': activeColor === 'yellow'\n }\"\n [ngStyle]=\"{ 'width': value + '%' }\">\n {{ showValue && value ? value + '%' : '' }}\n </div>\n </div>\n <div\n *ngIf=\"targetValue\"\n class=\"target\"\n [ngStyle]=\"{\n 'left': targetValue <= 50 ? targetValue + '%' : 'unset',\n 'right': targetValue > 50 ? 100 - targetValue + '%' : 'unset',\n 'align-items': targetValue > 50 ? 'flex-end' : 'flex-start'\n }\">\n <span class=\"target-line\"></span>\n <span class=\"target-label\">\n {{ targetLabel || value + '%' }}\n </span>\n </div>\n </div>\n
|
|
6473
|
+
template: "<div class=\"progressbar-determinate\">\n <div class=\"progressbar-container\">\n <div\n class=\"progressbar-active\"\n [ngClass]=\"{\n 'progressbar-active--blue' : activeColor === 'blue',\n 'progressbar-active--green': activeColor === 'green',\n 'progressbar-active--red': activeColor === 'red',\n 'progressbar-active--yellow': activeColor === 'yellow'\n }\"\n [ngStyle]=\"{ 'width': value + '%' }\">\n\n {{ showValue && value ? numberFormat.format(value) + '%' : '' }}\n </div>\n </div>\n <div\n *ngIf=\"targetValue\"\n class=\"target\"\n [ngStyle]=\"{\n 'left': targetValue <= 50 ? targetValue + '%' : 'unset',\n 'right': targetValue > 50 ? 100 - targetValue + '%' : 'unset',\n 'align-items': targetValue > 50 ? 'flex-end' : 'flex-start'\n }\">\n <span class=\"target-line\"></span>\n <span class=\"target-label\">\n {{ targetLabel || numberFormat.format(value) + '%' }}\n </span>\n </div>\n </div>\n",
|
|
6341
6474
|
styles: [".progressbar-determinate{position:relative}.progressbar-determinate .progressbar-container{background-color:#d8d8d8;border-radius:4px;height:24px;overflow:hidden;width:100%}.progressbar-determinate .progressbar-container .progressbar-active{-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:14px;height:100%;-ms-flex-pack:center;justify-content:center;line-height:150%;-webkit-user-select:none;-ms-user-select:none;user-select:none;width:80%}.progressbar-determinate .progressbar-container .progressbar-active--blue{background-color:#428bca}.progressbar-determinate .progressbar-container .progressbar-active--green{background-color:#0c9348}.progressbar-determinate .progressbar-container .progressbar-active--red{background-color:#c13018}.progressbar-determinate .progressbar-container .progressbar-active--yellow{background-color:#fcbf10;color:#212533}.progressbar-determinate .target{-ms-flex-align:start;align-items:flex-start;bottom:-38px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:absolute}.progressbar-determinate .target .target-line{background-color:#333;height:40px;margin:8px 0;width:1px}.progressbar-determinate .target .target-label{background-color:#426e78;border-radius:10px;color:#e5eaea;font-family:\"Open Sans\",sans-serif;font-size:12px;line-height:150%;padding:2px 12px}"]
|
|
6342
6475
|
})
|
|
6343
6476
|
], ProgressBarDeterminateComponent);
|
|
@@ -6356,7 +6489,7 @@
|
|
|
6356
6489
|
ProgressBarIndeterminateComponent = __decorate([
|
|
6357
6490
|
core.Component({
|
|
6358
6491
|
selector: "s-progressbar-indeterminate",
|
|
6359
|
-
template: "
|
|
6492
|
+
template: "<div class=\"progressbar-indeterminate\">\n <div class=\"progressbar-container\">\n <div class=\"indeterminate-bar\" [ngClass]=\"{\n 'indeterminate-bar--blue': activeColor === 'blue',\n 'indeterminate-bar--green': activeColor === 'green',\n 'indeterminate-bar--red': activeColor === 'red',\n 'indeterminate-bar--yellow': activeColor === 'yellow'\n }\"></div>\n </div>\n\n <span *ngIf=\"label\" class=\"progressbar-label\">{{ label }}</span>\n</div>\n",
|
|
6360
6493
|
styles: [".progressbar-indeterminate{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center}.progressbar-indeterminate .progressbar-container{background-color:#d8d8d8;border-radius:4px;height:24px;margin:8px 0;overflow:hidden;width:100%}.progressbar-indeterminate .indeterminate-bar{animation:5s infinite indeterminate-progress;background-color:#428bca;height:100%;width:40%}.progressbar-indeterminate .indeterminate-bar--blue{background-color:#428bca}.progressbar-indeterminate .indeterminate-bar--green{background-color:#0c9348}.progressbar-indeterminate .indeterminate-bar--red{background-color:#c13018}.progressbar-indeterminate .indeterminate-bar--yellow{background-color:#fcbf10}.progressbar-indeterminate .progressbar-label{font-family:\"Open Sans\" sans-serif;font-size:12px;line-height:150%;color:#212533}@keyframes indeterminate-progress{0%{transform:translateX(-250%)}100%{transform:translateX(250%)}}"]
|
|
6361
6494
|
})
|
|
6362
6495
|
], ProgressBarIndeterminateComponent);
|
|
@@ -13260,37 +13393,6 @@
|
|
|
13260
13393
|
return GlobalSearchModule;
|
|
13261
13394
|
}());
|
|
13262
13395
|
|
|
13263
|
-
var TemplateDirective = /** @class */ (function () {
|
|
13264
|
-
function TemplateDirective(template) {
|
|
13265
|
-
this.template = template;
|
|
13266
|
-
}
|
|
13267
|
-
TemplateDirective.ctorParameters = function () { return [
|
|
13268
|
-
{ type: core.TemplateRef }
|
|
13269
|
-
]; };
|
|
13270
|
-
__decorate([
|
|
13271
|
-
core.Input("sTemplate")
|
|
13272
|
-
], TemplateDirective.prototype, "type", void 0);
|
|
13273
|
-
TemplateDirective = __decorate([
|
|
13274
|
-
core.Directive({
|
|
13275
|
-
selector: "[sTemplate]",
|
|
13276
|
-
})
|
|
13277
|
-
], TemplateDirective);
|
|
13278
|
-
return TemplateDirective;
|
|
13279
|
-
}());
|
|
13280
|
-
|
|
13281
|
-
var TemplateModule = /** @class */ (function () {
|
|
13282
|
-
function TemplateModule() {
|
|
13283
|
-
}
|
|
13284
|
-
TemplateModule = __decorate([
|
|
13285
|
-
core.NgModule({
|
|
13286
|
-
imports: [common.CommonModule],
|
|
13287
|
-
declarations: [TemplateDirective],
|
|
13288
|
-
exports: [TemplateDirective],
|
|
13289
|
-
})
|
|
13290
|
-
], TemplateModule);
|
|
13291
|
-
return TemplateModule;
|
|
13292
|
-
}());
|
|
13293
|
-
|
|
13294
13396
|
var IAInsightCardComponent = /** @class */ (function () {
|
|
13295
13397
|
function IAInsightCardComponent(clipboard, messageService, translateService) {
|
|
13296
13398
|
this.clipboard = clipboard;
|
|
@@ -17401,6 +17503,8 @@
|
|
|
17401
17503
|
exports.CalendarLocaleOptions = CalendarLocaleOptions;
|
|
17402
17504
|
exports.CalendarMaskDirective = CalendarMaskDirective;
|
|
17403
17505
|
exports.CalendarMaskModule = CalendarMaskModule;
|
|
17506
|
+
exports.CardComponent = CardComponent;
|
|
17507
|
+
exports.CardModule = CardModule;
|
|
17404
17508
|
exports.ChipsField = ChipsField;
|
|
17405
17509
|
exports.CodeEditorModule = CodeEditorModule;
|
|
17406
17510
|
exports.CollapseLinkComponent = CollapseLinkComponent;
|
|
@@ -17539,35 +17643,35 @@
|
|
|
17539
17643
|
exports.fallback = fallback;
|
|
17540
17644
|
exports.ɵa = TooltipComponent;
|
|
17541
17645
|
exports.ɵb = TooltipDirective;
|
|
17542
|
-
exports.ɵba =
|
|
17543
|
-
exports.ɵbb =
|
|
17544
|
-
exports.ɵbc =
|
|
17545
|
-
exports.ɵbd =
|
|
17546
|
-
exports.ɵbe =
|
|
17547
|
-
exports.ɵbf =
|
|
17548
|
-
exports.ɵbg =
|
|
17549
|
-
exports.ɵbh =
|
|
17550
|
-
exports.ɵbi =
|
|
17551
|
-
exports.ɵbj =
|
|
17552
|
-
exports.ɵbk =
|
|
17553
|
-
exports.ɵbl =
|
|
17554
|
-
exports.ɵbm =
|
|
17555
|
-
exports.ɵbn =
|
|
17556
|
-
exports.ɵbo =
|
|
17557
|
-
exports.ɵbp =
|
|
17558
|
-
exports.ɵbq =
|
|
17559
|
-
exports.ɵbr =
|
|
17560
|
-
exports.ɵbs =
|
|
17561
|
-
exports.ɵbt =
|
|
17562
|
-
exports.ɵbu =
|
|
17563
|
-
exports.ɵ
|
|
17564
|
-
exports.ɵ
|
|
17565
|
-
exports.ɵby =
|
|
17566
|
-
exports.ɵbz =
|
|
17567
|
-
exports.ɵc =
|
|
17568
|
-
exports.ɵca =
|
|
17569
|
-
exports.ɵcb =
|
|
17570
|
-
exports.ɵcc =
|
|
17646
|
+
exports.ɵba = BignumberFieldComponent;
|
|
17647
|
+
exports.ɵbb = BooleanFieldComponent;
|
|
17648
|
+
exports.ɵbc = BooleanSwitchFieldComponent;
|
|
17649
|
+
exports.ɵbd = CalendarFieldComponent;
|
|
17650
|
+
exports.ɵbe = ChipsFieldComponent;
|
|
17651
|
+
exports.ɵbf = CountryPhonePickerFieldComponent;
|
|
17652
|
+
exports.ɵbg = CurrencyFieldComponent;
|
|
17653
|
+
exports.ɵbh = DynamicFieldComponent;
|
|
17654
|
+
exports.ɵbi = DynamicFormDirective;
|
|
17655
|
+
exports.ɵbj = FieldsetComponent;
|
|
17656
|
+
exports.ɵbk = FileUploadComponent$1;
|
|
17657
|
+
exports.ɵbl = LookupFieldComponent;
|
|
17658
|
+
exports.ɵbm = NumberFieldComponent;
|
|
17659
|
+
exports.ɵbn = PasswordFieldComponent;
|
|
17660
|
+
exports.ɵbo = RadioButtonComponent;
|
|
17661
|
+
exports.ɵbp = RowComponent;
|
|
17662
|
+
exports.ɵbq = SectionComponent;
|
|
17663
|
+
exports.ɵbr = SelectFieldComponent;
|
|
17664
|
+
exports.ɵbs = SliderFieldComponent;
|
|
17665
|
+
exports.ɵbt = TextAreaFieldComponent;
|
|
17666
|
+
exports.ɵbu = TextAreaIAFieldComponent;
|
|
17667
|
+
exports.ɵbv = IAssistService;
|
|
17668
|
+
exports.ɵbw = TextFieldComponent;
|
|
17669
|
+
exports.ɵby = DecimalField;
|
|
17670
|
+
exports.ɵbz = SideTableComponent;
|
|
17671
|
+
exports.ɵc = TemplateDirective;
|
|
17672
|
+
exports.ɵca = ThumbnailService;
|
|
17673
|
+
exports.ɵcb = InfiniteScrollModule;
|
|
17674
|
+
exports.ɵcc = InfiniteScrollDirective;
|
|
17571
17675
|
exports.ɵcd = IAInsightSidebarComponent;
|
|
17572
17676
|
exports.ɵce = IAInsightCardComponent;
|
|
17573
17677
|
exports.ɵcf = IAInsightCardLoaderComponent;
|
|
@@ -17591,7 +17695,7 @@
|
|
|
17591
17695
|
exports.ɵcx = TieredMenuDividerComponent;
|
|
17592
17696
|
exports.ɵcy = TimelineItemModule;
|
|
17593
17697
|
exports.ɵcz = TimelineIconItemComponent;
|
|
17594
|
-
exports.ɵd =
|
|
17698
|
+
exports.ɵd = TemplateModule;
|
|
17595
17699
|
exports.ɵda = HorizontalTimelineModule;
|
|
17596
17700
|
exports.ɵdb = HorizontalTimelineComponent;
|
|
17597
17701
|
exports.ɵdc = VerticalTimelineModule;
|
|
@@ -17600,28 +17704,28 @@
|
|
|
17600
17704
|
exports.ɵdf = CollapseOptionComponent;
|
|
17601
17705
|
exports.ɵdg = CollapsedItemsComponent;
|
|
17602
17706
|
exports.ɵdh = VerticalItemsComponent;
|
|
17603
|
-
exports.ɵe =
|
|
17604
|
-
exports.ɵf =
|
|
17605
|
-
exports.ɵg =
|
|
17606
|
-
exports.ɵh =
|
|
17607
|
-
exports.ɵi =
|
|
17608
|
-
exports.ɵj =
|
|
17609
|
-
exports.ɵk =
|
|
17610
|
-
exports.ɵl =
|
|
17611
|
-
exports.ɵm =
|
|
17612
|
-
exports.ɵn =
|
|
17613
|
-
exports.ɵo =
|
|
17614
|
-
exports.ɵp =
|
|
17615
|
-
exports.ɵq =
|
|
17616
|
-
exports.ɵr =
|
|
17617
|
-
exports.ɵs =
|
|
17618
|
-
exports.ɵt =
|
|
17619
|
-
exports.ɵu =
|
|
17620
|
-
exports.ɵv =
|
|
17621
|
-
exports.ɵw =
|
|
17622
|
-
exports.ɵx =
|
|
17623
|
-
exports.ɵy =
|
|
17624
|
-
exports.ɵz =
|
|
17707
|
+
exports.ɵe = CustomTranslationsModule;
|
|
17708
|
+
exports.ɵf = CodeEditorComponent;
|
|
17709
|
+
exports.ɵg = CoreFacade;
|
|
17710
|
+
exports.ɵh = CodeMirror6Core;
|
|
17711
|
+
exports.ɵi = CountryPhonePickerService;
|
|
17712
|
+
exports.ɵj = LocalizedCurrencyImpurePipe;
|
|
17713
|
+
exports.ɵk = LocalizedBignumberPipe;
|
|
17714
|
+
exports.ɵl = LocalizedBignumberImpurePipe;
|
|
17715
|
+
exports.ɵm = EmptyStateGoBackComponent;
|
|
17716
|
+
exports.ɵn = IAssistIconComponent;
|
|
17717
|
+
exports.ɵo = SeniorIconComponent;
|
|
17718
|
+
exports.ɵp = DotsIndicatorComponent;
|
|
17719
|
+
exports.ɵq = LoadingIndicatorComponent;
|
|
17720
|
+
exports.ɵr = ProgressBarDeterminateComponent;
|
|
17721
|
+
exports.ɵs = ProgressBarIndeterminateComponent;
|
|
17722
|
+
exports.ɵt = FileUploadService;
|
|
17723
|
+
exports.ɵu = FileItemComponent;
|
|
17724
|
+
exports.ɵv = LocaleService;
|
|
17725
|
+
exports.ɵw = InfoSignComponent;
|
|
17726
|
+
exports.ɵx = TableColumnsComponent;
|
|
17727
|
+
exports.ɵy = TablePagingComponent;
|
|
17728
|
+
exports.ɵz = AutocompleteFieldComponent;
|
|
17625
17729
|
|
|
17626
17730
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17627
17731
|
|