@schneideress/dashboardframework 0.0.126 → 0.0.127
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/schneideress-dashboardframework.umd.js +5 -5
- package/bundles/schneideress-dashboardframework.umd.js.map +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js.map +1 -1
- package/esm2015/lib/ra-widget-container/ra.widget.container.component.js +6 -6
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +6 -6
- package/fesm2015/schneideress-dashboardframework.js +5 -5
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +5 -5
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
|
@@ -1633,15 +1633,15 @@ var RAWidgetContainer = /** @class */ (function () {
|
|
|
1633
1633
|
if (typeof (titleLineEnabled) != 'undefined') {
|
|
1634
1634
|
this.enableTitleLine = titleLineEnabled;
|
|
1635
1635
|
}
|
|
1636
|
-
this.editText = this.translateService.translate('Common.edit').length >
|
|
1636
|
+
this.editText = this.translateService.translate('Common.edit').length > 6 ? (this.translateService.translate('Common.edit').substring(0, 6) + '...') : this.translateService.translate('Common.edit');
|
|
1637
1637
|
this.editToolTipValue = this.translateService.translate('Common.edit');
|
|
1638
|
-
this.copyText = this.translateService.translate('Common.copy').length >
|
|
1638
|
+
this.copyText = this.translateService.translate('Common.copy').length > 6 ? (this.translateService.translate('Common.copy').substring(0, 6) + '...') : this.translateService.translate('Common.copy');
|
|
1639
1639
|
this.copyToolTipValue = this.translateService.translate('Common.copy');
|
|
1640
|
-
this.moveText = this.translateService.translate('Common.move').length >
|
|
1640
|
+
this.moveText = this.translateService.translate('Common.move').length > 6 ? (this.translateService.translate('Common.move').substring(0, 6) + '...') : this.translateService.translate('Common.move');
|
|
1641
1641
|
this.moveToolTipValue = this.translateService.translate('Common.move');
|
|
1642
|
-
this.excelText = this.translateService.translate('Common.excel').length >
|
|
1642
|
+
this.excelText = this.translateService.translate('Common.excel').length > 6 ? (this.translateService.translate('Common.excel').substring(0, 6) + '...') : this.translateService.translate('Common.excel');
|
|
1643
1643
|
this.excelToolTipValue = this.translateService.translate('Common.excel');
|
|
1644
|
-
this.deleteText = this.translateService.translate('Common.delete').length >
|
|
1644
|
+
this.deleteText = this.translateService.translate('Common.delete').length > 6 ? (this.translateService.translate('Common.delete').substring(0, 6) + '...') : this.translateService.translate('Common.delete');
|
|
1645
1645
|
this.deleteToolTipValue = this.translateService.translate('Common.delete');
|
|
1646
1646
|
widgetContainer.isWidgetLoaded = true;
|
|
1647
1647
|
widgetConfigFilter.appConfig = this.appConfig;
|