@wizishop/angular-components 14.0.9 → 14.1.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/angular-components.scss +29 -1
- package/esm2020/lib/components/optional-disable-container/optional-disable-container.component.mjs +17 -0
- package/esm2020/lib/components/shared-components.module.mjs +8 -4
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/wizishop-angular-components.mjs +22 -5
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +22 -5
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/optional-disable-container/optional-disable-container.component.d.ts +7 -0
- package/lib/components/shared-components.module.d.ts +35 -34
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/wizishop-angular-components-14.1.1.tgz +0 -0
- package/wizishop-angular-components-14.0.9.tgz +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i1$2 from '@wizishop/ng-wizi-bulma';
|
|
2
2
|
import { NwbAllModule, NwbFilterGroup } from '@wizishop/ng-wizi-bulma';
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
|
-
import { Component, ViewEncapsulation, Input, EventEmitter, Directive, Output, HostListener, Injectable, NgModule, Inject, Pipe, ContentChildren, ViewChild } from '@angular/core';
|
|
4
|
+
import { Component, ViewEncapsulation, Input, EventEmitter, Directive, Output, HostListener, Injectable, NgModule, Inject, Pipe, ContentChildren, ViewChild, ChangeDetectionStrategy } from '@angular/core';
|
|
5
5
|
import * as i1 from '@angular/common';
|
|
6
6
|
import { CommonModule, DOCUMENT } from '@angular/common';
|
|
7
7
|
import * as i2 from '@angular/forms';
|
|
@@ -3954,6 +3954,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImpor
|
|
|
3954
3954
|
}]
|
|
3955
3955
|
}] });
|
|
3956
3956
|
|
|
3957
|
+
class OptionalDisableContainerComponent {
|
|
3958
|
+
constructor() {
|
|
3959
|
+
this.disabled = false;
|
|
3960
|
+
}
|
|
3961
|
+
}
|
|
3962
|
+
OptionalDisableContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: OptionalDisableContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3963
|
+
OptionalDisableContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: OptionalDisableContainerComponent, selector: "wac-optional-disable-container", inputs: { disabled: "disabled" }, ngImport: i0, template: "<ng-content></ng-content>\n<div class=\"wac-optional-disable-container__disabledSection\" *ngIf=\"disabled\"></div>", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
3964
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: OptionalDisableContainerComponent, decorators: [{
|
|
3965
|
+
type: Component,
|
|
3966
|
+
args: [{ selector: 'wac-optional-disable-container', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-content></ng-content>\n<div class=\"wac-optional-disable-container__disabledSection\" *ngIf=\"disabled\"></div>" }]
|
|
3967
|
+
}], ctorParameters: function () { return []; }, propDecorators: { disabled: [{
|
|
3968
|
+
type: Input
|
|
3969
|
+
}] } });
|
|
3970
|
+
|
|
3957
3971
|
const components = [
|
|
3958
3972
|
TagComponent,
|
|
3959
3973
|
TabComponent,
|
|
@@ -3995,7 +4009,8 @@ const components = [
|
|
|
3995
4009
|
WrapperBlocsComponent,
|
|
3996
4010
|
SnackbarComponent,
|
|
3997
4011
|
SearchComponent,
|
|
3998
|
-
SelectedListComponent
|
|
4012
|
+
SelectedListComponent,
|
|
4013
|
+
OptionalDisableContainerComponent
|
|
3999
4014
|
];
|
|
4000
4015
|
const exportsFromModule = [
|
|
4001
4016
|
PaginationComponent,
|
|
@@ -4055,7 +4070,8 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
4055
4070
|
WrapperBlocsComponent,
|
|
4056
4071
|
SnackbarComponent,
|
|
4057
4072
|
SearchComponent,
|
|
4058
|
-
SelectedListComponent
|
|
4073
|
+
SelectedListComponent,
|
|
4074
|
+
OptionalDisableContainerComponent], imports: [CommonModule,
|
|
4059
4075
|
FormsModule,
|
|
4060
4076
|
NwbAllModule, i1$3.TranslateModule, ReactiveFormsModule,
|
|
4061
4077
|
SharedDirectives,
|
|
@@ -4113,7 +4129,8 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
4113
4129
|
WrapperBlocsComponent,
|
|
4114
4130
|
SnackbarComponent,
|
|
4115
4131
|
SearchComponent,
|
|
4116
|
-
SelectedListComponent,
|
|
4132
|
+
SelectedListComponent,
|
|
4133
|
+
OptionalDisableContainerComponent, PaginationComponent,
|
|
4117
4134
|
TableComponent,
|
|
4118
4135
|
TableColumn,
|
|
4119
4136
|
CheckBoxRow,
|
|
@@ -4222,5 +4239,5 @@ class TableFiltersGroup extends NwbFilterGroup {
|
|
|
4222
4239
|
* Generated bundle index. Do not edit.
|
|
4223
4240
|
*/
|
|
4224
4241
|
|
|
4225
|
-
export { AbstractDebounceDirective, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, ButtonComponent, CalendarComponent, CheckBoxRow, CheckboxComponent, DebounceKeyupDirective, DeleteComponent, DropdownComponent, FiltersComponent, FiltersTableService, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, KeypressEnterDirective, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MultipleSearchComponent, MultipleSearchPlusComponent, PaginationComponent, PopinComponent, ProgressBarComponent, RadioComponent, SearchComponent, SelectComponent, SelectFiltersPipe, SelectInTextComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SnackbarComponent, StateComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableFiltersGroup, TableRow, TagComponent, TextAreaComponent, TextComponent, TooltipComponent, TreeComponent, TreeModule, UploadComponent, VarDirective, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WzEditInPlaceComponent, ZindexToggleDirective };
|
|
4242
|
+
export { AbstractDebounceDirective, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, ButtonComponent, CalendarComponent, CheckBoxRow, CheckboxComponent, DebounceKeyupDirective, DeleteComponent, DropdownComponent, FiltersComponent, FiltersTableService, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, KeypressEnterDirective, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MultipleSearchComponent, MultipleSearchPlusComponent, OptionalDisableContainerComponent, PaginationComponent, PopinComponent, ProgressBarComponent, RadioComponent, SearchComponent, SelectComponent, SelectFiltersPipe, SelectInTextComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SnackbarComponent, StateComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableFiltersGroup, TableRow, TagComponent, TextAreaComponent, TextComponent, TooltipComponent, TreeComponent, TreeModule, UploadComponent, VarDirective, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WzEditInPlaceComponent, ZindexToggleDirective };
|
|
4226
4243
|
//# sourceMappingURL=wizishop-angular-components.mjs.map
|