@dev-tcloud/tcloud-ui 0.0.57 → 0.0.59
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/esm2020/lib/_modules/tcloud-ui-datepicker-time/tcloud-ui-datepicker-time.component.mjs +5 -2
- package/esm2020/lib/_modules/tcloud-ui-filters/tcloud-ui-filters.component.mjs +35 -11
- package/esm2020/lib/_modules/tcloud-ui-filters/tcloud-ui-filters.mjs +1 -1
- package/esm2020/lib/_modules/tcloud-ui-filters/tcloud-ui-filters.module.mjs +5 -2
- package/fesm2015/dev-tcloud-tcloud-ui.mjs +41 -11
- package/fesm2015/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/fesm2020/dev-tcloud-tcloud-ui.mjs +41 -11
- package/fesm2020/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/lib/_modules/tcloud-ui-filters/tcloud-ui-filters.component.d.ts +6 -2
- package/lib/_modules/tcloud-ui-filters/tcloud-ui-filters.d.ts +1 -0
- package/lib/_modules/tcloud-ui-filters/tcloud-ui-filters.module.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3091,8 +3091,11 @@ class TCloudUiDatepickerTimeComponent {
|
|
|
3091
3091
|
//From ControlValueAccessor interface
|
|
3092
3092
|
writeValue(value) {
|
|
3093
3093
|
if (value !== this.innerValue) {
|
|
3094
|
+
try {
|
|
3095
|
+
value = new Date(`${value}`);
|
|
3096
|
+
}
|
|
3097
|
+
catch (error) { }
|
|
3094
3098
|
this.innerValue = value;
|
|
3095
|
-
console.log('writeValue this.innerValue', this.innerValue);
|
|
3096
3099
|
if (this.checkIsDate(value)) {
|
|
3097
3100
|
this.to_date_hh_mm(value);
|
|
3098
3101
|
}
|
|
@@ -3134,7 +3137,8 @@ class TCloudUiFiltersComponent {
|
|
|
3134
3137
|
this.datepickers = [];
|
|
3135
3138
|
this.inputs = [];
|
|
3136
3139
|
this.show_filters = false;
|
|
3137
|
-
this.
|
|
3140
|
+
this._submitText = 'Filtrar';
|
|
3141
|
+
this.btnSubmitClass = 'btn-new-grey';
|
|
3138
3142
|
this.useOnChangeSubmit = true; // useOnChangeSubmit - Submit automatico quando for alterado quanquer input
|
|
3139
3143
|
this.useButtonSubmit = false; // useButtonSubmit - Exibe um botão de submit e não executa a busca automaticamente
|
|
3140
3144
|
this.useNormalizeCaseSensitive = true; // useNormalizeCaseSensitive - Não valida caixa alta ou baixa e caracteres especiais
|
|
@@ -3142,6 +3146,7 @@ class TCloudUiFiltersComponent {
|
|
|
3142
3146
|
this.onFilter = new EventEmitter();
|
|
3143
3147
|
this.onChange = new EventEmitter();
|
|
3144
3148
|
this.onSubmit = new EventEmitter();
|
|
3149
|
+
this.first_active_filter = false;
|
|
3145
3150
|
this.start_filter_fc = undefined;
|
|
3146
3151
|
}
|
|
3147
3152
|
set data(data) {
|
|
@@ -3152,7 +3157,31 @@ class TCloudUiFiltersComponent {
|
|
|
3152
3157
|
//this._filters = filters;
|
|
3153
3158
|
}
|
|
3154
3159
|
get filters() { return this._filters; }
|
|
3160
|
+
set submitText(v) {
|
|
3161
|
+
if (v && v !== this._submitText) {
|
|
3162
|
+
this._submitText = v;
|
|
3163
|
+
}
|
|
3164
|
+
}
|
|
3165
|
+
get submitText() { return this._submitText; }
|
|
3155
3166
|
ngOnInit() {
|
|
3167
|
+
setTimeout(() => {
|
|
3168
|
+
for (let i = 0; i < (this.filters).length; i++) {
|
|
3169
|
+
if (this.filters[i].value) {
|
|
3170
|
+
if (this.filters[i].type === 'datetime-local') {
|
|
3171
|
+
try {
|
|
3172
|
+
this.filters[i].searchText = new Date(`${this.filters[i].value}`);
|
|
3173
|
+
}
|
|
3174
|
+
catch (error) { }
|
|
3175
|
+
}
|
|
3176
|
+
else {
|
|
3177
|
+
this.filters[i].searchText = this.filters[i].value;
|
|
3178
|
+
}
|
|
3179
|
+
this.first_active_filter = true;
|
|
3180
|
+
}
|
|
3181
|
+
}
|
|
3182
|
+
console.log('this.filters', this.filters);
|
|
3183
|
+
this.init();
|
|
3184
|
+
});
|
|
3156
3185
|
}
|
|
3157
3186
|
ngAfterViewInit() {
|
|
3158
3187
|
// child is set
|
|
@@ -3179,7 +3208,6 @@ class TCloudUiFiltersComponent {
|
|
|
3179
3208
|
this.show_filters = true;
|
|
3180
3209
|
if (this.filters && (this.filters).length > 0) {
|
|
3181
3210
|
(this.filters).forEach((filter) => {
|
|
3182
|
-
console.log('init filter', filter);
|
|
3183
3211
|
this.searchIn(filter, 'sync');
|
|
3184
3212
|
});
|
|
3185
3213
|
}
|
|
@@ -3268,11 +3296,8 @@ class TCloudUiFiltersComponent {
|
|
|
3268
3296
|
}
|
|
3269
3297
|
searchIn(item, event, value) {
|
|
3270
3298
|
var _a, _b;
|
|
3299
|
+
//console.log('item TCDataFilters', item);
|
|
3271
3300
|
this.start_filter_fc = undefined;
|
|
3272
|
-
if (value) {
|
|
3273
|
-
console.log('searchIn item', item);
|
|
3274
|
-
console.log('searchIn event', event);
|
|
3275
|
-
}
|
|
3276
3301
|
let isValid = true;
|
|
3277
3302
|
if (event === 'sync' && isValid) {
|
|
3278
3303
|
isValid = false;
|
|
@@ -3290,7 +3315,6 @@ class TCloudUiFiltersComponent {
|
|
|
3290
3315
|
}
|
|
3291
3316
|
if ((event === null || event === void 0 ? void 0 : event.datepickertime) && isValid) {
|
|
3292
3317
|
isValid = false;
|
|
3293
|
-
console.log('is a date', event === null || event === void 0 ? void 0 : event.innerValue);
|
|
3294
3318
|
item.searchText = event === null || event === void 0 ? void 0 : event.innerValue;
|
|
3295
3319
|
this.onChange.emit(true);
|
|
3296
3320
|
}
|
|
@@ -3304,8 +3328,9 @@ class TCloudUiFiltersComponent {
|
|
|
3304
3328
|
item.searchText = '';
|
|
3305
3329
|
this.onChange.emit(true);
|
|
3306
3330
|
}
|
|
3307
|
-
if (this.useOnChangeSubmit) {
|
|
3331
|
+
if (this.useOnChangeSubmit || this.first_active_filter) {
|
|
3308
3332
|
this.start_filter_fc = this.start_filter();
|
|
3333
|
+
this.first_active_filter = false;
|
|
3309
3334
|
}
|
|
3310
3335
|
if (!this.useButtonSubmit) {
|
|
3311
3336
|
this.emitSubmitFilters();
|
|
@@ -3488,10 +3513,10 @@ class TCloudUiFiltersComponent {
|
|
|
3488
3513
|
}
|
|
3489
3514
|
}
|
|
3490
3515
|
TCloudUiFiltersComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: TCloudUiFiltersComponent, deps: [{ token: i1.DatePipe }], target: i0.ɵɵFactoryTarget.Component });
|
|
3491
|
-
TCloudUiFiltersComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: TCloudUiFiltersComponent, selector: "tcloud-ui-filters", inputs: { data: "data", filters: "filters", submitText: "submitText", useOnChangeSubmit: "useOnChangeSubmit", useButtonSubmit: "useButtonSubmit", useNormalizeCaseSensitive: "useNormalizeCaseSensitive" }, outputs: { result: "result", onFilter: "onFilter", onChange: "onChange", onSubmit: "onSubmit" }, viewQueries: [{ propertyName: "_formulario", first: true, predicate: ["_formulario"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div *ngIf=\"show_filters\" class=\"area-filter\">\n <ng-container *ngFor=\"let item of filters; let i = index\">\n\n <ng-container *ngIf=\"!item.type || (item.type && item.type !== 'boolean')\">\n \n <div class=\"box-filter-input type-{{item.type}}\" [style]=\"(item.width !== '') ? 'width:'+item.width : ''\">\n\n <ng-container *ngIf=\"item.type === 'datetime-local'\">\n <div class=\"m-description\"><i [class.to-active]=\"(
|
|
3516
|
+
TCloudUiFiltersComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: TCloudUiFiltersComponent, selector: "tcloud-ui-filters", inputs: { data: "data", filters: "filters", submitText: "submitText", btnSubmitClass: "btnSubmitClass", useOnChangeSubmit: "useOnChangeSubmit", useButtonSubmit: "useButtonSubmit", useNormalizeCaseSensitive: "useNormalizeCaseSensitive" }, outputs: { result: "result", onFilter: "onFilter", onChange: "onChange", onSubmit: "onSubmit" }, viewQueries: [{ propertyName: "_formulario", first: true, predicate: ["_formulario"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div *ngIf=\"show_filters\" class=\"area-filter\">\n <ng-container *ngFor=\"let item of filters; let i = index\">\n\n <ng-container *ngIf=\"!item.type || (item.type && item.type !== 'boolean')\">\n \n <div class=\"box-filter-input type-{{item.type}}\" [style]=\"(item.width !== '') ? 'width:'+item.width : ''\">\n\n <ng-container *ngIf=\"item.type === 'datetime-local'\">\n <div class=\"m-description\"><i [class.to-active]=\"(item.value !== undefined && item.value !== null && item.value !== '')\" class=\"fas fa-filter icon-filter\"></i> {{ item.description }}</div>\n <div>\n <tcloud-ui-datepicker-time #_input [(ngModel)]=\"item.value\" name=\"input_{{i+1}}\" (eventChange)=\"searchIn(item, _input, 'teste')\" ></tcloud-ui-datepicker-time>\n <button class=\"btn-clear-filter-text\" [class.to-hide]=\"!(item.value !== undefined && item.value !== null && item.value !== '')\" (click)=\"searchIn(item, null); item.searchText = undefined; item.value = ''\">\n <i class=\"fas fa-times\"></i>\n </button>\n </div> \n </ng-container>\n \n <ng-container *ngIf=\"item.type !== 'select' && item.type !== 'datetime-local'\">\n <div class=\"m-description\"><i [class.to-active]=\"_input.value !== ''\" class=\"fas fa-filter icon-filter\"></i> {{ item.description }}</div>\n <div>\n <input \n #_input\n [(ngModel)]=\"item.value\"\n placeholder=\"{{ (item.placeholder !== '') ? item.placeholder : '' }}\"\n name=\"input_{{i+1}}\" \n type=\"{{ (item.type === 'number') ? 'text' : item.type }}\" \n class=\"form-control tc-form-control\" \n (keyup)=\"searchIn(item, $event)\"> \n <button class=\"btn-clear-filter-text\" [class.to-hide]=\"_input.value === ''\" (click)=\"searchIn(item, null); _input.value = ''\">\n <i class=\"fas fa-times\"></i>\n </button>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"item.type === 'select' && item.data && (item.data).length > 0\" >\n <div class=\"m-description\"><i [class.to-active]=\"_input.value !== ''\" class=\"fas fa-filter icon-filter\"></i> {{ item.description }}</div>\n <div>\n <select \n #_input\n [(ngModel)]=\"item.value\"\n name=\"input_{{i+1}}\" \n class=\"form-control tc-form-control\" \n (change)=\"searchIn(item, $event)\">\n <option [ngValue]=\"\"></option>\n <ng-container *ngFor=\"let v of item.data\">\n <option [value]=\"v.value\">{{ v.description }}</option>\n </ng-container>\n </select>\n <!-- <button class=\"btn-clear-filter-text\" [class.to-hide]=\"_input.value === ''\" (click)=\"searchIn(item, null); _input.value = ''\">\n <i class=\"fas fa-times\"></i>\n </button> -->\n </div>\n </ng-container>\n\n </div>\n\n\n \n </ng-container>\n\n <ng-container *ngIf=\"item.type && item.type === 'boolean'\">\n \n <div class=\"box-filter-input\" [style]=\"(item.width !== '') ? 'width:'+item.width : ''\">\n <div class=\"m-description\"><i [class.to-active]=\"_input.checked === true\" class=\"fas fa-filter icon-filter\"></i> {{ item.description }}</div>\n <div class=\"area-input-checkbox\">\n <div class=\"form-control tc-form-control\">\n <label>\n {{ item.placeholder }}\n <input \n #_input\n placeholder=\"{{ (item.placeholder !== '') ? item.placeholder : '' }}\"\n name=\"input_{{i+1}}\" \n type=\"checkbox\" \n (change)=\"searchIn(item, _input.checked)\"> \n </label>\n </div> \n </div>\n </div>\n\n </ng-container>\n\n\n </ng-container>\n\n <div class=\"text-right mb-1 mr-1\" *ngIf=\"useButtonSubmit\">\n <button type=\"button\" class=\"tc-btn {{ btnSubmitClass }}\" (click)=\"toSubmit()\" >{{ submitText }}</button>\n </div>\n\n</div>\n\n<!-- <pre>{{ inputs | json }}</pre> -->\n <!-- <pre> {{ data | json }} </pre>\n\n<p>FILTERS</p>\n<pre> {{ filters | json }}</pre> -->", styles: [".box-filter-input{display:inline-grid;padding:10px 5px;position:relative}.area-filter{border:1px solid #eeeeee;border-radius:5px;margin-bottom:5px}.btn-clear-filter-text{position:absolute;right:8px;top:38px;background-color:#fff;border:none;cursor:pointer;color:#aaa}.to-hide{display:none}.icon-filter{color:#ccc}.to-active{color:var(--verde)}.area-input-checkbox label{cursor:pointer;margin-bottom:0;color:#9f9f9f}.m-description{margin-bottom:3px}input{color:#535353}.type-hidden{display:none;width:0px!important}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i2.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: TCloudUiDatepickerTimeComponent, selector: "tcloud-ui-datepicker-time", inputs: ["ngModel"], outputs: ["ngModelChange", "onChange", "eventChange"] }] });
|
|
3492
3517
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: TCloudUiFiltersComponent, decorators: [{
|
|
3493
3518
|
type: Component,
|
|
3494
|
-
args: [{ selector: 'tcloud-ui-filters', template: "<div *ngIf=\"show_filters\" class=\"area-filter\">\n <ng-container *ngFor=\"let item of filters; let i = index\">\n\n <ng-container *ngIf=\"!item.type || (item.type && item.type !== 'boolean')\">\n \n <div class=\"box-filter-input type-{{item.type}}\" [style]=\"(item.width !== '') ? 'width:'+item.width : ''\">\n\n <ng-container *ngIf=\"item.type === 'datetime-local'\">\n <div class=\"m-description\"><i [class.to-active]=\"(
|
|
3519
|
+
args: [{ selector: 'tcloud-ui-filters', template: "<div *ngIf=\"show_filters\" class=\"area-filter\">\n <ng-container *ngFor=\"let item of filters; let i = index\">\n\n <ng-container *ngIf=\"!item.type || (item.type && item.type !== 'boolean')\">\n \n <div class=\"box-filter-input type-{{item.type}}\" [style]=\"(item.width !== '') ? 'width:'+item.width : ''\">\n\n <ng-container *ngIf=\"item.type === 'datetime-local'\">\n <div class=\"m-description\"><i [class.to-active]=\"(item.value !== undefined && item.value !== null && item.value !== '')\" class=\"fas fa-filter icon-filter\"></i> {{ item.description }}</div>\n <div>\n <tcloud-ui-datepicker-time #_input [(ngModel)]=\"item.value\" name=\"input_{{i+1}}\" (eventChange)=\"searchIn(item, _input, 'teste')\" ></tcloud-ui-datepicker-time>\n <button class=\"btn-clear-filter-text\" [class.to-hide]=\"!(item.value !== undefined && item.value !== null && item.value !== '')\" (click)=\"searchIn(item, null); item.searchText = undefined; item.value = ''\">\n <i class=\"fas fa-times\"></i>\n </button>\n </div> \n </ng-container>\n \n <ng-container *ngIf=\"item.type !== 'select' && item.type !== 'datetime-local'\">\n <div class=\"m-description\"><i [class.to-active]=\"_input.value !== ''\" class=\"fas fa-filter icon-filter\"></i> {{ item.description }}</div>\n <div>\n <input \n #_input\n [(ngModel)]=\"item.value\"\n placeholder=\"{{ (item.placeholder !== '') ? item.placeholder : '' }}\"\n name=\"input_{{i+1}}\" \n type=\"{{ (item.type === 'number') ? 'text' : item.type }}\" \n class=\"form-control tc-form-control\" \n (keyup)=\"searchIn(item, $event)\"> \n <button class=\"btn-clear-filter-text\" [class.to-hide]=\"_input.value === ''\" (click)=\"searchIn(item, null); _input.value = ''\">\n <i class=\"fas fa-times\"></i>\n </button>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"item.type === 'select' && item.data && (item.data).length > 0\" >\n <div class=\"m-description\"><i [class.to-active]=\"_input.value !== ''\" class=\"fas fa-filter icon-filter\"></i> {{ item.description }}</div>\n <div>\n <select \n #_input\n [(ngModel)]=\"item.value\"\n name=\"input_{{i+1}}\" \n class=\"form-control tc-form-control\" \n (change)=\"searchIn(item, $event)\">\n <option [ngValue]=\"\"></option>\n <ng-container *ngFor=\"let v of item.data\">\n <option [value]=\"v.value\">{{ v.description }}</option>\n </ng-container>\n </select>\n <!-- <button class=\"btn-clear-filter-text\" [class.to-hide]=\"_input.value === ''\" (click)=\"searchIn(item, null); _input.value = ''\">\n <i class=\"fas fa-times\"></i>\n </button> -->\n </div>\n </ng-container>\n\n </div>\n\n\n \n </ng-container>\n\n <ng-container *ngIf=\"item.type && item.type === 'boolean'\">\n \n <div class=\"box-filter-input\" [style]=\"(item.width !== '') ? 'width:'+item.width : ''\">\n <div class=\"m-description\"><i [class.to-active]=\"_input.checked === true\" class=\"fas fa-filter icon-filter\"></i> {{ item.description }}</div>\n <div class=\"area-input-checkbox\">\n <div class=\"form-control tc-form-control\">\n <label>\n {{ item.placeholder }}\n <input \n #_input\n placeholder=\"{{ (item.placeholder !== '') ? item.placeholder : '' }}\"\n name=\"input_{{i+1}}\" \n type=\"checkbox\" \n (change)=\"searchIn(item, _input.checked)\"> \n </label>\n </div> \n </div>\n </div>\n\n </ng-container>\n\n\n </ng-container>\n\n <div class=\"text-right mb-1 mr-1\" *ngIf=\"useButtonSubmit\">\n <button type=\"button\" class=\"tc-btn {{ btnSubmitClass }}\" (click)=\"toSubmit()\" >{{ submitText }}</button>\n </div>\n\n</div>\n\n<!-- <pre>{{ inputs | json }}</pre> -->\n <!-- <pre> {{ data | json }} </pre>\n\n<p>FILTERS</p>\n<pre> {{ filters | json }}</pre> -->", styles: [".box-filter-input{display:inline-grid;padding:10px 5px;position:relative}.area-filter{border:1px solid #eeeeee;border-radius:5px;margin-bottom:5px}.btn-clear-filter-text{position:absolute;right:8px;top:38px;background-color:#fff;border:none;cursor:pointer;color:#aaa}.to-hide{display:none}.icon-filter{color:#ccc}.to-active{color:var(--verde)}.area-input-checkbox label{cursor:pointer;margin-bottom:0;color:#9f9f9f}.m-description{margin-bottom:3px}input{color:#535353}.type-hidden{display:none;width:0px!important}\n"] }]
|
|
3495
3520
|
}], ctorParameters: function () { return [{ type: i1.DatePipe }]; }, propDecorators: { _formulario: [{
|
|
3496
3521
|
type: ViewChild,
|
|
3497
3522
|
args: ['_formulario']
|
|
@@ -3501,6 +3526,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
3501
3526
|
type: Input
|
|
3502
3527
|
}], submitText: [{
|
|
3503
3528
|
type: Input
|
|
3529
|
+
}], btnSubmitClass: [{
|
|
3530
|
+
type: Input
|
|
3504
3531
|
}], useOnChangeSubmit: [{
|
|
3505
3532
|
type: Input
|
|
3506
3533
|
}], useButtonSubmit: [{
|
|
@@ -3577,9 +3604,11 @@ class TCloudUiFiltersModule {
|
|
|
3577
3604
|
TCloudUiFiltersModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: TCloudUiFiltersModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3578
3605
|
TCloudUiFiltersModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: TCloudUiFiltersModule, declarations: [TCloudUiFiltersComponent], imports: [CommonModule,
|
|
3579
3606
|
FormsModule,
|
|
3607
|
+
ReactiveFormsModule,
|
|
3580
3608
|
TCloudUiDatepickerTimeModule], exports: [TCloudUiFiltersComponent] });
|
|
3581
3609
|
TCloudUiFiltersModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: TCloudUiFiltersModule, imports: [CommonModule,
|
|
3582
3610
|
FormsModule,
|
|
3611
|
+
ReactiveFormsModule,
|
|
3583
3612
|
TCloudUiDatepickerTimeModule] });
|
|
3584
3613
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: TCloudUiFiltersModule, decorators: [{
|
|
3585
3614
|
type: NgModule,
|
|
@@ -3593,6 +3622,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
3593
3622
|
imports: [
|
|
3594
3623
|
CommonModule,
|
|
3595
3624
|
FormsModule,
|
|
3625
|
+
ReactiveFormsModule,
|
|
3596
3626
|
TCloudUiDatepickerTimeModule
|
|
3597
3627
|
]
|
|
3598
3628
|
}]
|