@seniorsistemas/angular-components 17.30.1 → 17.31.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 +84 -77
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/components/accordion/accordion.component.d.ts +13 -11
- package/components/object-card/object-card.component.d.ts +5 -6
- package/components/utils/breakpoints.d.ts +7 -7
- package/esm2015/components/accordion/accordion.component.js +41 -31
- package/esm2015/components/object-card/object-card.component.js +33 -37
- package/esm2015/components/utils/breakpoints.js +1 -1
- package/esm5/components/accordion/accordion.component.js +55 -33
- package/esm5/components/object-card/object-card.component.js +34 -49
- package/esm5/components/utils/breakpoints.js +1 -1
- package/fesm2015/seniorsistemas-angular-components.js +71 -65
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +85 -78
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __assign, __extends, __read, __spread, __awaiter, __generator, __param,
|
|
1
|
+
import { __decorate, __values, __assign, __extends, __read, __spread, __awaiter, __generator, __param, __rest } from 'tslib';
|
|
2
2
|
import { EventEmitter, Input, Output, Component, ContentChildren, ViewChild, HostListener, forwardRef, NgModule, ɵɵdefineInjectable, Injectable, ElementRef, ApplicationRef, ComponentFactoryResolver, Injector, Renderer2, Directive, TemplateRef, ViewContainerRef, Pipe, ɵɵinject, HostBinding, ChangeDetectorRef, ViewChildren, InjectionToken, Inject, PLATFORM_ID, KeyValueDiffers, ViewEncapsulation, INJECTOR, NgZone, ContentChild, Optional } from '@angular/core';
|
|
3
3
|
import { trigger, transition, style as style$7, animate, state, group, query, animateChild, stagger } from '@angular/animations';
|
|
4
4
|
import { Subject, of, from, ReplaySubject, throwError, fromEvent, forkJoin, pipe } from 'rxjs';
|
|
@@ -182,68 +182,90 @@ var AccordionPanelComponent = /** @class */ (function () {
|
|
|
182
182
|
var AccordionComponent = /** @class */ (function () {
|
|
183
183
|
function AccordionComponent() {
|
|
184
184
|
this.multiple = false;
|
|
185
|
-
this.
|
|
186
|
-
this.
|
|
185
|
+
this.unsubscribe$ = new Subject();
|
|
186
|
+
this.panels = [];
|
|
187
187
|
}
|
|
188
|
+
AccordionComponent.prototype.ngOnInit = function () {
|
|
189
|
+
this.validateInputs();
|
|
190
|
+
};
|
|
188
191
|
AccordionComponent.prototype.ngAfterContentInit = function () {
|
|
189
|
-
this.
|
|
190
|
-
this.
|
|
191
|
-
this.
|
|
192
|
-
this.
|
|
192
|
+
this.panels = this.panelsComponents.toArray();
|
|
193
|
+
this.openSubs = new Array(this.panels.length);
|
|
194
|
+
this.setBehavior(this.multiple);
|
|
195
|
+
this.setupTabs();
|
|
193
196
|
};
|
|
194
197
|
AccordionComponent.prototype.ngOnChanges = function (changes) {
|
|
195
198
|
if (changes.multiple) {
|
|
196
|
-
this.
|
|
199
|
+
this.setBehavior(changes.multiple.currentValue);
|
|
197
200
|
}
|
|
198
201
|
};
|
|
199
202
|
AccordionComponent.prototype.ngOnDestroy = function () {
|
|
200
|
-
this.
|
|
201
|
-
this.
|
|
203
|
+
this.unsubscribe$.next();
|
|
204
|
+
this.unsubscribe$.complete();
|
|
202
205
|
};
|
|
203
|
-
AccordionComponent.prototype.
|
|
204
|
-
|
|
205
|
-
|
|
206
|
+
AccordionComponent.prototype.validateInputs = function () {
|
|
207
|
+
if (!this.multiple && Array.isArray(this.activeIndex)) {
|
|
208
|
+
throw new Error("The activeIndex should not be an array when multiple is set to false.");
|
|
209
|
+
}
|
|
210
|
+
};
|
|
211
|
+
AccordionComponent.prototype.setupTabs = function () {
|
|
212
|
+
var e_1, _a;
|
|
213
|
+
var _this = this;
|
|
214
|
+
var _b;
|
|
215
|
+
if ((_b = this.panels) === null || _b === void 0 ? void 0 : _b.length) {
|
|
206
216
|
if (this.activeIndex !== undefined && this.activeIndex !== null) {
|
|
207
|
-
var
|
|
208
|
-
|
|
217
|
+
var activeTabs = Array.isArray(this.activeIndex)
|
|
218
|
+
? this.panels.filter(function (_, index) { return _this.activeIndex.includes(index); })
|
|
219
|
+
: [this.panels[this.activeIndex]];
|
|
220
|
+
if (activeTabs.length === 0) {
|
|
209
221
|
throw new Error("activeIndex does not represent any panel.");
|
|
210
222
|
}
|
|
211
|
-
|
|
212
|
-
|
|
223
|
+
try {
|
|
224
|
+
for (var activeTabs_1 = __values(activeTabs), activeTabs_1_1 = activeTabs_1.next(); !activeTabs_1_1.done; activeTabs_1_1 = activeTabs_1.next()) {
|
|
225
|
+
var activeTab = activeTabs_1_1.value;
|
|
226
|
+
if (!activeTab.disabled) {
|
|
227
|
+
activeTab.isOpen = true;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
232
|
+
finally {
|
|
233
|
+
try {
|
|
234
|
+
if (activeTabs_1_1 && !activeTabs_1_1.done && (_a = activeTabs_1.return)) _a.call(activeTabs_1);
|
|
235
|
+
}
|
|
236
|
+
finally { if (e_1) throw e_1.error; }
|
|
213
237
|
}
|
|
214
238
|
}
|
|
215
239
|
}
|
|
216
240
|
};
|
|
217
|
-
AccordionComponent.prototype.
|
|
218
|
-
this.
|
|
241
|
+
AccordionComponent.prototype.closeOtherTabs = function (exception) {
|
|
242
|
+
this.panels.forEach(function (panel, index) {
|
|
219
243
|
if (index !== exception) {
|
|
220
244
|
panel.isOpen = false;
|
|
221
245
|
}
|
|
222
246
|
});
|
|
223
247
|
};
|
|
224
|
-
AccordionComponent.prototype.
|
|
248
|
+
AccordionComponent.prototype.setBehavior = function (multiple) {
|
|
225
249
|
if (multiple) {
|
|
226
|
-
this.
|
|
250
|
+
this.enableMultiplePanelBehavior();
|
|
227
251
|
}
|
|
228
252
|
else {
|
|
229
|
-
this.
|
|
253
|
+
this.enableSinglePanelBehavior();
|
|
230
254
|
}
|
|
231
255
|
};
|
|
232
|
-
AccordionComponent.prototype.
|
|
256
|
+
AccordionComponent.prototype.enableSinglePanelBehavior = function () {
|
|
233
257
|
var _this = this;
|
|
234
|
-
this.
|
|
235
|
-
_this.
|
|
236
|
-
.
|
|
237
|
-
.subscribe(function () {
|
|
238
|
-
_this._closeOtherTabs(index);
|
|
258
|
+
this.panels.forEach(function (panel, index) {
|
|
259
|
+
_this.openSubs[index] = panel.panelOpened.pipe(takeUntil(_this.unsubscribe$)).subscribe(function () {
|
|
260
|
+
_this.closeOtherTabs(index);
|
|
239
261
|
});
|
|
240
262
|
});
|
|
241
263
|
};
|
|
242
|
-
AccordionComponent.prototype.
|
|
264
|
+
AccordionComponent.prototype.enableMultiplePanelBehavior = function () {
|
|
243
265
|
var _this = this;
|
|
244
|
-
this.
|
|
245
|
-
if (_this.
|
|
246
|
-
_this.
|
|
266
|
+
this.panels.forEach(function (_, index) {
|
|
267
|
+
if (_this.openSubs[index]) {
|
|
268
|
+
_this.openSubs[index].unsubscribe();
|
|
247
269
|
}
|
|
248
270
|
});
|
|
249
271
|
};
|
|
@@ -19152,8 +19174,7 @@ var ObjectCardMainComponent = /** @class */ (function () {
|
|
|
19152
19174
|
}());
|
|
19153
19175
|
|
|
19154
19176
|
var ObjectCardComponent = /** @class */ (function () {
|
|
19155
|
-
function ObjectCardComponent(
|
|
19156
|
-
this.elementRef = elementRef;
|
|
19177
|
+
function ObjectCardComponent() {
|
|
19157
19178
|
this.id = "s-object-card-" + ObjectCardComponent_1.nextId++;
|
|
19158
19179
|
this.expanded = false;
|
|
19159
19180
|
this.expandTooltip = "Abrir painel";
|
|
@@ -19165,43 +19186,36 @@ var ObjectCardComponent = /** @class */ (function () {
|
|
|
19165
19186
|
this.EnumSeverity = EnumSeverity;
|
|
19166
19187
|
}
|
|
19167
19188
|
ObjectCardComponent_1 = ObjectCardComponent;
|
|
19168
|
-
ObjectCardComponent.prototype.ngAfterViewInit = function () {
|
|
19169
|
-
};
|
|
19170
19189
|
ObjectCardComponent.prototype.ngAfterContentChecked = function () {
|
|
19171
19190
|
this.update();
|
|
19172
19191
|
};
|
|
19173
19192
|
ObjectCardComponent.prototype.update = function () {
|
|
19174
|
-
var e_1, _a;
|
|
19175
19193
|
var windowWidth = window.innerWidth;
|
|
19176
|
-
var containerWidth = this.
|
|
19177
|
-
var mainFieldWidth =
|
|
19194
|
+
var containerWidth = this.container.nativeElement.getBoundingClientRect().width;
|
|
19195
|
+
var mainFieldWidth = this.cardMainContainer.nativeElement.getBoundingClientRect().width;
|
|
19196
|
+
var remainingSpace = containerWidth - mainFieldWidth;
|
|
19178
19197
|
var fieldsMinWidth = this.fieldsMinWidth;
|
|
19179
|
-
var expandIconWidth =
|
|
19180
|
-
var fieldElementList = this.elementRef.nativeElement.getElementsByClassName("s-object-card-field");
|
|
19181
|
-
try {
|
|
19182
|
-
for (var fieldElementList_1 = __values(fieldElementList), fieldElementList_1_1 = fieldElementList_1.next(); !fieldElementList_1_1.done; fieldElementList_1_1 = fieldElementList_1.next()) {
|
|
19183
|
-
var element = fieldElementList_1_1.value;
|
|
19184
|
-
element.style.minWidth = this.fieldsMinWidth + "px";
|
|
19185
|
-
}
|
|
19186
|
-
}
|
|
19187
|
-
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
19188
|
-
finally {
|
|
19189
|
-
try {
|
|
19190
|
-
if (fieldElementList_1_1 && !fieldElementList_1_1.done && (_a = fieldElementList_1.return)) _a.call(fieldElementList_1);
|
|
19191
|
-
}
|
|
19192
|
-
finally { if (e_1) throw e_1.error; }
|
|
19193
|
-
}
|
|
19198
|
+
var expandIconWidth = this.iconContainer.nativeElement.getBoundingClientRect().width;
|
|
19194
19199
|
var maxFieldQtd;
|
|
19195
|
-
if (windowWidth <= Breakpoints.SM_MAX)
|
|
19200
|
+
if (windowWidth <= Breakpoints.SM_MAX) {
|
|
19196
19201
|
maxFieldQtd = 0;
|
|
19197
|
-
|
|
19198
|
-
|
|
19199
|
-
|
|
19200
|
-
|
|
19202
|
+
}
|
|
19203
|
+
else {
|
|
19204
|
+
maxFieldQtd = Math.floor((remainingSpace) / fieldsMinWidth);
|
|
19205
|
+
}
|
|
19206
|
+
var hasExpandIcon = maxFieldQtd && maxFieldQtd < this.fields.length;
|
|
19207
|
+
if (hasExpandIcon) {
|
|
19208
|
+
this.iconContainer.nativeElement.style.display = 'flex';
|
|
19209
|
+
remainingSpace = remainingSpace - expandIconWidth;
|
|
19210
|
+
maxFieldQtd = Math.floor((remainingSpace) / fieldsMinWidth);
|
|
19211
|
+
}
|
|
19212
|
+
else {
|
|
19213
|
+
this.iconContainer.nativeElement.style.display = 'none';
|
|
19201
19214
|
}
|
|
19202
19215
|
this.maxVisibleFields = maxFieldQtd;
|
|
19203
|
-
if (maxFieldQtd >= this.fields.length && this.expanded)
|
|
19216
|
+
if (maxFieldQtd >= this.fields.length && this.expanded) {
|
|
19204
19217
|
this.collapse();
|
|
19218
|
+
}
|
|
19205
19219
|
};
|
|
19206
19220
|
ObjectCardComponent.prototype.toggle = function () {
|
|
19207
19221
|
this.expanded ? this.collapse() : this.expand();
|
|
@@ -19214,24 +19228,8 @@ var ObjectCardComponent = /** @class */ (function () {
|
|
|
19214
19228
|
this.expanded = false;
|
|
19215
19229
|
this.expandedChange.emit(this.expanded);
|
|
19216
19230
|
};
|
|
19217
|
-
ObjectCardComponent.prototype.getExpandedFieldWidth = function () {
|
|
19218
|
-
var containerWidth = this.elementRef.nativeElement.offsetWidth;
|
|
19219
|
-
var fieldsPerRow;
|
|
19220
|
-
if (containerWidth <= Breakpoints.SM_MAX)
|
|
19221
|
-
fieldsPerRow = 1;
|
|
19222
|
-
else if (containerWidth <= Breakpoints.MD_MAX)
|
|
19223
|
-
fieldsPerRow = 2;
|
|
19224
|
-
else if (containerWidth <= Breakpoints.LG_MAX)
|
|
19225
|
-
fieldsPerRow = 4;
|
|
19226
|
-
else
|
|
19227
|
-
fieldsPerRow = 6;
|
|
19228
|
-
return 12 / fieldsPerRow;
|
|
19229
|
-
};
|
|
19230
19231
|
var ObjectCardComponent_1;
|
|
19231
19232
|
ObjectCardComponent.nextId = 0;
|
|
19232
|
-
ObjectCardComponent.ctorParameters = function () { return [
|
|
19233
|
-
{ type: ElementRef }
|
|
19234
|
-
]; };
|
|
19235
19233
|
__decorate([
|
|
19236
19234
|
Input()
|
|
19237
19235
|
], ObjectCardComponent.prototype, "id", void 0);
|
|
@@ -19262,10 +19260,19 @@ var ObjectCardComponent = /** @class */ (function () {
|
|
|
19262
19260
|
__decorate([
|
|
19263
19261
|
Input()
|
|
19264
19262
|
], ObjectCardComponent.prototype, "borderButtonOptions", void 0);
|
|
19263
|
+
__decorate([
|
|
19264
|
+
ViewChild('contentContainer', { static: true })
|
|
19265
|
+
], ObjectCardComponent.prototype, "container", void 0);
|
|
19266
|
+
__decorate([
|
|
19267
|
+
ViewChild('cardMainContainer', { static: true })
|
|
19268
|
+
], ObjectCardComponent.prototype, "cardMainContainer", void 0);
|
|
19269
|
+
__decorate([
|
|
19270
|
+
ViewChild('iconContainer', { static: true })
|
|
19271
|
+
], ObjectCardComponent.prototype, "iconContainer", void 0);
|
|
19265
19272
|
ObjectCardComponent = ObjectCardComponent_1 = __decorate([
|
|
19266
19273
|
Component({
|
|
19267
19274
|
selector: "s-object-card",
|
|
19268
|
-
template: "<div [id]=\"id\" class=\"container\">\n <s-border-button\n *ngIf=\"\n borderButtonOptions?.visible\n ? borderButtonOptions?.visible(severity)\n : false\n \"\n [severity]=\"severity\"\n [options]=\"borderButtonOptions\"\n class=\"object-card__border-button\"\n [@BorderButtonAnimation]\n ></s-border-button>\n\n <div\n [id]=\"id + '-main-container'\"\n class=\"main-container\"\n [ngClass]=\"{\n 'with-hidden-fields': fields.length > maxVisibleFields,\n 'with-visible-fields': fields.length && maxVisibleFields,\n 'main-container--severity-default': severity === EnumSeverity.Default,\n 'main-container--severity-info': severity === EnumSeverity.Info,\n 'main-container--severity-warn': severity === EnumSeverity.Warn,\n 'main-container--severity-error': severity === EnumSeverity.Error,\n 'main-container--severity-success': severity == EnumSeverity.Success\n }\"\n >\n <div class=\"object-content\">\n <div class=\"s-object-card-main\"
|
|
19275
|
+
template: "<div [id]=\"id\" class=\"container\">\n <s-border-button\n *ngIf=\"\n borderButtonOptions?.visible\n ? borderButtonOptions?.visible(severity)\n : false\n \"\n [severity]=\"severity\"\n [options]=\"borderButtonOptions\"\n class=\"object-card__border-button\"\n [@BorderButtonAnimation]\n ></s-border-button>\n\n <div\n [id]=\"id + '-main-container'\"\n class=\"main-container\"\n #contentContainer\n [ngClass]=\"{\n 'with-hidden-fields': fields.length > maxVisibleFields,\n 'with-visible-fields': fields.length && maxVisibleFields,\n 'main-container--severity-default': severity === EnumSeverity.Default,\n 'main-container--severity-info': severity === EnumSeverity.Info,\n 'main-container--severity-warn': severity === EnumSeverity.Warn,\n 'main-container--severity-error': severity === EnumSeverity.Error,\n 'main-container--severity-success': severity == EnumSeverity.Success\n }\"\n >\n <div class=\"object-content\">\n <div class=\"s-object-card-main\" #cardMainContainer [style.min-width.px]=\"fieldsMinWidth\">\n <ng-content select=\"s-object-card-main\"></ng-content>\n </div>\n\n <div class=\"divider\" *ngIf=\"maxVisibleFields && fields.length\"></div>\n\n <div *ngFor=\"let field of (fields.toArray() | slice: 0:maxVisibleFields)\" class=\"s-object-card-field\" [style.min-width.px]=\"fieldsMinWidth\">\n \n <ng-container *ngTemplateOutlet=\"field.content\"></ng-container>\n </div>\n </div>\n\n <div\n #iconContainer\n [id]=\"id + '-expand-icon-container'\"\n class=\"expand-icon-container\"\n (click)=\"toggle()\"\n [pTooltip]=\"expanded ? collapseTooltip : expandTooltip\"\n tooltipPosition=\"top\"\n [showDelay]=\"500\"\n >\n <span [id]=\"id + '-expand-icon'\" class=\"expand-icon fa\" [ngClass]=\"{ 'fa-minus': expanded, 'fa-plus': !expanded }\"></span>\n </div>\n </div>\n\n <div\n [id]=\"id + '-expandable-container'\"\n [@expandableContent]=\"expanded\"\n class=\"expandable-container\"\n [ngClass]=\"{\n 'expandable-container--severity-default':\n severity === EnumSeverity.Default,\n 'expandable-container--severity-info': severity === EnumSeverity.Info,\n 'expandable-container--severity-warn': severity === EnumSeverity.Warn,\n 'expandable-container--severity-error': severity === EnumSeverity.Error,\n 'expandable-container--severity-success':\n severity == EnumSeverity.Success\n }\"\n >\n <div class=\"childlist\">\n <ng-container\n *ngFor=\"\n let field of fields.toArray()\n | slice : maxVisibleFields : fields.length\n \"\n >\n <div class=\"s-object-card-field\" [style.min-width.px]=\"fieldsMinWidth\">\n <ng-container\n *ngTemplateOutlet=\"field.content\"\n ></ng-container>\n </div>\n </ng-container>\n </div>\n </div>\n</div>\n",
|
|
19269
19276
|
animations: [
|
|
19270
19277
|
trigger("expandableContent", [
|
|
19271
19278
|
state("*", style$7({
|
|
@@ -19291,7 +19298,7 @@ var ObjectCardComponent = /** @class */ (function () {
|
|
|
19291
19298
|
]),
|
|
19292
19299
|
]),
|
|
19293
19300
|
],
|
|
19294
|
-
styles: [":host{display:block}.container{margin-bottom:20px;position:relative}.main-container{display:-ms-flexbox;display:flex}.expandable-container,.main-container{background-color:#fff;border:1px solid #ccc;position:relative;overflow:hidden;width:100%}.expandable-container--severity-default{border-color:#ccc;border-top:initial}.expandable-container--severity-info{transition:border-color .5s;border-color:#428bca;border-top:initial}.expandable-container--severity-warn{transition:border-color .5s;border-color:#f8931f;border-top:initial}.expandable-container--severity-error{transition:border-color .5s;border-color:#c13018;border-top:initial}.expandable-container--severity-success{transition:border-color .5s;border-color:#0c9348;border-top:initial}.main-container--severity-default{border-color:#ccc}.main-container--severity-info{transition:border-color .5s;border-color:#428bca}.main-container--severity-warn{transition:border-color .5s;border-color:#f8931f}.main-container--severity-error{transition:border-color .5s;border-color:#c13018}.main-container--severity-success{transition:border-color .5s;border-color:#0c9348}.object-card__border-button{position:absolute;top:-13px;right:15px;z-index:1}.expandable-container{border-top:none;box-shadow:inset 0 6px 4px -4px #ddd;margin-top:-1px}.expand-icon-container{display:
|
|
19301
|
+
styles: [":host{display:block}:host::ng-deep .sds-badge{height:auto;white-space:normal}.container{margin-bottom:20px;position:relative}.main-container{display:-ms-flexbox;display:flex}.expandable-container,.main-container{background-color:#fff;border:1px solid #ccc;position:relative;overflow:hidden;width:100%}.expandable-container--severity-default{border-color:#ccc;border-top:initial}.expandable-container--severity-info{transition:border-color .5s;border-color:#428bca;border-top:initial}.expandable-container--severity-warn{transition:border-color .5s;border-color:#f8931f;border-top:initial}.expandable-container--severity-error{transition:border-color .5s;border-color:#c13018;border-top:initial}.expandable-container--severity-success{transition:border-color .5s;border-color:#0c9348;border-top:initial}.main-container--severity-default{border-color:#ccc}.main-container--severity-info{transition:border-color .5s;border-color:#428bca}.main-container--severity-warn{transition:border-color .5s;border-color:#f8931f}.main-container--severity-error{transition:border-color .5s;border-color:#c13018}.main-container--severity-success{transition:border-color .5s;border-color:#0c9348}.object-card__border-button{position:absolute;top:-13px;right:15px;z-index:1}.expandable-container{border-top:none;box-shadow:inset 0 6px 4px -4px #ddd;margin-top:-1px}.expand-icon-container{display:-ms-flexbox;display:flex;text-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;padding:12px}.expand-icon{-ms-flex:1;flex:1}.object-content{display:-ms-flexbox;display:flex;width:100%}.s-object-card-main{overflow:hidden;padding:15px}.main-container.with-visible-fields .s-object-card-main{max-width:30%}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.main-container.with-visible-fields .s-object-card-main{width:20%}}.s-object-card-field{overflow:hidden;height:100%}.main-container .s-object-card-field{padding:15px}.main-container .divider{width:1px;-ms-flex-negative:0;flex-shrink:0;background-color:#ccc;margin:15px -1px 15px 0}.main-container.with-hidden-fields .object-content{width:calc(100% - 35px)}.main-container.with-hidden-fields .expand-icon-container{display:-ms-flexbox;display:flex}::ng-deep .object-card-button{padding-left:0!important;padding-right:10px!important;border:none!important;height:auto!important;min-width:auto!important;text-align:left!important}@media (max-width:767px){.s-object-card-main{max-width:calc(100% - 50px)}}.childlist{width:100%;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:1em;gap:1em}"]
|
|
19295
19302
|
})
|
|
19296
19303
|
], ObjectCardComponent);
|
|
19297
19304
|
return ObjectCardComponent;
|