@evotor-dev/ui-kit 6.6.0 → 6.7.1
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/evotor-dev-ui-kit-icons-category.umd.js +3 -3
- package/bundles/evotor-dev-ui-kit-icons-category.umd.js.map +1 -1
- package/bundles/evotor-dev-ui-kit-icons-navigation.umd.js +2 -2
- package/bundles/evotor-dev-ui-kit-icons-navigation.umd.js.map +1 -1
- package/bundles/evotor-dev-ui-kit-icons-system.umd.js +10 -4
- package/bundles/evotor-dev-ui-kit-icons-system.umd.js.map +1 -1
- package/bundles/evotor-dev-ui-kit-icons.umd.js +13 -9
- package/bundles/evotor-dev-ui-kit-icons.umd.js.map +1 -1
- package/bundles/evotor-dev-ui-kit.umd.js +75 -7
- package/bundles/evotor-dev-ui-kit.umd.js.map +1 -1
- package/esm2015/icons/category/index.js +4 -4
- package/esm2015/icons/navigation/index.js +3 -3
- package/esm2015/icons/system/index.js +9 -5
- package/esm2015/lib/components/evo-autocomplete/components/templates/evo-autocomplete-default-option.component.js +1 -1
- package/esm2015/lib/components/evo-button/components/evo-button/evo-button.component.js +1 -1
- package/esm2015/lib/components/evo-checkbox/evo-checkbox.component.js +9 -5
- package/esm2015/lib/components/evo-icon-button/evo-icon-button.component.js +4 -1
- package/esm2015/lib/components/evo-input/evo-input.component.js +3 -2
- package/esm2015/lib/components/evo-navigation-button/evo-navigation-button.component.js +17 -0
- package/esm2015/lib/components/evo-navigation-button/evo-navigation-button.module.js +45 -0
- package/esm2015/lib/components/evo-navigation-button/index.js +2 -0
- package/esm2015/lib/components/evo-navigation-button/public-api.js +3 -0
- package/esm2015/public_api.js +2 -1
- package/fesm2015/evotor-dev-ui-kit-icons-category.js +3 -3
- package/fesm2015/evotor-dev-ui-kit-icons-category.js.map +1 -1
- package/fesm2015/evotor-dev-ui-kit-icons-navigation.js +2 -2
- package/fesm2015/evotor-dev-ui-kit-icons-navigation.js.map +1 -1
- package/fesm2015/evotor-dev-ui-kit-icons-system.js +9 -5
- package/fesm2015/evotor-dev-ui-kit-icons-system.js.map +1 -1
- package/fesm2015/evotor-dev-ui-kit-icons.js +13 -9
- package/fesm2015/evotor-dev-ui-kit-icons.js.map +1 -1
- package/fesm2015/evotor-dev-ui-kit.js +68 -8
- package/fesm2015/evotor-dev-ui-kit.js.map +1 -1
- package/icons/category/index.d.ts +3 -3
- package/icons/index.d.ts +11 -9
- package/icons/navigation/index.d.ts +2 -2
- package/icons/system/index.d.ts +8 -4
- package/lib/components/evo-checkbox/evo-checkbox.component.d.ts +4 -1
- package/lib/components/evo-icon-button/evo-icon-button.component.d.ts +3 -0
- package/lib/components/evo-navigation-button/evo-navigation-button.component.d.ts +5 -0
- package/lib/components/evo-navigation-button/evo-navigation-button.module.d.ts +9 -0
- package/lib/components/evo-navigation-button/index.d.ts +1 -0
- package/lib/components/evo-navigation-button/public-api.d.ts +2 -0
- package/package.json +1 -1
- package/public_api.d.ts +1 -0
- package/styles/mixins/_evo-text-button-mixin.scss +24 -0
- package/styles/mixins.scss +1 -0
- package/styles/partials/_typography.scss +14 -0
|
@@ -1791,7 +1791,7 @@
|
|
|
1791
1791
|
if (value || this._value) {
|
|
1792
1792
|
this._value = this.removePrefix(value);
|
|
1793
1793
|
this.onChange(this.prefix + (this._value || ''));
|
|
1794
|
-
this.changeDetector.
|
|
1794
|
+
this.changeDetector.detectChanges();
|
|
1795
1795
|
}
|
|
1796
1796
|
},
|
|
1797
1797
|
enumerable: false,
|
|
@@ -1940,6 +1940,7 @@
|
|
|
1940
1940
|
};
|
|
1941
1941
|
EvoInputComponent.prototype.setDisabledState = function (state) {
|
|
1942
1942
|
this.disabled = state;
|
|
1943
|
+
this.changeDetector.detectChanges();
|
|
1943
1944
|
};
|
|
1944
1945
|
EvoInputComponent.prototype.onFocus = function () {
|
|
1945
1946
|
if (!this.uiStates.isFocused) {
|
|
@@ -2636,8 +2637,10 @@
|
|
|
2636
2637
|
|
|
2637
2638
|
var EvoCheckboxComponent = /** @class */ (function (_super) {
|
|
2638
2639
|
__extends(EvoCheckboxComponent, _super);
|
|
2639
|
-
function EvoCheckboxComponent() {
|
|
2640
|
-
var _this = _super.
|
|
2640
|
+
function EvoCheckboxComponent(injector, cdr) {
|
|
2641
|
+
var _this = _super.call(this, injector) || this;
|
|
2642
|
+
_this.injector = injector;
|
|
2643
|
+
_this.cdr = cdr;
|
|
2641
2644
|
_this.indeterminateChange = new i0.EventEmitter();
|
|
2642
2645
|
_this.indeterminate = undefined;
|
|
2643
2646
|
_this.disabled = false;
|
|
@@ -2661,6 +2664,7 @@
|
|
|
2661
2664
|
set: function (value) {
|
|
2662
2665
|
this._value = value;
|
|
2663
2666
|
this.onChange(value);
|
|
2667
|
+
this.cdr.detectChanges();
|
|
2664
2668
|
},
|
|
2665
2669
|
enumerable: false,
|
|
2666
2670
|
configurable: true
|
|
@@ -2692,10 +2696,11 @@
|
|
|
2692
2696
|
};
|
|
2693
2697
|
EvoCheckboxComponent.prototype.setDisabledState = function (state) {
|
|
2694
2698
|
this.disabled = state;
|
|
2699
|
+
this.cdr.detectChanges();
|
|
2695
2700
|
};
|
|
2696
2701
|
return EvoCheckboxComponent;
|
|
2697
2702
|
}(EvoBaseControl));
|
|
2698
|
-
EvoCheckboxComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoCheckboxComponent, deps:
|
|
2703
|
+
EvoCheckboxComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoCheckboxComponent, deps: [{ token: i0__namespace.Injector }, { token: i0__namespace.ChangeDetectorRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2699
2704
|
EvoCheckboxComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: EvoCheckboxComponent, selector: "evo-checkbox", inputs: { setIndeterminate: ["indeterminate", "setIndeterminate"] }, outputs: { indeterminateChange: "indeterminateChange" }, providers: [
|
|
2700
2705
|
{
|
|
2701
2706
|
provide: i1$1.NG_VALUE_ACCESSOR,
|
|
@@ -2717,7 +2722,7 @@
|
|
|
2717
2722
|
},
|
|
2718
2723
|
],
|
|
2719
2724
|
}]
|
|
2720
|
-
}], propDecorators: { setIndeterminate: [{
|
|
2725
|
+
}], ctorParameters: function () { return [{ type: i0__namespace.Injector }, { type: i0__namespace.ChangeDetectorRef }]; }, propDecorators: { setIndeterminate: [{
|
|
2721
2726
|
type: i0.Input,
|
|
2722
2727
|
args: ['indeterminate']
|
|
2723
2728
|
}], indeterminateChange: [{
|
|
@@ -2782,7 +2787,7 @@
|
|
|
2782
2787
|
return EvoAutocompleteDefaultOptionComponent;
|
|
2783
2788
|
}());
|
|
2784
2789
|
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-
|
|
2790
|
+
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
2791
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoAutocompleteDefaultOptionComponent, decorators: [{
|
|
2787
2792
|
type: i0.Component,
|
|
2788
2793
|
args: [{
|
|
@@ -3317,7 +3322,7 @@
|
|
|
3317
3322
|
return EvoButtonComponent;
|
|
3318
3323
|
}());
|
|
3319
3324
|
EvoButtonComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoButtonComponent, deps: [{ token: i0__namespace.ElementRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
3320
|
-
EvoButtonComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: EvoButtonComponent, selector: "button[evoButton], a[evoButton]", inputs: { size: "size", color: "color", theme: "theme", disabled: "disabled", loading: "loading" }, ngImport: i0__namespace, template: "<div class=\"evo-button\" [evoUiClass]=\"buttonClasses\">\n <span class=\"evo-button__content\" [ngStyle]=\"buttonStyles\">\n <ng-content></ng-content>\n </span>\n <evo-circular-loader class=\"evo-button__loader\" *ngIf=\"isLoading\"></evo-circular-loader>\n</div>\n", styles: [":host{display:inline-block;margin:0;padding:0;vertical-align:top;background:none;border:0;outline:none;--evo-button-background-gradient: none;--evo-button-text-color: none;--evo-button-border-color: none;--evo-button-hover-text-color: none;--evo-button-hover-shadow: none;--evo-button-overflow: hidden}.evo-button{--inner-button-primary-color: #21C68B;--inner-button-secondary-color: #FFFFFF;--inner-text-color: var(--inner-button-secondary-color);--inner-background-color: var(--inner-button-primary-color);--inner-border-color: var(--inner-button-primary-color);display:flex;justify-content:center;align-items:center;height:40px;padding:0 24px;font-size:16px;line-height:1;white-space:nowrap;text-align:center;color:var(--inner-text-color);fill:var(--inner-text-color);border:none;outline:none;cursor:pointer;-webkit-user-select:none;user-select:none;position:relative;overflow:hidden;box-sizing:border-box;z-index:auto;transition:box-shadow .3s,color .3s}.evo-button__content{position:relative;display:flex;flex-flow:row nowrap;align-items:center;overflow:var(--evo-button-overflow);z-index:3}.evo-button__loader{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;padding:4px 0;z-index:2;--evo-circular-loader-color: var(--inner-text-color)}.evo-button:before{content:\"\";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;background-color:var(--inner-background-color);border:solid 1px var(--inner-border-color);border-radius:inherit;transition:background .3s,color .3s,border .3s}.evo-button:after{content:\"\";position:absolute;top:0;right:0;bottom:0;left:0;z-index:2;opacity:0;transition:opacity .3s,background-color .3s}.evo-button:hover{box-shadow:var(--evo-button-hover-shadow)}.evo-button:hover:after{opacity:.2;background-color:#fff}.evo-button:focus:after,.evo-button:active:after{opacity:.1;background-color:#000}.evo-button:disabled,.evo-button_is-disabled{--inner-text-color: #FFFFFF !important;--inner-background-color: #C6C6C6 !important;--inner-border-color: transparent !important;pointer-events:none}.evo-button:disabled .evo-button:after,.evo-button_is-disabled .evo-button:after{display:none}.evo-button_is-outline:not(.evo-button_is-outline:hover):not(.evo-button_is-outline_is-disabled):not(.evo-button_is-outline:active){--inner-text-color: var(--inner-button-primary-color);--inner-background-color: transparent;--inner-border-color: var(--inner-button-primary-color)}.evo-button_is-outline:hover{--inner-text-color: var(--inner-button-secondary-color);--inner-background-color: var(--inner-button-primary-color)}.evo-button_is-outline:hover:not(:focus):not(:active):after{background:transparent;border:none}.evo-button_is-loading{position:relative;pointer-events:none}.evo-button.evo-button_shape_rounded{border-radius:30px;font-weight:500;font-family:var(--evo-font-secondary);text-transform:uppercase}.evo-button.evo-button_shape_rectangle{border-radius:4px;padding:0 12px;font-weight:600;font-family:var(--evo-font);text-transform:unset}.evo-button.evo-button_shape_semi-rectangle{border-radius:8px;padding:0 8px;font-weight:700;font-family:var(--evo-font);text-transform:unset}.evo-button.evo-button_color_secondary{--inner-button-primary-color: #231F20;--inner-button-secondary-color: #FFFFFF}.evo-button.evo-button_color_success{--inner-button-primary-color: #21C68B;--inner-button-secondary-color: #FFFFFF}.evo-button.evo-button_color_bonus{--inner-button-primary-color: #C72AAE;--inner-button-secondary-color: #FFFFFF}.evo-button.evo-button_color_text{--inner-button-primary-color: #212121;--inner-button-secondary-color: #FFFFFF}.evo-button.evo-button_color_link{--inner-button-primary-color: #0986E2;--inner-button-secondary-color: #FFFFFF}.evo-button.evo-button_color_error{--inner-button-primary-color: #FF1817;--inner-button-secondary-color: #FFFFFF}.evo-button.evo-button_color_white{--inner-button-primary-color: #FFFFFF;--inner-button-secondary-color: #212121}.evo-button.evo-button_color_primary{--inner-button-primary-color: #F05023;--inner-button-secondary-color: #FFFFFF}.evo-button.evo-button_size_small.evo-button_shape_rounded{height:32px;
|
|
3325
|
+
EvoButtonComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: EvoButtonComponent, selector: "button[evoButton], a[evoButton]", inputs: { size: "size", color: "color", theme: "theme", disabled: "disabled", loading: "loading" }, ngImport: i0__namespace, template: "<div class=\"evo-button\" [evoUiClass]=\"buttonClasses\">\n <span class=\"evo-button__content\" [ngStyle]=\"buttonStyles\">\n <ng-content></ng-content>\n </span>\n <evo-circular-loader class=\"evo-button__loader\" *ngIf=\"isLoading\"></evo-circular-loader>\n</div>\n", styles: [":host{display:inline-block;margin:0;padding:0;vertical-align:top;background:none;border:0;outline:none;--evo-button-background-color: transparent;--evo-button-background-gradient: none;--evo-button-text-color: none;--evo-button-border-color: none;--evo-button-hover-text-color: none;--evo-button-hover-shadow: none;--evo-button-overflow: hidden}.evo-button{--inner-button-primary-color: #21C68B;--inner-button-secondary-color: #FFFFFF;--inner-text-color: var(--inner-button-secondary-color);--inner-background-color: var(--inner-button-primary-color);--inner-border-color: var(--inner-button-primary-color);display:flex;justify-content:center;align-items:center;height:40px;padding:0 24px;font-size:16px;line-height:1;white-space:nowrap;text-align:center;color:var(--inner-text-color);fill:var(--inner-text-color);border:none;outline:none;cursor:pointer;-webkit-user-select:none;user-select:none;position:relative;overflow:hidden;box-sizing:border-box;z-index:auto;transition:box-shadow .3s,color .3s}.evo-button__content{position:relative;display:flex;flex-flow:row nowrap;align-items:center;overflow:var(--evo-button-overflow);z-index:3}.evo-button__loader{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;padding:4px 0;z-index:2;--evo-circular-loader-color: var(--inner-text-color)}.evo-button:before{content:\"\";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;background-color:var(--inner-background-color);border:solid 1px var(--inner-border-color);border-radius:inherit;transition:background .3s,color .3s,border .3s}.evo-button:after{content:\"\";position:absolute;top:0;right:0;bottom:0;left:0;z-index:2;opacity:0;transition:opacity .3s,background-color .3s}.evo-button:hover{box-shadow:var(--evo-button-hover-shadow)}.evo-button:hover:after{opacity:.2;background-color:#fff}.evo-button:focus:after,.evo-button:active:after{opacity:.1;background-color:#000}.evo-button:disabled,.evo-button_is-disabled{--inner-text-color: #FFFFFF !important;--inner-background-color: #C6C6C6 !important;--inner-border-color: transparent !important;pointer-events:none}.evo-button:disabled .evo-button:after,.evo-button_is-disabled .evo-button:after{display:none}.evo-button_is-outline:not(.evo-button_is-outline:hover):not(.evo-button_is-outline_is-disabled):not(.evo-button_is-outline:active){--inner-text-color: var(--inner-button-primary-color);--inner-background-color: transparent;--inner-border-color: var(--inner-button-primary-color)}.evo-button_is-outline:hover{--inner-text-color: var(--inner-button-secondary-color);--inner-background-color: var(--inner-button-primary-color)}.evo-button_is-outline:hover:not(:focus):not(:active):after{background:transparent;border:none}.evo-button_is-loading{position:relative;pointer-events:none}.evo-button.evo-button_shape_rounded{border-radius:30px;font-weight:500;font-family:var(--evo-font-secondary);text-transform:uppercase}.evo-button.evo-button_shape_rectangle{border-radius:4px;padding:0 12px;font-weight:600;font-family:var(--evo-font);text-transform:unset}.evo-button.evo-button_shape_semi-rectangle{border-radius:8px;padding:0 8px;font-weight:700;font-family:var(--evo-font);text-transform:unset}.evo-button.evo-button_color_secondary{--inner-button-primary-color: #231F20;--inner-button-secondary-color: #FFFFFF}.evo-button.evo-button_color_success{--inner-button-primary-color: #21C68B;--inner-button-secondary-color: #FFFFFF}.evo-button.evo-button_color_bonus{--inner-button-primary-color: #C72AAE;--inner-button-secondary-color: #FFFFFF}.evo-button.evo-button_color_text{--inner-button-primary-color: #212121;--inner-button-secondary-color: #FFFFFF}.evo-button.evo-button_color_link{--inner-button-primary-color: #0986E2;--inner-button-secondary-color: #FFFFFF}.evo-button.evo-button_color_error{--inner-button-primary-color: #FF1817;--inner-button-secondary-color: #FFFFFF}.evo-button.evo-button_color_white{--inner-button-primary-color: #FFFFFF;--inner-button-secondary-color: #212121}.evo-button.evo-button_color_primary{--inner-button-primary-color: #F05023;--inner-button-secondary-color: #FFFFFF}.evo-button.evo-button_size_small.evo-button_shape_rounded{height:32px;padding:0 16px;font-family:var(--evo-font-secondary);font-style:normal;font-weight:500;font-size:14px;line-height:20px}.evo-button.evo-button_size_normal.evo-button_shape_rounded{height:40px;padding:0 24px;font-family:var(--evo-font-secondary);font-style:normal;font-weight:500;font-size:16px;line-height:20px}.evo-button.evo-button_size_large.evo-button_shape_rounded{height:56px;padding:0 40px;font-family:var(--evo-font-secondary);font-style:normal;font-weight:500;font-size:18px;line-height:20px}.evo-button.evo-button_size_small.evo-button_shape_rectangle,.evo-button.evo-button_size_normal.evo-button_shape_rectangle,.evo-button.evo-button_size_large.evo-button_shape_rectangle{height:32px;font-family:var(--evo-font);font-style:normal;font-size:14px;line-height:24px;font-weight:600}.evo-button.evo-button_size_small.evo-button_shape_semi-rectangle,.evo-button.evo-button_size_normal.evo-button_shape_semi-rectangle,.evo-button.evo-button_size_large.evo-button_shape_semi-rectangle{height:24px;font-family:var(--evo-font);font-style:normal;font-size:12px;line-height:18px;font-weight:700}.evo-button.evo-button_color_white.evo-button_shape_rounded:not(.evo-button.evo-button_color_white.evo-button_shape_rounded:disabled):is(.evo-button.evo-button_color_white.evo-button_shape_rounded:hover):after{z-index:3}.evo-button.evo-button_color_custom:not(.evo-button_is-disabled):not(.evo-button_is-outline){--inner-button-secondary-color: var(--evo-button-text-color)}.evo-button.evo-button_color_custom:not(.evo-button_is-disabled):not(.evo-button_is-outline):hover{--inner-button-secondary-color: var(--evo-button-hover-text-color)}.evo-button.evo-button_color_custom:not(.evo-button_is-disabled):not(.evo-button_is-outline):before{background-color:var(--evo-button-background-color);background-image:var(--evo-button-background-gradient);border-color:transparent}.evo-button.evo-button_color_custom:not(.evo-button_is-disabled).evo-button_is-outline{--inner-button-primary-color: var(--evo-button-border-color)}.evo-button.evo-button_color_custom:not(.evo-button_is-disabled).evo-button_is-outline:hover:before,.evo-button.evo-button_color_custom:not(.evo-button_is-disabled).evo-button_is-outline:active:before{background-color:var(--evo-button-background-color);background-image:var(--evo-button-background-gradient)}\n"], components: [{ type: EvoCircularLoaderComponent, selector: "evo-circular-loader" }], directives: [{ type: EvoUiClassDirective, selector: "[evoUiClass]", inputs: ["class", "evoUiClass"] }, { type: i1__namespace$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i1__namespace$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0__namespace.ChangeDetectionStrategy.OnPush });
|
|
3321
3326
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoButtonComponent, decorators: [{
|
|
3322
3327
|
type: i0.Component,
|
|
3323
3328
|
args: [{
|
|
@@ -4447,6 +4452,9 @@
|
|
|
4447
4452
|
var EvoIconButtonComponent = /** @class */ (function () {
|
|
4448
4453
|
function EvoIconButtonComponent() {
|
|
4449
4454
|
this.color = exports.EvoIconButtonColor.link;
|
|
4455
|
+
/**
|
|
4456
|
+
* @deprecated instead of rectangle theme use `EvoNavigationButtonComponent`
|
|
4457
|
+
*/
|
|
4450
4458
|
this.theme = 'default';
|
|
4451
4459
|
this.classes = [];
|
|
4452
4460
|
}
|
|
@@ -8789,6 +8797,64 @@
|
|
|
8789
8797
|
}]
|
|
8790
8798
|
}] });
|
|
8791
8799
|
|
|
8800
|
+
var EvoNavigationButtonComponent = /** @class */ (function () {
|
|
8801
|
+
function EvoNavigationButtonComponent() {
|
|
8802
|
+
}
|
|
8803
|
+
return EvoNavigationButtonComponent;
|
|
8804
|
+
}());
|
|
8805
|
+
EvoNavigationButtonComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoNavigationButtonComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
8806
|
+
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 });
|
|
8807
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoNavigationButtonComponent, decorators: [{
|
|
8808
|
+
type: i0.Component,
|
|
8809
|
+
args: [{
|
|
8810
|
+
selector: 'evo-navigation-button',
|
|
8811
|
+
templateUrl: './evo-navigation-button.component.html',
|
|
8812
|
+
styleUrls: ['./evo-navigation-button.component.scss'],
|
|
8813
|
+
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
8814
|
+
}]
|
|
8815
|
+
}] });
|
|
8816
|
+
|
|
8817
|
+
var EvoNavigationButtonModule = /** @class */ (function () {
|
|
8818
|
+
function EvoNavigationButtonModule() {
|
|
8819
|
+
}
|
|
8820
|
+
return EvoNavigationButtonModule;
|
|
8821
|
+
}());
|
|
8822
|
+
EvoNavigationButtonModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoNavigationButtonModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
8823
|
+
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] });
|
|
8824
|
+
EvoNavigationButtonModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoNavigationButtonModule, imports: [[
|
|
8825
|
+
i1.CommonModule,
|
|
8826
|
+
EvoIconModule.forRoot([
|
|
8827
|
+
{
|
|
8828
|
+
name: 'navigation',
|
|
8829
|
+
shapes: {
|
|
8830
|
+
'chevron-left': navigation.iconChevronLeft,
|
|
8831
|
+
},
|
|
8832
|
+
},
|
|
8833
|
+
]),
|
|
8834
|
+
]] });
|
|
8835
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EvoNavigationButtonModule, decorators: [{
|
|
8836
|
+
type: i0.NgModule,
|
|
8837
|
+
args: [{
|
|
8838
|
+
imports: [
|
|
8839
|
+
i1.CommonModule,
|
|
8840
|
+
EvoIconModule.forRoot([
|
|
8841
|
+
{
|
|
8842
|
+
name: 'navigation',
|
|
8843
|
+
shapes: {
|
|
8844
|
+
'chevron-left': navigation.iconChevronLeft,
|
|
8845
|
+
},
|
|
8846
|
+
},
|
|
8847
|
+
]),
|
|
8848
|
+
],
|
|
8849
|
+
declarations: [
|
|
8850
|
+
EvoNavigationButtonComponent,
|
|
8851
|
+
],
|
|
8852
|
+
exports: [
|
|
8853
|
+
EvoNavigationButtonComponent,
|
|
8854
|
+
]
|
|
8855
|
+
}]
|
|
8856
|
+
}] });
|
|
8857
|
+
|
|
8792
8858
|
/*
|
|
8793
8859
|
* Public API Surface of evo-ui-kit
|
|
8794
8860
|
*/
|
|
@@ -8872,6 +8938,8 @@
|
|
|
8872
8938
|
exports.EvoNavbarComponent = EvoNavbarComponent;
|
|
8873
8939
|
exports.EvoNavbarItemComponent = EvoNavbarItemComponent;
|
|
8874
8940
|
exports.EvoNavbarModule = EvoNavbarModule;
|
|
8941
|
+
exports.EvoNavigationButtonComponent = EvoNavigationButtonComponent;
|
|
8942
|
+
exports.EvoNavigationButtonModule = EvoNavigationButtonModule;
|
|
8875
8943
|
exports.EvoNoteComponent = EvoNoteComponent;
|
|
8876
8944
|
exports.EvoNoteModule = EvoNoteModule;
|
|
8877
8945
|
exports.EvoPaginatorComponent = EvoPaginatorComponent;
|