@evotor-dev/ui-kit 8.0.0-beta.22 → 8.0.0-beta.24
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/esm2022/lib/components/evo-input/evo-input.component.mjs +2 -2
- package/esm2022/lib/components/evo-portal/evo-portal.service.mjs +2 -1
- package/esm2022/lib/components/evo-sidebar/evo-sidebar.component.mjs +3 -3
- package/esm2022/lib/components/evo-sidebar/evo-sidebar.provider.mjs +20 -0
- package/esm2022/lib/components/evo-sidebar/evo-sidebar.service.mjs +7 -10
- package/esm2022/lib/components/evo-sidebar/public-api.mjs +2 -2
- package/fesm2022/evotor-dev-ui-kit.mjs +20 -56
- package/fesm2022/evotor-dev-ui-kit.mjs.map +1 -1
- package/lib/components/evo-sidebar/evo-sidebar.provider.d.ts +4 -0
- package/lib/components/evo-sidebar/evo-sidebar.service.d.ts +1 -2
- package/lib/components/evo-sidebar/public-api.d.ts +1 -1
- package/package.json +1 -1
- package/esm2022/lib/components/evo-sidebar/evo-sidebar.module.mjs +0 -59
- package/lib/components/evo-sidebar/evo-sidebar.module.d.ts +0 -14
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, Injectable, PLATFORM_ID, ɵstringify as _stringify, Directive, Input, EventEmitter, Output, HostListener, Optional, ViewContainerRef, TemplateRef, Inject, NgModule, CUSTOM_ELEMENTS_SCHEMA, inject, SecurityContext, Component, ChangeDetectionStrategy, HostBinding, Pipe, forwardRef, ViewChild, ViewEncapsulation, ContentChild, ElementRef, ComponentRef, input, output, computed, viewChild, signal, ChangeDetectorRef, DestroyRef, EnvironmentInjector, NgZone, createComponent, Injector, ApplicationRef, ComponentFactoryResolver, Host, ContentChildren, ViewChildren } from '@angular/core';
|
|
2
|
+
import { InjectionToken, Injectable, PLATFORM_ID, ɵstringify as _stringify, Directive, Input, EventEmitter, Output, HostListener, Optional, ViewContainerRef, TemplateRef, Inject, NgModule, CUSTOM_ELEMENTS_SCHEMA, inject, SecurityContext, Component, ChangeDetectionStrategy, HostBinding, Pipe, forwardRef, ViewChild, ViewEncapsulation, ContentChild, ElementRef, ComponentRef, input, output, computed, viewChild, signal, ChangeDetectorRef, DestroyRef, EnvironmentInjector, NgZone, createComponent, Injector, ApplicationRef, ComponentFactoryResolver, makeEnvironmentProviders, Host, ContentChildren, ViewChildren } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/common';
|
|
4
4
|
import { isPlatformBrowser, CommonModule, AsyncPipe, NgClass, NgTemplateOutlet, NgIf, NgStyle, Location, NgFor } from '@angular/common';
|
|
5
5
|
import * as i1$2 from '@angular/forms';
|
|
@@ -17,7 +17,7 @@ import { HttpClient } from '@angular/common/http';
|
|
|
17
17
|
import { CATEGORY_BY_ICON_NAME } from '@evotor-dev/ui-kit/icons';
|
|
18
18
|
import * as i4 from '@ng-select/ng-select';
|
|
19
19
|
import { NgSelectComponent, NgSelectModule } from '@ng-select/ng-select';
|
|
20
|
-
import { isNull, cloneDeep, isEqual, isUndefined } from 'lodash-es';
|
|
20
|
+
import { isNull, cloneDeep, isEqual, merge as merge$1, isUndefined } from 'lodash-es';
|
|
21
21
|
import * as IMask from 'imask';
|
|
22
22
|
import flatpickr from 'flatpickr';
|
|
23
23
|
import { IMaskDirective } from 'angular-imask';
|
|
@@ -1053,7 +1053,7 @@ class EvoInputComponent extends EvoBaseControl {
|
|
|
1053
1053
|
if (value || this._value) {
|
|
1054
1054
|
this._value = this.removePrefix(value);
|
|
1055
1055
|
this.onChange(this.prefix + (this._value || ''));
|
|
1056
|
-
this.changeDetector.
|
|
1056
|
+
this.changeDetector.markForCheck();
|
|
1057
1057
|
}
|
|
1058
1058
|
}
|
|
1059
1059
|
get inputClass() {
|
|
@@ -3905,6 +3905,7 @@ class EvoPortalService {
|
|
|
3905
3905
|
else if (this.isHTMLElement(elementOrSelector)) {
|
|
3906
3906
|
element = elementOrSelector;
|
|
3907
3907
|
}
|
|
3908
|
+
// TODO: rewrite without deprecated ComponentFactoryResolver
|
|
3908
3909
|
const factory = this.cfr.resolveComponentFactory(portal);
|
|
3909
3910
|
const compRef = factory.create(injector || this.injector);
|
|
3910
3911
|
this.appRef.attachView(compRef.hostView);
|
|
@@ -4143,13 +4144,9 @@ const EVO_SIDEBAR_DATA = new InjectionToken('EVO_SIDEBAR_DATA');
|
|
|
4143
4144
|
class EvoSidebarService {
|
|
4144
4145
|
constructor() {
|
|
4145
4146
|
this.portal = inject(EvoAbstractPortal); // EvoSidebarPortal provided
|
|
4146
|
-
this.
|
|
4147
|
+
this.config = inject(EVO_SIDEBAR_CONFIG);
|
|
4147
4148
|
this.sidebarEvents$ = new Subject();
|
|
4148
4149
|
this.registeredSidebars = {};
|
|
4149
|
-
this.config = {
|
|
4150
|
-
...evoSidebarDefaultConfig,
|
|
4151
|
-
...this._config,
|
|
4152
|
-
};
|
|
4153
4150
|
}
|
|
4154
4151
|
deregister(id) {
|
|
4155
4152
|
delete this.registeredSidebars[id];
|
|
@@ -4226,10 +4223,11 @@ class EvoSidebarService {
|
|
|
4226
4223
|
};
|
|
4227
4224
|
}
|
|
4228
4225
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: EvoSidebarService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4229
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: EvoSidebarService }); }
|
|
4226
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: EvoSidebarService, providedIn: 'root' }); }
|
|
4230
4227
|
}
|
|
4231
4228
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: EvoSidebarService, decorators: [{
|
|
4232
|
-
type: Injectable
|
|
4229
|
+
type: Injectable,
|
|
4230
|
+
args: [{ providedIn: 'root' }]
|
|
4233
4231
|
}] });
|
|
4234
4232
|
|
|
4235
4233
|
var EvoSidebarCloseTargets;
|
|
@@ -4447,7 +4445,7 @@ class EvoSidebarComponent {
|
|
|
4447
4445
|
this.locationSubscription = this.location.subscribe(() => this.closeSidebar(EvoSidebarCloseTargets.DEFAULT));
|
|
4448
4446
|
}
|
|
4449
4447
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: EvoSidebarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4450
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.10", type: EvoSidebarComponent, isStandalone: true, selector: "evo-sidebar", inputs: { backButton: { classPropertyName: "backButton", publicName: "backButton", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, header: { classPropertyName: "header", publicName: "header", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, relativeFooter: { classPropertyName: "relativeFooter", publicName: "relativeFooter", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { back: "back" }, viewQueries: [{ propertyName: "contentContainer", first: true, predicate: ["sidebarContentContainer"], descendants: true, read: ViewContainerRef, isSignal: true }], ngImport: i0, template: "@if (isVisible()) {\n <div class=\"evo-sidebar__background\" (click)=\"closeSidebar(closeTargets.BACKGROUND)\"></div>\n}\n\n<div
|
|
4448
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.10", type: EvoSidebarComponent, isStandalone: true, selector: "evo-sidebar", inputs: { backButton: { classPropertyName: "backButton", publicName: "backButton", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, header: { classPropertyName: "header", publicName: "header", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, relativeFooter: { classPropertyName: "relativeFooter", publicName: "relativeFooter", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { back: "back" }, viewQueries: [{ propertyName: "contentContainer", first: true, predicate: ["sidebarContentContainer"], descendants: true, read: ViewContainerRef, isSignal: true }], ngImport: i0, template: "@if (isVisible()) {\n <div class=\"evo-sidebar__background\" (click)=\"closeSidebar(closeTargets.BACKGROUND)\"></div>\n}\n\n<div\n class=\"evo-sidebar\"\n [@open]=\"currentState\"\n [evoUiClass]=\"totalClasses()\"\n (@open.done)=\"handleAnimationDone($event)\"\n>\n <ng-template #sidebarContentContainer />\n\n @if (!isDynamicContent()) {\n <div evo-sidebar-header [backButton]=\"backButton()\" (back)=\"handleBackClick()\">\n {{ header() }}\n </div>\n <div evo-sidebar-content [relativeFooter]=\"relativeFooter()\">\n <ng-content select=\"[content]\" />\n </div>\n <div evo-sidebar-footer>\n <ng-content select=\"[footer]\" />\n </div>\n }\n</div>\n", styles: [".evo-sidebar{position:fixed;top:0;right:0;z-index:3000;display:flex;flex-direction:column;width:100%;height:100%;background-color:#fff;transform:translate(100vw);transition:box-shadow .1s .5s}.evo-sidebar_visible{box-shadow:0 8px 10px #00000024,0 3px 14px #0000001f;transition-delay:unset}@media (min-width: 992px){.evo-sidebar_normal{width:674px;transform:translate(674px)}}@media (min-width: 992px){.evo-sidebar_middle{width:995px;transform:translate(100%)}}@media (min-width: 992px){.evo-sidebar_large{width:80%;transform:translate(100%)}}.evo-sidebar__background{position:fixed;inset:0;z-index:1000;background-color:#000;opacity:.3}\n"], dependencies: [{ kind: "directive", type: EvoUiClassDirective, selector: "[evoUiClass]", inputs: ["class", "evoUiClass"] }, { kind: "component", type: EvoSidebarHeaderComponent, selector: "evo-sidebar-header, [evo-sidebar-header]", inputs: ["backButton"], outputs: ["back"] }, { kind: "component", type: EvoSidebarContentComponent, selector: "evo-sidebar-content, [evo-sidebar-content]", inputs: ["relativeFooter"] }, { kind: "component", type: EvoSidebarFooterComponent, selector: "evo-sidebar-footer, [evo-sidebar-footer]" }], viewProviders: [
|
|
4451
4449
|
{
|
|
4452
4450
|
provide: SidebarInjectionToken,
|
|
4453
4451
|
useExisting: forwardRef(() => EvoSidebarComponent),
|
|
@@ -4466,7 +4464,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
4466
4464
|
EvoSidebarHeaderComponent,
|
|
4467
4465
|
EvoSidebarContentComponent,
|
|
4468
4466
|
EvoSidebarFooterComponent,
|
|
4469
|
-
], template: "@if (isVisible()) {\n <div class=\"evo-sidebar__background\" (click)=\"closeSidebar(closeTargets.BACKGROUND)\"></div>\n}\n\n<div
|
|
4467
|
+
], template: "@if (isVisible()) {\n <div class=\"evo-sidebar__background\" (click)=\"closeSidebar(closeTargets.BACKGROUND)\"></div>\n}\n\n<div\n class=\"evo-sidebar\"\n [@open]=\"currentState\"\n [evoUiClass]=\"totalClasses()\"\n (@open.done)=\"handleAnimationDone($event)\"\n>\n <ng-template #sidebarContentContainer />\n\n @if (!isDynamicContent()) {\n <div evo-sidebar-header [backButton]=\"backButton()\" (back)=\"handleBackClick()\">\n {{ header() }}\n </div>\n <div evo-sidebar-content [relativeFooter]=\"relativeFooter()\">\n <ng-content select=\"[content]\" />\n </div>\n <div evo-sidebar-footer>\n <ng-content select=\"[footer]\" />\n </div>\n }\n</div>\n", styles: [".evo-sidebar{position:fixed;top:0;right:0;z-index:3000;display:flex;flex-direction:column;width:100%;height:100%;background-color:#fff;transform:translate(100vw);transition:box-shadow .1s .5s}.evo-sidebar_visible{box-shadow:0 8px 10px #00000024,0 3px 14px #0000001f;transition-delay:unset}@media (min-width: 992px){.evo-sidebar_normal{width:674px;transform:translate(674px)}}@media (min-width: 992px){.evo-sidebar_middle{width:995px;transform:translate(100%)}}@media (min-width: 992px){.evo-sidebar_large{width:80%;transform:translate(100%)}}.evo-sidebar__background{position:fixed;inset:0;z-index:1000;background-color:#000;opacity:.3}\n"] }]
|
|
4470
4468
|
}] });
|
|
4471
4469
|
|
|
4472
4470
|
class EvoSidebarPortal extends EvoPortalService {
|
|
@@ -4493,49 +4491,15 @@ const portalProvider = {
|
|
|
4493
4491
|
useClass: EvoSidebarPortal,
|
|
4494
4492
|
deps: [ApplicationRef, Injector, ComponentFactoryResolver],
|
|
4495
4493
|
};
|
|
4496
|
-
|
|
4497
|
-
|
|
4498
|
-
|
|
4499
|
-
|
|
4500
|
-
|
|
4501
|
-
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
ngModule: EvoSidebarModule,
|
|
4506
|
-
providers: [
|
|
4507
|
-
portalProvider,
|
|
4508
|
-
{
|
|
4509
|
-
provide: EVO_SIDEBAR_CONFIG,
|
|
4510
|
-
useValue: config,
|
|
4511
|
-
},
|
|
4512
|
-
{
|
|
4513
|
-
provide: EvoSidebarService,
|
|
4514
|
-
useClass: EvoSidebarService,
|
|
4515
|
-
deps: [EvoAbstractPortal, EVO_SIDEBAR_CONFIG],
|
|
4516
|
-
},
|
|
4517
|
-
],
|
|
4518
|
-
};
|
|
4519
|
-
}
|
|
4520
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: EvoSidebarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4521
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.10", ngImport: i0, type: EvoSidebarModule, imports: [EvoSidebarComponent,
|
|
4522
|
-
EvoSidebarHeaderComponent,
|
|
4523
|
-
EvoSidebarContentComponent,
|
|
4524
|
-
EvoSidebarFooterComponent], exports: [EvoSidebarComponent,
|
|
4525
|
-
EvoSidebarHeaderComponent,
|
|
4526
|
-
EvoSidebarContentComponent,
|
|
4527
|
-
EvoSidebarFooterComponent] }); }
|
|
4528
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: EvoSidebarModule, providers: [portalProvider, EvoSidebarService], imports: [EvoSidebarComponent,
|
|
4529
|
-
EvoSidebarHeaderComponent] }); }
|
|
4530
|
-
}
|
|
4531
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: EvoSidebarModule, decorators: [{
|
|
4532
|
-
type: NgModule,
|
|
4533
|
-
args: [{
|
|
4534
|
-
imports: [...components],
|
|
4535
|
-
exports: [...components],
|
|
4536
|
-
providers: [portalProvider, EvoSidebarService],
|
|
4537
|
-
}]
|
|
4538
|
-
}] });
|
|
4494
|
+
function provideSidebar(config = {}) {
|
|
4495
|
+
return makeEnvironmentProviders([
|
|
4496
|
+
portalProvider,
|
|
4497
|
+
{
|
|
4498
|
+
provide: EVO_SIDEBAR_CONFIG,
|
|
4499
|
+
useValue: merge$1(evoSidebarDefaultConfig, config),
|
|
4500
|
+
},
|
|
4501
|
+
]);
|
|
4502
|
+
}
|
|
4539
4503
|
|
|
4540
4504
|
var EvoStepperEvent;
|
|
4541
4505
|
(function (EvoStepperEvent) {
|
|
@@ -6178,5 +6142,5 @@ class Serializable {
|
|
|
6178
6142
|
* Generated bundle index. Do not edit.
|
|
6179
6143
|
*/
|
|
6180
6144
|
|
|
6181
|
-
export { CSS_BREAKPOINTS, DESKTOP_SMALL_VIEW, DaDataEntityTypes, DaDataParty, DadataBankStatus, DadataBankType, DadataCompanyBranchType, DadataCompanyStatus, DadataCompanyType, DadataFounderShareType, DadataManagerType, DeclinationPipe, DeprecateMethod, DeprecateVariable, DesktopSmallViewProvider, EVO_ASSETS_PATH, EVO_DROPDOWN_POSITION_DESCRIPTION, EVO_ICON_RESOLVER, EVO_LOCAL_ASSETS_PATH, EVO_SIDEBAR_CONFIG, EVO_SIDEBAR_DATA, EVO_SIDEBAR_ROOT_ID, EvoAbstractPortal, EvoAccordionComponent, EvoAccordionContentComponent, EvoAccordionModule, EvoAccordionPanelComponent, EvoAccordionTitleComponent, EvoAutocompleteComponent, EvoAutocompleteDefaultOptionComponent, EvoAutocompleteFooterComponent, EvoAutocompleteHeaderComponent, EvoAutocompleteModule, EvoBadgeComponent, EvoBadgeModule, EvoBaseControl, EvoButtonComponent, EvoButtonModule, EvoCheckboxComponent, EvoCheckboxModule, EvoChipComponent, EvoChipModule, EvoChipTheme, EvoChipType, EvoCircularLoaderComponent, EvoClickOutsideDirective, EvoCollection, EvoCollectionFabric, EvoControlErrorComponent, EvoControlErrorModule, EvoControlLabelComponent, EvoControlLabelModule, EvoControlStateManager, EvoControlStates, EvoCounterComponent, EvoCounterModule, EvoCounterSize, EvoDatepickerComponent, EvoDatepickerModule, EvoDropdownComponent, EvoDropdownModule, EvoDropdownOriginDirective, EvoExpandedService, EvoIconButtonComponent, EvoIconButtonModule, EvoIconComponent, EvoIconNumberComponent, EvoIconNumberModule, EvoIconService, EvoInputComponent, EvoInputContenteditableComponent, EvoInputContenteditableModule, EvoInputIconDirective, EvoInputModule, EvoInputSizes, EvoInputTheme, EvoIsExpandedDirective, EvoLetContext, EvoLetDirective, EvoLoaderModule, EvoModalCloseTargets, EvoModalComponent, EvoModalModule, EvoModalService, EvoNavbarComponent, EvoNavbarItemComponent, EvoNavbarModule, EvoNavigationButtonComponent, EvoNavigationButtonModule, EvoNoteComponent, EvoNoteModule, EvoPaginatorComponent, EvoPaginatorModule, EvoPipesModule, EvoPopoverComponent, EvoPopoverModule, EvoPortalModule, EvoPortalOutlet, EvoPortalOutletDirective, EvoPortalService, EvoRadioComponent, EvoRadioModule, EvoRadioshapeComponent, EvoRadioshapeModule, EvoSidebarCloseTargets, EvoSidebarComponent, EvoSidebarContentComponent, EvoSidebarFooterComponent, EvoSidebarHeaderComponent,
|
|
6145
|
+
export { CSS_BREAKPOINTS, DESKTOP_SMALL_VIEW, DaDataEntityTypes, DaDataParty, DadataBankStatus, DadataBankType, DadataCompanyBranchType, DadataCompanyStatus, DadataCompanyType, DadataFounderShareType, DadataManagerType, DeclinationPipe, DeprecateMethod, DeprecateVariable, DesktopSmallViewProvider, EVO_ASSETS_PATH, EVO_DROPDOWN_POSITION_DESCRIPTION, EVO_ICON_RESOLVER, EVO_LOCAL_ASSETS_PATH, EVO_SIDEBAR_CONFIG, EVO_SIDEBAR_DATA, EVO_SIDEBAR_ROOT_ID, EvoAbstractPortal, EvoAccordionComponent, EvoAccordionContentComponent, EvoAccordionModule, EvoAccordionPanelComponent, EvoAccordionTitleComponent, EvoAutocompleteComponent, EvoAutocompleteDefaultOptionComponent, EvoAutocompleteFooterComponent, EvoAutocompleteHeaderComponent, EvoAutocompleteModule, EvoBadgeComponent, EvoBadgeModule, EvoBaseControl, EvoButtonComponent, EvoButtonModule, EvoCheckboxComponent, EvoCheckboxModule, EvoChipComponent, EvoChipModule, EvoChipTheme, EvoChipType, EvoCircularLoaderComponent, EvoClickOutsideDirective, EvoCollection, EvoCollectionFabric, EvoControlErrorComponent, EvoControlErrorModule, EvoControlLabelComponent, EvoControlLabelModule, EvoControlStateManager, EvoControlStates, EvoCounterComponent, EvoCounterModule, EvoCounterSize, EvoDatepickerComponent, EvoDatepickerModule, EvoDropdownComponent, EvoDropdownModule, EvoDropdownOriginDirective, EvoExpandedService, EvoIconButtonComponent, EvoIconButtonModule, EvoIconComponent, EvoIconNumberComponent, EvoIconNumberModule, EvoIconService, EvoInputComponent, EvoInputContenteditableComponent, EvoInputContenteditableModule, EvoInputIconDirective, EvoInputModule, EvoInputSizes, EvoInputTheme, EvoIsExpandedDirective, EvoLetContext, EvoLetDirective, EvoLoaderModule, EvoModalCloseTargets, EvoModalComponent, EvoModalModule, EvoModalService, EvoNavbarComponent, EvoNavbarItemComponent, EvoNavbarModule, EvoNavigationButtonComponent, EvoNavigationButtonModule, EvoNoteComponent, EvoNoteModule, EvoPaginatorComponent, EvoPaginatorModule, EvoPipesModule, EvoPopoverComponent, EvoPopoverModule, EvoPortalModule, EvoPortalOutlet, EvoPortalOutletDirective, EvoPortalService, EvoRadioComponent, EvoRadioModule, EvoRadioshapeComponent, EvoRadioshapeModule, EvoSidebarCloseTargets, EvoSidebarComponent, EvoSidebarContentComponent, EvoSidebarFooterComponent, EvoSidebarHeaderComponent, EvoSidebarService, EvoSidebarSizes, EvoSidebarStates, EvoStepperComponent, EvoStepperItemComponent, EvoStepperModule, EvoTabComponent, EvoTabContentComponent, EvoTabStateCollection, EvoTableColumnComponent, EvoTableComponent, EvoTableModule, EvoTableRowClickEvent, EvoTabsComponent, EvoTabsModule, EvoTabsService, EvoTabsSize, EvoTabsSizeService, EvoTextareaComponent, EvoTextareaModule, EvoToastComponent, EvoToastModule, EvoToastService, EvoToastTypes, EvoToggleComponent, EvoToggleModule, EvoUiClassDirective, EvoUiKitModule, EvoUploadComponent, EvoUploadModule, FormHelper, MOBILE_VIEW, MobileViewProvider, SafeHtmlPipe, Serializable, TABLET_VIEW, TabletViewProvider, VIEW_BREAKPOINTS_PROVIDERS, WINDOW_PROVIDERS, enterZone, evoAssetsPathProvider, evoCreateToken, evoCreateTokenFromFactory, evoIconResolverProvider, evoLocalAssetsPathProvider, evoSidebarAnimationDuration, evoSidebarDefaultConfig, evoSidebarRootId, expandAnimation, portalProvider, provideSidebar, sidebarAnimation, skipInitialRenderAnimation, switchQueryToList };
|
|
6182
6146
|
//# sourceMappingURL=evotor-dev-ui-kit.mjs.map
|