@smartsoft001/crud-shell-angular 1.1.653 → 1.1.664
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/smartsoft001-crud-shell-angular.umd.js +133 -24
- package/bundles/smartsoft001-crud-shell-angular.umd.js.map +1 -1
- package/esm2015/lib/+state/crud.selectors.js +1 -1
- package/esm2015/lib/components/components.module.js +7 -6
- package/esm2015/lib/components/filter/base/base.component.js +35 -9
- package/esm2015/lib/components/filter/date/date.component.js +21 -1
- package/esm2015/lib/components/filter/date-with-edit/date-with-edit.component.js +3 -2
- package/esm2015/lib/components/filter/filter.component.js +2 -2
- package/esm2015/lib/components/filter/index.js +2 -1
- package/esm2015/lib/components/filter/int/int.component.js +31 -0
- package/esm2015/lib/components/filters/filters.component.js +4 -3
- package/esm2015/lib/crud-full.module.js +4 -4
- package/esm2015/smartsoft001-crud-shell-angular.js +11 -11
- package/fesm2015/smartsoft001-crud-shell-angular.js +96 -19
- package/fesm2015/smartsoft001-crud-shell-angular.js.map +1 -1
- package/lib/+state/crud.selectors.d.ts +9 -9
- package/lib/+state/crud.selectors.d.ts.map +1 -1
- package/lib/components/components.module.d.ts.map +1 -1
- package/lib/components/components.module.ngfactory.d.ts.map +1 -1
- package/lib/components/filter/base/base.component.d.ts +5 -1
- package/lib/components/filter/base/base.component.d.ts.map +1 -1
- package/lib/components/filter/date/date.component.d.ts +5 -0
- package/lib/components/filter/date/date.component.d.ts.map +1 -1
- package/lib/components/filter/date-with-edit/date-with-edit.component.d.ts +1 -0
- package/lib/components/filter/date-with-edit/date-with-edit.component.d.ts.map +1 -1
- package/lib/components/filter/index.d.ts +1 -0
- package/lib/components/filter/index.d.ts.map +1 -1
- package/lib/components/filter/int/int.component.d.ts +11 -0
- package/lib/components/filter/int/int.component.d.ts.map +1 -0
- package/lib/components/filter/int/int.component.ngfactory.d.ts.map +1 -0
- package/lib/components/filter/int/int.component.scss.shim.ngstyle.d.ts.map +1 -0
- package/lib/components/filters/filters.component.d.ts.map +1 -1
- package/lib/crud-full.module.ngfactory.d.ts.map +1 -1
- package/lib/crud.module.ngfactory.d.ts.map +1 -1
- package/package.json +8 -7
- package/smartsoft001-crud-shell-angular.d.ts +10 -10
- package/smartsoft001-crud-shell-angular.d.ts.map +1 -1
- package/smartsoft001-crud-shell-angular.metadata.json +1 -1
|
@@ -403,7 +403,7 @@ class FilterComponent {
|
|
|
403
403
|
FilterComponent.decorators = [
|
|
404
404
|
{ type: Component, args: [{
|
|
405
405
|
selector: "smart-crud-filter",
|
|
406
|
-
template: "<ion-item [ngSwitch]=\"item.fieldType\">\n <smart-crud-filter-date\n *ngSwitchCase=\"FieldType.date\"\n [item]=\"item\"\n [filter]=\"filter\"\n ></smart-crud-filter-date>\n\n <smart-crud-filter-date-with-edit\n *ngSwitchCase=\"FieldType.dateWithEdit\"\n [item]=\"item\"\n [filter]=\"filter\"\n ></smart-crud-filter-date-with-edit>\n\n <smart-crud-filter-radio\n *ngSwitchCase=\"FieldType.radio\"\n [item]=\"item\"\n [filter]=\"filter\"\n ></smart-crud-filter-radio>\n\n <smart-crud-filter-check\n *ngSwitchCase=\"FieldType.check\"\n [item]=\"item\"\n [filter]=\"filter\"\n ></smart-crud-filter-check>\n\n <smart-crud-filter-flag\n *ngSwitchCase=\"FieldType.flag\"\n [item]=\"item\"\n [filter]=\"filter\"\n ></smart-crud-filter-flag>\n\n <smart-crud-filter-text\n *ngSwitchDefault\n [item]=\"item\"\n [filter]=\"filter\"\n ></smart-crud-filter-text>\n</ion-item>\n",
|
|
406
|
+
template: "<ion-item [ngSwitch]=\"item.fieldType\">\n <smart-crud-filter-date\n *ngSwitchCase=\"FieldType.date\"\n [item]=\"item\"\n [filter]=\"filter\"\n ></smart-crud-filter-date>\n\n <smart-crud-filter-date-with-edit\n *ngSwitchCase=\"FieldType.dateWithEdit\"\n [item]=\"item\"\n [filter]=\"filter\"\n ></smart-crud-filter-date-with-edit>\n\n <smart-crud-filter-radio\n *ngSwitchCase=\"FieldType.radio\"\n [item]=\"item\"\n [filter]=\"filter\"\n ></smart-crud-filter-radio>\n\n <smart-crud-filter-check\n *ngSwitchCase=\"FieldType.check\"\n [item]=\"item\"\n [filter]=\"filter\"\n ></smart-crud-filter-check>\n\n <smart-crud-filter-flag\n *ngSwitchCase=\"FieldType.flag\"\n [item]=\"item\"\n [filter]=\"filter\"\n ></smart-crud-filter-flag>\n\n <smart-crud-filter-int\n *ngSwitchCase=\"FieldType.int\"\n [item]=\"item\"\n [filter]=\"filter\"\n ></smart-crud-filter-int>\n\n <smart-crud-filter-text\n *ngSwitchDefault\n [item]=\"item\"\n [filter]=\"filter\"\n ></smart-crud-filter-text>\n</ion-item>\n",
|
|
407
407
|
styles: [""]
|
|
408
408
|
},] }
|
|
409
409
|
];
|
|
@@ -449,12 +449,38 @@ class BaseComponent {
|
|
|
449
449
|
set value(val) {
|
|
450
450
|
this.refresh(val);
|
|
451
451
|
}
|
|
452
|
-
|
|
452
|
+
get minValue() {
|
|
453
453
|
if (this.isArrayType()) {
|
|
454
|
-
this.
|
|
454
|
+
return this.filter.query
|
|
455
|
+
.filter((q) => q.key === this.item.key && q.type === "<=")
|
|
456
|
+
.map(q => q.value);
|
|
457
|
+
}
|
|
458
|
+
const query = this.filter.query.find((q) => q.key === this.item.key && q.type === "<=");
|
|
459
|
+
return query === null || query === void 0 ? void 0 : query.value;
|
|
460
|
+
}
|
|
461
|
+
set minValue(val) {
|
|
462
|
+
this.refresh(val, "<=");
|
|
463
|
+
}
|
|
464
|
+
get maxValue() {
|
|
465
|
+
if (this.isArrayType()) {
|
|
466
|
+
return this.filter.query
|
|
467
|
+
.filter((q) => q.key === this.item.key && q.type === ">=")
|
|
468
|
+
.map(q => q.value);
|
|
469
|
+
}
|
|
470
|
+
const query = this.filter.query.find((q) => q.key === this.item.key && q.type === ">=");
|
|
471
|
+
return query === null || query === void 0 ? void 0 : query.value;
|
|
472
|
+
}
|
|
473
|
+
set maxValue(val) {
|
|
474
|
+
this.refresh(val, ">=");
|
|
475
|
+
}
|
|
476
|
+
refresh(val, type = null) {
|
|
477
|
+
if (!type)
|
|
478
|
+
type = this.item.type;
|
|
479
|
+
if (this.isArrayType()) {
|
|
480
|
+
this.refreshForArray(val, type);
|
|
455
481
|
return;
|
|
456
482
|
}
|
|
457
|
-
let query = this.filter.query.find((q) => q.key === this.item.key && q.type ===
|
|
483
|
+
let query = this.filter.query.find((q) => q.key === this.item.key && q.type === type);
|
|
458
484
|
if (val === null || val === undefined || val === '') {
|
|
459
485
|
const index = this.filter.query.indexOf(query);
|
|
460
486
|
if (index > -1) {
|
|
@@ -466,7 +492,7 @@ class BaseComponent {
|
|
|
466
492
|
if (!query) {
|
|
467
493
|
query = {
|
|
468
494
|
key: this.item.key,
|
|
469
|
-
type:
|
|
495
|
+
type: type,
|
|
470
496
|
value: null,
|
|
471
497
|
};
|
|
472
498
|
this.filter.query.push(query);
|
|
@@ -491,8 +517,8 @@ class BaseComponent {
|
|
|
491
517
|
var _a;
|
|
492
518
|
return (((_a = this.item) === null || _a === void 0 ? void 0 : _a.fieldType) === FieldType.check);
|
|
493
519
|
}
|
|
494
|
-
refreshForArray(vals) {
|
|
495
|
-
const queries = this.filter.query.filter((q) => q.key === this.item.key && q.type ===
|
|
520
|
+
refreshForArray(vals, type) {
|
|
521
|
+
const queries = this.filter.query.filter((q) => q.key === this.item.key && q.type === type);
|
|
496
522
|
queries.forEach(query => {
|
|
497
523
|
const index = this.filter.query.indexOf(query);
|
|
498
524
|
if (index > -1) {
|
|
@@ -506,7 +532,7 @@ class BaseComponent {
|
|
|
506
532
|
vals.forEach(val => {
|
|
507
533
|
const query = {
|
|
508
534
|
key: this.item.key,
|
|
509
|
-
type:
|
|
535
|
+
type: type,
|
|
510
536
|
value: val,
|
|
511
537
|
};
|
|
512
538
|
this.filter.query.push(query);
|
|
@@ -538,11 +564,15 @@ BaseComponent.propDecorators = {
|
|
|
538
564
|
__decorate([
|
|
539
565
|
Debounce(500),
|
|
540
566
|
__metadata("design:type", Function),
|
|
541
|
-
__metadata("design:paramtypes", [Object]),
|
|
567
|
+
__metadata("design:paramtypes", [Object, Object]),
|
|
542
568
|
__metadata("design:returntype", void 0)
|
|
543
569
|
], BaseComponent.prototype, "refresh", null);
|
|
544
570
|
|
|
545
571
|
class FilterDateComponent extends BaseComponent {
|
|
572
|
+
get allowAdvanced() {
|
|
573
|
+
var _a;
|
|
574
|
+
return ((_a = this.item) === null || _a === void 0 ? void 0 : _a.type) === '=';
|
|
575
|
+
}
|
|
546
576
|
set customValue(val) {
|
|
547
577
|
var _a;
|
|
548
578
|
const momentDate = moment(val);
|
|
@@ -551,6 +581,22 @@ class FilterDateComponent extends BaseComponent {
|
|
|
551
581
|
get customValue() {
|
|
552
582
|
return this.value;
|
|
553
583
|
}
|
|
584
|
+
set customMinValue(val) {
|
|
585
|
+
var _a;
|
|
586
|
+
const momentDate = moment(val);
|
|
587
|
+
this.minValue = ((_a = val) === null || _a === void 0 ? void 0 : _a.length) >= 10 && momentDate.isValid() ? momentDate.format('YYYY-MM-DD') : val;
|
|
588
|
+
}
|
|
589
|
+
get customMinValue() {
|
|
590
|
+
return this.minValue;
|
|
591
|
+
}
|
|
592
|
+
set customMaxValue(val) {
|
|
593
|
+
var _a;
|
|
594
|
+
const momentDate = moment(val);
|
|
595
|
+
this.maxValue = ((_a = val) === null || _a === void 0 ? void 0 : _a.length) >= 10 && momentDate.isValid() ? momentDate.format('YYYY-MM-DD') : val;
|
|
596
|
+
}
|
|
597
|
+
get customMaxValue() {
|
|
598
|
+
return this.maxValue;
|
|
599
|
+
}
|
|
554
600
|
}
|
|
555
601
|
/** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
|
|
556
602
|
FilterDateComponent.decorators = [
|
|
@@ -565,6 +611,7 @@ class FilterDateWithEditComponent extends FilterDateComponent {
|
|
|
565
611
|
constructor() {
|
|
566
612
|
super(...arguments);
|
|
567
613
|
this._subscriptions = new Subscription();
|
|
614
|
+
this.advanced = false;
|
|
568
615
|
}
|
|
569
616
|
open() {
|
|
570
617
|
this.dateTimePicker.open();
|
|
@@ -590,7 +637,7 @@ class FilterDateWithEditComponent extends FilterDateComponent {
|
|
|
590
637
|
FilterDateWithEditComponent.decorators = [
|
|
591
638
|
{ type: Component, args: [{
|
|
592
639
|
selector: 'smart-crud-filter-date-with-edit',
|
|
593
|
-
template: "<ion-row>\n <ion-col>\n <ion-label
|
|
640
|
+
template: "<ion-row>\n <ion-col>\n <ion-label>\n {{ item.label | translate }}\n </ion-label>\n\n <ion-input placeholder=\"YYYY-MM-DD\"\n [(ngModel)]=\"customValue\"\n [pattern]=\"'([12]\\\\d{3}-(0[1-9]|1[0-2])-(0[1-9]|[12]\\\\d|3[01]))'\"\n ></ion-input>\n <ion-datetime [hidden]=\"true\"\n displayFormat=\"YYYY-MM-DD\"\n pickerFormat=\"YYYY-MM-DD\"\n [(ngModel)]=\"customValue\"></ion-datetime>\n </ion-col>\n <ion-col size=\"auto\">\n <ion-button (click)=\"open()\" class=\"squere-button\">\n <ion-icon slot=\"icon-only\" name=\"calendar-outline\"></ion-icon>\n </ion-button>\n </ion-col>\n <ion-col size=\"auto\" *ngIf=\"allowAdvanced\">\n <ion-button (click)=\"advanced = !advanced\" class=\"squere-button\" [disabled]=\"minValue || maxValue\">\n <ion-icon *ngIf=\"!advanced\" slot=\"icon-only\" name=\"settings-outline\"></ion-icon>\n <ion-icon *ngIf=\"advanced\" slot=\"icon-only\" name=\"settings\"></ion-icon>\n </ion-button>\n </ion-col>\n <ion-col size=\"auto\" *ngIf=\"value\">\n <ion-button color=\"danger\" (click)=\"refresh(null)\" class=\"squere-button\">\n <ion-icon slot=\"icon-only\" name=\"close-outline\"></ion-icon>\n </ion-button>\n </ion-col>\n</ion-row>\n<ion-row *ngIf=\"(advanced || minValue || maxValue) && allowAdvanced\">\n <ion-col>\n <ion-item>\n <ion-label>\n {{ 'from' | translate }}\n </ion-label>\n <ion-input placeholder=\"YYYY-MM-DD\"\n [(ngModel)]=\"customMinValue\"\n [pattern]=\"'([12]\\\\d{3}-(0[1-9]|1[0-2])-(0[1-9]|[12]\\\\d|3[01]))'\"\n ></ion-input>\n <ion-datetime [hidden]=\"true\"\n [(ngModel)]=\"customMinValue\"\n displayFormat=\"YYYY-MM-DD\"\n pickerFormat=\"YYYY-MM-DD\"></ion-datetime>\n </ion-item>\n </ion-col>\n <ion-col size=\"auto\" *ngIf=\"customMinValue\">\n <ion-button color=\"danger\" (click)=\"refresh(null, '<=')\" class=\"squere-button\">\n <ion-icon slot=\"icon-only\" name=\"close-outline\"></ion-icon>\n </ion-button>\n </ion-col>\n <ion-col>\n <ion-item>\n <ion-label>\n {{ 'to' | translate }}\n </ion-label>\n <ion-input placeholder=\"YYYY-MM-DD\"\n [(ngModel)]=\"customMaxValue\"\n [pattern]=\"'([12]\\\\d{3}-(0[1-9]|1[0-2])-(0[1-9]|[12]\\\\d|3[01]))'\"\n ></ion-input>\n <ion-datetime [hidden]=\"true\"\n displayFormat=\"YYYY-MM-DD\"\n pickerFormat=\"YYYY-MM-DD\"\n [(ngModel)]=\"customMaxValue\"></ion-datetime>\n </ion-item>\n </ion-col>\n <ion-col size=\"auto\" *ngIf=\"customMaxValue\">\n <ion-button color=\"danger\" (click)=\"refresh(null, '>=')\" class=\"squere-button\">\n <ion-icon slot=\"icon-only\" name=\"close-outline\"></ion-icon>\n </ion-button>\n </ion-col>\n</ion-row>",
|
|
594
641
|
styles: [":host{width:100%}:host .squere-button{height:var(--smart-button-height)!important;margin:.8rem}\n"]
|
|
595
642
|
},] }
|
|
596
643
|
];
|
|
@@ -662,6 +709,34 @@ FilterCheckComponent.decorators = [
|
|
|
662
709
|
},] }
|
|
663
710
|
];
|
|
664
711
|
|
|
712
|
+
class FilterIntComponent extends BaseComponent {
|
|
713
|
+
constructor() {
|
|
714
|
+
super(...arguments);
|
|
715
|
+
this._subscriptions = new Subscription();
|
|
716
|
+
this.advanced = false;
|
|
717
|
+
}
|
|
718
|
+
get allowAdvanced() {
|
|
719
|
+
var _a;
|
|
720
|
+
return ((_a = this.item) === null || _a === void 0 ? void 0 : _a.type) === '=';
|
|
721
|
+
}
|
|
722
|
+
ngOnInit() {
|
|
723
|
+
super.ngOnInit();
|
|
724
|
+
}
|
|
725
|
+
ngOnDestroy() {
|
|
726
|
+
if (this._subscriptions) {
|
|
727
|
+
this._subscriptions.unsubscribe();
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
}
|
|
731
|
+
/** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
|
|
732
|
+
FilterIntComponent.decorators = [
|
|
733
|
+
{ type: Component, args: [{
|
|
734
|
+
selector: 'smart-crud-filter-int',
|
|
735
|
+
template: "<ion-row>\n <ion-col>\n <ion-label>\n {{ item.label | translate }}\n </ion-label>\n <ion-input [(ngModel)]=\"value\" type=\"number\" step=\"1\"></ion-input>\n </ion-col>\n <ion-col size=\"auto\" *ngIf=\"allowAdvanced\">\n <ion-button (click)=\"advanced = !advanced\" class=\"squere-button\" [disabled]=\"minValue || maxValue\">\n <ion-icon *ngIf=\"!advanced\" slot=\"icon-only\" name=\"settings-outline\"></ion-icon>\n <ion-icon *ngIf=\"advanced\" slot=\"icon-only\" name=\"settings\"></ion-icon>\n </ion-button>\n </ion-col>\n <ion-col size=\"auto\" *ngIf=\"value\">\n <ion-button color=\"danger\" (click)=\"refresh(null)\" class=\"squere-button\">\n <ion-icon slot=\"icon-only\" name=\"close-outline\"></ion-icon>\n </ion-button>\n </ion-col>\n</ion-row>\n<ion-row *ngIf=\"(advanced || minValue || maxValue) && allowAdvanced\">\n <ion-col>\n <ion-item>\n <ion-label>\n {{ 'from' | translate }}\n </ion-label>\n <ion-input [(ngModel)]=\"minValue\" type=\"number\" step=\"1\"></ion-input>\n </ion-item>\n </ion-col>\n <ion-col size=\"auto\" *ngIf=\"minValue\">\n <ion-button color=\"danger\" (click)=\"refresh(null, '<=')\" class=\"squere-button\">\n <ion-icon slot=\"icon-only\" name=\"close-outline\"></ion-icon>\n </ion-button>\n </ion-col>\n <ion-col>\n <ion-item>\n <ion-label>\n {{ 'to' | translate }}\n </ion-label>\n <ion-input [(ngModel)]=\"maxValue\" type=\"number\" step=\"1\"></ion-input>\n </ion-item>\n </ion-col>\n <ion-col size=\"auto\" *ngIf=\"maxValue\">\n <ion-button color=\"danger\" (click)=\"refresh(null, '>=')\" class=\"squere-button\">\n <ion-icon slot=\"icon-only\" name=\"close-outline\"></ion-icon>\n </ion-button>\n </ion-col>\n</ion-row>",
|
|
736
|
+
styles: [":host{width:100%}:host .squere-button{height:var(--smart-button-height)!important;margin:.8rem}\n"]
|
|
737
|
+
},] }
|
|
738
|
+
];
|
|
739
|
+
|
|
665
740
|
/**
|
|
666
741
|
* This component is only to use in crud module
|
|
667
742
|
* @requires CrudModule
|
|
@@ -744,7 +819,8 @@ class FiltersComponent {
|
|
|
744
819
|
.filter(item => { var _a, _b; return (_b = (_a = item.options) === null || _a === void 0 ? void 0 : _a.list) === null || _b === void 0 ? void 0 : _b.filter; })
|
|
745
820
|
.map(item => ({
|
|
746
821
|
key: item.key,
|
|
747
|
-
type:
|
|
822
|
+
type: item.options.type === FieldType.text || item.options.type === FieldType.longText
|
|
823
|
+
? '~=' : '=',
|
|
748
824
|
label: 'MODEL.' + item.key,
|
|
749
825
|
fieldType: item.options.type
|
|
750
826
|
}))
|
|
@@ -1406,6 +1482,7 @@ const COMPONENTS = [
|
|
|
1406
1482
|
FiltersComponent,
|
|
1407
1483
|
FilterFlagComponent,
|
|
1408
1484
|
FilterCheckComponent,
|
|
1485
|
+
FilterIntComponent,
|
|
1409
1486
|
MultiselectComponent,
|
|
1410
1487
|
GroupComponent
|
|
1411
1488
|
];
|
|
@@ -1417,9 +1494,6 @@ CrudComponentsModule.decorators = [
|
|
|
1417
1494
|
declarations: [
|
|
1418
1495
|
...COMPONENTS
|
|
1419
1496
|
],
|
|
1420
|
-
entryComponents: [
|
|
1421
|
-
...COMPONENTS
|
|
1422
|
-
],
|
|
1423
1497
|
imports: [
|
|
1424
1498
|
//AuthSharedModule,
|
|
1425
1499
|
StoreModule,
|
|
@@ -1432,13 +1506,16 @@ CrudComponentsModule.decorators = [
|
|
|
1432
1506
|
CrudPipesModule,
|
|
1433
1507
|
...COMPONENTS
|
|
1434
1508
|
],
|
|
1509
|
+
entryComponents: [
|
|
1510
|
+
...COMPONENTS
|
|
1511
|
+
],
|
|
1435
1512
|
providers: [
|
|
1436
1513
|
CrudService,
|
|
1437
1514
|
CrudEffects,
|
|
1438
1515
|
CrudFacade,
|
|
1439
1516
|
SocketService,
|
|
1440
1517
|
CrudListPaginationFactory,
|
|
1441
|
-
]
|
|
1518
|
+
]
|
|
1442
1519
|
},] }
|
|
1443
1520
|
];
|
|
1444
1521
|
|
|
@@ -2342,9 +2419,6 @@ CrudFullModule.decorators = [
|
|
|
2342
2419
|
declarations: [
|
|
2343
2420
|
...PAGES
|
|
2344
2421
|
],
|
|
2345
|
-
entryComponents: [
|
|
2346
|
-
...PAGES
|
|
2347
|
-
],
|
|
2348
2422
|
imports: [
|
|
2349
2423
|
StoreModule,
|
|
2350
2424
|
SharedModule,
|
|
@@ -2362,6 +2436,9 @@ CrudFullModule.decorators = [
|
|
|
2362
2436
|
...PAGES,
|
|
2363
2437
|
CrudComponentsModule
|
|
2364
2438
|
],
|
|
2439
|
+
entryComponents: [
|
|
2440
|
+
...PAGES
|
|
2441
|
+
],
|
|
2365
2442
|
providers: [
|
|
2366
2443
|
CrudService,
|
|
2367
2444
|
PageService,
|
|
@@ -2454,5 +2531,5 @@ CrudModule.decorators = [
|
|
|
2454
2531
|
* Generated bundle index. Do not edit.
|
|
2455
2532
|
*/
|
|
2456
2533
|
|
|
2457
|
-
export { CRUD_MODEL_POSSIBILITIES_PROVIDER, CrudComponentsModule, CrudConfig, CrudCoreModule, CrudEffects, CrudFacade, CrudFullConfig, CrudFullModule, CrudItemPageBaseComponent, CrudListPageBaseComponent, CrudListPaginationFactory, CrudModule, CrudPipesModule, CrudSearchService, CrudService, ExportComponent, FilterCheckComponent, FilterComponent, FilterDateComponent, FilterDateWithEditComponent, FilterFlagComponent, FilterRadioComponent, FilterTextComponent, FiltersComponent, FiltersConfigComponent, FormOptionsPipe, GroupComponent, ICrudModelPossibilitiesProvider, MultiselectComponent, PageService, create, createFailure, createMany, createManyFailure, createManySuccess, createSuccess, deleteFailure, deleteItem, deleteSuccess, exportList, exportListFailure, exportListSuccess, getCrudError, getCrudFilter, getCrudLinks, getCrudList, getCrudLoaded, getCrudMultiSelected, getCrudSelected, getCrudState, getCrudTotalCount, getReducer, initialState, multiSelect, read, readFailure, readSuccess, select, selectFailure, selectSuccess, unselect, update, updateFailure, updatePartial, updatePartialFailure, updatePartialMany, updatePartialManyFailure, updatePartialManySuccess, updatePartialSuccess, updateSuccess, ɵ0, CrudPipesModule as ɵa, FormOptionsPipe as ɵb, CrudComponentsModule as ɵc, ExportComponent as ɵd, FilterComponent as ɵe, FilterTextComponent as ɵf, FiltersConfigComponent as ɵg, FilterDateComponent as ɵh, FilterDateWithEditComponent as ɵi, FilterRadioComponent as ɵj, FiltersComponent as ɵk, FilterFlagComponent as ɵl, FilterCheckComponent as ɵm,
|
|
2534
|
+
export { CRUD_MODEL_POSSIBILITIES_PROVIDER, CrudComponentsModule, CrudConfig, CrudCoreModule, CrudEffects, CrudFacade, CrudFullConfig, CrudFullModule, CrudItemPageBaseComponent, CrudListPageBaseComponent, CrudListPaginationFactory, CrudModule, CrudPipesModule, CrudSearchService, CrudService, ExportComponent, FilterCheckComponent, FilterComponent, FilterDateComponent, FilterDateWithEditComponent, FilterFlagComponent, FilterIntComponent, FilterRadioComponent, FilterTextComponent, FiltersComponent, FiltersConfigComponent, FormOptionsPipe, GroupComponent, ICrudModelPossibilitiesProvider, MultiselectComponent, PageService, create, createFailure, createMany, createManyFailure, createManySuccess, createSuccess, deleteFailure, deleteItem, deleteSuccess, exportList, exportListFailure, exportListSuccess, getCrudError, getCrudFilter, getCrudLinks, getCrudList, getCrudLoaded, getCrudMultiSelected, getCrudSelected, getCrudState, getCrudTotalCount, getReducer, initialState, multiSelect, read, readFailure, readSuccess, select, selectFailure, selectSuccess, unselect, update, updateFailure, updatePartial, updatePartialFailure, updatePartialMany, updatePartialManyFailure, updatePartialManySuccess, updatePartialSuccess, updateSuccess, ɵ0, CrudPipesModule as ɵa, FormOptionsPipe as ɵb, CrudComponentsModule as ɵc, ExportComponent as ɵd, FilterComponent as ɵe, FilterTextComponent as ɵf, FiltersConfigComponent as ɵg, FilterDateComponent as ɵh, FilterDateWithEditComponent as ɵi, FilterRadioComponent as ɵj, FiltersComponent as ɵk, FilterFlagComponent as ɵl, FilterCheckComponent as ɵm, FilterIntComponent as ɵn, MultiselectComponent as ɵo, GroupComponent as ɵp, SocketService as ɵq, NotSocketService as ɵr, ItemComponent as ɵs, ItemStandardComponent as ɵt, CrudItemPageBaseComponent as ɵu, ListComponent as ɵv, ListStandardComponent as ɵw, CrudListPageBaseComponent as ɵx };
|
|
2458
2535
|
//# sourceMappingURL=smartsoft001-crud-shell-angular.js.map
|