@datarailsshared/datarailsshared 1.4.55 → 1.4.57
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 +89 -16
- package/bundles/datarailsshared-datarailsshared.umd.js.map +1 -1
- package/datarailsshared-datarailsshared-1.4.57.tgz +0 -0
- package/datarailsshared-datarailsshared.metadata.json +1 -1
- package/esm2015/lib/dr-dropdown/dr-dropdown.directive.js +2 -2
- package/esm2015/lib/dr-inputs/checkbox/checkbox.component.js +1 -1
- package/esm2015/lib/dr-inputs/radio-button/radio-button.component.js +12 -5
- package/esm2015/lib/dr-layout/dr-layout-body.component.js +12 -0
- package/esm2015/lib/dr-layout/dr-layout-header.component.js +16 -0
- package/esm2015/lib/dr-layout/dr-layout.component.js +13 -0
- package/esm2015/lib/dr-layout/dr-layout.module.js +20 -0
- package/esm2015/public-api.js +5 -1
- package/fesm2015/datarailsshared-datarailsshared.js +76 -16
- package/fesm2015/datarailsshared-datarailsshared.js.map +1 -1
- package/lib/dr-inputs/radio-button/radio-button.component.d.ts +3 -1
- package/lib/dr-layout/dr-layout-body.component.d.ts +3 -0
- package/lib/dr-layout/dr-layout-header.component.d.ts +3 -0
- package/lib/dr-layout/dr-layout.component.d.ts +3 -0
- package/lib/dr-layout/dr-layout.module.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +4 -0
- package/datarailsshared-datarailsshared-1.4.55.tgz +0 -0
|
@@ -1170,9 +1170,20 @@
|
|
|
1170
1170
|
function RadioButtonComponent(cdr) {
|
|
1171
1171
|
this.cdr = cdr;
|
|
1172
1172
|
this.valueChange = new i0.EventEmitter();
|
|
1173
|
+
this._disabled = false;
|
|
1173
1174
|
this.onChange = (function (onchanges) { });
|
|
1174
1175
|
this.onTouched = function () { };
|
|
1175
1176
|
}
|
|
1177
|
+
Object.defineProperty(RadioButtonComponent.prototype, "disabled", {
|
|
1178
|
+
get: function () {
|
|
1179
|
+
return this._disabled;
|
|
1180
|
+
},
|
|
1181
|
+
set: function (disabled) {
|
|
1182
|
+
this._disabled = disabled;
|
|
1183
|
+
},
|
|
1184
|
+
enumerable: false,
|
|
1185
|
+
configurable: true
|
|
1186
|
+
});
|
|
1176
1187
|
Object.defineProperty(RadioButtonComponent.prototype, "value", {
|
|
1177
1188
|
get: function () {
|
|
1178
1189
|
return this._value;
|
|
@@ -1211,7 +1222,7 @@
|
|
|
1211
1222
|
RadioButtonComponent.decorators = [
|
|
1212
1223
|
{ type: i0.Component, args: [{
|
|
1213
1224
|
selector: 'dr-radio-button',
|
|
1214
|
-
template: "<label>\n <input\n type=\"radio\"\n [name]=\"name\"\n [value]=\"value\"\n (change)=\"valueChanged(value)\"\n [(ngModel)]=\"modelValue\"\n (click)=\"toggleChange($event)\">\n <span>\n <ng-content></ng-content>\n </span>\n</label>\n",
|
|
1225
|
+
template: "<label>\n <input\n type=\"radio\"\n [name]=\"name\"\n [value]=\"value\"\n (change)=\"valueChanged(value)\"\n [(ngModel)]=\"modelValue\"\n [disabled]=\"disabled\"\n (click)=\"toggleChange($event)\">\n <span>\n <ng-content></ng-content>\n </span>\n</label>\n",
|
|
1215
1226
|
providers: [
|
|
1216
1227
|
{
|
|
1217
1228
|
provide: forms.NG_VALUE_ACCESSOR,
|
|
@@ -1220,17 +1231,17 @@
|
|
|
1220
1231
|
}
|
|
1221
1232
|
],
|
|
1222
1233
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
1223
|
-
styles: [":host{display:flex;line-height:22px}label input[type=radio].radiobox+span{vertical-align:middle;line-height:20px}input+span,input+span:after,input+span:before{box-sizing:content-box!important;-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}input{visibility:hidden;position:absolute;width:18px;height:18px}label input+span{position:relative;z-index:19;display:inline-block;margin:0 5px 0 0;line-height:17px;min-height:14px;min-width:14px}label input+span:hover{cursor:pointer}label input+span:before{content:\"\";font-size:14px;border-radius:0;display:inline-block;text-align:center;vertical-align:middle;padding:1px;height:12px;line-height:13px;width:12px;margin-right:5px;border:1px solid #8F929E;background-color:#fff;font-weight:normal;margin-top:-1px}label input+span:before{border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%}label input:checked+span:before,label:hover input:checked+span:before{
|
|
1234
|
+
styles: [":host{display:flex;line-height:22px}label input[type=radio].radiobox+span{vertical-align:middle;line-height:20px}input+span,input+span:after,input+span:before{box-sizing:content-box!important;-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}input{visibility:hidden;position:absolute;width:18px;height:18px}label input+span{position:relative;z-index:19;display:inline-block;margin:0 5px 0 0;line-height:17px;min-height:14px;min-width:14px}label input+span:hover{cursor:pointer}label input+span:before{content:\"\";font-size:14px;border-radius:0;display:inline-block;text-align:center;vertical-align:middle;padding:1px;height:12px;line-height:13px;width:12px;margin-right:5px;border:1px solid #8F929E;background-color:#fff;font-weight:normal;margin-top:-1px}label input+span:before{border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%}label input:checked+span:before,label:hover input:checked+span:before{font-family:\"DataRails\"!important;background-image:url('data:image/svg+xml; utf8, <svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"5\" cy=\"5\" r=\"4.5\" fill=\"%234646CE\"/></svg> ');background-repeat:no-repeat;background-position:center;border-color:#4646ce;color:#4646ce}label input:disabled+span:before{border-color:#8f929e}label input[disabled]:checked+span:before{background-image:url('data:image/svg+xml; utf8, <svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"5\" cy=\"5\" r=\"4.5\" fill=\"%238F929E\"/></svg> ');background-repeat:no-repeat;background-position:center;border-color:#8f929e!important;color:#8f929e}label span:hover:before{border-color:#4e566c}\n"]
|
|
1224
1235
|
},] }
|
|
1225
1236
|
];
|
|
1226
1237
|
RadioButtonComponent.ctorParameters = function () { return [
|
|
1227
1238
|
{ type: i0.ChangeDetectorRef }
|
|
1228
1239
|
]; };
|
|
1229
1240
|
RadioButtonComponent.propDecorators = {
|
|
1230
|
-
disabled: [{ type: i0.Input }],
|
|
1231
1241
|
name: [{ type: i0.Input }],
|
|
1232
1242
|
_value: [{ type: i0.Input, args: ['value',] }],
|
|
1233
|
-
valueChange: [{ type: i0.Output }]
|
|
1243
|
+
valueChange: [{ type: i0.Output }],
|
|
1244
|
+
disabled: [{ type: i0.Input }]
|
|
1234
1245
|
};
|
|
1235
1246
|
|
|
1236
1247
|
var RadioGroupComponent = /** @class */ (function () {
|
|
@@ -1459,7 +1470,7 @@
|
|
|
1459
1470
|
{ provide: forms.NG_VALUE_ACCESSOR, useExisting: CheckboxComponent, multi: true }
|
|
1460
1471
|
],
|
|
1461
1472
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
1462
|
-
styles: ["input+span{vertical-align:middle;line-height:30px}input+span,input+span:before{box-sizing:content-box!important;-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}input{visibility:hidden;position:absolute;width:0}label input+span{position:relative;z-index:19;display:inline-block;margin:0 5px 0 0;line-height:17px;min-height:14px;min-width:14px}label input+span:hover{cursor:pointer}label input+span:before{content:\"\";font-size:14px;border-radius:0;display:inline-block;text-align:center;vertical-align:middle;padding:1px;min-height:12px;line-height:12px;min-width:12px;margin-right:5px;border:1.5px solid #8F929E;background-color:#fff;font-weight:normal;margin-top:-1px}label input+span:before,label:hover input+span:before{background-color:#fff;border-color:#8f929e;color:#4646ce;border-radius:2px}label input:checked+span:before,label:hover input:checked+span:before{content:url('data:image/svg+xml; utf8, <svg width=\"12\" height=\"10\" viewBox=\"0 0 12 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M1 5L4.5 8.5L11 1.5\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>');background:#4646CE;border-color:#4646ce;color:#fff}label input:checked+span.cross:before,label:hover input:checked+span.cross:before{content:url('data:image/svg+xml; utf8, <svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.91786 4.99992L9.03356 1.88386C9.11927 1.79808 9.16654 1.68365 9.16668 1.56162C9.16668 1.43952 9.1194 1.32495 9.03356 1.23931L8.7605 0.966323C8.67466 0.880342 8.56026 0.833252 8.43811 0.833252C8.31615 0.833252 8.20169 0.880342 8.11585 0.966323L5.00016 4.08218L1.88431 0.966323C1.79861 0.880342 1.68407 0.833252 1.56199 0.833252C1.44004 0.833252 1.32559 0.880342 1.23988 0.966323L0.966677 1.23931C0.788899 1.4171 0.788899 1.70628 0.966677 1.88386L4.08245 4.99992L0.966677 8.11584C0.880904 8.20175 0.833707 8.31619 0.833707 8.43822C0.833707 8.56025 0.880904 8.67468 0.966677 8.76053L1.23981 9.03351C1.32551 9.11943 1.44003 9.16658 1.56191 9.16658C1.684 9.16658 1.79853 9.11943 1.88424 9.03351L5.00008 5.91759L8.11578 9.03351C8.20162 9.11943 8.31608 9.16658 8.43803 9.16658C8.56005 9.16658 8.67459 9.11943 8.76043 9.03351L9.03349 8.76053C9.11919 8.67475 9.16646 8.56025 9.16646 8.43822C9.16646 8.31619 9.11919 8.20175 9.03349 8.11591L5.91786 4.99992Z\" fill=\"white\"/></svg>')}label input+span.indeterminate:before,label:hover input+span.indeterminate:before{content:url('data:image/svg+xml; utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"10\" height=\"10\" viewBox=\"0 0 10 2\" fill=\"none\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.25 1C0.25 0.585786 0.585786 0.25 1 0.25L11 0.250001C11.4142 0.250001 11.75 0.585787 11.75 1C11.75 1.41421 11.4142 1.75 11 1.75L1 1.75C0.585786 1.75 0.25 1.41421 0.25 1Z\" fill=\"white\"/></svg>');background:#4646CE;border-color:#4646ce;color:#fff}label input:disabled+span:before{border-color:#dfe0e3;pointer-events:none}label input[disabled]:checked+span:before{background:#8F929E;border-color:#8f929e;pointer-events:none}label input:not([disabled])+span:hover:after{content:\"\";width:28px;height:28px;background:#F2F2FB;border-radius:50%;position:absolute;left:-6px;top:-5px;z-index:-1}\n"]
|
|
1473
|
+
styles: ["input+span{vertical-align:middle;line-height:30px}input+span,input+span:before{box-sizing:content-box!important;-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}input{visibility:hidden;position:absolute;width:0}label input+span{position:relative;z-index:19;display:inline-block;margin:0 5px 0 0;line-height:17px;min-height:14px;min-width:14px}label input+span:hover{cursor:pointer}label input+span:before{content:\"\";font-size:14px;border-radius:0;display:inline-block;text-align:center;vertical-align:middle;padding:1px;min-height:12px;line-height:12px;min-width:12px;margin-right:5px;border:1.5px solid #8F929E;background-color:#fff;font-weight:normal;margin-top:-1px}label input+span:before,label:hover input+span:before{background-color:#fff;border-color:#8f929e;color:#4646ce;border-radius:2px}label input:checked+span:before,label:hover input:checked+span:before{content:url('data:image/svg+xml; utf8, <svg width=\"12\" height=\"10\" viewBox=\"0 0 12 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M1 5L4.5 8.5L11 1.5\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>');background:#4646CE;border-color:#4646ce;color:#fff}label input:checked+span.cross:before,label:hover input:checked+span.cross:before{content:url('data:image/svg+xml; utf8, <svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.91786 4.99992L9.03356 1.88386C9.11927 1.79808 9.16654 1.68365 9.16668 1.56162C9.16668 1.43952 9.1194 1.32495 9.03356 1.23931L8.7605 0.966323C8.67466 0.880342 8.56026 0.833252 8.43811 0.833252C8.31615 0.833252 8.20169 0.880342 8.11585 0.966323L5.00016 4.08218L1.88431 0.966323C1.79861 0.880342 1.68407 0.833252 1.56199 0.833252C1.44004 0.833252 1.32559 0.880342 1.23988 0.966323L0.966677 1.23931C0.788899 1.4171 0.788899 1.70628 0.966677 1.88386L4.08245 4.99992L0.966677 8.11584C0.880904 8.20175 0.833707 8.31619 0.833707 8.43822C0.833707 8.56025 0.880904 8.67468 0.966677 8.76053L1.23981 9.03351C1.32551 9.11943 1.44003 9.16658 1.56191 9.16658C1.684 9.16658 1.79853 9.11943 1.88424 9.03351L5.00008 5.91759L8.11578 9.03351C8.20162 9.11943 8.31608 9.16658 8.43803 9.16658C8.56005 9.16658 8.67459 9.11943 8.76043 9.03351L9.03349 8.76053C9.11919 8.67475 9.16646 8.56025 9.16646 8.43822C9.16646 8.31619 9.11919 8.20175 9.03349 8.11591L5.91786 4.99992Z\" fill=\"white\"/></svg>')}label input+span.indeterminate:before,label:hover input+span.indeterminate:before{content:url('data:image/svg+xml; utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"10\" height=\"10\" viewBox=\"0 0 10 2\" fill=\"none\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.25 1C0.25 0.585786 0.585786 0.25 1 0.25L11 0.250001C11.4142 0.250001 11.75 0.585787 11.75 1C11.75 1.41421 11.4142 1.75 11 1.75L1 1.75C0.585786 1.75 0.25 1.41421 0.25 1Z\" fill=\"white\"/></svg>');background:#4646CE;border-color:#4646ce;color:#fff}label input:disabled+span{color:#8f929e}label input:disabled+span:before{border-color:#dfe0e3;pointer-events:none}label input[disabled]:checked+span:before{background:#8F929E;border-color:#8f929e;pointer-events:none}label input:not([disabled])+span:hover:after{content:\"\";width:28px;height:28px;background:#F2F2FB;border-radius:50%;position:absolute;left:-6px;top:-5px;z-index:-1}\n"]
|
|
1463
1474
|
},] }
|
|
1464
1475
|
];
|
|
1465
1476
|
CheckboxComponent.ctorParameters = function () { return [
|
|
@@ -2936,7 +2947,7 @@
|
|
|
2936
2947
|
componentFactory = this.componentFactoryResolver.resolveComponentFactory(DrDropdownComponent);
|
|
2937
2948
|
this.contentCmpRef = this.viewContainerRef.createComponent(componentFactory);
|
|
2938
2949
|
this.service.addMenu = this.contentCmpRef;
|
|
2939
|
-
this._document.querySelector('
|
|
2950
|
+
this._document.querySelector('dr-layout').appendChild(this.contentCmpRef.location.nativeElement);
|
|
2940
2951
|
this.contentCmpRef.instance.options = options;
|
|
2941
2952
|
};
|
|
2942
2953
|
DrDropdownDirective.prototype.ngOnDestroy = function () {
|
|
@@ -3451,6 +3462,46 @@
|
|
|
3451
3462
|
{ type: i0.ChangeDetectorRef }
|
|
3452
3463
|
]; };
|
|
3453
3464
|
|
|
3465
|
+
var DrLayoutComponent = /** @class */ (function () {
|
|
3466
|
+
function DrLayoutComponent() {
|
|
3467
|
+
}
|
|
3468
|
+
return DrLayoutComponent;
|
|
3469
|
+
}());
|
|
3470
|
+
DrLayoutComponent.decorators = [
|
|
3471
|
+
{ type: i0.Component, args: [{
|
|
3472
|
+
selector: 'dr-layout',
|
|
3473
|
+
template: "<div class=\"dr-layout\">\n <ng-content select=\"dr-layout-header\"></ng-content>\n <div class=\"dr-layout__container\">\n <div class=\"content\">\n <div class=\"columns\">\n <ng-content select=\"dr-layout-body\"></ng-content>\n </div>\n </div>\n </div>\n</div>\n",
|
|
3474
|
+
styles: [":host{font-size:16px;font-weight:400;font-family:\"Poppins\",sans-serif;line-height:1.25rem;-webkit-font-smoothing:antialiased}:host .dr-layout{display:flex;flex-direction:column;min-height:100vh;font-size:16px;font-weight:400;line-height:1.4rem}:host .dr-layout ::ng-deep dr-layout-header{display:block;position:fixed;top:0;left:0;right:0;z-index:1040}:host .dr-layout ::ng-deep dr-layout-header nav{align-items:center;justify-content:flex-start;display:flex}:host .dr-layout__container{display:flex;flex:1;-ms-flex:1 1 auto;flex-direction:row}:host .dr-layout__container .content{display:flex;flex:1;-ms-flex:1 1 auto;flex-direction:column;min-width:0}:host .dr-layout__container .content .columns{display:flex;flex:1;-ms-flex:1 1 auto;flex-direction:row;width:100%}:host .dr-layout__container .content .columns ::ng-deep dr-layout-body{flex:1 0;min-width:0}\n"]
|
|
3475
|
+
},] }
|
|
3476
|
+
];
|
|
3477
|
+
DrLayoutComponent.ctorParameters = function () { return []; };
|
|
3478
|
+
|
|
3479
|
+
var DrLayoutHeaderComponent = /** @class */ (function () {
|
|
3480
|
+
function DrLayoutHeaderComponent() {
|
|
3481
|
+
}
|
|
3482
|
+
return DrLayoutHeaderComponent;
|
|
3483
|
+
}());
|
|
3484
|
+
DrLayoutHeaderComponent.decorators = [
|
|
3485
|
+
{ type: i0.Component, args: [{
|
|
3486
|
+
selector: 'dr-layout-header',
|
|
3487
|
+
template: "\n <nav>\n <ng-content></ng-content>\n </nav>\n "
|
|
3488
|
+
},] }
|
|
3489
|
+
];
|
|
3490
|
+
DrLayoutHeaderComponent.ctorParameters = function () { return []; };
|
|
3491
|
+
|
|
3492
|
+
var DrLayoutBodyComponent = /** @class */ (function () {
|
|
3493
|
+
function DrLayoutBodyComponent() {
|
|
3494
|
+
}
|
|
3495
|
+
return DrLayoutBodyComponent;
|
|
3496
|
+
}());
|
|
3497
|
+
DrLayoutBodyComponent.decorators = [
|
|
3498
|
+
{ type: i0.Component, args: [{
|
|
3499
|
+
selector: 'dr-layout-body',
|
|
3500
|
+
template: '<ng-content></ng-content>'
|
|
3501
|
+
},] }
|
|
3502
|
+
];
|
|
3503
|
+
DrLayoutBodyComponent.ctorParameters = function () { return []; };
|
|
3504
|
+
|
|
3454
3505
|
var DrModelDebounceChangeDirective = /** @class */ (function () {
|
|
3455
3506
|
function DrModelDebounceChangeDirective(ngModel) {
|
|
3456
3507
|
this.ngModel = ngModel;
|
|
@@ -3556,7 +3607,7 @@
|
|
|
3556
3607
|
CalendarView["FOR_YEARS"] = "multi-year";
|
|
3557
3608
|
})(exports.CalendarView || (exports.CalendarView = {}));
|
|
3558
3609
|
|
|
3559
|
-
var components$
|
|
3610
|
+
var components$3 = [DateTagComponent,
|
|
3560
3611
|
DayTagComponent,
|
|
3561
3612
|
WeekTagComponent,
|
|
3562
3613
|
MonthTagComponent,
|
|
@@ -3583,11 +3634,11 @@
|
|
|
3583
3634
|
materialMomentAdapter.MatMomentDateModule,
|
|
3584
3635
|
select.MatSelectModule
|
|
3585
3636
|
],
|
|
3586
|
-
exports: components$
|
|
3637
|
+
exports: components$3,
|
|
3587
3638
|
providers: [
|
|
3588
3639
|
{ provide: materialMomentAdapter.MAT_MOMENT_DATE_ADAPTER_OPTIONS, useValue: ɵ0$1 }
|
|
3589
3640
|
],
|
|
3590
|
-
declarations: components$
|
|
3641
|
+
declarations: components$3,
|
|
3591
3642
|
},] }
|
|
3592
3643
|
];
|
|
3593
3644
|
;
|
|
@@ -4199,7 +4250,7 @@
|
|
|
4199
4250
|
var _a;
|
|
4200
4251
|
(_a = this._getCurrentViewComponent()) === null || _a === void 0 ? void 0 : _a._focusActiveCell(false);
|
|
4201
4252
|
};
|
|
4202
|
-
var components$
|
|
4253
|
+
var components$2 = [
|
|
4203
4254
|
DrButtonComponent,
|
|
4204
4255
|
RadioButtonComponent,
|
|
4205
4256
|
RadioGroupComponent,
|
|
@@ -4222,8 +4273,8 @@
|
|
|
4222
4273
|
}());
|
|
4223
4274
|
DrInputsModule.decorators = [
|
|
4224
4275
|
{ type: i0.NgModule, args: [{
|
|
4225
|
-
declarations: components$
|
|
4226
|
-
exports: components$
|
|
4276
|
+
declarations: components$2,
|
|
4277
|
+
exports: components$2,
|
|
4227
4278
|
imports: [
|
|
4228
4279
|
forms.FormsModule,
|
|
4229
4280
|
forms.ReactiveFormsModule,
|
|
@@ -4279,7 +4330,7 @@
|
|
|
4279
4330
|
},] }
|
|
4280
4331
|
];
|
|
4281
4332
|
|
|
4282
|
-
var components = [DrSpinnerComponent];
|
|
4333
|
+
var components$1 = [DrSpinnerComponent];
|
|
4283
4334
|
var directives = [DrSpinnerDirective];
|
|
4284
4335
|
var DrSpinnerModule = /** @class */ (function () {
|
|
4285
4336
|
function DrSpinnerModule() {
|
|
@@ -4291,8 +4342,8 @@
|
|
|
4291
4342
|
imports: [
|
|
4292
4343
|
common.CommonModule,
|
|
4293
4344
|
],
|
|
4294
|
-
exports: __spreadArray(__spreadArray([], __read(components)), __read(directives)),
|
|
4295
|
-
declarations: __spreadArray(__spreadArray([], __read(components)), __read(directives))
|
|
4345
|
+
exports: __spreadArray(__spreadArray([], __read(components$1)), __read(directives)),
|
|
4346
|
+
declarations: __spreadArray(__spreadArray([], __read(components$1)), __read(directives))
|
|
4296
4347
|
},] }
|
|
4297
4348
|
];
|
|
4298
4349
|
|
|
@@ -4393,6 +4444,24 @@
|
|
|
4393
4444
|
},] }
|
|
4394
4445
|
];
|
|
4395
4446
|
|
|
4447
|
+
var components = [
|
|
4448
|
+
DrLayoutComponent,
|
|
4449
|
+
DrLayoutHeaderComponent,
|
|
4450
|
+
DrLayoutBodyComponent
|
|
4451
|
+
];
|
|
4452
|
+
var DrLayoutModule = /** @class */ (function () {
|
|
4453
|
+
function DrLayoutModule() {
|
|
4454
|
+
}
|
|
4455
|
+
return DrLayoutModule;
|
|
4456
|
+
}());
|
|
4457
|
+
DrLayoutModule.decorators = [
|
|
4458
|
+
{ type: i0.NgModule, args: [{
|
|
4459
|
+
imports: [common.CommonModule],
|
|
4460
|
+
exports: __spreadArray([], __read(components)),
|
|
4461
|
+
declarations: __spreadArray([], __read(components)),
|
|
4462
|
+
},] }
|
|
4463
|
+
];
|
|
4464
|
+
|
|
4396
4465
|
/* components */
|
|
4397
4466
|
|
|
4398
4467
|
/**
|
|
@@ -4422,6 +4491,10 @@
|
|
|
4422
4491
|
exports.DrDropdownService = DrDropdownService;
|
|
4423
4492
|
exports.DrInputComponent = DrInputComponent;
|
|
4424
4493
|
exports.DrInputsModule = DrInputsModule;
|
|
4494
|
+
exports.DrLayoutBodyComponent = DrLayoutBodyComponent;
|
|
4495
|
+
exports.DrLayoutComponent = DrLayoutComponent;
|
|
4496
|
+
exports.DrLayoutHeaderComponent = DrLayoutHeaderComponent;
|
|
4497
|
+
exports.DrLayoutModule = DrLayoutModule;
|
|
4425
4498
|
exports.DrModelDebounceChangeDirective = DrModelDebounceChangeDirective;
|
|
4426
4499
|
exports.DrPopoverComponent = DrPopoverComponent;
|
|
4427
4500
|
exports.DrPopoverDirective = DrPopoverDirective;
|
|
@@ -4452,7 +4525,7 @@
|
|
|
4452
4525
|
exports.TooltipComponent = TooltipComponent;
|
|
4453
4526
|
exports.WeekTagComponent = WeekTagComponent;
|
|
4454
4527
|
exports.YearTagComponent = YearTagComponent;
|
|
4455
|
-
exports["ɵa"] = components$
|
|
4528
|
+
exports["ɵa"] = components$3;
|
|
4456
4529
|
exports["ɵb"] = POPUP_ANIMATION;
|
|
4457
4530
|
exports["ɵc"] = DrDatePickerComponent;
|
|
4458
4531
|
exports["ɵd"] = DrDatePickerService;
|