mapa-library-ui 0.59.0 → 0.61.0

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 (47) hide show
  1. package/esm2020/lib/core/elements/element-base.mjs +3 -2
  2. package/esm2020/src/lib/components/capability/lib/core/elements/element-base.mjs +3 -2
  3. package/esm2020/src/lib/components/chart/lib/core/elements/element-base.mjs +3 -2
  4. package/esm2020/src/lib/components/dropdown/lib/components/dropdown-tree/src/dropdown.component.mjs +14 -14
  5. package/esm2020/src/lib/components/dropdown/lib/core/elements/element-base.mjs +3 -2
  6. package/esm2020/src/lib/components/dropdown-tree/lib/components/dropdown-tree/src/dropdown.component.mjs +14 -14
  7. package/esm2020/src/lib/components/dropdown-tree/lib/core/elements/element-base.mjs +3 -2
  8. package/esm2020/src/lib/components/form/lib/core/elements/element-base.mjs +3 -2
  9. package/esm2020/src/lib/components/group-report/lib/core/elements/element-base.mjs +3 -2
  10. package/esm2020/src/lib/components/radio-button/lib/core/elements/element-base.mjs +3 -2
  11. package/esm2020/src/lib/components/scale/lib/core/elements/element-base.mjs +3 -2
  12. package/esm2020/src/lib/components/scale-parameterization/lib/core/elements/element-base.mjs +3 -2
  13. package/esm2020/src/lib/components/slide-toggle/lib/core/elements/element-base.mjs +3 -2
  14. package/esm2020/src/lib/components/textarea/lib/core/elements/element-base.mjs +3 -2
  15. package/esm2020/src/lib/core/guards/authorize-guard/lib/core/enums/permissions.enum.mjs +2 -1
  16. package/fesm2015/mapa-library-ui-src-lib-components-dropdown-tree.mjs +15 -14
  17. package/fesm2015/mapa-library-ui-src-lib-components-dropdown-tree.mjs.map +1 -1
  18. package/fesm2015/mapa-library-ui-src-lib-components-dropdown.mjs +15 -14
  19. package/fesm2015/mapa-library-ui-src-lib-components-dropdown.mjs.map +1 -1
  20. package/fesm2015/mapa-library-ui-src-lib-core-guards-authorize-guard.mjs +1 -0
  21. package/fesm2015/mapa-library-ui-src-lib-core-guards-authorize-guard.mjs.map +1 -1
  22. package/fesm2015/mapa-library-ui.mjs +2 -1
  23. package/fesm2015/mapa-library-ui.mjs.map +1 -1
  24. package/fesm2020/mapa-library-ui-src-lib-components-dropdown-tree.mjs +15 -14
  25. package/fesm2020/mapa-library-ui-src-lib-components-dropdown-tree.mjs.map +1 -1
  26. package/fesm2020/mapa-library-ui-src-lib-components-dropdown.mjs +15 -14
  27. package/fesm2020/mapa-library-ui-src-lib-components-dropdown.mjs.map +1 -1
  28. package/fesm2020/mapa-library-ui-src-lib-core-guards-authorize-guard.mjs +1 -0
  29. package/fesm2020/mapa-library-ui-src-lib-core-guards-authorize-guard.mjs.map +1 -1
  30. package/fesm2020/mapa-library-ui.mjs +2 -1
  31. package/fesm2020/mapa-library-ui.mjs.map +1 -1
  32. package/lib/core/elements/element-base.d.ts +2 -0
  33. package/mapa-library-ui-0.61.0.tgz +0 -0
  34. package/package.json +1 -1
  35. package/src/lib/components/capability/lib/core/elements/element-base.d.ts +2 -0
  36. package/src/lib/components/chart/lib/core/elements/element-base.d.ts +2 -0
  37. package/src/lib/components/dropdown/lib/core/elements/element-base.d.ts +2 -0
  38. package/src/lib/components/dropdown-tree/lib/core/elements/element-base.d.ts +2 -0
  39. package/src/lib/components/form/lib/core/elements/element-base.d.ts +2 -0
  40. package/src/lib/components/group-report/lib/core/elements/element-base.d.ts +2 -0
  41. package/src/lib/components/radio-button/lib/core/elements/element-base.d.ts +2 -0
  42. package/src/lib/components/scale/lib/core/elements/element-base.d.ts +2 -0
  43. package/src/lib/components/scale-parameterization/lib/core/elements/element-base.d.ts +2 -0
  44. package/src/lib/components/slide-toggle/lib/core/elements/element-base.d.ts +2 -0
  45. package/src/lib/components/textarea/lib/core/elements/element-base.d.ts +2 -0
  46. package/src/lib/core/guards/authorize-guard/lib/core/enums/permissions.enum.d.ts +2 -1
  47. package/mapa-library-ui-0.59.0.tgz +0 -0
@@ -35,6 +35,7 @@ export declare class ElementBase {
35
35
  clearValue?: boolean;
36
36
  status?: Status[];
37
37
  checkParent?: boolean;
38
+ checkChildren?: boolean;
38
39
  constructor(options?: {
39
40
  value?: string;
40
41
  key?: string;
@@ -64,5 +65,6 @@ export declare class ElementBase {
64
65
  clearValue?: boolean;
65
66
  status?: Status[];
66
67
  checkParent?: boolean;
68
+ checkChildren?: boolean;
67
69
  });
68
70
  }
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mapa-library-ui",
3
- "version": "0.59.0",
3
+ "version": "0.61.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0"
@@ -35,6 +35,7 @@ export declare class ElementBase {
35
35
  clearValue?: boolean;
36
36
  status?: Status[];
37
37
  checkParent?: boolean;
38
+ checkChildren?: boolean;
38
39
  constructor(options?: {
39
40
  value?: string;
40
41
  key?: string;
@@ -64,5 +65,6 @@ export declare class ElementBase {
64
65
  clearValue?: boolean;
65
66
  status?: Status[];
66
67
  checkParent?: boolean;
68
+ checkChildren?: boolean;
67
69
  });
68
70
  }
@@ -35,6 +35,7 @@ export declare class ElementBase {
35
35
  clearValue?: boolean;
36
36
  status?: Status[];
37
37
  checkParent?: boolean;
38
+ checkChildren?: boolean;
38
39
  constructor(options?: {
39
40
  value?: string;
40
41
  key?: string;
@@ -64,5 +65,6 @@ export declare class ElementBase {
64
65
  clearValue?: boolean;
65
66
  status?: Status[];
66
67
  checkParent?: boolean;
68
+ checkChildren?: boolean;
67
69
  });
68
70
  }
@@ -35,6 +35,7 @@ export declare class ElementBase {
35
35
  clearValue?: boolean;
36
36
  status?: Status[];
37
37
  checkParent?: boolean;
38
+ checkChildren?: boolean;
38
39
  constructor(options?: {
39
40
  value?: string;
40
41
  key?: string;
@@ -64,5 +65,6 @@ export declare class ElementBase {
64
65
  clearValue?: boolean;
65
66
  status?: Status[];
66
67
  checkParent?: boolean;
68
+ checkChildren?: boolean;
67
69
  });
68
70
  }
@@ -35,6 +35,7 @@ export declare class ElementBase {
35
35
  clearValue?: boolean;
36
36
  status?: Status[];
37
37
  checkParent?: boolean;
38
+ checkChildren?: boolean;
38
39
  constructor(options?: {
39
40
  value?: string;
40
41
  key?: string;
@@ -64,5 +65,6 @@ export declare class ElementBase {
64
65
  clearValue?: boolean;
65
66
  status?: Status[];
66
67
  checkParent?: boolean;
68
+ checkChildren?: boolean;
67
69
  });
68
70
  }
@@ -35,6 +35,7 @@ export declare class ElementBase {
35
35
  clearValue?: boolean;
36
36
  status?: Status[];
37
37
  checkParent?: boolean;
38
+ checkChildren?: boolean;
38
39
  constructor(options?: {
39
40
  value?: string;
40
41
  key?: string;
@@ -64,5 +65,6 @@ export declare class ElementBase {
64
65
  clearValue?: boolean;
65
66
  status?: Status[];
66
67
  checkParent?: boolean;
68
+ checkChildren?: boolean;
67
69
  });
68
70
  }
@@ -35,6 +35,7 @@ export declare class ElementBase {
35
35
  clearValue?: boolean;
36
36
  status?: Status[];
37
37
  checkParent?: boolean;
38
+ checkChildren?: boolean;
38
39
  constructor(options?: {
39
40
  value?: string;
40
41
  key?: string;
@@ -64,5 +65,6 @@ export declare class ElementBase {
64
65
  clearValue?: boolean;
65
66
  status?: Status[];
66
67
  checkParent?: boolean;
68
+ checkChildren?: boolean;
67
69
  });
68
70
  }
@@ -35,6 +35,7 @@ export declare class ElementBase {
35
35
  clearValue?: boolean;
36
36
  status?: Status[];
37
37
  checkParent?: boolean;
38
+ checkChildren?: boolean;
38
39
  constructor(options?: {
39
40
  value?: string;
40
41
  key?: string;
@@ -64,5 +65,6 @@ export declare class ElementBase {
64
65
  clearValue?: boolean;
65
66
  status?: Status[];
66
67
  checkParent?: boolean;
68
+ checkChildren?: boolean;
67
69
  });
68
70
  }
@@ -35,6 +35,7 @@ export declare class ElementBase {
35
35
  clearValue?: boolean;
36
36
  status?: Status[];
37
37
  checkParent?: boolean;
38
+ checkChildren?: boolean;
38
39
  constructor(options?: {
39
40
  value?: string;
40
41
  key?: string;
@@ -64,5 +65,6 @@ export declare class ElementBase {
64
65
  clearValue?: boolean;
65
66
  status?: Status[];
66
67
  checkParent?: boolean;
68
+ checkChildren?: boolean;
67
69
  });
68
70
  }
@@ -35,6 +35,7 @@ export declare class ElementBase {
35
35
  clearValue?: boolean;
36
36
  status?: Status[];
37
37
  checkParent?: boolean;
38
+ checkChildren?: boolean;
38
39
  constructor(options?: {
39
40
  value?: string;
40
41
  key?: string;
@@ -64,5 +65,6 @@ export declare class ElementBase {
64
65
  clearValue?: boolean;
65
66
  status?: Status[];
66
67
  checkParent?: boolean;
68
+ checkChildren?: boolean;
67
69
  });
68
70
  }
@@ -35,6 +35,7 @@ export declare class ElementBase {
35
35
  clearValue?: boolean;
36
36
  status?: Status[];
37
37
  checkParent?: boolean;
38
+ checkChildren?: boolean;
38
39
  constructor(options?: {
39
40
  value?: string;
40
41
  key?: string;
@@ -64,5 +65,6 @@ export declare class ElementBase {
64
65
  clearValue?: boolean;
65
66
  status?: Status[];
66
67
  checkParent?: boolean;
68
+ checkChildren?: boolean;
67
69
  });
68
70
  }
@@ -35,6 +35,7 @@ export declare class ElementBase {
35
35
  clearValue?: boolean;
36
36
  status?: Status[];
37
37
  checkParent?: boolean;
38
+ checkChildren?: boolean;
38
39
  constructor(options?: {
39
40
  value?: string;
40
41
  key?: string;
@@ -64,5 +65,6 @@ export declare class ElementBase {
64
65
  clearValue?: boolean;
65
66
  status?: Status[];
66
67
  checkParent?: boolean;
68
+ checkChildren?: boolean;
67
69
  });
68
70
  }
@@ -36,5 +36,6 @@ export declare enum Permissions {
36
36
  V5FinancialCreditsView = "V5FinancialCreditsView",
37
37
  V5FinancialUsageExtractView = "V5FinancialUsageExtractView",
38
38
  V5FinancialInvoiceView = "V5FinancialInvoiceView",
39
- V5FinancialPlans = "V5FinancialPlans"
39
+ V5FinancialPlans = "V5FinancialPlans",
40
+ V5TestInvitationUpdate = "V5TestInvitationUpdate"
40
41
  }
Binary file