@seniorsistemas/angular-components 17.3.19 → 17.4.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 (84) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +411 -100
  2. package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
  3. package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
  4. package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
  5. package/components/dynamic-form/configurations/fields/lookup-field.d.ts +2 -0
  6. package/components/ia-insight/components/ia-insight-card/components/ia-insight-card-loader/ia-insight-card-loader.component.d.ts +2 -0
  7. package/components/ia-insight/components/ia-insight-card/ia-insight-card.component.d.ts +22 -0
  8. package/components/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.d.ts +16 -0
  9. package/components/ia-insight/ia-insight.component.d.ts +24 -0
  10. package/components/ia-insight/ia-insight.module.d.ts +2 -0
  11. package/components/ia-insight/index.d.ts +3 -0
  12. package/components/ia-insight/models/ia-insight-item.d.ts +9 -0
  13. package/components/ia-insight/models/ia-insight-template-types.d.ts +5 -0
  14. package/components/ia-insight/models/index.d.ts +2 -0
  15. package/components/index.d.ts +2 -1
  16. package/components/kanban/index.d.ts +1 -2
  17. package/components/kanban/kanban.component.d.ts +3 -3
  18. package/components/template/template.module.d.ts +2 -0
  19. package/esm2015/components/dynamic-form/components/fields/lookup/lookup-field.component.js +2 -2
  20. package/esm2015/components/dynamic-form/configurations/fields/lookup-field.js +2 -1
  21. package/esm2015/components/ia-insight/components/ia-insight-card/components/ia-insight-card-loader/ia-insight-card-loader.component.js +13 -0
  22. package/esm2015/components/ia-insight/components/ia-insight-card/ia-insight-card.component.js +81 -0
  23. package/esm2015/components/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.js +50 -0
  24. package/esm2015/components/ia-insight/ia-insight.component.js +68 -0
  25. package/esm2015/components/ia-insight/ia-insight.module.js +40 -0
  26. package/esm2015/components/ia-insight/index.js +4 -0
  27. package/esm2015/components/ia-insight/models/ia-insight-item.js +1 -0
  28. package/esm2015/components/ia-insight/models/ia-insight-template-types.js +7 -0
  29. package/esm2015/components/ia-insight/models/index.js +2 -0
  30. package/esm2015/components/index.js +3 -2
  31. package/esm2015/components/kanban/index.js +2 -3
  32. package/esm2015/components/kanban/kanban.component.js +5 -5
  33. package/esm2015/components/kanban/kanban.module.js +10 -10
  34. package/esm2015/components/template/template.directive.js +20 -0
  35. package/esm2015/components/template/template.module.js +15 -0
  36. package/esm2015/locale/fallback.js +6 -1
  37. package/esm2015/public-api.js +2 -1
  38. package/esm2015/seniorsistemas-angular-components.js +35 -29
  39. package/esm2015/utils/index.js +2 -0
  40. package/esm2015/utils/svg-factory/components/iassist-icon/iassist-icon.component.js +11 -0
  41. package/esm2015/utils/svg-factory/index.js +3 -0
  42. package/esm2015/utils/svg-factory/svg-factory.directive.js +23 -0
  43. package/esm2015/utils/svg-factory/svg-factory.module.js +19 -0
  44. package/esm5/components/dynamic-form/components/fields/lookup/lookup-field.component.js +2 -2
  45. package/esm5/components/dynamic-form/configurations/fields/lookup-field.js +2 -1
  46. package/esm5/components/ia-insight/components/ia-insight-card/components/ia-insight-card-loader/ia-insight-card-loader.component.js +16 -0
  47. package/esm5/components/ia-insight/components/ia-insight-card/ia-insight-card.component.js +83 -0
  48. package/esm5/components/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.js +51 -0
  49. package/esm5/components/ia-insight/ia-insight.component.js +69 -0
  50. package/esm5/components/ia-insight/ia-insight.module.js +43 -0
  51. package/esm5/components/ia-insight/index.js +4 -0
  52. package/esm5/components/ia-insight/models/ia-insight-item.js +1 -0
  53. package/esm5/components/ia-insight/models/ia-insight-template-types.js +7 -0
  54. package/esm5/components/ia-insight/models/index.js +2 -0
  55. package/esm5/components/index.js +3 -2
  56. package/esm5/components/kanban/index.js +2 -3
  57. package/esm5/components/kanban/kanban.component.js +5 -5
  58. package/esm5/components/kanban/kanban.module.js +10 -10
  59. package/esm5/components/template/template.directive.js +21 -0
  60. package/esm5/components/template/template.module.js +18 -0
  61. package/esm5/locale/fallback.js +6 -1
  62. package/esm5/public-api.js +2 -1
  63. package/esm5/seniorsistemas-angular-components.js +35 -29
  64. package/esm5/utils/index.js +2 -0
  65. package/esm5/utils/svg-factory/components/iassist-icon/iassist-icon.component.js +14 -0
  66. package/esm5/utils/svg-factory/index.js +3 -0
  67. package/esm5/utils/svg-factory/svg-factory.directive.js +24 -0
  68. package/esm5/utils/svg-factory/svg-factory.module.js +22 -0
  69. package/fesm2015/seniorsistemas-angular-components.js +352 -70
  70. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  71. package/fesm5/seniorsistemas-angular-components.js +374 -72
  72. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  73. package/package.json +1 -1
  74. package/public-api.d.ts +1 -0
  75. package/seniorsistemas-angular-components.d.ts +34 -28
  76. package/seniorsistemas-angular-components.metadata.json +1 -1
  77. package/utils/index.d.ts +1 -0
  78. package/utils/svg-factory/components/iassist-icon/iassist-icon.component.d.ts +2 -0
  79. package/utils/svg-factory/index.d.ts +2 -0
  80. package/utils/svg-factory/svg-factory.directive.d.ts +6 -0
  81. package/utils/svg-factory/svg-factory.module.d.ts +2 -0
  82. package/esm2015/components/kanban/template.directive.js +0 -20
  83. package/esm5/components/kanban/template.directive.js +0 -21
  84. /package/components/{kanban → template}/template.directive.d.ts +0 -0
@@ -0,0 +1 @@
1
+ export * from "./svg-factory/index";
@@ -0,0 +1,2 @@
1
+ export declare class IAssistIconComponent {
2
+ }
@@ -0,0 +1,2 @@
1
+ export { SVGFactoryDirective } from "./svg-factory.directive";
2
+ export { SVGFactoryModule } from "./svg-factory.module";
@@ -0,0 +1,6 @@
1
+ import { ViewContainerRef, ComponentFactoryResolver } from "@angular/core";
2
+ export declare class SVGFactoryDirective {
3
+ private viewContainerRef;
4
+ private componentFactoryResolver;
5
+ constructor(viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver);
6
+ }
@@ -0,0 +1,2 @@
1
+ export declare class SVGFactoryModule {
2
+ }
@@ -1,20 +0,0 @@
1
- import { __decorate } from "tslib";
2
- import { Directive, Input, TemplateRef } from "@angular/core";
3
- let TemplateDirective = class TemplateDirective {
4
- constructor(template) {
5
- this.template = template;
6
- }
7
- };
8
- TemplateDirective.ctorParameters = () => [
9
- { type: TemplateRef }
10
- ];
11
- __decorate([
12
- Input("sTemplate")
13
- ], TemplateDirective.prototype, "type", void 0);
14
- TemplateDirective = __decorate([
15
- Directive({
16
- selector: "[sTemplate]",
17
- })
18
- ], TemplateDirective);
19
- export { TemplateDirective };
20
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVtcGxhdGUuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQHNlbmlvcnNpc3RlbWFzL2FuZ3VsYXItY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImNvbXBvbmVudHMva2FuYmFuL3RlbXBsYXRlLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsV0FBVyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBSzlELElBQWEsaUJBQWlCLEdBQTlCLE1BQWEsaUJBQWlCO0lBSTFCLFlBQTRCLFFBQTBCO1FBQTFCLGFBQVEsR0FBUixRQUFRLENBQWtCO0lBQUcsQ0FBQztDQUM3RCxDQUFBOztZQUR5QyxXQUFXOztBQUZqRDtJQURDLEtBQUssQ0FBQyxXQUFXLENBQUM7K0NBQ0M7QUFGWCxpQkFBaUI7SUFIN0IsU0FBUyxDQUFDO1FBQ1AsUUFBUSxFQUFFLGFBQWE7S0FDMUIsQ0FBQztHQUNXLGlCQUFpQixDQUs3QjtTQUxZLGlCQUFpQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgSW5wdXQsIFRlbXBsYXRlUmVmIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcblxuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6IFwiW3NUZW1wbGF0ZV1cIixcbn0pXG5leHBvcnQgY2xhc3MgVGVtcGxhdGVEaXJlY3RpdmUge1xuICAgIEBJbnB1dChcInNUZW1wbGF0ZVwiKVxuICAgIHB1YmxpYyB0eXBlOiBzdHJpbmc7XG5cbiAgICBjb25zdHJ1Y3RvcihwdWJsaWMgcmVhZG9ubHkgdGVtcGxhdGU6IFRlbXBsYXRlUmVmPGFueT4pIHt9XG59Il19
@@ -1,21 +0,0 @@
1
- import { __decorate } from "tslib";
2
- import { Directive, Input, TemplateRef } from "@angular/core";
3
- var TemplateDirective = /** @class */ (function () {
4
- function TemplateDirective(template) {
5
- this.template = template;
6
- }
7
- TemplateDirective.ctorParameters = function () { return [
8
- { type: TemplateRef }
9
- ]; };
10
- __decorate([
11
- Input("sTemplate")
12
- ], TemplateDirective.prototype, "type", void 0);
13
- TemplateDirective = __decorate([
14
- Directive({
15
- selector: "[sTemplate]",
16
- })
17
- ], TemplateDirective);
18
- return TemplateDirective;
19
- }());
20
- export { TemplateDirective };
21
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVtcGxhdGUuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQHNlbmlvcnNpc3RlbWFzL2FuZ3VsYXItY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImNvbXBvbmVudHMva2FuYmFuL3RlbXBsYXRlLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsV0FBVyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBSzlEO0lBSUksMkJBQTRCLFFBQTBCO1FBQTFCLGFBQVEsR0FBUixRQUFRLENBQWtCO0lBQUcsQ0FBQzs7Z0JBQXBCLFdBQVc7O0lBRmpEO1FBREMsS0FBSyxDQUFDLFdBQVcsQ0FBQzttREFDQztJQUZYLGlCQUFpQjtRQUg3QixTQUFTLENBQUM7WUFDUCxRQUFRLEVBQUUsYUFBYTtTQUMxQixDQUFDO09BQ1csaUJBQWlCLENBSzdCO0lBQUQsd0JBQUM7Q0FBQSxBQUxELElBS0M7U0FMWSxpQkFBaUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIElucHV0LCBUZW1wbGF0ZVJlZiB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XG5cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiBcIltzVGVtcGxhdGVdXCIsXG59KVxuZXhwb3J0IGNsYXNzIFRlbXBsYXRlRGlyZWN0aXZlIHtcbiAgICBASW5wdXQoXCJzVGVtcGxhdGVcIilcbiAgICBwdWJsaWMgdHlwZTogc3RyaW5nO1xuXG4gICAgY29uc3RydWN0b3IocHVibGljIHJlYWRvbmx5IHRlbXBsYXRlOiBUZW1wbGF0ZVJlZjxhbnk+KSB7fVxufSJdfQ==