@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
|
@@ -744,7 +744,7 @@
|
|
|
744
744
|
FilterComponent.decorators = [
|
|
745
745
|
{ type: i0.Component, args: [{
|
|
746
746
|
selector: "smart-crud-filter",
|
|
747
|
-
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",
|
|
747
|
+
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",
|
|
748
748
|
styles: [""]
|
|
749
749
|
},] }
|
|
750
750
|
];
|
|
@@ -798,13 +798,50 @@
|
|
|
798
798
|
enumerable: false,
|
|
799
799
|
configurable: true
|
|
800
800
|
});
|
|
801
|
-
BaseComponent.prototype
|
|
801
|
+
Object.defineProperty(BaseComponent.prototype, "minValue", {
|
|
802
|
+
get: function () {
|
|
803
|
+
var _this = this;
|
|
804
|
+
if (this.isArrayType()) {
|
|
805
|
+
return this.filter.query
|
|
806
|
+
.filter(function (q) { return q.key === _this.item.key && q.type === "<="; })
|
|
807
|
+
.map(function (q) { return q.value; });
|
|
808
|
+
}
|
|
809
|
+
var query = this.filter.query.find(function (q) { return q.key === _this.item.key && q.type === "<="; });
|
|
810
|
+
return query === null || query === void 0 ? void 0 : query.value;
|
|
811
|
+
},
|
|
812
|
+
set: function (val) {
|
|
813
|
+
this.refresh(val, "<=");
|
|
814
|
+
},
|
|
815
|
+
enumerable: false,
|
|
816
|
+
configurable: true
|
|
817
|
+
});
|
|
818
|
+
Object.defineProperty(BaseComponent.prototype, "maxValue", {
|
|
819
|
+
get: function () {
|
|
820
|
+
var _this = this;
|
|
821
|
+
if (this.isArrayType()) {
|
|
822
|
+
return this.filter.query
|
|
823
|
+
.filter(function (q) { return q.key === _this.item.key && q.type === ">="; })
|
|
824
|
+
.map(function (q) { return q.value; });
|
|
825
|
+
}
|
|
826
|
+
var query = this.filter.query.find(function (q) { return q.key === _this.item.key && q.type === ">="; });
|
|
827
|
+
return query === null || query === void 0 ? void 0 : query.value;
|
|
828
|
+
},
|
|
829
|
+
set: function (val) {
|
|
830
|
+
this.refresh(val, ">=");
|
|
831
|
+
},
|
|
832
|
+
enumerable: false,
|
|
833
|
+
configurable: true
|
|
834
|
+
});
|
|
835
|
+
BaseComponent.prototype.refresh = function (val, type) {
|
|
802
836
|
var _this = this;
|
|
837
|
+
if (type === void 0) { type = null; }
|
|
838
|
+
if (!type)
|
|
839
|
+
type = this.item.type;
|
|
803
840
|
if (this.isArrayType()) {
|
|
804
|
-
this.refreshForArray(val);
|
|
841
|
+
this.refreshForArray(val, type);
|
|
805
842
|
return;
|
|
806
843
|
}
|
|
807
|
-
var query = this.filter.query.find(function (q) { return q.key === _this.item.key && q.type ===
|
|
844
|
+
var query = this.filter.query.find(function (q) { return q.key === _this.item.key && q.type === type; });
|
|
808
845
|
if (val === null || val === undefined || val === '') {
|
|
809
846
|
var index = this.filter.query.indexOf(query);
|
|
810
847
|
if (index > -1) {
|
|
@@ -816,7 +853,7 @@
|
|
|
816
853
|
if (!query) {
|
|
817
854
|
query = {
|
|
818
855
|
key: this.item.key,
|
|
819
|
-
type:
|
|
856
|
+
type: type,
|
|
820
857
|
value: null,
|
|
821
858
|
};
|
|
822
859
|
this.filter.query.push(query);
|
|
@@ -841,9 +878,9 @@
|
|
|
841
878
|
var _a;
|
|
842
879
|
return (((_a = this.item) === null || _a === void 0 ? void 0 : _a.fieldType) === models.FieldType.check);
|
|
843
880
|
};
|
|
844
|
-
BaseComponent.prototype.refreshForArray = function (vals) {
|
|
881
|
+
BaseComponent.prototype.refreshForArray = function (vals, type) {
|
|
845
882
|
var _this = this;
|
|
846
|
-
var queries = this.filter.query.filter(function (q) { return q.key === _this.item.key && q.type ===
|
|
883
|
+
var queries = this.filter.query.filter(function (q) { return q.key === _this.item.key && q.type === type; });
|
|
847
884
|
queries.forEach(function (query) {
|
|
848
885
|
var index = _this.filter.query.indexOf(query);
|
|
849
886
|
if (index > -1) {
|
|
@@ -857,7 +894,7 @@
|
|
|
857
894
|
vals.forEach(function (val) {
|
|
858
895
|
var query = {
|
|
859
896
|
key: _this.item.key,
|
|
860
|
-
type:
|
|
897
|
+
type: type,
|
|
861
898
|
value: val,
|
|
862
899
|
};
|
|
863
900
|
_this.filter.query.push(query);
|
|
@@ -890,7 +927,7 @@
|
|
|
890
927
|
__decorate([
|
|
891
928
|
lodashDecorators.Debounce(500),
|
|
892
929
|
__metadata("design:type", Function),
|
|
893
|
-
__metadata("design:paramtypes", [Object]),
|
|
930
|
+
__metadata("design:paramtypes", [Object, Object]),
|
|
894
931
|
__metadata("design:returntype", void 0)
|
|
895
932
|
], BaseComponent.prototype, "refresh", null);
|
|
896
933
|
|
|
@@ -899,6 +936,14 @@
|
|
|
899
936
|
function FilterDateComponent() {
|
|
900
937
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
901
938
|
}
|
|
939
|
+
Object.defineProperty(FilterDateComponent.prototype, "allowAdvanced", {
|
|
940
|
+
get: function () {
|
|
941
|
+
var _a;
|
|
942
|
+
return ((_a = this.item) === null || _a === void 0 ? void 0 : _a.type) === '=';
|
|
943
|
+
},
|
|
944
|
+
enumerable: false,
|
|
945
|
+
configurable: true
|
|
946
|
+
});
|
|
902
947
|
Object.defineProperty(FilterDateComponent.prototype, "customValue", {
|
|
903
948
|
get: function () {
|
|
904
949
|
return this.value;
|
|
@@ -911,6 +956,30 @@
|
|
|
911
956
|
enumerable: false,
|
|
912
957
|
configurable: true
|
|
913
958
|
});
|
|
959
|
+
Object.defineProperty(FilterDateComponent.prototype, "customMinValue", {
|
|
960
|
+
get: function () {
|
|
961
|
+
return this.minValue;
|
|
962
|
+
},
|
|
963
|
+
set: function (val) {
|
|
964
|
+
var _a;
|
|
965
|
+
var momentDate = moment__namespace(val);
|
|
966
|
+
this.minValue = ((_a = val) === null || _a === void 0 ? void 0 : _a.length) >= 10 && momentDate.isValid() ? momentDate.format('YYYY-MM-DD') : val;
|
|
967
|
+
},
|
|
968
|
+
enumerable: false,
|
|
969
|
+
configurable: true
|
|
970
|
+
});
|
|
971
|
+
Object.defineProperty(FilterDateComponent.prototype, "customMaxValue", {
|
|
972
|
+
get: function () {
|
|
973
|
+
return this.maxValue;
|
|
974
|
+
},
|
|
975
|
+
set: function (val) {
|
|
976
|
+
var _a;
|
|
977
|
+
var momentDate = moment__namespace(val);
|
|
978
|
+
this.maxValue = ((_a = val) === null || _a === void 0 ? void 0 : _a.length) >= 10 && momentDate.isValid() ? momentDate.format('YYYY-MM-DD') : val;
|
|
979
|
+
},
|
|
980
|
+
enumerable: false,
|
|
981
|
+
configurable: true
|
|
982
|
+
});
|
|
914
983
|
return FilterDateComponent;
|
|
915
984
|
}(BaseComponent));
|
|
916
985
|
/** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
|
|
@@ -927,6 +996,7 @@
|
|
|
927
996
|
function FilterDateWithEditComponent() {
|
|
928
997
|
var _this = _super.apply(this, __spreadArray([], __read(arguments))) || this;
|
|
929
998
|
_this._subscriptions = new rxjs.Subscription();
|
|
999
|
+
_this.advanced = false;
|
|
930
1000
|
return _this;
|
|
931
1001
|
}
|
|
932
1002
|
FilterDateWithEditComponent.prototype.open = function () {
|
|
@@ -955,7 +1025,7 @@
|
|
|
955
1025
|
FilterDateWithEditComponent.decorators = [
|
|
956
1026
|
{ type: i0.Component, args: [{
|
|
957
1027
|
selector: 'smart-crud-filter-date-with-edit',
|
|
958
|
-
template: "<ion-row>\n <ion-col>\n <ion-label
|
|
1028
|
+
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>",
|
|
959
1029
|
styles: [":host{width:100%}:host .squere-button{height:var(--smart-button-height)!important;margin:.8rem}\n"]
|
|
960
1030
|
},] }
|
|
961
1031
|
];
|
|
@@ -1048,6 +1118,41 @@
|
|
|
1048
1118
|
},] }
|
|
1049
1119
|
];
|
|
1050
1120
|
|
|
1121
|
+
var FilterIntComponent = /** @class */ (function (_super) {
|
|
1122
|
+
__extends(FilterIntComponent, _super);
|
|
1123
|
+
function FilterIntComponent() {
|
|
1124
|
+
var _this = _super.apply(this, __spreadArray([], __read(arguments))) || this;
|
|
1125
|
+
_this._subscriptions = new rxjs.Subscription();
|
|
1126
|
+
_this.advanced = false;
|
|
1127
|
+
return _this;
|
|
1128
|
+
}
|
|
1129
|
+
Object.defineProperty(FilterIntComponent.prototype, "allowAdvanced", {
|
|
1130
|
+
get: function () {
|
|
1131
|
+
var _a;
|
|
1132
|
+
return ((_a = this.item) === null || _a === void 0 ? void 0 : _a.type) === '=';
|
|
1133
|
+
},
|
|
1134
|
+
enumerable: false,
|
|
1135
|
+
configurable: true
|
|
1136
|
+
});
|
|
1137
|
+
FilterIntComponent.prototype.ngOnInit = function () {
|
|
1138
|
+
_super.prototype.ngOnInit.call(this);
|
|
1139
|
+
};
|
|
1140
|
+
FilterIntComponent.prototype.ngOnDestroy = function () {
|
|
1141
|
+
if (this._subscriptions) {
|
|
1142
|
+
this._subscriptions.unsubscribe();
|
|
1143
|
+
}
|
|
1144
|
+
};
|
|
1145
|
+
return FilterIntComponent;
|
|
1146
|
+
}(BaseComponent));
|
|
1147
|
+
/** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
|
|
1148
|
+
FilterIntComponent.decorators = [
|
|
1149
|
+
{ type: i0.Component, args: [{
|
|
1150
|
+
selector: 'smart-crud-filter-int',
|
|
1151
|
+
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>",
|
|
1152
|
+
styles: [":host{width:100%}:host .squere-button{height:var(--smart-button-height)!important;margin:.8rem}\n"]
|
|
1153
|
+
},] }
|
|
1154
|
+
];
|
|
1155
|
+
|
|
1051
1156
|
/**
|
|
1052
1157
|
* This component is only to use in crud module
|
|
1053
1158
|
* @requires CrudModule
|
|
@@ -1135,7 +1240,8 @@
|
|
|
1135
1240
|
.filter(function (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; })
|
|
1136
1241
|
.map(function (item) { return ({
|
|
1137
1242
|
key: item.key,
|
|
1138
|
-
type:
|
|
1243
|
+
type: item.options.type === models.FieldType.text || item.options.type === models.FieldType.longText
|
|
1244
|
+
? '~=' : '=',
|
|
1139
1245
|
label: 'MODEL.' + item.key,
|
|
1140
1246
|
fieldType: item.options.type
|
|
1141
1247
|
}); })));
|
|
@@ -1843,6 +1949,7 @@
|
|
|
1843
1949
|
FiltersComponent,
|
|
1844
1950
|
FilterFlagComponent,
|
|
1845
1951
|
FilterCheckComponent,
|
|
1952
|
+
FilterIntComponent,
|
|
1846
1953
|
MultiselectComponent,
|
|
1847
1954
|
GroupComponent
|
|
1848
1955
|
];
|
|
@@ -1855,7 +1962,6 @@
|
|
|
1855
1962
|
CrudComponentsModule.decorators = [
|
|
1856
1963
|
{ type: i0.NgModule, args: [{
|
|
1857
1964
|
declarations: __spreadArray([], __read(COMPONENTS)),
|
|
1858
|
-
entryComponents: __spreadArray([], __read(COMPONENTS)),
|
|
1859
1965
|
imports: [
|
|
1860
1966
|
//AuthSharedModule,
|
|
1861
1967
|
store.StoreModule,
|
|
@@ -1867,13 +1973,14 @@
|
|
|
1867
1973
|
exports: __spreadArray([
|
|
1868
1974
|
CrudPipesModule
|
|
1869
1975
|
], __read(COMPONENTS)),
|
|
1976
|
+
entryComponents: __spreadArray([], __read(COMPONENTS)),
|
|
1870
1977
|
providers: [
|
|
1871
1978
|
CrudService,
|
|
1872
1979
|
CrudEffects,
|
|
1873
1980
|
CrudFacade,
|
|
1874
1981
|
SocketService,
|
|
1875
1982
|
CrudListPaginationFactory,
|
|
1876
|
-
]
|
|
1983
|
+
]
|
|
1877
1984
|
},] }
|
|
1878
1985
|
];
|
|
1879
1986
|
|
|
@@ -2854,7 +2961,6 @@
|
|
|
2854
2961
|
CrudFullModule.decorators = [
|
|
2855
2962
|
{ type: i0.NgModule, args: [{
|
|
2856
2963
|
declarations: __spreadArray([], __read(PAGES)),
|
|
2857
|
-
entryComponents: __spreadArray([], __read(PAGES)),
|
|
2858
2964
|
imports: [
|
|
2859
2965
|
store.StoreModule,
|
|
2860
2966
|
angular.SharedModule,
|
|
@@ -2871,6 +2977,7 @@
|
|
|
2871
2977
|
exports: __spreadArray(__spreadArray([], __read(PAGES)), [
|
|
2872
2978
|
CrudComponentsModule
|
|
2873
2979
|
]),
|
|
2980
|
+
entryComponents: __spreadArray([], __read(PAGES)),
|
|
2874
2981
|
providers: [
|
|
2875
2982
|
CrudService,
|
|
2876
2983
|
PageService,
|
|
@@ -2987,6 +3094,7 @@
|
|
|
2987
3094
|
exports.FilterDateComponent = FilterDateComponent;
|
|
2988
3095
|
exports.FilterDateWithEditComponent = FilterDateWithEditComponent;
|
|
2989
3096
|
exports.FilterFlagComponent = FilterFlagComponent;
|
|
3097
|
+
exports.FilterIntComponent = FilterIntComponent;
|
|
2990
3098
|
exports.FilterRadioComponent = FilterRadioComponent;
|
|
2991
3099
|
exports.FilterTextComponent = FilterTextComponent;
|
|
2992
3100
|
exports.FiltersComponent = FiltersComponent;
|
|
@@ -3050,16 +3158,17 @@
|
|
|
3050
3158
|
exports["ɵk"] = FiltersComponent;
|
|
3051
3159
|
exports["ɵl"] = FilterFlagComponent;
|
|
3052
3160
|
exports["ɵm"] = FilterCheckComponent;
|
|
3053
|
-
exports["ɵn"] =
|
|
3054
|
-
exports["ɵo"] =
|
|
3055
|
-
exports["ɵp"] =
|
|
3056
|
-
exports["ɵq"] =
|
|
3057
|
-
exports["ɵr"] =
|
|
3058
|
-
exports["ɵs"] =
|
|
3059
|
-
exports["ɵt"] =
|
|
3060
|
-
exports["ɵu"] =
|
|
3061
|
-
exports["ɵv"] =
|
|
3062
|
-
exports["ɵw"] =
|
|
3161
|
+
exports["ɵn"] = FilterIntComponent;
|
|
3162
|
+
exports["ɵo"] = MultiselectComponent;
|
|
3163
|
+
exports["ɵp"] = GroupComponent;
|
|
3164
|
+
exports["ɵq"] = SocketService;
|
|
3165
|
+
exports["ɵr"] = NotSocketService;
|
|
3166
|
+
exports["ɵs"] = ItemComponent;
|
|
3167
|
+
exports["ɵt"] = ItemStandardComponent;
|
|
3168
|
+
exports["ɵu"] = CrudItemPageBaseComponent;
|
|
3169
|
+
exports["ɵv"] = ListComponent;
|
|
3170
|
+
exports["ɵw"] = ListStandardComponent;
|
|
3171
|
+
exports["ɵx"] = CrudListPageBaseComponent;
|
|
3063
3172
|
|
|
3064
3173
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
3065
3174
|
|