@wizishop/angular-components 15.1.4 → 15.1.5
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/angular-components.scss +39 -39
- package/esm2020/lib/components/button/button.component.mjs +1 -1
- package/esm2020/lib/components/expansion/accordion/accordion.component.mjs +3 -3
- package/esm2020/lib/components/expansion/expansion-panel/expansion-panel.component.mjs +3 -3
- package/esm2020/lib/components/expansion/expansion-panel/expansion-panel.directive.mjs +75 -7
- package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header.component.mjs +3 -3
- package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header.directive.mjs +37 -7
- package/esm2020/lib/components/header-page/header-page.component.mjs +1 -1
- package/esm2020/lib/components/tab/tab.component.mjs +3 -1
- package/esm2020/lib/pipes/call-component-function.pipe.mjs +3 -2
- package/esm2020/lib/pipes/shared-pipes.module.mjs +8 -11
- package/esm2020/public-api.mjs +2 -2
- package/fesm2015/wizishop-angular-components.mjs +37 -60
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +37 -60
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/expansion/expansion-panel/expansion-panel.component.d.ts +2 -2
- package/lib/components/expansion/expansion-panel/expansion-panel.directive.d.ts +21 -4
- package/lib/components/expansion/expansion-panel-header/expansion-panel-header.component.d.ts +2 -2
- package/lib/components/expansion/expansion-panel-header/expansion-panel-header.directive.d.ts +14 -4
- package/lib/components/expansion/expansion.module.d.ts +1 -3
- package/lib/components/tab/tab.component.d.ts +5 -1
- package/lib/pipes/call-component-function.pipe.d.ts +1 -1
- package/lib/pipes/shared-pipes.module.d.ts +6 -6
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
- package/wizishop-angular-components-15.1.5.tgz +0 -0
- package/esm2020/lib/components/expansion/expansion-panel/expansion-panel-base.mjs +0 -83
- package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header-base.mjs +0 -44
- package/lib/components/expansion/expansion-panel/expansion-panel-base.d.ts +0 -26
- package/lib/components/expansion/expansion-panel-header/expansion-panel-header-base.d.ts +0 -20
- package/wizishop-angular-components-15.1.4.tgz +0 -0
|
@@ -1614,6 +1614,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
1614
1614
|
|
|
1615
1615
|
class TabComponent {
|
|
1616
1616
|
constructor() {
|
|
1617
|
+
// TODO implement ng-content
|
|
1618
|
+
// TODO implement ngModel
|
|
1617
1619
|
this.underline = false;
|
|
1618
1620
|
this.button = false;
|
|
1619
1621
|
this.tabs = [];
|
|
@@ -4743,11 +4745,12 @@ class CallComponentFunctionPipe {
|
|
|
4743
4745
|
}
|
|
4744
4746
|
}
|
|
4745
4747
|
CallComponentFunctionPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: CallComponentFunctionPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4746
|
-
CallComponentFunctionPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.1", ngImport: i0, type: CallComponentFunctionPipe, name: "wacFn" });
|
|
4748
|
+
CallComponentFunctionPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.1", ngImport: i0, type: CallComponentFunctionPipe, isStandalone: true, name: "wacFn" });
|
|
4747
4749
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: CallComponentFunctionPipe, decorators: [{
|
|
4748
4750
|
type: Pipe,
|
|
4749
4751
|
args: [{
|
|
4750
4752
|
name: 'wacFn',
|
|
4753
|
+
standalone: true,
|
|
4751
4754
|
}]
|
|
4752
4755
|
}] });
|
|
4753
4756
|
|
|
@@ -4755,8 +4758,7 @@ const exportedPipes = [
|
|
|
4755
4758
|
FormatObjectToRecursifTreePipe,
|
|
4756
4759
|
FormatObjectToSimpleTreePipe,
|
|
4757
4760
|
FilterOptionsPipe,
|
|
4758
|
-
FindOptionSelectedPipe
|
|
4759
|
-
CallComponentFunctionPipe
|
|
4761
|
+
FindOptionSelectedPipe
|
|
4760
4762
|
];
|
|
4761
4763
|
const pipes = [
|
|
4762
4764
|
SelectFiltersPipe,
|
|
@@ -4768,21 +4770,19 @@ SharedPipes.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15
|
|
|
4768
4770
|
SharedPipes.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.1", ngImport: i0, type: SharedPipes, declarations: [FormatObjectToRecursifTreePipe,
|
|
4769
4771
|
FormatObjectToSimpleTreePipe,
|
|
4770
4772
|
FilterOptionsPipe,
|
|
4771
|
-
FindOptionSelectedPipe,
|
|
4772
|
-
CallComponentFunctionPipe,
|
|
4773
|
-
AreAllOptionsSelectedPipe], imports: [CommonModule, FormsModule], exports: [FormatObjectToRecursifTreePipe,
|
|
4773
|
+
FindOptionSelectedPipe, SelectFiltersPipe,
|
|
4774
|
+
AreAllOptionsSelectedPipe], imports: [CommonModule, FormsModule, CallComponentFunctionPipe], exports: [FormatObjectToRecursifTreePipe,
|
|
4774
4775
|
FormatObjectToSimpleTreePipe,
|
|
4775
4776
|
FilterOptionsPipe,
|
|
4776
|
-
FindOptionSelectedPipe,
|
|
4777
|
-
|
|
4778
|
-
AreAllOptionsSelectedPipe] });
|
|
4777
|
+
FindOptionSelectedPipe, SelectFiltersPipe,
|
|
4778
|
+
AreAllOptionsSelectedPipe, CallComponentFunctionPipe] });
|
|
4779
4779
|
SharedPipes.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: SharedPipes, imports: [CommonModule, FormsModule] });
|
|
4780
4780
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: SharedPipes, decorators: [{
|
|
4781
4781
|
type: NgModule,
|
|
4782
4782
|
args: [{
|
|
4783
|
-
imports: [CommonModule, FormsModule],
|
|
4783
|
+
imports: [CommonModule, FormsModule, CallComponentFunctionPipe],
|
|
4784
4784
|
declarations: [...exportedPipes, ...pipes],
|
|
4785
|
-
exports: [...exportedPipes, ...pipes]
|
|
4785
|
+
exports: [...exportedPipes, ...pipes, CallComponentFunctionPipe]
|
|
4786
4786
|
}]
|
|
4787
4787
|
}] });
|
|
4788
4788
|
|
|
@@ -5576,7 +5576,7 @@ class AccordionComponent {
|
|
|
5576
5576
|
}
|
|
5577
5577
|
}
|
|
5578
5578
|
AccordionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: AccordionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5579
|
-
AccordionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: AccordionComponent, selector: "wac-accordion", inputs: { keepOnlyOnePanelOpen: "keepOnlyOnePanelOpen" }, host: { properties: { "class": "this.class" } }, queries: [{ propertyName: "expansionItems", predicate: ACCORDION_ITEM }], ngImport: i0, template: "<ng-content></ng-content>" });
|
|
5579
|
+
AccordionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: AccordionComponent, selector: "wac-accordion", inputs: { keepOnlyOnePanelOpen: "keepOnlyOnePanelOpen" }, host: { properties: { "class": "this.class" } }, queries: [{ propertyName: "expansionItems", predicate: ACCORDION_ITEM, descendants: true }], ngImport: i0, template: "<ng-content></ng-content>" });
|
|
5580
5580
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: AccordionComponent, decorators: [{
|
|
5581
5581
|
type: Component,
|
|
5582
5582
|
args: [{ selector: 'wac-accordion', template: "<ng-content></ng-content>" }]
|
|
@@ -5585,14 +5585,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
5585
5585
|
args: ['class']
|
|
5586
5586
|
}], expansionItems: [{
|
|
5587
5587
|
type: ContentChildren,
|
|
5588
|
-
args: [ACCORDION_ITEM]
|
|
5588
|
+
args: [ACCORDION_ITEM, { descendants: true }]
|
|
5589
5589
|
}], keepOnlyOnePanelOpen: [{
|
|
5590
5590
|
type: Input
|
|
5591
5591
|
}] } });
|
|
5592
5592
|
|
|
5593
|
-
|
|
5593
|
+
const EXPANSION_PANEL_HEADER = new InjectionToken('EXPANSION_PANEL_HEADER');
|
|
5594
|
+
|
|
5595
|
+
class ExpansionPanelHeaderDirective {
|
|
5594
5596
|
onClick() {
|
|
5595
5597
|
this.toggle();
|
|
5598
|
+
console.log('toggle');
|
|
5596
5599
|
}
|
|
5597
5600
|
constructor(changeDetectorRef) {
|
|
5598
5601
|
this.changeDetectorRef = changeDetectorRef;
|
|
@@ -5611,10 +5614,14 @@ class ExpansionPanelHeaderBase {
|
|
|
5611
5614
|
this.toggle();
|
|
5612
5615
|
}
|
|
5613
5616
|
}
|
|
5614
|
-
|
|
5615
|
-
|
|
5616
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type:
|
|
5617
|
-
type: Directive
|
|
5617
|
+
ExpansionPanelHeaderDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelHeaderDirective, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5618
|
+
ExpansionPanelHeaderDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: ExpansionPanelHeaderDirective, selector: "[wacExpansionPanelHeader]", inputs: { disabled: "disabled", hideToggle: "hideToggle", isExpanded: "isExpanded" }, outputs: { disabledChange: "disabledChange", hideToggleChange: "hideToggleChange", isExpandedChange: "isExpandedChange" }, host: { listeners: { "click": "onClick()" } }, providers: [{ provide: EXPANSION_PANEL_HEADER, useExisting: ExpansionPanelHeaderDirective }], ngImport: i0 });
|
|
5619
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelHeaderDirective, decorators: [{
|
|
5620
|
+
type: Directive,
|
|
5621
|
+
args: [{
|
|
5622
|
+
selector: '[wacExpansionPanelHeader]',
|
|
5623
|
+
providers: [{ provide: EXPANSION_PANEL_HEADER, useExisting: ExpansionPanelHeaderDirective }],
|
|
5624
|
+
}]
|
|
5618
5625
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { onClick: [{
|
|
5619
5626
|
type: HostListener,
|
|
5620
5627
|
args: ['click']
|
|
@@ -5632,9 +5639,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
5632
5639
|
type: Output
|
|
5633
5640
|
}] } });
|
|
5634
5641
|
|
|
5635
|
-
|
|
5636
|
-
|
|
5637
|
-
class ExpansionPanelHeaderComponent extends ExpansionPanelHeaderBase {
|
|
5642
|
+
class ExpansionPanelHeaderComponent extends ExpansionPanelHeaderDirective {
|
|
5638
5643
|
get isDisabled() {
|
|
5639
5644
|
return this.disabled;
|
|
5640
5645
|
}
|
|
@@ -5657,23 +5662,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
5657
5662
|
args: ['class.wac-expansion-panel-header--disabled']
|
|
5658
5663
|
}] } });
|
|
5659
5664
|
|
|
5660
|
-
class
|
|
5661
|
-
constructor(changeDetectorRef) {
|
|
5662
|
-
super(changeDetectorRef);
|
|
5663
|
-
this.changeDetectorRef = changeDetectorRef;
|
|
5664
|
-
}
|
|
5665
|
-
}
|
|
5666
|
-
ExpansionPanelHeaderDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelHeaderDirective, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5667
|
-
ExpansionPanelHeaderDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: ExpansionPanelHeaderDirective, selector: "[wacExpansionPanelHeader]", providers: [{ provide: EXPANSION_PANEL_HEADER, useExisting: ExpansionPanelHeaderDirective }], usesInheritance: true, ngImport: i0 });
|
|
5668
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelHeaderDirective, decorators: [{
|
|
5669
|
-
type: Directive,
|
|
5670
|
-
args: [{
|
|
5671
|
-
selector: '[wacExpansionPanelHeader]',
|
|
5672
|
-
providers: [{ provide: EXPANSION_PANEL_HEADER, useExisting: ExpansionPanelHeaderDirective }],
|
|
5673
|
-
}]
|
|
5674
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; } });
|
|
5675
|
-
|
|
5676
|
-
class ExpansionPanelBase {
|
|
5665
|
+
class ExpansionPanelDirective {
|
|
5677
5666
|
set disabled(disabled) {
|
|
5678
5667
|
this._disabled = disabled;
|
|
5679
5668
|
if (this.header) {
|
|
@@ -5736,10 +5725,14 @@ class ExpansionPanelBase {
|
|
|
5736
5725
|
this.expandChange.emit();
|
|
5737
5726
|
}
|
|
5738
5727
|
}
|
|
5739
|
-
|
|
5740
|
-
|
|
5741
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type:
|
|
5742
|
-
type: Directive
|
|
5728
|
+
ExpansionPanelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelDirective, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5729
|
+
ExpansionPanelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: ExpansionPanelDirective, selector: "[wacExpansionPanel]", inputs: { disabled: "disabled", hideToggle: "hideToggle", isExpanded: "isExpanded" }, outputs: { isExpandedChange: "isExpandedChange" }, providers: [{ provide: ACCORDION_ITEM, useExisting: ExpansionPanelDirective }], queries: [{ propertyName: "header", first: true, predicate: EXPANSION_PANEL_HEADER, descendants: true }], ngImport: i0 });
|
|
5730
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelDirective, decorators: [{
|
|
5731
|
+
type: Directive,
|
|
5732
|
+
args: [{
|
|
5733
|
+
selector: '[wacExpansionPanel]',
|
|
5734
|
+
providers: [{ provide: ACCORDION_ITEM, useExisting: ExpansionPanelDirective }]
|
|
5735
|
+
}]
|
|
5743
5736
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { header: [{
|
|
5744
5737
|
type: ContentChild,
|
|
5745
5738
|
args: [EXPANSION_PANEL_HEADER]
|
|
@@ -5754,7 +5747,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
5754
5747
|
}] } });
|
|
5755
5748
|
|
|
5756
5749
|
// https://material.angular.io/components/expansion/api
|
|
5757
|
-
class ExpansionPanelComponent extends
|
|
5750
|
+
class ExpansionPanelComponent extends ExpansionPanelDirective {
|
|
5758
5751
|
get isDisabled() {
|
|
5759
5752
|
return this.disabled;
|
|
5760
5753
|
}
|
|
@@ -5777,22 +5770,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
5777
5770
|
args: ['class.wac-expansion-panel--disabled']
|
|
5778
5771
|
}] } });
|
|
5779
5772
|
|
|
5780
|
-
class ExpansionPanelDirective extends ExpansionPanelBase {
|
|
5781
|
-
constructor(changeDetectorRef) {
|
|
5782
|
-
super(changeDetectorRef);
|
|
5783
|
-
this.changeDetectorRef = changeDetectorRef;
|
|
5784
|
-
}
|
|
5785
|
-
}
|
|
5786
|
-
ExpansionPanelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelDirective, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5787
|
-
ExpansionPanelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: ExpansionPanelDirective, selector: "[wacExpansionPanel]", providers: [{ provide: ACCORDION_ITEM, useExisting: ExpansionPanelDirective }], usesInheritance: true, ngImport: i0 });
|
|
5788
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelDirective, decorators: [{
|
|
5789
|
-
type: Directive,
|
|
5790
|
-
args: [{
|
|
5791
|
-
selector: '[wacExpansionPanel]',
|
|
5792
|
-
providers: [{ provide: ACCORDION_ITEM, useExisting: ExpansionPanelDirective }]
|
|
5793
|
-
}]
|
|
5794
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; } });
|
|
5795
|
-
|
|
5796
5773
|
const components$1 = [
|
|
5797
5774
|
ExpansionPanelComponent,
|
|
5798
5775
|
ExpansionPanelHeaderComponent,
|
|
@@ -6423,5 +6400,5 @@ const switchInOut = trigger('switchInOut', [
|
|
|
6423
6400
|
* Generated bundle index. Do not edit.
|
|
6424
6401
|
*/
|
|
6425
6402
|
|
|
6426
|
-
export { ACCORDION_ITEM, AbstractDebounceDirective, AccordionComponent, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, BlockSeparatorComponent, BlockTitleLegacyComponent, BlockWithCheckboxComponent, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CallComponentFunctionPipe, CardPriceComponent, ChargingBarComponent, CheckBoxRow, CheckboxComponent, ConfirmDeleteComponent, ContentWithButtonsComponent, DebounceKeyupDirective, DeleteComponent, DraganddropListComponent, DropdownComponent, EXPANSION_PANEL_HEADER, ExpandedPanelComponent, ExpansionExport, ExpansionModule,
|
|
6403
|
+
export { ACCORDION_ITEM, AbstractDebounceDirective, AccordionComponent, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, BlockSeparatorComponent, BlockTitleLegacyComponent, BlockWithCheckboxComponent, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CallComponentFunctionPipe, CardPriceComponent, ChargingBarComponent, CheckBoxRow, CheckboxComponent, ConfirmDeleteComponent, ContentWithButtonsComponent, DebounceKeyupDirective, DeleteComponent, DraganddropListComponent, DropdownComponent, EXPANSION_PANEL_HEADER, ExpandedPanelComponent, ExpansionExport, ExpansionModule, ExpansionPanelComponent, ExpansionPanelDirective, ExpansionPanelHeaderComponent, ExpansionPanelHeaderDirective, FilterOptionsPipe, FiltersComponent, FiltersTableService, FindOptionSelectedPipe, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, GooglePreviewComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HistoryService, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, KeypressEnterDirective, LabelComponent, LinkComponent, LoaderComponent, LoaderModule, LogoComponent, MosaicComponent, MultipleSearchComponent, MultipleSearchPlusComponent, OnlyNumberDirective, OptionCallToActionComponent, OptionComponent, OptionalDisableContainerComponent, PaginationComponent, PlaceholderComponent, PopinComponent, ProgressBarComponent, RadioComponent, RadioDirective, RadioGroupDirective, SearchComponent, SelectComponent, SelectDirective, SelectFiltersPipe, SelectInTextComponent, SelectOptionDirective, SelectSearchTriggerComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SnackbarComponent, StateComponent, SummaryComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableFiltersGroup, TableRow, TagComponent, TagLabelComponent, TextAreaComponent, TextComponent, TokenCheckComponent, TooltipComponent, TreeComponent, TreeModule, TwoDigitDecimalNumberDirective, UploadComponent, ValueChangeService, VarDirective, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WrapperMultipleBlockComponent, WrapperSidebarComponent, WzEditInPlaceComponent, ZindexToggleDirective, animateListFromBottom, animateListFromLeft, animateListFromRight, animateListFromTop, inOutX, inOutY, opacityAnimation, showFromBottom, showFromLeft, showFromRight, showFromTop, switchInOut, uuid };
|
|
6427
6404
|
//# sourceMappingURL=wizishop-angular-components.mjs.map
|