@datarailsshared/datarailsshared 1.4.124 → 1.4.125
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/datarailsshared-datarailsshared.umd.js +18 -4
- package/bundles/datarailsshared-datarailsshared.umd.js.map +1 -1
- package/datarailsshared-datarailsshared-1.4.125.tgz +0 -0
- package/datarailsshared-datarailsshared.metadata.json +1 -1
- package/esm2015/lib/dr-tabs/dr-tab.component.js +2 -1
- package/esm2015/lib/dr-tabs/dr-tabs.component.js +3 -3
- package/esm2015/lib/dr-tabs/dr-tabs.module.js +4 -2
- package/esm2015/lib/dr-tags/dr-tag.component.js +15 -3
- package/fesm2015/datarailsshared-datarailsshared.js +18 -4
- package/fesm2015/datarailsshared-datarailsshared.js.map +1 -1
- package/lib/dr-tabs/dr-tab.component.d.ts +1 -0
- package/package.json +1 -1
- package/datarailsshared-datarailsshared-1.4.124.tgz +0 -0
|
@@ -933,6 +933,7 @@
|
|
|
933
933
|
var DrTagComponent = /** @class */ (function () {
|
|
934
934
|
function DrTagComponent() {
|
|
935
935
|
this.dynamicTagValues = {};
|
|
936
|
+
this.connectedTags = [];
|
|
936
937
|
this.tagChange = new i0.EventEmitter(); // Not emit value for dynamic tag
|
|
937
938
|
this.dynamicTagChange = new i0.EventEmitter();
|
|
938
939
|
this.dynamicTagAdd = new i0.EventEmitter();
|
|
@@ -1008,6 +1009,10 @@
|
|
|
1008
1009
|
this.connectedTags = _.map(this.connectedTags, function (tag) {
|
|
1009
1010
|
if (tag.id === connectedDateTagConfig.id) {
|
|
1010
1011
|
tag.value = event.value;
|
|
1012
|
+
tag.locked = event.locked;
|
|
1013
|
+
if (connectedDateTagConfig.type === exports.TagTypes.DATE) {
|
|
1014
|
+
tag.label = event.label;
|
|
1015
|
+
}
|
|
1011
1016
|
}
|
|
1012
1017
|
return tag;
|
|
1013
1018
|
});
|
|
@@ -1041,7 +1046,7 @@
|
|
|
1041
1046
|
_this.dateTag = {
|
|
1042
1047
|
type: tagConfig.type,
|
|
1043
1048
|
sub_type: tagConfig.options.sub_type,
|
|
1044
|
-
value: _.find(_this.connectedTags, { id: tagConfig.id }).value,
|
|
1049
|
+
value: (_.find(_this.connectedTags, { id: tagConfig.id }) || {}).value,
|
|
1045
1050
|
};
|
|
1046
1051
|
}
|
|
1047
1052
|
if (tagConfig.type === exports.TagTypes.LIST) {
|
|
@@ -1052,6 +1057,13 @@
|
|
|
1052
1057
|
value: (_a = tagConfig === null || tagConfig === void 0 ? void 0 : tagConfig.options) === null || _a === void 0 ? void 0 : _a.default_value,
|
|
1053
1058
|
};
|
|
1054
1059
|
}
|
|
1060
|
+
if (!_.find(_this.connectedTags, { id: tagConfig.id })) {
|
|
1061
|
+
_this.connectedTags.push({
|
|
1062
|
+
id: tagConfig.id,
|
|
1063
|
+
name: tagConfig.name,
|
|
1064
|
+
value: undefined,
|
|
1065
|
+
});
|
|
1066
|
+
}
|
|
1055
1067
|
});
|
|
1056
1068
|
};
|
|
1057
1069
|
return DrTagComponent;
|
|
@@ -3320,6 +3332,7 @@
|
|
|
3320
3332
|
DrTabComponent.propDecorators = {
|
|
3321
3333
|
label: [{ type: i0.Input }],
|
|
3322
3334
|
disabled: [{ type: i0.Input }],
|
|
3335
|
+
tooltip: [{ type: i0.Input }],
|
|
3323
3336
|
contentTemplate: [{ type: i0.ViewChild, args: [i0.TemplateRef,] }]
|
|
3324
3337
|
};
|
|
3325
3338
|
|
|
@@ -3339,8 +3352,8 @@
|
|
|
3339
3352
|
DrTabsComponent.decorators = [
|
|
3340
3353
|
{ type: i0.Component, args: [{
|
|
3341
3354
|
selector: 'dr-tabs',
|
|
3342
|
-
template: "<mat-tab-group disableRipple [selectedIndex]=\"selectedTab\"\n (selectedIndexChange)=\"selectedIndexChange($event)\"\n [class.with-radio]=\"withRadio\"\n [class.vertical]=\"vertical\"\n [class.no-tab-labels-padding]=\"noTabLabelsPadding\"\n [class.no-body-padding]=\"noBodyPadding\"\n [animationDuration]=\" vertical ? '0ms' : '500ms'\">\n <mat-tab *ngFor=\"let tab of tabsContentList; let index = index\" label=\"{{tab.label}}\" [disabled]=\"tab.disabled\">\n <ng-container *ngIf=\"withRadio\">\n <ng-template mat-tab-label>\n <dr-radio-button [value]=\"index\"\n [(ngModel)]=\"selectedTab\">\n </dr-radio-button>\n {{tab.label}}\n </ng-template>\n </ng-container>\n\n <ng-container *ngTemplateOutlet=\"tab.contentTemplate\"></ng-container>\n </mat-tab>\n</mat-tab-group>\n",
|
|
3343
|
-
styles: [":host{width:100%}:host ::ng-deep .mat-tab-group,:host ::ng-deep .mat-tab-body-wrapper{height:100%}:host ::ng-deep .mat-tab-group{font-family:\"Poppins\",sans-serif}:host ::ng-deep .mat-tab-nav-bar,:host ::ng-deep .mat-tab-header{border-bottom:1px solid #d5dae5}:host ::ng-deep .mat-tab-labels{padding:0 17px}:host ::ng-deep .mat-tab-label{padding:0 8px;min-width:0;height:38px;opacity:1}:host ::ng-deep .mat-tab-label:not(:last-child){margin-right:21px}:host ::ng-deep .mat-tab-label-active .mat-tab-label-content{color:#4646ce;font-weight:700}:host ::ng-deep .mat-tab-label-content{font-weight:400;font-size:14px;line-height:22px;color:#51566f;font-family:\"Poppins\",sans-serif}:host ::ng-deep .mat-ink-bar{height:3px;border-radius:5px;background-color:#4646ce!important}:host ::ng-deep .with-radio .mat-tab-labels{padding:0;margin-bottom:8px}:host ::ng-deep .with-radio .mat-tab-label{padding:8px 16px;min-width:0;flex-grow:1;justify-content:start;height:38px;opacity:1}:host ::ng-deep .with-radio .mat-tab-label:not(:last-child){margin-right:8px}:host ::ng-deep .with-radio .mat-tab-label-active{background:#f6f7f8;border-radius:3px}:host ::ng-deep .with-radio .mat-tab-label-active .mat-tab-label-content{color:#0c142b;font-weight:600}:host ::ng-deep .with-radio .mat-ink-bar{display:none!important}:host ::ng-deep .vertical.mat-tab-group{flex-direction:row}:host ::ng-deep .vertical .mat-tab-header{border-bottom:none}:host ::ng-deep .vertical .mat-tab-label-container{border-right:1px solid #d5dae5}:host ::ng-deep .vertical .mat-tab-label-container .mat-tab-labels{flex-direction:column;padding:0}:host ::ng-deep .vertical .mat-ink-bar{display:none!important}:host ::ng-deep .vertical .mat-tab-label{border-bottom:1px solid #d5dae5;margin:0!important;justify-content:flex-start;padding:1rem 2rem;height:40px}:host ::ng-deep .vertical .mat-tab-label:before{content:\"\";width:2px;height:100%;display:flex;position:absolute;top:0;left:0}:host ::ng-deep .vertical .mat-tab-label-active{background-color:#f3f7ff}:host ::ng-deep .vertical .mat-tab-label-active:before{background-color:#151a41}:host ::ng-deep .vertical .mat-tab-label-active .mat-tab-label-content{font-weight:normal;color:#151a41}:host ::ng-deep .vertical .mat-tab-body-wrapper{width:100%;padding:16px}:host ::ng-deep mat-tab-group.no-body-padding .mat-tab-body-wrapper{padding:0}:host ::ng-deep mat-tab-group.no-tab-labels-padding .mat-tab-labels{padding:0}\n"]
|
|
3355
|
+
template: "<mat-tab-group disableRipple [selectedIndex]=\"selectedTab\"\n (selectedIndexChange)=\"selectedIndexChange($event)\"\n [class.with-radio]=\"withRadio\"\n [class.vertical]=\"vertical\"\n [class.no-tab-labels-padding]=\"noTabLabelsPadding\"\n [class.no-body-padding]=\"noBodyPadding\"\n [animationDuration]=\" vertical ? '0ms' : '500ms'\">\n <mat-tab *ngFor=\"let tab of tabsContentList; let index = index\" label=\"{{ tab.label }}\" [disabled]=\"tab.disabled\">\n <ng-container *ngIf=\"withRadio\">\n <ng-template mat-tab-label>\n <dr-radio-button [value]=\"index\"\n [(ngModel)]=\"selectedTab\">\n </dr-radio-button>\n {{ tab.label }}\n </ng-template>\n </ng-container>\n <ng-container *ngIf=\"tab.tooltip && !withRadio\">\n <ng-template mat-tab-label>\n <label class=\"cursor-pointer\" [drTooltip]=\"tab.tooltip\">{{ tab.label }}</label>\n </ng-template>\n </ng-container>\n <ng-container *ngTemplateOutlet=\"tab.contentTemplate\"></ng-container>\n </mat-tab>\n</mat-tab-group>\n",
|
|
3356
|
+
styles: [":host{width:100%}:host .cursor-pointer{cursor:pointer}:host ::ng-deep .mat-tab-group,:host ::ng-deep .mat-tab-body-wrapper{height:100%}:host ::ng-deep .mat-tab-group{font-family:\"Poppins\",sans-serif}:host ::ng-deep .mat-tab-nav-bar,:host ::ng-deep .mat-tab-header{border-bottom:1px solid #d5dae5}:host ::ng-deep .mat-tab-labels{padding:0 17px}:host ::ng-deep .mat-tab-label{padding:0 8px;min-width:0;height:38px;opacity:1}:host ::ng-deep .mat-tab-label:not(:last-child){margin-right:21px}:host ::ng-deep .mat-tab-label-active .mat-tab-label-content{color:#4646ce;font-weight:700}:host ::ng-deep .mat-tab-label-content{font-weight:400;font-size:14px;line-height:22px;color:#51566f;font-family:\"Poppins\",sans-serif}:host ::ng-deep .mat-ink-bar{height:3px;border-radius:5px;background-color:#4646ce!important}:host ::ng-deep .with-radio .mat-tab-labels{padding:0;margin-bottom:8px}:host ::ng-deep .with-radio .mat-tab-label{padding:8px 16px;min-width:0;flex-grow:1;justify-content:start;height:38px;opacity:1}:host ::ng-deep .with-radio .mat-tab-label:not(:last-child){margin-right:8px}:host ::ng-deep .with-radio .mat-tab-label-active{background:#f6f7f8;border-radius:3px}:host ::ng-deep .with-radio .mat-tab-label-active .mat-tab-label-content{color:#0c142b;font-weight:600}:host ::ng-deep .with-radio .mat-ink-bar{display:none!important}:host ::ng-deep .vertical.mat-tab-group{flex-direction:row}:host ::ng-deep .vertical .mat-tab-header{border-bottom:none}:host ::ng-deep .vertical .mat-tab-label-container{border-right:1px solid #d5dae5}:host ::ng-deep .vertical .mat-tab-label-container .mat-tab-labels{flex-direction:column;padding:0}:host ::ng-deep .vertical .mat-ink-bar{display:none!important}:host ::ng-deep .vertical .mat-tab-label{border-bottom:1px solid #d5dae5;margin:0!important;justify-content:flex-start;padding:1rem 2rem;height:40px}:host ::ng-deep .vertical .mat-tab-label:before{content:\"\";width:2px;height:100%;display:flex;position:absolute;top:0;left:0}:host ::ng-deep .vertical .mat-tab-label-active{background-color:#f3f7ff}:host ::ng-deep .vertical .mat-tab-label-active:before{background-color:#151a41}:host ::ng-deep .vertical .mat-tab-label-active .mat-tab-label-content{font-weight:normal;color:#151a41}:host ::ng-deep .vertical .mat-tab-body-wrapper{width:100%;padding:16px}:host ::ng-deep mat-tab-group.no-body-padding .mat-tab-body-wrapper{padding:0}:host ::ng-deep mat-tab-group.no-tab-labels-padding .mat-tab-labels{padding:0}\n"]
|
|
3344
3357
|
},] }
|
|
3345
3358
|
];
|
|
3346
3359
|
DrTabsComponent.ctorParameters = function () { return []; };
|
|
@@ -5509,7 +5522,8 @@
|
|
|
5509
5522
|
tabs.MatTabsModule,
|
|
5510
5523
|
forms.FormsModule,
|
|
5511
5524
|
forms.ReactiveFormsModule,
|
|
5512
|
-
DrInputsModule
|
|
5525
|
+
DrInputsModule,
|
|
5526
|
+
DrTooltipModule
|
|
5513
5527
|
],
|
|
5514
5528
|
exports: [
|
|
5515
5529
|
DrTabsComponent,
|