@datarailsshared/datarailsshared 1.4.65-rocket → 1.4.68-dragons

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.
Files changed (31) hide show
  1. package/bundles/datarailsshared-datarailsshared.umd.js +15 -109
  2. package/bundles/datarailsshared-datarailsshared.umd.js.map +1 -1
  3. package/datarailsshared-datarailsshared-1.4.68-dragons.tgz +0 -0
  4. package/datarailsshared-datarailsshared.d.ts +0 -4
  5. package/datarailsshared-datarailsshared.metadata.json +1 -1
  6. package/esm2015/datarailsshared-datarailsshared.js +1 -5
  7. package/esm2015/lib/dr-inputs/date-pickers/dr-date-picker/dr-date-picker.component.js +10 -5
  8. package/esm2015/lib/dr-inputs/date-pickers/dr-date-picker_custom-header/dr-date-picker_custom-header.component.js +3 -2
  9. package/esm2015/lib/dr-inputs/date-pickers/services/dr-date-picker.service.js +1 -1
  10. package/esm2015/lib/dr-tooltip/dr-tooltip.module.js +4 -16
  11. package/esm2015/public-api.js +1 -3
  12. package/fesm2015/datarailsshared-datarailsshared.js +10 -114
  13. package/fesm2015/datarailsshared-datarailsshared.js.map +1 -1
  14. package/lib/dr-inputs/date-pickers/dr-date-picker/dr-date-picker.component.d.ts +1 -1
  15. package/lib/dr-inputs/date-pickers/services/dr-date-picker.service.d.ts +3 -2
  16. package/package.json +1 -1
  17. package/public-api.d.ts +0 -2
  18. package/assets/styles/img/dr-icon-info.svg +0 -3
  19. package/datarailsshared-datarailsshared-1.4.65-rocket.tgz +0 -0
  20. package/esm2015/lib/dr-tooltip/components/tooltip-info/tooltip-info.component.js +0 -18
  21. package/esm2015/lib/dr-tooltip/components/tooltip-info-simple/tooltip-info-simple.component.js +0 -18
  22. package/esm2015/lib/dr-tooltip/components/tooltip-no-body/tooltip-no-body.component.js +0 -20
  23. package/esm2015/lib/dr-tooltip/components/tooltip-process-default/tooltip-process-default.component.js +0 -34
  24. package/esm2015/lib/dr-tooltip/enums/tooltip-position.enum.js +0 -16
  25. package/esm2015/lib/dr-tooltip/interfaces/tooltip-component-context.js +0 -2
  26. package/lib/dr-tooltip/components/tooltip-info/tooltip-info.component.d.ts +0 -5
  27. package/lib/dr-tooltip/components/tooltip-info-simple/tooltip-info-simple.component.d.ts +0 -5
  28. package/lib/dr-tooltip/components/tooltip-no-body/tooltip-no-body.component.d.ts +0 -6
  29. package/lib/dr-tooltip/components/tooltip-process-default/tooltip-process-default.component.d.ts +0 -4
  30. package/lib/dr-tooltip/enums/tooltip-position.enum.d.ts +0 -14
  31. package/lib/dr-tooltip/interfaces/tooltip-component-context.d.ts +0 -6
@@ -3573,22 +3573,6 @@
3573
3573
  label: [{ type: i0.Input }]
3574
3574
  };
3575
3575
 
3576
- exports.TooltipPosition = void 0;
3577
- (function (TooltipPosition) {
3578
- TooltipPosition["TOP"] = "top";
3579
- TooltipPosition["BOTTOM"] = "bottom";
3580
- TooltipPosition["LEFT"] = "left";
3581
- TooltipPosition["RIGHT"] = "right";
3582
- TooltipPosition["TOP_RIGHT"] = "top-right";
3583
- TooltipPosition["TOP_LEFT"] = "top-left";
3584
- TooltipPosition["BOTTOM_RIGHT"] = "bottom-right";
3585
- TooltipPosition["BOTTOM_LEFT"] = "bottom-left";
3586
- TooltipPosition["RIGHT_TOP"] = "right-top";
3587
- TooltipPosition["RIGHT_BOTTOM"] = "right-bottom";
3588
- TooltipPosition["LEFT_TOP"] = "left-top";
3589
- TooltipPosition["LEFT_BOTTOM"] = "left-bottom";
3590
- })(exports.TooltipPosition || (exports.TooltipPosition = {}));
3591
-
3592
3576
  var DrModelDebounceChangeDirective = /** @class */ (function () {
3593
3577
  function DrModelDebounceChangeDirective(ngModel) {
3594
3578
  this.ngModel = ngModel;
@@ -3932,6 +3916,7 @@
3932
3916
  }
3933
3917
  });
3934
3918
  _calendar.viewChanged.pipe(operators.takeUntil(this._destroyed)).subscribe(function () { return _this.setPeriodLabels(); });
3919
+ this.datePickerService.calendarInstance = _calendar;
3935
3920
  }
3936
3921
  DrDatePickerCustomHeaderComponent.prototype.ngOnDestroy = function () {
3937
3922
  this._destroyed.next();
@@ -3977,7 +3962,7 @@
3977
3962
  var unadaptedDate = this._dateAdapter.addCalendarMonths(this._calendar.activeDate, monthsInQuarter * (quarterNumber - this.selectedQuarter));
3978
3963
  this._calendar.activeDate = unadaptedDate;
3979
3964
  this.datePickerService.updatedQuarter$.next(moment$1(unadaptedDate));
3980
- this.datePickerService.calendarInstance.close();
3965
+ this.datePickerService.datePickerInstance.close();
3981
3966
  };
3982
3967
  DrDatePickerCustomHeaderComponent.prototype.pagingClicked = function (forward) {
3983
3968
  this.pagingSetup[this._calendar.currentView] && this.pagingSetup[this._calendar.currentView](forward);
@@ -4070,7 +4055,7 @@
4070
4055
  configurable: true
4071
4056
  });
4072
4057
  DrDatePickerComponent.prototype.ngAfterViewInit = function () {
4073
- this.datePickerService.calendarInstance = this.datePicker;
4058
+ this.datePickerService.datePickerInstance = this.datePicker;
4074
4059
  this.datePicker.startView = this.calendarViewsTimeframeMapping[this.datePickerService.timeframe];
4075
4060
  };
4076
4061
  DrDatePickerComponent.prototype.ngOnDestroy = function () {
@@ -4102,7 +4087,12 @@
4102
4087
  }
4103
4088
  };
4104
4089
  DrDatePickerComponent.prototype.chosenPeriodHandler = function (chosenDate, timeframe) {
4105
- if (this.datePickerService.timeframe === timeframe) {
4090
+ if (this.datePickerService.timeframe === exports.TimeframeOption.QUARTER && timeframe === exports.TimeframeOption.YEAR) {
4091
+ this.datePickerService.calendarInstance.currentView = exports.CalendarView.FOR_QUARTERS;
4092
+ this.datePickerService.calendarInstance.activeDate = chosenDate;
4093
+ this.cdr.detectChanges();
4094
+ }
4095
+ else if (this.datePickerService.timeframe === timeframe) {
4106
4096
  this.setValueFromMoment(chosenDate);
4107
4097
  this.datePicker.close();
4108
4098
  }
@@ -4372,86 +4362,6 @@
4372
4362
  },] }
4373
4363
  ];
4374
4364
 
4375
- var TooltipInfoComponent = /** @class */ (function () {
4376
- function TooltipInfoComponent() {
4377
- }
4378
- return TooltipInfoComponent;
4379
- }());
4380
- TooltipInfoComponent.decorators = [
4381
- { type: i0.Component, args: [{
4382
- selector: 'dr-tooltip-info',
4383
- template: "<div class=\"tooltip-info\">\n <i *ngIf=\"data?.icon else defaultIcon\" class=\"fa\" [class]=\"data.icon\" [style.fontSize.px]=\"14\"\n [style.margin.px]=\"12\" [style.color]=\"data?.iconColor || '#7B61FF'\"></i>\n <div class=\"tooltip-info-content-wrapper\">\n <div *ngIf=\"data?.title\" class=\"tooltip-info_header\">\n <span>{{data.title}}</span>\n </div>\n <div *ngIf=\"data?.description\" class=\"tooltip-info_description\"\n [class.tooltip-info_description-no-border]=\"!data.title\">\n <ng-container *ngIf=\"!data.title\"></ng-container>\n <span>{{data.description}}</span>\n </div>\n </div>\n</div>\n\n<ng-template #defaultIcon>\n <ng-container *ngIf=\"!data.icon\">\n <div class=\"default-icon\"></div>\n </ng-container>\n</ng-template>\n",
4384
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
4385
- styles: [".tooltip-info{width:316px;display:flex}.tooltip-info-content-wrapper{display:flex;flex-direction:column;padding-top:10px}.tooltip-info_header{padding:0 16px 6px 0;font-weight:bold;font-size:14px;line-height:16px;letter-spacing:.25px;display:flex;justify-content:flex-start}.tooltip-info_header>i{margin-right:10px}.tooltip-info-content-wrapper{padding-top:10px}.tooltip-info_description{display:flex;align-items:flex-start;border-top:1px solid #AEB5BB;padding:12px 10px 10px 0;text-align:left;font-weight:normal;font-size:14px;line-height:22px}.tooltip-info_description-no-border{padding-top:0;border-top:none}.tooltip-info_description>i{margin-right:10px}:host.tooltip-info-medium .tooltip-info{max-width:272px}:host.tooltip-info-medium .tooltip-info-content-wrapper{padding-top:10px}:host.tooltip-info-medium .tooltip-info_header,:host.tooltip-info-medium .tooltip-info_description{min-height:unset;border-top:none;font-size:14px;line-height:22px}:host.tooltip-info-medium .tooltip-info_header{padding:10px 10px 0 0}:host.tooltip-info-medium .tooltip-info_description{padding:10px 12px 10px 0}:host.tooltip-info-medium .tooltip-info .default-icon:before{background:url(\"data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2216%22 viewBox%3D%220 0 16 16%22 fill%3D%22none%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M8.00008 2.66669C5.05341 2.66669 2.66675 5.05335 2.66675 8.00002C2.66675 10.9467 5.05341 13.3334 8.00008 13.3334C10.9467 13.3334 13.3334 10.9467 13.3334 8.00002C13.3334 5.05335 10.9467 2.66669 8.00008 2.66669ZM8.53341 10.6667H7.46675V7.46669H8.53341V10.6667ZM8.53341 6.40002H7.46675V5.33335H8.53341V6.40002Z%22 fill%3D%22%237B61FF%22%2F%3E%3C%2Fsvg%3E\") no-repeat;background-size:100% 100%;display:inline-block;height:20px;width:20px;content:\"\"}:host.tooltip-info-small .tooltip-info{width:auto}:host.tooltip-info-small .tooltip-info-content-wrapper{padding-top:10px}:host.tooltip-info-small .tooltip-info_header,:host.tooltip-info-small .tooltip-info_description{min-height:unset;border-top:none;font-size:14px;line-height:22px}:host.tooltip-info-small .tooltip-info_header{padding:0 10px 0 0}:host.tooltip-info-small .tooltip-info_description{padding:0 12px 10px 0}:host.tooltip-info-small .tooltip-info .default-icon:before{background:url(\"data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2216%22 viewBox%3D%220 0 16 16%22 fill%3D%22none%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M8.00008 2.66669C5.05341 2.66669 2.66675 5.05335 2.66675 8.00002C2.66675 10.9467 5.05341 13.3334 8.00008 13.3334C10.9467 13.3334 13.3334 10.9467 13.3334 8.00002C13.3334 5.05335 10.9467 2.66669 8.00008 2.66669ZM8.53341 10.6667H7.46675V7.46669H8.53341V10.6667ZM8.53341 6.40002H7.46675V5.33335H8.53341V6.40002Z%22 fill%3D%22%237B61FF%22%2F%3E%3C%2Fsvg%3E\") no-repeat;background-size:100% 100%;display:inline-block;height:20px;width:20px;content:\"\"}.default-icon{position:relative;width:18px;height:18px;margin:10px}.default-icon:before{background:url(\"data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2216%22 viewBox%3D%220 0 16 16%22 fill%3D%22none%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M8.00008 2.66669C5.05341 2.66669 2.66675 5.05335 2.66675 8.00002C2.66675 10.9467 5.05341 13.3334 8.00008 13.3334C10.9467 13.3334 13.3334 10.9467 13.3334 8.00002C13.3334 5.05335 10.9467 2.66669 8.00008 2.66669ZM8.53341 10.6667H7.46675V7.46669H8.53341V10.6667ZM8.53341 6.40002H7.46675V5.33335H8.53341V6.40002Z%22 fill%3D%22%237B61FF%22%2F%3E%3C%2Fsvg%3E\") no-repeat;background-size:100% 100%;display:inline-block;height:18px;width:18px;content:\"\"}\n"]
4386
- },] }
4387
- ];
4388
- TooltipInfoComponent.ctorParameters = function () { return []; };
4389
- TooltipInfoComponent.propDecorators = {
4390
- data: [{ type: i0.Input }]
4391
- };
4392
-
4393
- var TooltipInfoSimpleComponent = /** @class */ (function () {
4394
- function TooltipInfoSimpleComponent() {
4395
- }
4396
- return TooltipInfoSimpleComponent;
4397
- }());
4398
- TooltipInfoSimpleComponent.decorators = [
4399
- { type: i0.Component, args: [{
4400
- selector: 'dr-tooltip-info-simple',
4401
- template: "<div class=\"tooltip-info-simple\">\n <div *ngIf=\"context?.title\" class=\"tooltip-info-simple__title\">{{context?.title}}</div>\n <div *ngIf=\"context?.description\" class=\"tooltip-info-simple__description\">{{context?.description}}</div>\n</div>\n",
4402
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
4403
- styles: [".tooltip-info-simple{max-width:250px;font-size:14px;line-height:22px;padding:10px 12px;color:#0c142b}.tooltip-info-simple__title{font-weight:600;overflow:hidden;text-overflow:ellipsis}\n"]
4404
- },] }
4405
- ];
4406
- TooltipInfoSimpleComponent.ctorParameters = function () { return []; };
4407
- TooltipInfoSimpleComponent.propDecorators = {
4408
- context: [{ type: i0.Input }]
4409
- };
4410
-
4411
- var TooltipNoBodyComponent = /** @class */ (function () {
4412
- function TooltipNoBodyComponent() {
4413
- }
4414
- TooltipNoBodyComponent.prototype.ngOnInit = function () {
4415
- };
4416
- return TooltipNoBodyComponent;
4417
- }());
4418
- TooltipNoBodyComponent.decorators = [
4419
- { type: i0.Component, args: [{
4420
- selector: 'dr-tooltip-no-body',
4421
- template: "<div class=\"tooltip-bold\" [ngClass]=\"{'tooltip-bold--icon': context?.icon}\">\n <div class=\"tooltip-bold__title\">\n <i *ngIf=\"context?.icon\" [class]=\"context?.icon\" [style.color]=\"context?.iconColor || 'black'\"></i>\n {{ context.title }}\n </div>\n <div class=\"tooltip-bold-text\">\n {{ context.text }}\n </div>\n</div>",
4422
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
4423
- styles: [".tooltip-bold{position:relative;box-shadow:0 4px 8px 1px #00000040;border:1px solid #C3C4CE;border-radius:8px;font-size:14px;line-height:22px;padding:10px 12px;background-color:#fff}.tooltip-bold--icon{padding-left:44px}.tooltip-bold__title{font-weight:bold}.tooltip-bold__title>i{position:absolute;width:16px;height:16px;left:10px}\n"]
4424
- },] }
4425
- ];
4426
- TooltipNoBodyComponent.ctorParameters = function () { return []; };
4427
- TooltipNoBodyComponent.propDecorators = {
4428
- context: [{ type: i0.Input }]
4429
- };
4430
-
4431
- var TooltipProcessDefaultComponent = /** @class */ (function () {
4432
- function TooltipProcessDefaultComponent() {
4433
- }
4434
- return TooltipProcessDefaultComponent;
4435
- }());
4436
- TooltipProcessDefaultComponent.decorators = [
4437
- { type: i0.Component, args: [{
4438
- selector: 'dr-tooltip-process-default',
4439
- template: "\n <div class=\"container\" [innerHTML]=\"text\"></div>\n ",
4440
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
4441
- styles: ["\n .container {\n width: auto;\n max-width: 388px;\n text-align: start;\n font-size: 14px;\n line-height: 22px;\n padding: 10px 12px;\n color: #151B3F;\n background-color: #FFF;\n border-radius: 8px;\n box-shadow: 0px 4px 8px 1px rgba(0, 0, 0, 0.25);\n border: 1px solid #C3C4CE;\n }\n "]
4442
- },] }
4443
- ];
4444
- TooltipProcessDefaultComponent.ctorParameters = function () { return []; };
4445
- TooltipProcessDefaultComponent.propDecorators = {
4446
- text: [{ type: i0.Input }]
4447
- };
4448
-
4449
- var TOOLTIP_COMPONENTS = [
4450
- TooltipInfoComponent,
4451
- TooltipInfoSimpleComponent,
4452
- TooltipNoBodyComponent,
4453
- TooltipProcessDefaultComponent
4454
- ];
4455
4365
  var DrTooltipModule = /** @class */ (function () {
4456
4366
  function DrTooltipModule() {
4457
4367
  }
@@ -4462,15 +4372,15 @@
4462
4372
  imports: [
4463
4373
  common.CommonModule
4464
4374
  ],
4465
- exports: __spreadArray([
4375
+ exports: [
4466
4376
  TooltipComponent,
4467
- DrTooltipDirective
4468
- ], __read(TOOLTIP_COMPONENTS)),
4377
+ DrTooltipDirective,
4378
+ ],
4469
4379
  providers: [],
4470
- declarations: __spreadArray([
4380
+ declarations: [
4471
4381
  TooltipComponent,
4472
- DrTooltipDirective
4473
- ], __read(TOOLTIP_COMPONENTS)),
4382
+ DrTooltipDirective,
4383
+ ],
4474
4384
  },] }
4475
4385
  ];
4476
4386
 
@@ -4722,10 +4632,6 @@
4722
4632
  exports["ɵf"] = DrDatePickerFormatDirective;
4723
4633
  exports["ɵg"] = DrDatePickerCustomHeaderComponent;
4724
4634
  exports["ɵh"] = DrShowTimeframePipe;
4725
- exports["ɵi"] = TooltipInfoComponent;
4726
- exports["ɵj"] = TooltipInfoSimpleComponent;
4727
- exports["ɵk"] = TooltipNoBodyComponent;
4728
- exports["ɵl"] = TooltipProcessDefaultComponent;
4729
4635
 
4730
4636
  Object.defineProperty(exports, '__esModule', { value: true });
4731
4637