@abp/ng.feature-management 5.0.1 → 5.0.2

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 (48) hide show
  1. package/README.md +3 -3
  2. package/abp-ng.feature-management.d.ts +5 -5
  3. package/bundles/abp-ng.feature-management-proxy.umd.js +28 -28
  4. package/bundles/abp-ng.feature-management-proxy.umd.js.map +1 -1
  5. package/bundles/abp-ng.feature-management.umd.js +534 -534
  6. package/bundles/abp-ng.feature-management.umd.js.map +1 -1
  7. package/esm2015/abp-ng.feature-management.js +4 -4
  8. package/esm2015/lib/components/feature-management/feature-management.component.js +158 -158
  9. package/esm2015/lib/components/index.js +2 -2
  10. package/esm2015/lib/directives/free-text-input.directive.js +37 -37
  11. package/esm2015/lib/directives/index.js +2 -2
  12. package/esm2015/lib/enums/components.js +2 -2
  13. package/esm2015/lib/feature-management.module.js +22 -22
  14. package/esm2015/lib/models/feature-management.js +2 -2
  15. package/esm2015/lib/models/index.js +2 -2
  16. package/esm2015/proxy/abp-ng.feature-management-proxy.js +4 -4
  17. package/esm2015/proxy/lib/index.js +3 -3
  18. package/esm2015/proxy/lib/proxy/feature-management/features.service.js +30 -30
  19. package/esm2015/proxy/lib/proxy/feature-management/index.js +3 -3
  20. package/esm2015/proxy/lib/proxy/feature-management/models.js +2 -2
  21. package/esm2015/proxy/lib/proxy/validation/index.js +3 -3
  22. package/esm2015/proxy/lib/proxy/validation/string-values/index.js +2 -2
  23. package/esm2015/proxy/lib/proxy/validation/string-values/models.js +2 -2
  24. package/esm2015/proxy/public-api.js +2 -2
  25. package/esm2015/public-api.js +6 -6
  26. package/fesm2015/abp-ng.feature-management-proxy.js +26 -26
  27. package/fesm2015/abp-ng.feature-management-proxy.js.map +1 -1
  28. package/fesm2015/abp-ng.feature-management.js +192 -192
  29. package/fesm2015/abp-ng.feature-management.js.map +1 -1
  30. package/lib/components/feature-management/feature-management.component.d.ts +49 -49
  31. package/lib/components/index.d.ts +1 -1
  32. package/lib/directives/free-text-input.directive.d.ts +21 -21
  33. package/lib/directives/index.d.ts +1 -1
  34. package/lib/enums/components.d.ts +3 -3
  35. package/lib/feature-management.module.d.ts +11 -11
  36. package/lib/models/feature-management.d.ts +11 -11
  37. package/lib/models/index.d.ts +1 -1
  38. package/package.json +3 -3
  39. package/proxy/abp-ng.feature-management-proxy.d.ts +5 -5
  40. package/proxy/lib/index.d.ts +2 -2
  41. package/proxy/lib/proxy/feature-management/features.service.d.ts +12 -12
  42. package/proxy/lib/proxy/feature-management/index.d.ts +2 -2
  43. package/proxy/lib/proxy/feature-management/models.d.ts +30 -30
  44. package/proxy/lib/proxy/validation/index.d.ts +2 -2
  45. package/proxy/lib/proxy/validation/string-values/index.d.ts +1 -1
  46. package/proxy/lib/proxy/validation/string-values/models.d.ts +11 -11
  47. package/proxy/public-api.d.ts +1 -1
  48. package/public-api.d.ts +5 -5
package/README.md CHANGED
@@ -1,3 +1,3 @@
1
- <h1> @abp/ng.feature-management </h1>
2
-
3
- [docs.abp.io](https://docs.abp.io)
1
+ <h1> @abp/ng.feature-management </h1>
2
+
3
+ [docs.abp.io](https://docs.abp.io)
@@ -1,5 +1,5 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@abp/ng.feature-management" />
5
- export * from './public-api';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@abp/ng.feature-management" />
5
+ export * from './public-api';
@@ -25,40 +25,40 @@
25
25
  var i0__namespace = /*#__PURE__*/_interopNamespace(i0);
26
26
  var i1__namespace = /*#__PURE__*/_interopNamespace(i1);
27
27
 
28
- var FeaturesService = /** @class */ (function () {
29
- function FeaturesService(restService) {
30
- var _this = this;
31
- this.restService = restService;
32
- this.apiName = 'AbpFeatureManagement';
33
- this.get = function (providerName, providerKey) { return _this.restService.request({
34
- method: 'GET',
35
- url: '/api/feature-management/features',
36
- params: { providerName: providerName, providerKey: providerKey },
37
- }, { apiName: _this.apiName }); };
38
- this.update = function (providerName, providerKey, input) { return _this.restService.request({
39
- method: 'PUT',
40
- url: '/api/feature-management/features',
41
- params: { providerName: providerName, providerKey: providerKey },
42
- body: input,
43
- }, { apiName: _this.apiName }); };
44
- }
45
- return FeaturesService;
46
- }());
47
- FeaturesService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0__namespace, type: FeaturesService, deps: [{ token: i1__namespace.RestService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
48
- FeaturesService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0__namespace, type: FeaturesService, providedIn: 'root' });
49
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0__namespace, type: FeaturesService, decorators: [{
50
- type: i0.Injectable,
51
- args: [{
52
- providedIn: 'root',
53
- }]
28
+ var FeaturesService = /** @class */ (function () {
29
+ function FeaturesService(restService) {
30
+ var _this = this;
31
+ this.restService = restService;
32
+ this.apiName = 'AbpFeatureManagement';
33
+ this.get = function (providerName, providerKey) { return _this.restService.request({
34
+ method: 'GET',
35
+ url: '/api/feature-management/features',
36
+ params: { providerName: providerName, providerKey: providerKey },
37
+ }, { apiName: _this.apiName }); };
38
+ this.update = function (providerName, providerKey, input) { return _this.restService.request({
39
+ method: 'PUT',
40
+ url: '/api/feature-management/features',
41
+ params: { providerName: providerName, providerKey: providerKey },
42
+ body: input,
43
+ }, { apiName: _this.apiName }); };
44
+ }
45
+ return FeaturesService;
46
+ }());
47
+ FeaturesService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0__namespace, type: FeaturesService, deps: [{ token: i1__namespace.RestService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
48
+ FeaturesService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0__namespace, type: FeaturesService, providedIn: 'root' });
49
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0__namespace, type: FeaturesService, decorators: [{
50
+ type: i0.Injectable,
51
+ args: [{
52
+ providedIn: 'root',
53
+ }]
54
54
  }], ctorParameters: function () { return [{ type: i1__namespace.RestService }]; } });
55
55
 
56
56
  var index = /*#__PURE__*/Object.freeze({
57
57
  __proto__: null
58
58
  });
59
59
 
60
- /**
61
- * Generated bundle index. Do not edit.
60
+ /**
61
+ * Generated bundle index. Do not edit.
62
62
  */
63
63
 
64
64
  exports.FeaturesService = FeaturesService;
@@ -1 +1 @@
1
- {"version":3,"file":"abp-ng.feature-management-proxy.umd.js","sources":["../../../../packages/feature-management/proxy/src/lib/proxy/feature-management/features.service.ts","../../../../packages/feature-management/proxy/src/abp-ng.feature-management-proxy.ts"],"sourcesContent":["import type { GetFeatureListResultDto, UpdateFeaturesDto } from './models';\r\nimport { RestService } from '@abp/ng.core';\r\nimport { Injectable } from '@angular/core';\r\n\r\n@Injectable({\r\n providedIn: 'root',\r\n})\r\nexport class FeaturesService {\r\n apiName = 'AbpFeatureManagement';\r\n\r\n get = (providerName: string, providerKey: string) =>\r\n this.restService.request<any, GetFeatureListResultDto>({\r\n method: 'GET',\r\n url: '/api/feature-management/features',\r\n params: { providerName, providerKey },\r\n },\r\n { apiName: this.apiName });\r\n\r\n update = (providerName: string, providerKey: string, input: UpdateFeaturesDto) =>\r\n this.restService.request<any, void>({\r\n method: 'PUT',\r\n url: '/api/feature-management/features',\r\n params: { providerName, providerKey },\r\n body: input,\r\n },\r\n { apiName: this.apiName });\r\n\r\n constructor(private restService: RestService) {}\r\n}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["Injectable"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;QA2BE,yBAAoB,WAAwB;YAA5C,iBAAgD;YAA5B,gBAAW,GAAX,WAAW,CAAa;YAnB5C,YAAO,GAAG,sBAAsB,CAAC;YAEjC,QAAG,GAAG,UAAC,YAAoB,EAAE,WAAmB,IAC9C,OAAA,KAAI,CAAC,WAAW,CAAC,OAAO,CAA+B;gBACrD,MAAM,EAAE,KAAK;gBACb,GAAG,EAAE,kCAAkC;gBACvC,MAAM,EAAE,EAAE,YAAY,cAAA,EAAE,WAAW,aAAA,EAAE;aACtC,EACD,EAAE,OAAO,EAAE,KAAI,CAAC,OAAO,EAAE,CAAC,GAAA,CAAC;YAE7B,WAAM,GAAG,UAAC,YAAoB,EAAE,WAAmB,EAAE,KAAwB,IAC3E,OAAA,KAAI,CAAC,WAAW,CAAC,OAAO,CAAY;gBAClC,MAAM,EAAE,KAAK;gBACb,GAAG,EAAE,kCAAkC;gBACvC,MAAM,EAAE,EAAE,YAAY,cAAA,EAAE,WAAW,aAAA,EAAE;gBACrC,IAAI,EAAE,KAAK;aACZ,EACD,EAAE,OAAO,EAAE,KAAI,CAAC,OAAO,EAAE,CAAC,GAAA,CAAC;SAEmB;;;uIApBrC,eAAe;2IAAf,eAAe,cAFd,MAAM;sHAEP,eAAe;sBAH3BA,aAAU;uBAAC;wBACV,UAAU,EAAE,MAAM;qBACnB;;;;;;;ICND;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"abp-ng.feature-management-proxy.umd.js","sources":["../../../../packages/feature-management/proxy/src/lib/proxy/feature-management/features.service.ts","../../../../packages/feature-management/proxy/src/abp-ng.feature-management-proxy.ts"],"sourcesContent":["import type { GetFeatureListResultDto, UpdateFeaturesDto } from './models';\nimport { RestService } from '@abp/ng.core';\nimport { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class FeaturesService {\n apiName = 'AbpFeatureManagement';\n\n get = (providerName: string, providerKey: string) =>\n this.restService.request<any, GetFeatureListResultDto>({\n method: 'GET',\n url: '/api/feature-management/features',\n params: { providerName, providerKey },\n },\n { apiName: this.apiName });\n\n update = (providerName: string, providerKey: string, input: UpdateFeaturesDto) =>\n this.restService.request<any, void>({\n method: 'PUT',\n url: '/api/feature-management/features',\n params: { providerName, providerKey },\n body: input,\n },\n { apiName: this.apiName });\n\n constructor(private restService: RestService) {}\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["Injectable"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;QA2BE,yBAAoB,WAAwB;YAA5C,iBAAgD;YAA5B,gBAAW,GAAX,WAAW,CAAa;YAnB5C,YAAO,GAAG,sBAAsB,CAAC;YAEjC,QAAG,GAAG,UAAC,YAAoB,EAAE,WAAmB,IAC9C,OAAA,KAAI,CAAC,WAAW,CAAC,OAAO,CAA+B;gBACrD,MAAM,EAAE,KAAK;gBACb,GAAG,EAAE,kCAAkC;gBACvC,MAAM,EAAE,EAAE,YAAY,cAAA,EAAE,WAAW,aAAA,EAAE;aACtC,EACD,EAAE,OAAO,EAAE,KAAI,CAAC,OAAO,EAAE,CAAC,GAAA,CAAC;YAE7B,WAAM,GAAG,UAAC,YAAoB,EAAE,WAAmB,EAAE,KAAwB,IAC3E,OAAA,KAAI,CAAC,WAAW,CAAC,OAAO,CAAY;gBAClC,MAAM,EAAE,KAAK;gBACb,GAAG,EAAE,kCAAkC;gBACvC,MAAM,EAAE,EAAE,YAAY,cAAA,EAAE,WAAW,aAAA,EAAE;gBACrC,IAAI,EAAE,KAAK;aACZ,EACD,EAAE,OAAO,EAAE,KAAI,CAAC,OAAO,EAAE,CAAC,GAAA,CAAC;SAEmB;;;uIApBrC,eAAe;2IAAf,eAAe,cAFd,MAAM;sHAEP,eAAe;sBAH3BA,aAAU;uBAAC;wBACV,UAAU,EAAE,MAAM;qBACnB;;;;;;;ICND;;;;;;;;;;;;;"}