@evotor-dev/ui-kit 6.6.0 → 6.7.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 (41) hide show
  1. package/bundles/evotor-dev-ui-kit-icons-category.umd.js +3 -3
  2. package/bundles/evotor-dev-ui-kit-icons-category.umd.js.map +1 -1
  3. package/bundles/evotor-dev-ui-kit-icons-navigation.umd.js +2 -2
  4. package/bundles/evotor-dev-ui-kit-icons-navigation.umd.js.map +1 -1
  5. package/bundles/evotor-dev-ui-kit-icons-system.umd.js +10 -4
  6. package/bundles/evotor-dev-ui-kit-icons-system.umd.js.map +1 -1
  7. package/bundles/evotor-dev-ui-kit-icons.umd.js +13 -9
  8. package/bundles/evotor-dev-ui-kit-icons.umd.js.map +1 -1
  9. package/bundles/evotor-dev-ui-kit.umd.js +64 -1
  10. package/bundles/evotor-dev-ui-kit.umd.js.map +1 -1
  11. package/esm2015/icons/category/index.js +4 -4
  12. package/esm2015/icons/navigation/index.js +3 -3
  13. package/esm2015/icons/system/index.js +9 -5
  14. package/esm2015/lib/components/evo-autocomplete/components/templates/evo-autocomplete-default-option.component.js +1 -1
  15. package/esm2015/lib/components/evo-icon-button/evo-icon-button.component.js +4 -1
  16. package/esm2015/lib/components/evo-navigation-button/evo-navigation-button.component.js +17 -0
  17. package/esm2015/lib/components/evo-navigation-button/evo-navigation-button.module.js +45 -0
  18. package/esm2015/lib/components/evo-navigation-button/index.js +2 -0
  19. package/esm2015/lib/components/evo-navigation-button/public-api.js +3 -0
  20. package/esm2015/public_api.js +2 -1
  21. package/fesm2015/evotor-dev-ui-kit-icons-category.js +3 -3
  22. package/fesm2015/evotor-dev-ui-kit-icons-category.js.map +1 -1
  23. package/fesm2015/evotor-dev-ui-kit-icons-navigation.js +2 -2
  24. package/fesm2015/evotor-dev-ui-kit-icons-navigation.js.map +1 -1
  25. package/fesm2015/evotor-dev-ui-kit-icons-system.js +9 -5
  26. package/fesm2015/evotor-dev-ui-kit-icons-system.js.map +1 -1
  27. package/fesm2015/evotor-dev-ui-kit-icons.js +13 -9
  28. package/fesm2015/evotor-dev-ui-kit-icons.js.map +1 -1
  29. package/fesm2015/evotor-dev-ui-kit.js +57 -2
  30. package/fesm2015/evotor-dev-ui-kit.js.map +1 -1
  31. package/icons/category/index.d.ts +3 -3
  32. package/icons/index.d.ts +11 -9
  33. package/icons/navigation/index.d.ts +2 -2
  34. package/icons/system/index.d.ts +8 -4
  35. package/lib/components/evo-icon-button/evo-icon-button.component.d.ts +3 -0
  36. package/lib/components/evo-navigation-button/evo-navigation-button.component.d.ts +5 -0
  37. package/lib/components/evo-navigation-button/evo-navigation-button.module.d.ts +9 -0
  38. package/lib/components/evo-navigation-button/index.d.ts +1 -0
  39. package/lib/components/evo-navigation-button/public-api.d.ts +2 -0
  40. package/package.json +1 -1
  41. package/public_api.d.ts +1 -0
@@ -2782,7 +2782,7 @@
2782
2782
  return EvoAutocompleteDefaultOptionComponent;
2783
2783
  }());
2784
2784
  EvoAutocompleteDefaultOptionComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoAutocompleteDefaultOptionComponent, deps: [{ token: i0__namespace.ChangeDetectorRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
2785
- EvoAutocompleteDefaultOptionComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: EvoAutocompleteDefaultOptionComponent, selector: "evo-autocomplete-default-option", inputs: { hasCheckbox: "hasCheckbox", label: "label", description: "description", isDisabled: "isDisabled", isSelected: "isSelected" }, host: { properties: { "class.has-checkbox": "this.hasCheckboxClass" } }, ngImport: i0__namespace, template: "<div class=\"option option_has-checkbox\" *ngIf=\"hasCheckbox\">\n <evo-checkbox\n [ngModel]=\"isSelected\"\n [ngModelOptions]=\"{standalone: true}\"\n [disabled]=\"isDisabled\"\n (click)=\"onCheckboxClick($event)\"\n (change)=\"onCheckboxClick($event)\"\n (ngModelChange)=\"onSelectedChange($event)\"\n >{{ label }}</evo-checkbox>\n <ng-container *ngIf=\"description\">\n <div class=\"option__description\">{{ description }}</div>\n </ng-container>\n</div>\n<div class=\"option\" *ngIf=\"!hasCheckbox\">\n <div class=\"option__label\">{{ label }}</div>\n <ng-container *ngIf=\"description\">\n <div class=\"option__description\">{{ description }}</div>\n </ng-container>\n</div>\n", styles: [":host{display:block;color:inherit;white-space:var(--evo-autocomplete-option-white-space, nowrap)}.option{position:relative;z-index:1}.option__label{display:block;margin-bottom:0;overflow:var(--evo-autocomplete-option-overflow, hidden);color:inherit;font-size:14px;line-height:22px;text-overflow:var(--evo-autocomplete-option-text-overflow, ellipsis)}.option__description{display:block;overflow:var(--evo-autocomplete-option-overflow, hidden);color:#9b9b9b;font-size:12px;line-height:18px;text-overflow:var(--evo-autocomplete-option-text-overflow, ellipsis)}evo-checkbox+.option__description{padding-left:32px}.option_has-checkbox{background-color:inherit}:host-context(.ng-option.ng-option-selected) .option_has-checkbox{background-color:#e1ecef!important}:host-context(.ng-option.ng-option-disabled){padding:0}:host-context(.ng-option.ng-option-disabled) .option__description,:host-context(.ng-option.ng-option-disabled) .option__label,:host-context(.ng-option.ng-option-disabled) evo-checkbox{color:#c6c6c6}:host-context(.ng-option.ng-option-selected){padding:0}:host-context(.ng-option.ng-option-selected) .option:not(.option_has-checkbox) .option__description,:host-context(.ng-option.ng-option-selected) .option:not(.option_has-checkbox) .option__label{color:#fff}:host-context(.ng-option.ng-option-marked) .option_has-checkbox{background:#F4F6F8}\n"], components: [{ type: EvoCheckboxComponent, selector: "evo-checkbox", inputs: ["indeterminate"], outputs: ["indeterminateChange"] }], directives: [{ type: i1__namespace$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i1__namespace$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0__namespace.ChangeDetectionStrategy.OnPush });
2785
+ EvoAutocompleteDefaultOptionComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: EvoAutocompleteDefaultOptionComponent, selector: "evo-autocomplete-default-option", inputs: { hasCheckbox: "hasCheckbox", label: "label", description: "description", isDisabled: "isDisabled", isSelected: "isSelected" }, host: { properties: { "class.has-checkbox": "this.hasCheckboxClass" } }, ngImport: i0__namespace, template: "<div class=\"option option_has-checkbox\" *ngIf=\"hasCheckbox\">\n <evo-checkbox\n [ngModel]=\"isSelected\"\n [ngModelOptions]=\"{standalone: true}\"\n [disabled]=\"isDisabled\"\n (click)=\"onCheckboxClick($event)\"\n (change)=\"onCheckboxClick($event)\"\n (ngModelChange)=\"onSelectedChange($event)\"\n >{{ label }}</evo-checkbox>\n <ng-container *ngIf=\"description\">\n <div class=\"option__description\">{{ description }}</div>\n </ng-container>\n</div>\n<div class=\"option\" *ngIf=\"!hasCheckbox\">\n <div class=\"option__label\">{{ label }}</div>\n <ng-container *ngIf=\"description\">\n <div class=\"option__description\">{{ description }}</div>\n </ng-container>\n</div>\n", styles: [":host{display:block;color:inherit;white-space:var(--evo-autocomplete-option-white-space, nowrap)}.option{position:relative;z-index:1}.option__label{display:block;margin-bottom:0;overflow:var(--evo-autocomplete-option-overflow, hidden);color:inherit;font-size:14px;line-height:22px;text-overflow:var(--evo-autocomplete-option-text-overflow, ellipsis)}.option__description{display:block;overflow:var(--evo-autocomplete-option-overflow, hidden);color:#9b9b9b;font-size:12px;line-height:18px;text-overflow:var(--evo-autocomplete-option-text-overflow, ellipsis)}evo-checkbox+.option__description{padding-left:32px}.option_has-checkbox{background-color:inherit}:host-context(.ng-option.ng-option-selected) .option_has-checkbox{background-color:#e1ecef!important}:host-context(.ng-option.ng-option-disabled){padding:0}:host-context(.ng-option.ng-option-disabled) .option__description,:host-context(.ng-option.ng-option-disabled) .option__label,:host-context(.ng-option.ng-option-disabled) evo-checkbox{color:#c6c6c6}:host-context(.ng-option.ng-option-selected){padding:0}:host-context(.ng-option.ng-option-marked) .option_has-checkbox{background:#F4F6F8}\n"], components: [{ type: EvoCheckboxComponent, selector: "evo-checkbox", inputs: ["indeterminate"], outputs: ["indeterminateChange"] }], directives: [{ type: i1__namespace$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i1__namespace$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0__namespace.ChangeDetectionStrategy.OnPush });
2786
2786
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoAutocompleteDefaultOptionComponent, decorators: [{
2787
2787
  type: i0.Component,
2788
2788
  args: [{
@@ -4447,6 +4447,9 @@
4447
4447
  var EvoIconButtonComponent = /** @class */ (function () {
4448
4448
  function EvoIconButtonComponent() {
4449
4449
  this.color = exports.EvoIconButtonColor.link;
4450
+ /**
4451
+ * @deprecated instead of rectangle theme use `EvoNavigationButtonComponent`
4452
+ */
4450
4453
  this.theme = 'default';
4451
4454
  this.classes = [];
4452
4455
  }
@@ -8789,6 +8792,64 @@
8789
8792
  }]
8790
8793
  }] });
8791
8794
 
8795
+ var EvoNavigationButtonComponent = /** @class */ (function () {
8796
+ function EvoNavigationButtonComponent() {
8797
+ }
8798
+ return EvoNavigationButtonComponent;
8799
+ }());
8800
+ EvoNavigationButtonComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoNavigationButtonComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
8801
+ EvoNavigationButtonComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: EvoNavigationButtonComponent, selector: "evo-navigation-button", ngImport: i0__namespace, template: "<button class=\"evo-navigation-button\">\n <div class=\"evo-navigation-button__icon-wrapper\">\n <evo-icon class=\"evo-navigation-button__icon\" shape=\"chevron-left\"></evo-icon>\n </div>\n <span class=\"evo-navigation-button__label\"><ng-content></ng-content></span>\n</button>\n", styles: [":host{display:inline-block;margin:0;padding:0;background:none;border:none;cursor:pointer}.evo-navigation-button{display:flex;flex-flow:row nowrap;align-items:center;grid-gap:4px;gap:4px;margin:0;padding:0;background:none;border:none;outline:none}.evo-navigation-button:hover .evo-navigation-button__icon{fill:#3a9ee8}.evo-navigation-button:hover .evo-navigation-button__label{color:#3a9ee8}.evo-navigation-button:active .evo-navigation-button__icon{fill:#0879cb}.evo-navigation-button:active .evo-navigation-button__label{color:#0879cb}.evo-navigation-button__icon-wrapper{width:24px;height:24px}.evo-navigation-button__icon{fill:#0986e2}.evo-navigation-button__label{font-family:var(--evo-font);font-style:normal;font-size:14px;line-height:24px;font-weight:600;color:#0986e2}\n"], components: [{ type: EvoIconComponent, selector: "evo-icon", inputs: ["shape", "svgWidth", "svgHeight", "svgViewBox"] }], changeDetection: i0__namespace.ChangeDetectionStrategy.OnPush });
8802
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoNavigationButtonComponent, decorators: [{
8803
+ type: i0.Component,
8804
+ args: [{
8805
+ selector: 'evo-navigation-button',
8806
+ templateUrl: './evo-navigation-button.component.html',
8807
+ styleUrls: ['./evo-navigation-button.component.scss'],
8808
+ changeDetection: i0.ChangeDetectionStrategy.OnPush,
8809
+ }]
8810
+ }] });
8811
+
8812
+ var EvoNavigationButtonModule = /** @class */ (function () {
8813
+ function EvoNavigationButtonModule() {
8814
+ }
8815
+ return EvoNavigationButtonModule;
8816
+ }());
8817
+ EvoNavigationButtonModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoNavigationButtonModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
8818
+ EvoNavigationButtonModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoNavigationButtonModule, declarations: [EvoNavigationButtonComponent], imports: [i1.CommonModule, EvoIconModule], exports: [EvoNavigationButtonComponent] });
8819
+ EvoNavigationButtonModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoNavigationButtonModule, imports: [[
8820
+ i1.CommonModule,
8821
+ EvoIconModule.forRoot([
8822
+ {
8823
+ name: 'navigation',
8824
+ shapes: {
8825
+ 'chevron-left': navigation.iconChevronLeft,
8826
+ },
8827
+ },
8828
+ ]),
8829
+ ]] });
8830
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoNavigationButtonModule, decorators: [{
8831
+ type: i0.NgModule,
8832
+ args: [{
8833
+ imports: [
8834
+ i1.CommonModule,
8835
+ EvoIconModule.forRoot([
8836
+ {
8837
+ name: 'navigation',
8838
+ shapes: {
8839
+ 'chevron-left': navigation.iconChevronLeft,
8840
+ },
8841
+ },
8842
+ ]),
8843
+ ],
8844
+ declarations: [
8845
+ EvoNavigationButtonComponent,
8846
+ ],
8847
+ exports: [
8848
+ EvoNavigationButtonComponent,
8849
+ ]
8850
+ }]
8851
+ }] });
8852
+
8792
8853
  /*
8793
8854
  * Public API Surface of evo-ui-kit
8794
8855
  */
@@ -8872,6 +8933,8 @@
8872
8933
  exports.EvoNavbarComponent = EvoNavbarComponent;
8873
8934
  exports.EvoNavbarItemComponent = EvoNavbarItemComponent;
8874
8935
  exports.EvoNavbarModule = EvoNavbarModule;
8936
+ exports.EvoNavigationButtonComponent = EvoNavigationButtonComponent;
8937
+ exports.EvoNavigationButtonModule = EvoNavigationButtonModule;
8875
8938
  exports.EvoNoteComponent = EvoNoteComponent;
8876
8939
  exports.EvoNoteModule = EvoNoteModule;
8877
8940
  exports.EvoPaginatorComponent = EvoPaginatorComponent;