@seniorsistemas/angular-components 17.19.2 → 17.20.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/seniorsistemas-angular-components.umd.js +151 -58
- 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/dynamic-form/components/fields/button-field/button-field.component.d.ts +5 -0
- package/components/dynamic-form/components/grid/row/row.component.d.ts +2 -5
- package/components/dynamic-form/components/structure/section/section.component.d.ts +1 -0
- package/components/dynamic-form/configurations/field-type.d.ts +2 -1
- package/components/dynamic-form/configurations/fields/button-field.d.ts +33 -0
- package/components/dynamic-form/configurations/fields/index.d.ts +1 -0
- package/components/dynamic-form/configurations/grid/grid.d.ts +2 -1
- package/components/dynamic-form/configurations/structure/section.d.ts +18 -2
- package/components/dynamic-form/configurations/structure/structure.d.ts +5 -3
- package/components/dynamic-form/dynamic-form.d.ts +6 -5
- package/components/dynamic-form/index.d.ts +5 -0
- package/components/table/table-paging/table-paging.component.d.ts +1 -1
- package/esm2015/components/dynamic-form/components/fields/button-field/button-field.component.js +21 -0
- package/esm2015/components/dynamic-form/components/grid/row/row.component.js +2 -2
- package/esm2015/components/dynamic-form/components/structure/section/section.component.js +24 -5
- package/esm2015/components/dynamic-form/configurations/field-type.js +2 -1
- package/esm2015/components/dynamic-form/configurations/fields/button-field.js +28 -0
- package/esm2015/components/dynamic-form/configurations/fields/index.js +2 -1
- package/esm2015/components/dynamic-form/configurations/form-field.js +4 -1
- package/esm2015/components/dynamic-form/configurations/grid/grid.js +1 -1
- package/esm2015/components/dynamic-form/configurations/structure/section.js +23 -1
- package/esm2015/components/dynamic-form/configurations/structure/structure.js +2 -1
- package/esm2015/components/dynamic-form/dynamic-form.directive.js +1 -1
- package/esm2015/components/dynamic-form/dynamic-form.js +4 -1
- package/esm2015/components/dynamic-form/dynamic-form.module.js +3 -1
- package/esm2015/components/dynamic-form/index.js +6 -1
- package/esm2015/components/table/table-paging/table-paging.component.js +4 -2
- package/esm2015/seniorsistemas-angular-components.js +41 -40
- package/esm5/components/dynamic-form/components/fields/button-field/button-field.component.js +24 -0
- package/esm5/components/dynamic-form/components/grid/row/row.component.js +2 -2
- package/esm5/components/dynamic-form/components/structure/section/section.component.js +11 -2
- package/esm5/components/dynamic-form/configurations/field-type.js +2 -1
- package/esm5/components/dynamic-form/configurations/fields/button-field.js +33 -0
- package/esm5/components/dynamic-form/configurations/fields/index.js +2 -1
- package/esm5/components/dynamic-form/configurations/form-field.js +4 -1
- package/esm5/components/dynamic-form/configurations/grid/grid.js +1 -1
- package/esm5/components/dynamic-form/configurations/structure/section.js +25 -2
- package/esm5/components/dynamic-form/configurations/structure/structure.js +2 -1
- package/esm5/components/dynamic-form/dynamic-form.directive.js +1 -1
- package/esm5/components/dynamic-form/dynamic-form.js +4 -1
- package/esm5/components/dynamic-form/dynamic-form.module.js +3 -1
- package/esm5/components/dynamic-form/index.js +6 -1
- package/esm5/components/table/table-paging/table-paging.component.js +4 -2
- package/esm5/seniorsistemas-angular-components.js +41 -40
- package/fesm2015/seniorsistemas-angular-components.js +109 -17
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +104 -15
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +40 -39
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -6415,6 +6415,7 @@
|
|
|
6415
6415
|
FieldType["TextIA"] = "TextIA";
|
|
6416
6416
|
FieldType["Time"] = "Time";
|
|
6417
6417
|
FieldType["ProfilePicture"] = "ProfilePicture";
|
|
6418
|
+
FieldType["Button"] = "Button";
|
|
6418
6419
|
})(exports.FieldType || (exports.FieldType = {}));
|
|
6419
6420
|
|
|
6420
6421
|
var FieldSize = /** @class */ (function () {
|
|
@@ -7046,6 +7047,34 @@
|
|
|
7046
7047
|
return TextField;
|
|
7047
7048
|
}(Field));
|
|
7048
7049
|
|
|
7050
|
+
var ButtonField = /** @class */ (function (_super) {
|
|
7051
|
+
__extends(ButtonField, _super);
|
|
7052
|
+
function ButtonField(config) {
|
|
7053
|
+
var _this = _super.call(this, config) || this;
|
|
7054
|
+
_this.tooltipPosition = "top";
|
|
7055
|
+
_this.priority = config.priority || exports.ButtonPriority.Primary;
|
|
7056
|
+
_this.iconClass = config.iconClass || "";
|
|
7057
|
+
_this.disabled = config.disabled || false;
|
|
7058
|
+
_this.auxiliary = config.auxiliary || false;
|
|
7059
|
+
_this.caret = config.caret || false;
|
|
7060
|
+
_this.id = config.id || "s-button-" + ButtonComponent.nextId++;
|
|
7061
|
+
_this.onClick = config.onClick || (function () { });
|
|
7062
|
+
_this.fullWidth = config.fullWidth || false;
|
|
7063
|
+
_this.iconColor = config.iconColor;
|
|
7064
|
+
_this.badge = config.badge;
|
|
7065
|
+
_this.animation = config.animation;
|
|
7066
|
+
_this.slide = config.slide;
|
|
7067
|
+
_this.menuOptions = config.menuOptions;
|
|
7068
|
+
_this.model = config.model;
|
|
7069
|
+
_this.baseZIndex = config.baseZIndex;
|
|
7070
|
+
_this.styleClass = config.styleClass;
|
|
7071
|
+
_this.rightIconClass = config.rightIconClass;
|
|
7072
|
+
_this.tooltipPosition = config.tooltipPosition;
|
|
7073
|
+
return _this;
|
|
7074
|
+
}
|
|
7075
|
+
return ButtonField;
|
|
7076
|
+
}(Field));
|
|
7077
|
+
|
|
7049
7078
|
var EditorField = /** @class */ (function (_super) {
|
|
7050
7079
|
__extends(EditorField, _super);
|
|
7051
7080
|
function EditorField(config) {
|
|
@@ -7135,6 +7164,8 @@
|
|
|
7135
7164
|
return new ProfilePictureField(config);
|
|
7136
7165
|
case exports.FieldType.Editor:
|
|
7137
7166
|
return new EditorField(config);
|
|
7167
|
+
case exports.FieldType.Button:
|
|
7168
|
+
return new ButtonField(config);
|
|
7138
7169
|
case exports.FieldType.Custom:
|
|
7139
7170
|
var CustomFieldClass = config.CustomFieldClass, otherConfigs = __rest(config, ["CustomFieldClass"]);
|
|
7140
7171
|
return new CustomFieldClass(otherConfigs);
|
|
@@ -7767,6 +7798,7 @@
|
|
|
7767
7798
|
|
|
7768
7799
|
var Structure = /** @class */ (function () {
|
|
7769
7800
|
function Structure(config) {
|
|
7801
|
+
this.isFlex = false;
|
|
7770
7802
|
Object.assign(this, __assign({}, config));
|
|
7771
7803
|
}
|
|
7772
7804
|
return Structure;
|
|
@@ -7785,7 +7817,29 @@
|
|
|
7785
7817
|
var Section = /** @class */ (function (_super) {
|
|
7786
7818
|
__extends(Section, _super);
|
|
7787
7819
|
function Section(config) {
|
|
7788
|
-
|
|
7820
|
+
var _this = _super.call(this, config) || this;
|
|
7821
|
+
/**
|
|
7822
|
+
* Define if the structure is a flex container.
|
|
7823
|
+
*/
|
|
7824
|
+
_this.isFlex = false;
|
|
7825
|
+
/**
|
|
7826
|
+
* Define the justify-content property.
|
|
7827
|
+
*/
|
|
7828
|
+
_this.justifyContent = 'flex-start';
|
|
7829
|
+
/**
|
|
7830
|
+
* Define the align-items property.
|
|
7831
|
+
*/
|
|
7832
|
+
_this.alignItems = 'flex-start';
|
|
7833
|
+
_this.visible = function () { return true; };
|
|
7834
|
+
_this.isFlex = config.isFlex || false;
|
|
7835
|
+
_this.justifyContent = config.justifyContent || 'flex-start';
|
|
7836
|
+
_this.alignItems = config.alignItems || 'flex-start';
|
|
7837
|
+
if (config.visible) {
|
|
7838
|
+
_this.visible = config.visible;
|
|
7839
|
+
}
|
|
7840
|
+
_this.size = new FieldSize(config.size || {});
|
|
7841
|
+
_this.gridClass = Object.keys(_this.size).map(function (key) { return "ui-" + key + "-" + _this.size[key]; });
|
|
7842
|
+
return _this;
|
|
7789
7843
|
}
|
|
7790
7844
|
return Section;
|
|
7791
7845
|
}(Structure));
|
|
@@ -7842,6 +7896,17 @@
|
|
|
7842
7896
|
return DynamicConfig;
|
|
7843
7897
|
}());
|
|
7844
7898
|
|
|
7899
|
+
|
|
7900
|
+
(function (GridType) {
|
|
7901
|
+
GridType["Row"] = "Row";
|
|
7902
|
+
})(exports.GridType || (exports.GridType = {}));
|
|
7903
|
+
|
|
7904
|
+
|
|
7905
|
+
(function (StructureType) {
|
|
7906
|
+
StructureType["Fieldset"] = "Fieldset";
|
|
7907
|
+
StructureType["Section"] = "Section";
|
|
7908
|
+
})(exports.StructureType || (exports.StructureType = {}));
|
|
7909
|
+
|
|
7845
7910
|
var DynamicFormComponent = /** @class */ (function () {
|
|
7846
7911
|
function DynamicFormComponent() {
|
|
7847
7912
|
this.errorMessages = {};
|
|
@@ -10426,6 +10491,8 @@
|
|
|
10426
10491
|
try {
|
|
10427
10492
|
for (var attributes_1 = (e_2 = void 0, __values(attributes)), attributes_1_1 = attributes_1.next(); !attributes_1_1.done; attributes_1_1 = attributes_1.next()) {
|
|
10428
10493
|
var attribute = attributes_1_1.value;
|
|
10494
|
+
if (isNullOrUndefined(row[attribute]))
|
|
10495
|
+
continue;
|
|
10429
10496
|
if ((_c = row[attribute].options) === null || _c === void 0 ? void 0 : _c.numberFormatOptions) {
|
|
10430
10497
|
continue;
|
|
10431
10498
|
}
|
|
@@ -11276,6 +11343,13 @@
|
|
|
11276
11343
|
var SectionComponent = /** @class */ (function () {
|
|
11277
11344
|
function SectionComponent() {
|
|
11278
11345
|
}
|
|
11346
|
+
Object.defineProperty(SectionComponent.prototype, "flexContainer", {
|
|
11347
|
+
get: function () {
|
|
11348
|
+
return this.config.isFlex;
|
|
11349
|
+
},
|
|
11350
|
+
enumerable: true,
|
|
11351
|
+
configurable: true
|
|
11352
|
+
});
|
|
11279
11353
|
__decorate([
|
|
11280
11354
|
core.Input()
|
|
11281
11355
|
], SectionComponent.prototype, "id", void 0);
|
|
@@ -11290,7 +11364,9 @@
|
|
|
11290
11364
|
], SectionComponent.prototype, "errorMessages", void 0);
|
|
11291
11365
|
SectionComponent = __decorate([
|
|
11292
11366
|
core.Component({
|
|
11293
|
-
|
|
11367
|
+
selector: 's-section',
|
|
11368
|
+
template: "\n <h3 *ngIf=\"config?.header\" class=\"sds-section-title\">{{config.header}}</h3>\n <section [class.flex-container]=\"flexContainer\" [style.justify-content]=\"config.justifyContent\" [style.align-items]=\"config.alignItems\">\n <ng-container *ngFor=\"let conf of config.configs\">\n <ng-container *sDynamicForm=\"{ id: id, config: conf, group: group, errorMessages: errorMessages }\"></ng-container>\n </ng-container>\n </section>\n ",
|
|
11369
|
+
styles: ["\n .flex-container {\n display: flex\n }\n\n :host {\n height: 100%\n }\n\n section {\n height: 100%;\n }\n "]
|
|
11294
11370
|
})
|
|
11295
11371
|
], SectionComponent);
|
|
11296
11372
|
return SectionComponent;
|
|
@@ -11300,7 +11376,6 @@
|
|
|
11300
11376
|
function RowComponent() {
|
|
11301
11377
|
this.FieldType = exports.FieldType;
|
|
11302
11378
|
}
|
|
11303
|
-
RowComponent.prototype.ngOnInit = function () { };
|
|
11304
11379
|
RowComponent.prototype.getErrorMessages = function (errorMessages) {
|
|
11305
11380
|
if (errorMessages)
|
|
11306
11381
|
return this.isFunction(errorMessages) ? errorMessages() : errorMessages;
|
|
@@ -11323,6 +11398,7 @@
|
|
|
11323
11398
|
], RowComponent.prototype, "errorMessages", void 0);
|
|
11324
11399
|
RowComponent = __decorate([
|
|
11325
11400
|
core.Component({
|
|
11401
|
+
selector: 's-row',
|
|
11326
11402
|
template: "\n <div class=\"ui-fluid\" [formGroup]=\"group\">\n <div class=\"ui-g\">\n <ng-container *ngFor=\"let field of config.fields\">\n <div [ngClass]=\"field.gridClass\" *ngIf=\"field.visible()\">\n <ng-container *ngIf=\"field.type === FieldType.Custom && field.label\" >\n <label *sInfoSign=\"field.infoSign; displayTime: field.displayTimeInfoSign; useFocusedInputRef: field.useInfoSignFocusedInputRef\" [for]=\"field.name\" [ngClass]=\"{ required: field.required() }\" >\n {{ field.label }}\n </label>\n </ng-container>\n\n <ng-container *sDynamicForm=\"{ id: id, config: field, group: group}\"></ng-container>\n\n <s-control-errors [form]=\"group\" [control]=\"group.controls[field.name]\"\n [errorMessages]=\"getErrorMessages(field.errorMessages)\"></s-control-errors>\n\n <ng-container *ngIf=\"field.footer\">\n <ng-container *ngIf=\"field.footer.help\">\n <span *ngIf=\"field.footer.help.visible({ abstractControl: group.controls[field.name], formField: field })\" style=\"color: #888B99\">{{ field.footer.help.text }}</span>\n </ng-container>\n\n <ng-container *ngIf=\"field.footer.link\">\n <div\n *ngIf=\"field.footer.link.visible({ abstractControl: group.controls[field.name], formField: field })\"\n class=\"ui-g\"\n style=\"margin-left: -17px\"\n >\n <s-button\n [label]=\"field.footer.link.label\"\n priority=\"link\"\n (onClick)=\"field.footer.link.onClick({ abstractControl: group.controls[field.name], formField: field })\"\n [auxiliary]=\"true\"\n ></s-button>\n </div>\n </ng-container>\n </ng-container>\n\n <ng-template *ngIf=\"field?.bottomTemplate\" [ngTemplateOutlet]=\"field.bottomTemplate\"></ng-template>\n </div>\n </ng-container>\n </div>\n "
|
|
11327
11403
|
})
|
|
11328
11404
|
], RowComponent);
|
|
@@ -11363,17 +11439,6 @@
|
|
|
11363
11439
|
return DynamicFieldComponent;
|
|
11364
11440
|
}());
|
|
11365
11441
|
|
|
11366
|
-
var GridType;
|
|
11367
|
-
(function (GridType) {
|
|
11368
|
-
GridType["Row"] = "Row";
|
|
11369
|
-
})(GridType || (GridType = {}));
|
|
11370
|
-
|
|
11371
|
-
var StructureType;
|
|
11372
|
-
(function (StructureType) {
|
|
11373
|
-
StructureType["Fieldset"] = "Fieldset";
|
|
11374
|
-
StructureType["Section"] = "Section";
|
|
11375
|
-
})(StructureType || (StructureType = {}));
|
|
11376
|
-
|
|
11377
11442
|
var BignumberFieldComponent = /** @class */ (function (_super) {
|
|
11378
11443
|
__extends(BignumberFieldComponent, _super);
|
|
11379
11444
|
function BignumberFieldComponent(localeService, changeDetectorRef) {
|
|
@@ -11859,6 +11924,27 @@
|
|
|
11859
11924
|
return ProfilePictureFieldComponent;
|
|
11860
11925
|
}());
|
|
11861
11926
|
|
|
11927
|
+
var ButtonFieldComponent = /** @class */ (function () {
|
|
11928
|
+
function ButtonFieldComponent() {
|
|
11929
|
+
}
|
|
11930
|
+
ButtonFieldComponent.prototype.clickedButton = function ($event) {
|
|
11931
|
+
if (this.field.onClick) {
|
|
11932
|
+
this.field.onClick($event);
|
|
11933
|
+
}
|
|
11934
|
+
};
|
|
11935
|
+
__decorate([
|
|
11936
|
+
core.Input()
|
|
11937
|
+
], ButtonFieldComponent.prototype, "field", void 0);
|
|
11938
|
+
ButtonFieldComponent = __decorate([
|
|
11939
|
+
core.Component({
|
|
11940
|
+
selector: 's-button-field',
|
|
11941
|
+
template: "<section [class.full-width]=\"field.fullWidth\" [class.fit-content]=\"!field.fullWidth\">\n <s-button\n [label]=\"field.label\"\n [priority]=\"field.priority\"\n [iconClass]=\"field.iconClass\"\n [disabled]=\"field.disabled\"\n [auxiliary]=\"field.auxiliary\"\n [caret]=\"field.caret\"\n [id]=\"field.id\"\n [tooltip]=\"field.tooltip\"\n (onClick)=\"clickedButton($event)\"\n [iconColor]=\"field.iconColor\"\n [badge]=\"field.badge\"\n [animation]=\"field.animation\"\n [slide]=\"field.slide\"\n [menuOptions]=\"field.menuOptions\"\n [model]=\"field.model\"\n [baseZIndex]=\"field.baseZIndex\"\n [styleClass]=\"field.styleClass\"\n [rightIconClass]=\"field.rightIconClass\"\n [tooltipPosition]=\"field.tooltipPosition\"\n [type]=\"field.buttonType\"\n [size]=\"field.buttonSize\">\n </s-button>\n</section>\n",
|
|
11942
|
+
styles: ["section{height:100%;display:-ms-flexbox;display:flex;-ms-flex-align:end;align-items:flex-end}section.full-width{width:100%}section.fit-content{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}"]
|
|
11943
|
+
})
|
|
11944
|
+
], ButtonFieldComponent);
|
|
11945
|
+
return ButtonFieldComponent;
|
|
11946
|
+
}());
|
|
11947
|
+
|
|
11862
11948
|
var DynamicForm = /** @class */ (function () {
|
|
11863
11949
|
function DynamicForm(_a) {
|
|
11864
11950
|
var group = _a.group, errorMessages = _a.errorMessages;
|
|
@@ -11966,6 +12052,8 @@
|
|
|
11966
12052
|
return ProfilePictureFieldComponent;
|
|
11967
12053
|
case exports.FieldType.Editor:
|
|
11968
12054
|
return EditorFieldComponent;
|
|
12055
|
+
case exports.FieldType.Button:
|
|
12056
|
+
return ButtonFieldComponent;
|
|
11969
12057
|
case exports.FieldType.Custom:
|
|
11970
12058
|
return this.field.CustomFieldComponentClass;
|
|
11971
12059
|
default:
|
|
@@ -11998,9 +12086,9 @@
|
|
|
11998
12086
|
};
|
|
11999
12087
|
DynamicStructure.prototype.getComponent = function () {
|
|
12000
12088
|
switch (this.config.type) {
|
|
12001
|
-
case StructureType.Fieldset:
|
|
12089
|
+
case exports.StructureType.Fieldset:
|
|
12002
12090
|
return FieldsetComponent;
|
|
12003
|
-
case StructureType.Section:
|
|
12091
|
+
case exports.StructureType.Section:
|
|
12004
12092
|
return SectionComponent;
|
|
12005
12093
|
default:
|
|
12006
12094
|
throw new Error("Trying to use an unsupported type (" + this.config.type + ").");
|
|
@@ -12030,7 +12118,7 @@
|
|
|
12030
12118
|
};
|
|
12031
12119
|
DynamicGrid.prototype.getComponent = function () {
|
|
12032
12120
|
switch (this.config.type) {
|
|
12033
|
-
case GridType.Row:
|
|
12121
|
+
case exports.GridType.Row:
|
|
12034
12122
|
return RowComponent;
|
|
12035
12123
|
default:
|
|
12036
12124
|
throw new Error("Trying to use an unsupported type (" + this.config.type + ").");
|
|
@@ -12099,10 +12187,10 @@
|
|
|
12099
12187
|
return exports.FieldType[this.config.type];
|
|
12100
12188
|
};
|
|
12101
12189
|
DynamicFormDirective.prototype.isStructure = function () {
|
|
12102
|
-
return StructureType[this.config.type];
|
|
12190
|
+
return exports.StructureType[this.config.type];
|
|
12103
12191
|
};
|
|
12104
12192
|
DynamicFormDirective.prototype.isGrid = function () {
|
|
12105
|
-
return GridType[this.config.type];
|
|
12193
|
+
return exports.GridType[this.config.type];
|
|
12106
12194
|
};
|
|
12107
12195
|
DynamicFormDirective.ctorParameters = function () { return [
|
|
12108
12196
|
{ type: core.ComponentFactoryResolver },
|
|
@@ -13137,6 +13225,7 @@
|
|
|
13137
13225
|
SliderFieldComponent,
|
|
13138
13226
|
TextAreaFieldComponent,
|
|
13139
13227
|
TextAreaIAFieldComponent,
|
|
13228
|
+
ButtonFieldComponent
|
|
13140
13229
|
],
|
|
13141
13230
|
exports: [DynamicFormComponent, LookupComponent],
|
|
13142
13231
|
entryComponents: [
|
|
@@ -21768,6 +21857,7 @@
|
|
|
21768
21857
|
exports.BreadcrumbModule = BreadcrumbModule;
|
|
21769
21858
|
exports.Breakpoints = Breakpoints;
|
|
21770
21859
|
exports.ButtonComponent = ButtonComponent;
|
|
21860
|
+
exports.ButtonField = ButtonField;
|
|
21771
21861
|
exports.ButtonModule = ButtonModule;
|
|
21772
21862
|
exports.CalendarField = CalendarField;
|
|
21773
21863
|
exports.CalendarLocaleOptions = CalendarLocaleOptions;
|
|
@@ -21818,6 +21908,7 @@
|
|
|
21818
21908
|
exports.GlobalSearchComponent = GlobalSearchComponent;
|
|
21819
21909
|
exports.GlobalSearchDropdownItemComponent = GlobalSearchDropdownItemComponent;
|
|
21820
21910
|
exports.GlobalSearchModule = GlobalSearchModule;
|
|
21911
|
+
exports.Grid = Grid;
|
|
21821
21912
|
exports.HostProjectConfigsInjectionToken = HostProjectConfigsInjectionToken;
|
|
21822
21913
|
exports.IAInsightComponent = IAInsightComponent;
|
|
21823
21914
|
exports.IAInsightModule = IAInsightModule;
|
|
@@ -21891,6 +21982,7 @@
|
|
|
21891
21982
|
exports.RatingScaleComponent = RatingScaleComponent;
|
|
21892
21983
|
exports.RatingScaleModule = RatingScaleModule;
|
|
21893
21984
|
exports.RationButtonOption = RationButtonOption;
|
|
21985
|
+
exports.Row = Row;
|
|
21894
21986
|
exports.RowTogllerDirective = RowTogllerDirective;
|
|
21895
21987
|
exports.SVGFactoryDirective = SVGFactoryDirective;
|
|
21896
21988
|
exports.SVGFactoryModule = SVGFactoryModule;
|
|
@@ -21997,47 +22089,48 @@
|
|
|
21997
22089
|
exports.ɵco = TextAreaFieldComponent;
|
|
21998
22090
|
exports.ɵcp = TextAreaIAFieldComponent;
|
|
21999
22091
|
exports.ɵcq = IAssistService;
|
|
22000
|
-
exports.ɵ
|
|
22001
|
-
exports.ɵct =
|
|
22002
|
-
exports.ɵcu =
|
|
22003
|
-
exports.ɵcv =
|
|
22004
|
-
exports.ɵcw =
|
|
22005
|
-
exports.ɵcx =
|
|
22006
|
-
exports.ɵcy =
|
|
22007
|
-
exports.ɵcz =
|
|
22092
|
+
exports.ɵcr = ButtonFieldComponent;
|
|
22093
|
+
exports.ɵct = DecimalField;
|
|
22094
|
+
exports.ɵcu = SideTableComponent;
|
|
22095
|
+
exports.ɵcv = InfiniteScrollModule;
|
|
22096
|
+
exports.ɵcw = InfiniteScrollDirective;
|
|
22097
|
+
exports.ɵcx = IAInsightSidebarComponent;
|
|
22098
|
+
exports.ɵcy = IAInsightCardComponent;
|
|
22099
|
+
exports.ɵcz = IAInsightCardLoaderComponent;
|
|
22008
22100
|
exports.ɵd = TieredMenuService;
|
|
22009
|
-
exports.ɵda =
|
|
22010
|
-
exports.ɵdb =
|
|
22011
|
-
exports.ɵdc =
|
|
22012
|
-
exports.ɵdd =
|
|
22013
|
-
exports.ɵde =
|
|
22014
|
-
exports.ɵdf =
|
|
22015
|
-
exports.ɵdg =
|
|
22016
|
-
exports.ɵdh =
|
|
22017
|
-
exports.ɵdi =
|
|
22018
|
-
exports.ɵdj =
|
|
22019
|
-
exports.ɵdk =
|
|
22020
|
-
exports.ɵdl =
|
|
22021
|
-
exports.ɵdm =
|
|
22022
|
-
exports.ɵdn =
|
|
22023
|
-
exports.ɵdo =
|
|
22024
|
-
exports.ɵdp =
|
|
22025
|
-
exports.ɵdq =
|
|
22026
|
-
exports.ɵdr =
|
|
22027
|
-
exports.ɵds =
|
|
22028
|
-
exports.ɵdt =
|
|
22029
|
-
exports.ɵdu =
|
|
22030
|
-
exports.ɵdv =
|
|
22031
|
-
exports.ɵdw =
|
|
22032
|
-
exports.ɵdx =
|
|
22033
|
-
exports.ɵdy =
|
|
22034
|
-
exports.ɵdz =
|
|
22101
|
+
exports.ɵda = InlineEditItemComponent;
|
|
22102
|
+
exports.ɵdb = InlineEditCalendarComponent;
|
|
22103
|
+
exports.ɵdc = InlineEditLookupComponent;
|
|
22104
|
+
exports.ɵdd = InlineEditNumberComponent;
|
|
22105
|
+
exports.ɵde = InlineEditTextComponent;
|
|
22106
|
+
exports.ɵdf = InlineEditTextAreaComponent;
|
|
22107
|
+
exports.ɵdg = InlineEditTextAreaIAComponent;
|
|
22108
|
+
exports.ɵdh = KanbanEventService;
|
|
22109
|
+
exports.ɵdi = KanbanItemComponent;
|
|
22110
|
+
exports.ɵdj = KanbanColumnComponent;
|
|
22111
|
+
exports.ɵdk = KanbanItemDraggingComponent;
|
|
22112
|
+
exports.ɵdl = NumberLocaleOptions;
|
|
22113
|
+
exports.ɵdm = BorderButtonModule;
|
|
22114
|
+
exports.ɵdn = BorderButtonComponent;
|
|
22115
|
+
exports.ɵdo = ProgressBarDeterminateComponent;
|
|
22116
|
+
exports.ɵdp = ProgressBarIndeterminateComponent;
|
|
22117
|
+
exports.ɵdq = SelectButtonItemComponent;
|
|
22118
|
+
exports.ɵdr = SlidePanelService;
|
|
22119
|
+
exports.ɵds = ThumbnailItemComponent;
|
|
22120
|
+
exports.ɵdt = ThumbnailItemVideoComponent;
|
|
22121
|
+
exports.ɵdu = ThumbnailItemImageComponent;
|
|
22122
|
+
exports.ɵdv = TimelineItemModule;
|
|
22123
|
+
exports.ɵdw = TimelineIconItemComponent;
|
|
22124
|
+
exports.ɵdx = HorizontalTimelineModule;
|
|
22125
|
+
exports.ɵdy = HorizontalTimelineComponent;
|
|
22126
|
+
exports.ɵdz = VerticalTimelineModule;
|
|
22035
22127
|
exports.ɵe = TieredMenuGlobalService;
|
|
22036
|
-
exports.ɵea =
|
|
22037
|
-
exports.ɵeb =
|
|
22038
|
-
exports.ɵec =
|
|
22039
|
-
exports.ɵed =
|
|
22040
|
-
exports.ɵee =
|
|
22128
|
+
exports.ɵea = VerticalTimelineComponent;
|
|
22129
|
+
exports.ɵeb = RangeLineComponent;
|
|
22130
|
+
exports.ɵec = CollapseOptionComponent;
|
|
22131
|
+
exports.ɵed = CollapsedItemsComponent;
|
|
22132
|
+
exports.ɵee = VerticalItemsComponent;
|
|
22133
|
+
exports.ɵef = ChipItemComponent;
|
|
22041
22134
|
exports.ɵf = TieredMenuComponent;
|
|
22042
22135
|
exports.ɵg = TieredMenuNestedComponent;
|
|
22043
22136
|
exports.ɵh = TieredMenuItemComponent;
|