@wizishop/angular-components 14.0.8 → 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/checkbox/checkbox.component.mjs +5 -8
- package/esm2020/lib/components/inputs/input/input.component.mjs +7 -7
- 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 +32 -18
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +32 -18
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/checkbox/checkbox.component.d.ts +0 -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.8.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';
|
|
@@ -378,11 +378,11 @@ class CheckboxComponent {
|
|
|
378
378
|
set value(value) {
|
|
379
379
|
this._value = value;
|
|
380
380
|
this._onChange(value);
|
|
381
|
+
this._onTouched();
|
|
381
382
|
}
|
|
382
383
|
get value() {
|
|
383
384
|
return this._value;
|
|
384
385
|
}
|
|
385
|
-
;
|
|
386
386
|
registerOnChange(fn) {
|
|
387
387
|
this._onChange = fn;
|
|
388
388
|
}
|
|
@@ -393,23 +393,20 @@ class CheckboxComponent {
|
|
|
393
393
|
this.disabled = isDisabled;
|
|
394
394
|
}
|
|
395
395
|
writeValue(isChecked) {
|
|
396
|
-
this.
|
|
396
|
+
this._value = isChecked;
|
|
397
397
|
}
|
|
398
398
|
onChange(value) {
|
|
399
399
|
this._onChange(value);
|
|
400
400
|
}
|
|
401
|
-
onBlur() {
|
|
402
|
-
this._onTouched();
|
|
403
|
-
}
|
|
404
401
|
inputClick($event) {
|
|
405
402
|
$event.stopPropagation();
|
|
406
403
|
}
|
|
407
404
|
}
|
|
408
405
|
CheckboxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
409
|
-
CheckboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: CheckboxComponent, selector: "wac-checkbox", inputs: { label: "label", value: "value", type: "type", alone: "alone", checked: "checked", hasInput: "hasInput", inputPlaceholder: "inputPlaceholder", id: "id", name: "name", whiteSpace: "whiteSpace" }, outputs: { valueChange: "valueChange" }, providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: CheckboxComponent, multi: true }], ngImport: i0, template: "<div class=\"wac-field-checkbox\" [ngClass]=\"{ 'wac-field-checkbox--nowrap': type === 'column', 'disable-wt' : !whiteSpace, alone: alone }\">\n <div class=\"wac-field-checkbox__row\">\n <input\n type=\"checkbox\"\n [id]=\"id\"\n class=\"is-checkradio\"\n [name]=\"name\"\n [
|
|
406
|
+
CheckboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: CheckboxComponent, selector: "wac-checkbox", inputs: { label: "label", value: "value", type: "type", alone: "alone", checked: "checked", hasInput: "hasInput", inputPlaceholder: "inputPlaceholder", id: "id", name: "name", whiteSpace: "whiteSpace" }, outputs: { valueChange: "valueChange" }, providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: CheckboxComponent, multi: true }], ngImport: i0, template: "<div class=\"wac-field-checkbox\" [ngClass]=\"{ 'wac-field-checkbox--nowrap': type === 'column', 'disable-wt' : !whiteSpace, alone: alone }\">\n <div class=\"wac-field-checkbox__row\">\n <input\n type=\"checkbox\"\n [id]=\"id\"\n class=\"is-checkradio\"\n [name]=\"name\"\n [disabled]=\"disabled\"\n [(ngModel)]=\"value\"\n />\n <label [attr.for]=\"id\"><span [innerHTML]=\"label\"></span></label>\n </div>\n <input\n *ngIf=\"hasInput && checked\"\n [@inOutYAnimation]\n type=\"text\"\n [placeholder]=\"inputPlaceholder\"\n (click)=\"inputClick($event)\"\n />\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], animations: [inOutY] });
|
|
410
407
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CheckboxComponent, decorators: [{
|
|
411
408
|
type: Component,
|
|
412
|
-
args: [{ selector: 'wac-checkbox', providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: CheckboxComponent, multi: true }], animations: [inOutY], template: "<div class=\"wac-field-checkbox\" [ngClass]=\"{ 'wac-field-checkbox--nowrap': type === 'column', 'disable-wt' : !whiteSpace, alone: alone }\">\n <div class=\"wac-field-checkbox__row\">\n <input\n type=\"checkbox\"\n [id]=\"id\"\n class=\"is-checkradio\"\n [name]=\"name\"\n [
|
|
409
|
+
args: [{ selector: 'wac-checkbox', providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: CheckboxComponent, multi: true }], animations: [inOutY], template: "<div class=\"wac-field-checkbox\" [ngClass]=\"{ 'wac-field-checkbox--nowrap': type === 'column', 'disable-wt' : !whiteSpace, alone: alone }\">\n <div class=\"wac-field-checkbox__row\">\n <input\n type=\"checkbox\"\n [id]=\"id\"\n class=\"is-checkradio\"\n [name]=\"name\"\n [disabled]=\"disabled\"\n [(ngModel)]=\"value\"\n />\n <label [attr.for]=\"id\"><span [innerHTML]=\"label\"></span></label>\n </div>\n <input\n *ngIf=\"hasInput && checked\"\n [@inOutYAnimation]\n type=\"text\"\n [placeholder]=\"inputPlaceholder\"\n (click)=\"inputClick($event)\"\n />\n</div>\n" }]
|
|
413
410
|
}], ctorParameters: function () { return []; }, propDecorators: { label: [{
|
|
414
411
|
type: Input
|
|
415
412
|
}], value: [{
|
|
@@ -2013,9 +2010,9 @@ class InputComponent {
|
|
|
2013
2010
|
this.label = '';
|
|
2014
2011
|
this.value = '';
|
|
2015
2012
|
this.type = 'text';
|
|
2016
|
-
this.placeholder = '';
|
|
2017
|
-
this.textInfo = null;
|
|
2018
|
-
this.textError = null;
|
|
2013
|
+
this.placeholder = ''; // todo could be handle with ng-content
|
|
2014
|
+
this.textInfo = null; // todo should be handle with ng-content
|
|
2015
|
+
this.textError = null; // todo should be handle with ng-content
|
|
2019
2016
|
this.size = null;
|
|
2020
2017
|
this.isNumber = null;
|
|
2021
2018
|
this.withoutBlock = false;
|
|
@@ -2026,8 +2023,8 @@ class InputComponent {
|
|
|
2026
2023
|
this.min = null;
|
|
2027
2024
|
this.max = null;
|
|
2028
2025
|
this.disableMargin = false;
|
|
2029
|
-
this.textPrepend = null;
|
|
2030
|
-
this.textAppend = null;
|
|
2026
|
+
this.textPrepend = null; // todo should be handle with ng-content
|
|
2027
|
+
this.textAppend = null; // todo should be handle with ng-content
|
|
2031
2028
|
this.progressBar = false;
|
|
2032
2029
|
this.extraClasses = '';
|
|
2033
2030
|
this.keyPreventDefault = [];
|
|
@@ -2038,7 +2035,7 @@ class InputComponent {
|
|
|
2038
2035
|
this.linkTooltip = '';
|
|
2039
2036
|
this.padding = false;
|
|
2040
2037
|
this.disabled = false;
|
|
2041
|
-
this.indication = '';
|
|
2038
|
+
this.indication = ''; // todo should be handle with ng-content
|
|
2042
2039
|
this.success = false;
|
|
2043
2040
|
this.indicationLeft = false;
|
|
2044
2041
|
this.keypressEnter = new EventEmitter();
|
|
@@ -3957,6 +3954,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImpor
|
|
|
3957
3954
|
}]
|
|
3958
3955
|
}] });
|
|
3959
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
|
+
|
|
3960
3971
|
const components = [
|
|
3961
3972
|
TagComponent,
|
|
3962
3973
|
TabComponent,
|
|
@@ -3998,7 +4009,8 @@ const components = [
|
|
|
3998
4009
|
WrapperBlocsComponent,
|
|
3999
4010
|
SnackbarComponent,
|
|
4000
4011
|
SearchComponent,
|
|
4001
|
-
SelectedListComponent
|
|
4012
|
+
SelectedListComponent,
|
|
4013
|
+
OptionalDisableContainerComponent
|
|
4002
4014
|
];
|
|
4003
4015
|
const exportsFromModule = [
|
|
4004
4016
|
PaginationComponent,
|
|
@@ -4058,7 +4070,8 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
4058
4070
|
WrapperBlocsComponent,
|
|
4059
4071
|
SnackbarComponent,
|
|
4060
4072
|
SearchComponent,
|
|
4061
|
-
SelectedListComponent
|
|
4073
|
+
SelectedListComponent,
|
|
4074
|
+
OptionalDisableContainerComponent], imports: [CommonModule,
|
|
4062
4075
|
FormsModule,
|
|
4063
4076
|
NwbAllModule, i1$3.TranslateModule, ReactiveFormsModule,
|
|
4064
4077
|
SharedDirectives,
|
|
@@ -4116,7 +4129,8 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
4116
4129
|
WrapperBlocsComponent,
|
|
4117
4130
|
SnackbarComponent,
|
|
4118
4131
|
SearchComponent,
|
|
4119
|
-
SelectedListComponent,
|
|
4132
|
+
SelectedListComponent,
|
|
4133
|
+
OptionalDisableContainerComponent, PaginationComponent,
|
|
4120
4134
|
TableComponent,
|
|
4121
4135
|
TableColumn,
|
|
4122
4136
|
CheckBoxRow,
|
|
@@ -4225,5 +4239,5 @@ class TableFiltersGroup extends NwbFilterGroup {
|
|
|
4225
4239
|
* Generated bundle index. Do not edit.
|
|
4226
4240
|
*/
|
|
4227
4241
|
|
|
4228
|
-
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 };
|
|
4229
4243
|
//# sourceMappingURL=wizishop-angular-components.mjs.map
|