@wizishop/angular-components 0.0.185 → 0.0.188
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 +529 -480
- package/bundles/wizishop-angular-components.umd.js +20 -3
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +1 -1
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/block-with-checkbox/block-with-checkbox.component.js +2 -2
- package/esm2015/lib/components/mosaic/mosaic.component.js +2 -2
- package/esm2015/lib/components/shared-components.module.js +4 -2
- package/esm2015/lib/components/wrapper-multiple-block/wrapper-multiple-block.component.js +14 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/wizishop-angular-components.js +18 -4
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/wrapper-multiple-block/wrapper-multiple-block.component.d.ts +5 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/wizishop-angular-components-0.0.188.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.185.tgz +0 -0
|
@@ -4356,7 +4356,7 @@
|
|
|
4356
4356
|
BlockWithCheckboxComponent.decorators = [
|
|
4357
4357
|
{ type: i0.Component, args: [{
|
|
4358
4358
|
selector: 'wac-block-with-checkbox',
|
|
4359
|
-
template: "<div class=\"block-with-checkbox\" [ngClass]=\"{'selected': inputRadioA.checked || selected, 'firstWacRadioBLock': isFirst, 'disabled': disabled}\" [style.opacity]=\"opacity\" (mouseover)=\"removeFirstClass()\">\n <div class=\"block-with-checkbox__left\" (click)=\"inputRadioA.click()\">\n <div class=\"wac-radio-block\">\n <div class=\"wac-radio__row\">\n <input #inputRadioA [name]=\"nameRadio\" type=\"radio\" [checked]=\"selected\" [value]=\"selected\" (change)=\"eventSelected($event)\" [id]=\"randomLabelName\">\n <label [for]=\"randomLabelName\"></label>\n </div>\n </div>\n </div>\n <div class=\"block-with-checkbox__center\" (click)=\"inputRadioA.click()\">\n <ng-content></ng-content>\n </div>\n</div>\n"
|
|
4359
|
+
template: "<div class=\"block-with-checkbox\" (click)=\"disabled ? $event.preventDefault() : ''\" [ngClass]=\"{'selected': inputRadioA.checked || selected, 'firstWacRadioBLock': isFirst, 'disabled': disabled}\" [style.opacity]=\"opacity\" (mouseover)=\"removeFirstClass()\">\n <div class=\"block-with-checkbox__left\" (click)=\"inputRadioA.click()\">\n <div class=\"wac-radio-block\">\n <div class=\"wac-radio__row\">\n <input #inputRadioA [name]=\"nameRadio\" type=\"radio\" [checked]=\"selected\" [value]=\"selected\" (change)=\"eventSelected($event)\" [id]=\"randomLabelName\">\n <label [for]=\"randomLabelName\"></label>\n </div>\n </div>\n </div>\n <div class=\"block-with-checkbox__center\" (click)=\"inputRadioA.click()\">\n <ng-content></ng-content>\n </div>\n</div>\n"
|
|
4360
4360
|
},] }
|
|
4361
4361
|
];
|
|
4362
4362
|
BlockWithCheckboxComponent.ctorParameters = function () { return []; };
|
|
@@ -4459,7 +4459,7 @@
|
|
|
4459
4459
|
MosaicComponent.decorators = [
|
|
4460
4460
|
{ type: i0.Component, args: [{
|
|
4461
4461
|
selector: 'wac-mosaic',
|
|
4462
|
-
template: "<div class=\"wac-mosaic\">\n <ng-scrollbar (reachedBottom)=\"onBottomReached()\" reachedOffset=\"200\" class=\"wac-mosaic__wrapper__scrollbar\">\n <div class=\"wac-mosaic__wrapper\">\n <div class=\"wac-mosaic__wrapper__column\" *ngFor=\"let column of columns\">\n <div class=\"wac-mosaic__wrapper__column__image\" *ngFor=\"let image of column; let i = index;\">\n <img [src]=\"image.src\" [alt]=\"image.alt\"/>\n <div class=\"hover\">\n <ng-container\n [ngTemplateOutlet]=\"hoverImageTemplate || defaultImportButton\"\n [ngTemplateOutletContext]=\"{ $implicit: image }\"\n >\n </ng-container>\n </div>\n </div>\n </div>\n
|
|
4462
|
+
template: "<div class=\"wac-mosaic\">\n <ng-scrollbar (reachedBottom)=\"onBottomReached()\" reachedOffset=\"200\" class=\"wac-mosaic__wrapper__scrollbar\">\n <div class=\"wac-mosaic__wrapper\">\n <div class=\"wac-mosaic__wrapper__column\" *ngFor=\"let column of columns\">\n <div class=\"wac-mosaic__wrapper__column__image\" *ngFor=\"let image of column; let i = index;\">\n <img [src]=\"image.src\" [alt]=\"image.alt\"/>\n <div class=\"hover\">\n <ng-container\n [ngTemplateOutlet]=\"hoverImageTemplate || defaultImportButton\"\n [ngTemplateOutletContext]=\"{ $implicit: image }\"\n >\n </ng-container>\n </div>\n </div>\n </div>\n <div class=\"wac-mosaic__loader\" *ngIf=\"isLoading\">\n\n </div>\n </div>\n </ng-scrollbar>\n</div>\n\n<ng-template #defaultImportButton let-image>\n <wac-button [icon]=\"'fa-solid fa-image'\" [label]=\"'wac.MosaicComponent.import' | translate\" [extraClasses]=\"'is-success'\" (click)=\"onImportImage(image.src)\"></wac-button>\n</ng-template>\n",
|
|
4463
4463
|
encapsulation: i0.ViewEncapsulation.None,
|
|
4464
4464
|
changeDetection: i0.ChangeDetectionStrategy.OnPush
|
|
4465
4465
|
},] }
|
|
@@ -4527,6 +4527,21 @@
|
|
|
4527
4527
|
translateAction: [{ type: i0.Output }]
|
|
4528
4528
|
};
|
|
4529
4529
|
|
|
4530
|
+
var WrapperMultipleBlockComponent = /** @class */ (function () {
|
|
4531
|
+
function WrapperMultipleBlockComponent() {
|
|
4532
|
+
}
|
|
4533
|
+
WrapperMultipleBlockComponent.prototype.ngOnInit = function () {
|
|
4534
|
+
};
|
|
4535
|
+
return WrapperMultipleBlockComponent;
|
|
4536
|
+
}());
|
|
4537
|
+
WrapperMultipleBlockComponent.decorators = [
|
|
4538
|
+
{ type: i0.Component, args: [{
|
|
4539
|
+
selector: 'wac-wrapper-multiple-block',
|
|
4540
|
+
template: "<div class=\"wac-wrapper-multiple-block\">\n <div class=\"wac-wrapper-multiple-block__sidebar\">\n <ng-content select=\"[sidebar]\"></ng-content>\n </div>\n <div class=\"wac-wrapper-multiple-block__content\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n"
|
|
4541
|
+
},] }
|
|
4542
|
+
];
|
|
4543
|
+
WrapperMultipleBlockComponent.ctorParameters = function () { return []; };
|
|
4544
|
+
|
|
4530
4545
|
var components = [
|
|
4531
4546
|
TagComponent,
|
|
4532
4547
|
TabComponent,
|
|
@@ -4576,7 +4591,8 @@
|
|
|
4576
4591
|
BlockWithCheckboxComponent,
|
|
4577
4592
|
ConfirmDeleteComponent,
|
|
4578
4593
|
MosaicComponent,
|
|
4579
|
-
ContentWithButtonsComponent
|
|
4594
|
+
ContentWithButtonsComponent,
|
|
4595
|
+
WrapperMultipleBlockComponent
|
|
4580
4596
|
];
|
|
4581
4597
|
var exportsFromModule = [
|
|
4582
4598
|
PaginationComponent,
|
|
@@ -4751,6 +4767,7 @@
|
|
|
4751
4767
|
exports.WiziComponentsModule = WiziComponentsModule;
|
|
4752
4768
|
exports.WrapperBlocsComponent = WrapperBlocsComponent;
|
|
4753
4769
|
exports.WrapperComponent = WrapperComponent;
|
|
4770
|
+
exports.WrapperMultipleBlockComponent = WrapperMultipleBlockComponent;
|
|
4754
4771
|
exports.WrapperSidebarComponent = WrapperSidebarComponent;
|
|
4755
4772
|
exports.WzEditInPlaceComponent = WzEditInPlaceComponent;
|
|
4756
4773
|
exports.ZindexToggleDirective = ZindexToggleDirective;
|